From 59bb66031d116be1d757cee44def920f4fc33ada Mon Sep 17 00:00:00 2001 From: Pierrick Guillaume Date: Fri, 11 Feb 2022 16:13:55 +0100 Subject: [PATCH 1/2] fix(syn-keyword): allow `-` in keyword --- grammar.js | 5 +- src/grammar.json | 12 +- src/parser.c | 528 ++++++++++++++++++++++++--------------- src/tree_sitter/parser.h | 1 - 4 files changed, 332 insertions(+), 214 deletions(-) diff --git a/grammar.js b/grammar.js index 70c34f1..f9fe811 100644 --- a/grammar.js +++ b/grammar.js @@ -1036,16 +1036,17 @@ module.exports = grammar({ ), ), + _syn_keyword_identifier: ($) => /[a-zA-Z0-9\[\]_-]+/, _syn_keyword: ($) => sub_cmd( 'keyword', $.hl_group, repeat(alias($._syn_arguments_keyword, $.syntax_argument)), // The list of keyword cannot be empty, but we can have arguments anywhere on the line - alias(/[a-zA-Z0-9\[\]_]+/, $.keyword), + alias($._syn_keyword_identifier, $.keyword), repeat(choice( alias($._syn_arguments_keyword, $.syntax_argument), - alias(/[a-zA-Z0-9\[\]_]+/, $.keyword), + alias($._syn_keyword_identifier, $.keyword), )), ), diff --git a/src/grammar.json b/src/grammar.json index f6e3d28..50be692 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6211,6 +6211,10 @@ } ] }, + "_syn_keyword_identifier": { + "type": "PATTERN", + "value": "[a-zA-Z0-9\\[\\]_-]+" + }, "_syn_keyword": { "type": "SEQ", "members": [ @@ -6241,8 +6245,8 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "[a-zA-Z0-9\\[\\]_]+" + "type": "SYMBOL", + "name": "_syn_keyword_identifier" }, "named": true, "value": "keyword" @@ -6264,8 +6268,8 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "[a-zA-Z0-9\\[\\]_]+" + "type": "SYMBOL", + "name": "_syn_keyword_identifier" }, "named": true, "value": "keyword" diff --git a/src/parser.c b/src/parser.c index 02b17ce..7732e5f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -312,8 +312,8 @@ enum { anon_sym_lc = 285, aux_sym__syn_pattern_offset_token1 = 286, aux_sym__syn_pattern_offset_token2 = 287, - anon_sym_keyword = 288, - aux_sym__syn_keyword_token1 = 289, + sym__syn_keyword_identifier = 288, + anon_sym_keyword = 289, anon_sym_skip = 290, anon_sym_end = 291, anon_sym_region = 292, @@ -1019,8 +1019,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_lc] = "lc", [aux_sym__syn_pattern_offset_token1] = "_syn_pattern_offset_token1", [aux_sym__syn_pattern_offset_token2] = "_syn_pattern_offset_token2", + [sym__syn_keyword_identifier] = "keyword", [anon_sym_keyword] = "keyword", - [aux_sym__syn_keyword_token1] = "keyword", [anon_sym_skip] = "skip", [anon_sym_end] = "end", [anon_sym_region] = "region", @@ -1726,8 +1726,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_lc] = anon_sym_lc, [aux_sym__syn_pattern_offset_token1] = aux_sym__syn_pattern_offset_token1, [aux_sym__syn_pattern_offset_token2] = aux_sym__syn_pattern_offset_token2, + [sym__syn_keyword_identifier] = sym_keyword, [anon_sym_keyword] = anon_sym_keyword, - [aux_sym__syn_keyword_token1] = sym_keyword, [anon_sym_skip] = anon_sym_skip, [anon_sym_end] = anon_sym_end, [anon_sym_region] = anon_sym_region, @@ -3297,13 +3297,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [anon_sym_keyword] = { + [sym__syn_keyword_identifier] = { .visible = true, - .named = false, + .named = true, }, - [aux_sym__syn_keyword_token1] = { + [anon_sym_keyword] = { .visible = true, - .named = true, + .named = false, }, [anon_sym_skip] = { .visible = true, @@ -8347,7 +8347,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(1740); if (lookahead == '\t' || lookahead == ' ') SKIP(140) - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= ']') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); @@ -8618,7 +8619,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(1508); if (lookahead == '\t' || lookahead == ' ') SKIP(167) - if (('[' <= lookahead && lookahead <= ']')) ADVANCE(1752); + if (lookahead == '-' || + ('[' <= lookahead && lookahead <= ']')) ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16100,7 +16102,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1350: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'a') ADVANCE(1509); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16110,7 +16113,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1351: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'a') ADVANCE(1466); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16120,7 +16124,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1352: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'a') ADVANCE(1424); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16130,7 +16135,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1353: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'a') ADVANCE(1446); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16173,7 +16179,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1358: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'a') ADVANCE(1514); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16242,7 +16249,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'c') ADVANCE(1413); if (lookahead == 'o') ADVANCE(1465); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16270,7 +16278,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'c') ADVANCE(1399); if (lookahead == 't') ADVANCE(1352); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16346,7 +16355,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1378: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'd') ADVANCE(1637); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16422,7 +16432,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1387: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'e') ADVANCE(1545); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16434,7 +16445,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(1458); if (lookahead == 'n') ADVANCE(1445); if (lookahead == 'w') ADVANCE(1415); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16444,7 +16456,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1389: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'e') ADVANCE(1378); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16454,7 +16467,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1390: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'e') ADVANCE(1658); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16520,7 +16534,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1398: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'e') ADVANCE(1475); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16530,7 +16545,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1399: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'e') ADVANCE(1353); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16629,7 +16645,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1411: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'g') ADVANCE(1510); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16647,7 +16664,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1413: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'h') ADVANCE(1350); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16665,7 +16683,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1415: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'h') ADVANCE(1425); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16723,7 +16742,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1422: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'i') ADVANCE(1499); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16741,7 +16761,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1424: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'i') ADVANCE(1472); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16751,7 +16772,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1425: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'i') ADVANCE(1534); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16833,7 +16855,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1435: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'k') ADVANCE(1422); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16916,7 +16939,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1445: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'l') ADVANCE(1663); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16926,7 +16950,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1446: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'l') ADVANCE(1627); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17024,7 +17049,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1458: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'm') ADVANCE(1501); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17083,7 +17109,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1465: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'n') ADVANCE(1369); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17093,7 +17120,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1466: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'n') ADVANCE(1523); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17103,7 +17131,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1467: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'n') ADVANCE(1643); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17145,7 +17174,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1472: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'n') ADVANCE(1389); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17171,7 +17201,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1475: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'n') ADVANCE(1531); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17285,7 +17316,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1489: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'o') ADVANCE(1539); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17367,7 +17399,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1499: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'p') ADVANCE(1388); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17377,7 +17410,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1500: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'p') ADVANCE(1648); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17387,7 +17421,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1501: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'p') ADVANCE(1530); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17413,7 +17448,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1504: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'p') ADVANCE(1358); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17447,7 +17483,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1508: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'r') ADVANCE(1351); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17457,7 +17494,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1509: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'r') ADVANCE(1633); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17467,7 +17505,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1510: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'r') ADVANCE(1489); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17501,7 +17540,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1514: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'r') ADVANCE(1398); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17575,7 +17615,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1523: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 's') ADVANCE(1504); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17625,7 +17666,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1529: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 't') ADVANCE(1411); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17635,7 +17677,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1530: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 't') ADVANCE(1551); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17645,7 +17688,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1531: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 't') ADVANCE(1653); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17671,7 +17715,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1534: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 't') ADVANCE(1390); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17713,7 +17758,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1539: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'u') ADVANCE(1500); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17763,7 +17809,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1545: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'x') ADVANCE(1529); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17813,7 +17860,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1551: ACCEPT_TOKEN(sym_hl_group); if (lookahead == 'y') ADVANCE(1668); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -17822,7 +17870,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1552: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -18356,7 +18405,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1627: ACCEPT_TOKEN(anon_sym_conceal); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -18390,7 +18440,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1631: ACCEPT_TOKEN(anon_sym_conceal); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || @@ -18401,7 +18452,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1633: ACCEPT_TOKEN(anon_sym_cchar); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -18425,7 +18477,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1636: ACCEPT_TOKEN(anon_sym_cchar); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || @@ -18434,7 +18487,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1637: ACCEPT_TOKEN(anon_sym_contained); if (lookahead == 'i') ADVANCE(1467); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -18444,7 +18498,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1638: ACCEPT_TOKEN(anon_sym_contained); if (lookahead == 'i') ADVANCE(1732); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || @@ -18477,7 +18532,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1643: ACCEPT_TOKEN(anon_sym_containedin); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -18501,7 +18557,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1646: ACCEPT_TOKEN(anon_sym_containedin); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || @@ -18512,7 +18569,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1648: ACCEPT_TOKEN(anon_sym_nextgroup); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -18536,7 +18594,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1651: ACCEPT_TOKEN(anon_sym_nextgroup); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || @@ -18547,7 +18606,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1653: ACCEPT_TOKEN(anon_sym_transparent); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -18571,7 +18631,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1656: ACCEPT_TOKEN(anon_sym_transparent); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || @@ -18582,7 +18643,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1658: ACCEPT_TOKEN(anon_sym_skipwhite); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -18606,7 +18668,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1661: ACCEPT_TOKEN(anon_sym_skipwhite); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || @@ -18617,7 +18680,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1663: ACCEPT_TOKEN(anon_sym_skipnl); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -18641,7 +18705,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1666: ACCEPT_TOKEN(anon_sym_skipnl); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || @@ -18652,7 +18717,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1668: ACCEPT_TOKEN(anon_sym_skipempty); - if (lookahead == '[' || + if (lookahead == '-' || + lookahead == '[' || lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -18676,7 +18742,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1671: ACCEPT_TOKEN(anon_sym_skipempty); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || @@ -18877,426 +18944,473 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__syn_pattern_offset_token2); END_STATE(); case 1706: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'a') ADVANCE(1741); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1707: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'a') ADVANCE(1731); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1708: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'a') ADVANCE(1724); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1709: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'a') ADVANCE(1728); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1710: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'a') ADVANCE(1743); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1711: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'c') ADVANCE(1721); if (lookahead == 'o') ADVANCE(1730); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1712: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'c') ADVANCE(1719); if (lookahead == 't') ADVANCE(1708); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1713: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'd') ADVANCE(1638); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1714: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'e') ADVANCE(1750); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1715: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'e') ADVANCE(1729); if (lookahead == 'n') ADVANCE(1727); if (lookahead == 'w') ADVANCE(1722); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1716: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'e') ADVANCE(1713); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1717: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'e') ADVANCE(1661); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1718: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'e') ADVANCE(1734); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1719: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'e') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1720: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'g') ADVANCE(1742); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1721: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'h') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1722: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'h') ADVANCE(1725); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1723: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'i') ADVANCE(1736); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1724: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'i') ADVANCE(1733); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1725: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'i') ADVANCE(1748); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1726: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'k') ADVANCE(1723); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1727: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'l') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1728: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'l') ADVANCE(1631); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1729: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'm') ADVANCE(1738); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1730: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'n') ADVANCE(1712); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1731: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'n') ADVANCE(1744); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1732: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'n') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1733: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'n') ADVANCE(1716); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1734: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'n') ADVANCE(1747); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1735: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'o') ADVANCE(1749); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1736: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'p') ADVANCE(1715); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1737: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'p') ADVANCE(1651); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1738: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'p') ADVANCE(1746); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1739: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'p') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1740: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'r') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1741: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'r') ADVANCE(1636); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1742: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'r') ADVANCE(1735); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1743: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'r') ADVANCE(1718); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1744: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 's') ADVANCE(1739); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1745: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 't') ADVANCE(1720); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1746: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 't') ADVANCE(1751); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1747: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 't') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1748: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 't') ADVANCE(1717); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1749: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'u') ADVANCE(1737); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1750: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'x') ADVANCE(1745); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1751: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); + ACCEPT_TOKEN(sym__syn_keyword_identifier); if (lookahead == 'y') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); END_STATE(); case 1752: - ACCEPT_TOKEN(aux_sym__syn_keyword_token1); - if (('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(sym__syn_keyword_identifier); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '[') || lookahead == ']' || lookahead == '_' || @@ -104232,7 +104346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [55371] = 3, ACTIONS(3), 1, sym__line_continuation, @@ -104766,7 +104880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [56043] = 4, ACTIONS(3), 1, sym__line_continuation, @@ -105377,7 +105491,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4221), 1, anon_sym_cchar, ACTIONS(4225), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1399), 1, aux_sym__syn_keyword_repeat2, STATE(1580), 1, @@ -105436,7 +105550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [56876] = 5, ACTIONS(3), 1, sym__line_continuation, @@ -105457,14 +105571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [56902] = 8, ACTIONS(3), 1, sym__line_continuation, ACTIONS(4221), 1, anon_sym_cchar, ACTIONS(4236), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1353), 1, aux_sym__syn_keyword_repeat2, STATE(1580), 1, @@ -105531,7 +105645,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4260), 1, anon_sym_cchar, ACTIONS(4266), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1353), 1, aux_sym__syn_keyword_repeat2, STATE(1580), 1, @@ -105741,7 +105855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [57262] = 5, ACTIONS(3), 1, sym__line_continuation, @@ -105762,7 +105876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [57288] = 5, ACTIONS(3), 1, sym__line_continuation, @@ -106137,7 +106251,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4392), 1, anon_sym_cchar, ACTIONS(4396), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1382), 1, aux_sym__syn_keyword_repeat2, STATE(1560), 1, @@ -106161,7 +106275,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4401), 1, anon_sym_cchar, ACTIONS(4407), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1382), 1, aux_sym__syn_keyword_repeat2, STATE(1560), 1, @@ -106244,7 +106358,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4392), 1, anon_sym_cchar, ACTIONS(4396), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1382), 1, aux_sym__syn_keyword_repeat2, STATE(1560), 1, @@ -106268,7 +106382,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4392), 1, anon_sym_cchar, ACTIONS(4412), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1381), 1, aux_sym__syn_keyword_repeat2, STATE(1560), 1, @@ -106447,14 +106561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [58162] = 8, ACTIONS(3), 1, sym__line_continuation, ACTIONS(4392), 1, anon_sym_cchar, ACTIONS(4439), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1386), 1, aux_sym__syn_keyword_repeat2, STATE(1560), 1, @@ -106547,7 +106661,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4221), 1, anon_sym_cchar, ACTIONS(4236), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1353), 1, aux_sym__syn_keyword_repeat2, STATE(1580), 1, @@ -106585,14 +106699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [58342] = 8, ACTIONS(3), 1, sym__line_continuation, ACTIONS(4221), 1, anon_sym_cchar, ACTIONS(4451), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1350), 1, aux_sym__syn_keyword_repeat2, STATE(1580), 1, @@ -106765,7 +106879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [58574] = 5, ACTIONS(3), 1, sym__line_continuation, @@ -106786,7 +106900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [58600] = 5, ACTIONS(3), 1, sym__line_continuation, @@ -106807,7 +106921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [58626] = 5, ACTIONS(3), 1, sym__line_continuation, @@ -106828,7 +106942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [58652] = 8, ACTIONS(3), 1, sym__line_continuation, @@ -106933,7 +107047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [58787] = 5, ACTIONS(3), 1, sym__line_continuation, @@ -107034,7 +107148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [58914] = 6, ACTIONS(3), 1, sym__line_continuation, @@ -107692,7 +107806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [59750] = 6, ACTIONS(3), 1, sym__line_continuation, @@ -107816,7 +107930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [59908] = 10, ACTIONS(3), 1, sym__line_continuation, @@ -108049,7 +108163,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4392), 1, anon_sym_cchar, ACTIONS(4658), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1579), 1, aux_sym__syn_keyword_repeat1, STATE(1664), 1, @@ -108080,7 +108194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [60250] = 3, ACTIONS(3), 1, sym__line_continuation, @@ -108121,7 +108235,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4392), 1, anon_sym_cchar, ACTIONS(4660), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1546), 1, aux_sym__syn_keyword_repeat1, STATE(1664), 1, @@ -108547,7 +108661,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4392), 1, anon_sym_cchar, ACTIONS(4710), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1475), 1, aux_sym__syn_keyword_repeat1, STATE(1664), 1, @@ -109597,7 +109711,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4811), 1, anon_sym_cchar, ACTIONS(4817), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1546), 1, aux_sym__syn_keyword_repeat1, STATE(1664), 1, @@ -109723,7 +109837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [62416] = 9, ACTIONS(3), 1, sym__line_continuation, @@ -109804,7 +109918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [62522] = 8, ACTIONS(3), 1, sym__line_continuation, @@ -109885,7 +109999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [62628] = 6, ACTIONS(3), 1, sym__line_continuation, @@ -110238,7 +110352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [63096] = 6, ACTIONS(3), 1, sym__line_continuation, @@ -110265,7 +110379,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4392), 1, anon_sym_cchar, ACTIONS(4905), 1, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, STATE(1546), 1, aux_sym__syn_keyword_repeat1, STATE(1664), 1, @@ -110296,7 +110410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [63170] = 9, ACTIONS(3), 1, sym__line_continuation, @@ -111938,7 +112052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - aux_sym__syn_keyword_token1, + sym__syn_keyword_identifier, [65351] = 3, ACTIONS(3), 1, sym__line_continuation, diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 2b14ac1..cbbc7b4 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -123,7 +123,6 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; - const TSStateId *primary_state_ids; }; /* From 92f609fbfe55ed1364fef98a3c6ca31c3a348717 Mon Sep 17 00:00:00 2001 From: Pierrick Guillaume Date: Wed, 23 Feb 2022 23:32:42 +0100 Subject: [PATCH 2/2] fix(command): fix syntax keyword command Allow any non-blank printable character in keyword Fix keyword recognized as syntax_argument --- grammar.js | 19 +- src/grammar.json | 82 +- src/node-types.json | 17 +- src/parser.c | 150107 ++++++++++++++-------------- test/corpus/syntax_statement.txt | 38 + 5 files changed, 75428 insertions(+), 74835 deletions(-) diff --git a/grammar.js b/grammar.js index f9fe811..296d162 100644 --- a/grammar.js +++ b/grammar.js @@ -1036,7 +1036,24 @@ module.exports = grammar({ ), ), - _syn_keyword_identifier: ($) => /[a-zA-Z0-9\[\]_-]+/, + // Any ascii non-blanck printable character (no unicode) + _syn_keyword_identifier: ($) => + choice( + seq(/[!-~]/, repeat(token.immediate(/[!-~]/))), + seq( + choice( + 'conceal', + 'contained', + 'transparent', + 'skipwhite', + 'skipnl', + 'skipempty', + ), + token.immediate('['), + repeat(token.immediate(/[!-~]/)), + token.immediate(']'), + ), + ), _syn_keyword: ($) => sub_cmd( 'keyword', diff --git a/src/grammar.json b/src/grammar.json index 50be692..b291ca7 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6212,8 +6212,86 @@ ] }, "_syn_keyword_identifier": { - "type": "PATTERN", - "value": "[a-zA-Z0-9\\[\\]_-]+" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[!-~]" + }, + { + "type": "REPEAT", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[!-~]" + } + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "conceal" + }, + { + "type": "STRING", + "value": "contained" + }, + { + "type": "STRING", + "value": "transparent" + }, + { + "type": "STRING", + "value": "skipwhite" + }, + { + "type": "STRING", + "value": "skipnl" + }, + { + "type": "STRING", + "value": "skipempty" + } + ] + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "[" + } + }, + { + "type": "REPEAT", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[!-~]" + } + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "]" + } + } + ] + } + ] }, "_syn_keyword": { "type": "SEQ", diff --git a/src/node-types.json b/src/node-types.json index 6700400..862c578 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3510,6 +3510,11 @@ "named": true, "fields": {} }, + { + "type": "keyword", + "named": true, + "fields": {} + }, { "type": "lambda_expression", "named": true, @@ -7962,19 +7967,19 @@ }, { "type": "file", - "named": true + "named": false }, { "type": "file", - "named": false + "named": true }, { "type": "filetype", - "named": true + "named": false }, { "type": "filetype", - "named": false + "named": true }, { "type": "finally", @@ -8136,10 +8141,6 @@ "type": "keyword", "named": false }, - { - "type": "keyword", - "named": true - }, { "type": "koi8", "named": false diff --git a/src/parser.c b/src/parser.c index 7732e5f..a2b0044 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 3245 +#define STATE_COUNT 3311 #define LARGE_STATE_COUNT 266 -#define SYMBOL_COUNT 696 +#define SYMBOL_COUNT 701 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 457 +#define TOKEN_COUNT 460 #define EXTERNAL_TOKEN_COUNT 91 #define FIELD_COUNT 33 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -312,422 +312,427 @@ enum { anon_sym_lc = 285, aux_sym__syn_pattern_offset_token1 = 286, aux_sym__syn_pattern_offset_token2 = 287, - sym__syn_keyword_identifier = 288, - anon_sym_keyword = 289, - anon_sym_skip = 290, - anon_sym_end = 291, - anon_sym_region = 292, - anon_sym_cluster = 293, - anon_sym_include = 294, - anon_sym_minlines = 295, - anon_sym_maxlines = 296, - aux_sym__syn_sync_lines_token1 = 297, - anon_sym_sync = 298, - anon_sym_linebreaks = 299, - anon_sym_fromstart = 300, - anon_sym_ccomment = 301, - anon_sym_lines = 302, - anon_sym_grouphere = 303, - anon_sym_groupthere = 304, - anon_sym_linecont = 305, - anon_sym_list = 306, - anon_sym_icon = 307, - anon_sym_linehl = 308, - anon_sym_numhl = 309, - anon_sym_text = 310, - anon_sym_texthl = 311, - anon_sym_culhl = 312, - anon_sym_define = 313, - anon_sym_undefine = 314, - anon_sym_line = 315, - anon_sym_name = 316, - anon_sym_buffer = 317, - anon_sym_group = 318, - anon_sym_priority = 319, - anon_sym_file = 320, - anon_sym_STAR = 321, - anon_sym_place = 322, - anon_sym_STAR2 = 323, - anon_sym_unplace = 324, - anon_sym_jump = 325, - anon_sym_POUND = 326, - anon_sym_PIPE_PIPE = 327, - anon_sym_AMP_AMP = 328, - anon_sym_DASH = 329, - anon_sym_DOT_DOT = 330, - anon_sym_is = 331, - anon_sym_isnot = 332, - anon_sym_EQ_EQ = 333, - anon_sym_BANG_EQ = 334, - anon_sym_GT2 = 335, - anon_sym_GT_EQ = 336, - anon_sym_LT_EQ = 337, - anon_sym_EQ_TILDE = 338, - anon_sym_BANG_TILDE = 339, - anon_sym_BANG = 340, - sym_float_literal = 341, - sym_integer_literal = 342, - anon_sym_LBRACK = 343, - anon_sym_RBRACK = 344, - aux_sym_filename_token1 = 345, - aux_sym_filename_token2 = 346, - aux_sym_filename_token3 = 347, - aux_sym_filename_token4 = 348, - aux_sym_filename_token5 = 349, - aux_sym_filename_token6 = 350, - aux_sym_filename_token7 = 351, - aux_sym_filename_token8 = 352, - aux_sym_pattern_multi_token1 = 353, - aux_sym_pattern_multi_token2 = 354, - aux_sym_pattern_multi_token3 = 355, - aux_sym__pattern_ordinary_atom_token1 = 356, - aux_sym__pattern_ordinary_atom_token2 = 357, - anon_sym_BSLASH_LPAREN = 358, - anon_sym_BSLASH_RPAREN = 359, - anon_sym_BSLASH_PERCENT_LPAREN = 360, - anon_sym_BSLASHz_LPAREN = 361, - sym_register = 362, - sym_literal_key = 363, - anon_sym_POUND_LBRACE = 364, - anon_sym_DASH_GT = 365, - sym__no = 366, - sym__inv = 367, - sym__newline_or_pipe = 368, - sym__line_continuation = 369, - sym__script_heredoc_marker = 370, - sym__let_heredoc_marker = 371, - sym__heredoc_end = 372, - sym__separator_first = 373, - sym__separator = 374, - sym__scope_dict = 375, - sym_scope = 376, - sym_string_literal = 377, - sym_comment = 378, - sym__bang_filter = 379, - sym__function = 380, - sym__endfunction = 381, - sym__for = 382, - sym__endfor = 383, - sym__while = 384, - sym__endwhile = 385, - sym__if = 386, - sym__elseif = 387, - sym__else = 388, - sym__endif = 389, - sym__try = 390, - sym__catch = 391, - sym__finally = 392, - sym__endtry = 393, - sym__const = 394, - sym__normal = 395, - sym__return = 396, - sym__perl = 397, - sym__lua = 398, - sym__ruby = 399, - sym__python = 400, - sym__throw = 401, - sym__execute = 402, - sym__autocmd = 403, - sym__silent = 404, - sym__echo = 405, - sym__echon = 406, - sym__echohl = 407, - sym__echomsg = 408, - sym__echoerr = 409, - sym__map = 410, - sym__nmap = 411, - sym__vmap = 412, - sym__xmap = 413, - sym__smap = 414, - sym__omap = 415, - sym__imap = 416, - sym__lmap = 417, - sym__cmap = 418, - sym__tmap = 419, - sym__noremap = 420, - sym__vnoremap = 421, - sym__nnoremap = 422, - sym__xnoremap = 423, - sym__snoremap = 424, - sym__onoremap = 425, - sym__inoremap = 426, - sym__lnoremap = 427, - sym__cnoremap = 428, - sym__tnoremap = 429, - sym__augroup = 430, - sym__highlight = 431, - sym__default = 432, - sym__syntax = 433, - sym__set = 434, - sym__setlocal = 435, - sym__setfiletype = 436, - sym__browse = 437, - sym__options = 438, - sym__startinsert = 439, - sym__stopinsert = 440, - sym__scriptencoding = 441, - sym__source = 442, - sym__global = 443, - sym__colorscheme = 444, - sym__comclear = 445, - sym__delcommand = 446, - sym__runtime = 447, - sym__wincmd = 448, - sym__sign = 449, - sym__filetype = 450, - sym__let = 451, - sym__unlet = 452, - sym__call = 453, - sym__break = 454, - sym__continue = 455, - sym_unknown_command_name = 456, - sym_script_file = 457, - sym__cmd_separator = 458, - aux_sym__separated_statements = 459, - sym__statement = 460, - sym_unknown_builtin_statement = 461, - sym_return_statement = 462, - sym_break_statement = 463, - sym_continue_statement = 464, - sym_scope_dict = 465, - sym_normal_statement = 466, - sym__filetype_immediate = 467, - sym_filetypes = 468, - sym_setfiletype_statement = 469, - sym_options_statement = 470, - sym_startinsert_statement = 471, - sym_stopinsert_statement = 472, - sym_encoding = 473, - sym_scriptencoding_statement = 474, - sym_comclear_statement = 475, - sym_delcommand_statement = 476, - sym__runtime_where = 477, - sym_runtime_statement = 478, - sym_wincmd_statement = 479, - sym_source_statement = 480, - sym_global_statement = 481, - sym__filetype_state = 482, - sym_filetype_statement = 483, - sym_colorscheme_statement = 484, - sym_lua_statement = 485, - sym_ruby_statement = 486, - sym_python_statement = 487, - sym_perl_statement = 488, - sym_script = 489, - sym_for_loop = 490, - sym_while_loop = 491, - sym_if_statement = 492, - sym_elseif_statement = 493, - sym_else_statement = 494, - sym_try_statement = 495, - sym__au_pattern = 496, - sym_catch_statement = 497, - sym_finally_statement = 498, - sym_throw_statement = 499, - sym_autocmd_statement = 500, - sym_augroup_statement = 501, - sym_au_event_list = 502, - sym__bang_filter_bangs = 503, - sym__bang_filter_command_argument = 504, - sym__bang_filter_command = 505, - sym_bang_filter_statement = 506, - sym_scoped_identifier = 507, - sym_argument = 508, - sym__curly_braces_name_expression = 509, - sym__immediate_curly_braces_name_expression = 510, - sym_identifier = 511, - sym__ident = 512, - sym__let_operator = 513, - sym__assignment_variable = 514, - sym__let_assignment = 515, - sym_let_statement = 516, - sym__const_assignment = 517, - sym_const_statement = 518, - sym__let_heredoc = 519, - sym__let_heredoc_parameter = 520, - sym_option_name = 521, - sym_no_option = 522, - sym_inv_option = 523, - sym_default_option = 524, - sym__set_option = 525, - sym__set_operator = 526, - sym__set_rhs = 527, - sym_set_item = 528, - sym_set_statement = 529, - sym_setlocal_statement = 530, - sym_unlet_statement = 531, - sym_call_statement = 532, - sym_echo_statement = 533, - sym_echon_statement = 534, - sym_echohl_statement = 535, - sym_echomsg_statement = 536, - sym_echoerr_statement = 537, - sym_execute_statement = 538, - sym_silent_statement = 539, - sym_user_command = 540, - sym_command_argument = 541, - sym_function_definition = 542, - sym_function_declaration = 543, - sym_parameters = 544, - sym_default_parameter = 545, - sym_at = 546, - sym_range_statement = 547, - sym__range = 548, - sym__range_explicit = 549, - sym__range_marker = 550, - sym_current_line = 551, - sym_next_line = 552, - sym_last_line = 553, - sym_previous_pattern = 554, - sym_register_statement = 555, - sym_map_statement = 556, - sym__map_definition = 557, - sym__keycode_in = 558, - sym__immediate_keycode = 559, - sym_keycode = 560, - sym__map_lhs = 561, - sym__map_rhs = 562, - sym__hl_body_link = 563, - sym__hl_body_clear = 564, - sym__hl_body_none = 565, - sym__hl_attr_list = 566, - sym__hl_key_cterm = 567, - aux_sym__hl_term_list = 568, - sym__hl_key_start_stop = 569, - sym__hl_key_ctermfg_ctermbg = 570, - sym__hl_key_gui = 571, - sym__hl_quoted_name = 572, - sym__hl_color_name = 573, - sym__hl_key_gui_color = 574, - sym__hl_key_font = 575, - sym_hl_attribute = 576, - sym__hl_body_keys = 577, - sym__hl_body = 578, - sym_highlight_statement = 579, - sym__syn_enable = 580, - sym__syn_case = 581, - sym__syn_spell = 582, - sym__syn_foldlevel = 583, - sym__syn_iskeyword = 584, - sym__syn_conceal = 585, - sym__syn_hl_pattern = 586, - sym_hl_groups = 587, - sym__syn_arguments_keyword = 588, - sym__syn_arguments_match = 589, - sym__syn_arguments_region = 590, - sym__syn_arguments_cluster = 591, - sym__syn_pattern_offset = 592, - sym__syn_keyword = 593, - sym__syn_match = 594, - sym__syn_region_start = 595, - sym__syn_region_skip = 596, - sym__syn_region_end = 597, - sym__syn_region = 598, - sym__syn_cluster = 599, - sym__syn_include = 600, - sym__syn_sync_lines = 601, - sym__syn_sync = 602, - sym__syn_list = 603, - sym__syn_clear = 604, - sym_syntax_statement = 605, - sym__sign_name = 606, - sym__sign_define_arg_text = 607, - sym__sign_define_argument = 608, - sym__sign_define = 609, - sym__sign_undefine = 610, - sym__sign_list = 611, - sym__sign_place_place_argument = 612, - sym__sign_place_place = 613, - sym__sign_place_list_argument = 614, - aux_sym__sign_place_list = 615, - sym__sign_place = 616, - sym__sign_unplace_cursor_argument = 617, - sym__sign_unplace_cursor = 618, - sym__sign_unplace_id_argument = 619, - sym__sign_unplace_id = 620, - sym__sign_unplace = 621, - sym__sign_jump_argument = 622, - sym__sign_jump = 623, - sym_sign_statement = 624, - sym__variable = 625, - sym__expression = 626, - sym_ternary_expression = 627, - sym_match_case = 628, - sym_binary_operation = 629, - sym_unary_operation = 630, - sym_list = 631, - sym_list_assignment = 632, - sym_index_expression = 633, - sym_slice_expression = 634, - sym_field_expression = 635, - sym_call_expression = 636, - sym_filename = 637, - sym_pattern_multi = 638, - aux_sym__pattern_ordinary_atom = 639, - sym__pattern_atom = 640, - sym__pattern_piece = 641, - aux_sym__pattern_concat = 642, - sym__pattern_branch = 643, - sym_pattern = 644, - sym_env_variable = 645, - sym_option = 646, - sym_dictionnary_entry = 647, - sym_dictionnary = 648, - sym__literal_dictionary_entry = 649, - sym_literal_dictionary = 650, - sym_lambda_expression = 651, - aux_sym__statement_repeat1 = 652, - aux_sym_unknown_builtin_statement_repeat1 = 653, - aux_sym_filetypes_repeat1 = 654, - aux_sym_runtime_statement_repeat1 = 655, - aux_sym_script_repeat1 = 656, - aux_sym_if_statement_repeat1 = 657, - aux_sym_try_statement_repeat1 = 658, - aux_sym_autocmd_statement_repeat1 = 659, - aux_sym_au_event_list_repeat1 = 660, - aux_sym__bang_filter_command_argument_repeat1 = 661, - aux_sym__bang_filter_command_repeat1 = 662, - aux_sym_identifier_repeat1 = 663, - aux_sym_let_statement_repeat1 = 664, - aux_sym__let_heredoc_repeat1 = 665, - aux_sym_set_statement_repeat1 = 666, - aux_sym_unlet_statement_repeat1 = 667, - aux_sym_function_definition_repeat1 = 668, - aux_sym_parameters_repeat1 = 669, - aux_sym_parameters_repeat2 = 670, - aux_sym_map_statement_repeat1 = 671, - aux_sym__map_lhs_repeat1 = 672, - aux_sym__map_rhs_repeat1 = 673, - aux_sym__hl_attr_list_repeat1 = 674, - aux_sym__hl_body_keys_repeat1 = 675, - aux_sym_hl_groups_repeat1 = 676, - aux_sym__syn_keyword_repeat1 = 677, - aux_sym__syn_keyword_repeat2 = 678, - aux_sym__syn_match_repeat1 = 679, - aux_sym__syn_match_repeat2 = 680, - aux_sym__syn_region_repeat1 = 681, - aux_sym__syn_region_repeat2 = 682, - aux_sym__syn_cluster_repeat1 = 683, - aux_sym__syn_sync_repeat1 = 684, - aux_sym__sign_define_repeat1 = 685, - aux_sym__sign_place_place_repeat1 = 686, - aux_sym__sign_unplace_id_repeat1 = 687, - aux_sym__sign_jump_repeat1 = 688, - aux_sym_list_repeat1 = 689, - aux_sym_filename_repeat1 = 690, - aux_sym__pattern_ordinary_atom_repeat1 = 691, - aux_sym__pattern_branch_repeat1 = 692, - aux_sym_pattern_repeat1 = 693, - aux_sym_dictionnary_repeat1 = 694, - aux_sym_literal_dictionary_repeat1 = 695, - alias_sym_arguments = 696, - alias_sym_augroup_name = 697, - alias_sym_body = 698, - alias_sym_file = 699, - alias_sym_filenames = 700, - alias_sym_filter_command = 701, - alias_sym_name = 702, - alias_sym_range = 703, + aux_sym__syn_keyword_identifier_token1 = 288, + aux_sym__syn_keyword_identifier_token2 = 289, + anon_sym_LBRACK = 290, + anon_sym_RBRACK = 291, + anon_sym_keyword = 292, + anon_sym_skip = 293, + anon_sym_end = 294, + anon_sym_region = 295, + anon_sym_cluster = 296, + anon_sym_include = 297, + anon_sym_minlines = 298, + anon_sym_maxlines = 299, + aux_sym__syn_sync_lines_token1 = 300, + anon_sym_sync = 301, + anon_sym_linebreaks = 302, + anon_sym_fromstart = 303, + anon_sym_ccomment = 304, + anon_sym_lines = 305, + anon_sym_grouphere = 306, + anon_sym_groupthere = 307, + anon_sym_linecont = 308, + anon_sym_list = 309, + anon_sym_icon = 310, + anon_sym_linehl = 311, + anon_sym_numhl = 312, + anon_sym_text = 313, + anon_sym_texthl = 314, + anon_sym_culhl = 315, + anon_sym_define = 316, + anon_sym_undefine = 317, + anon_sym_line = 318, + anon_sym_name = 319, + anon_sym_buffer = 320, + anon_sym_group = 321, + anon_sym_priority = 322, + anon_sym_file = 323, + anon_sym_STAR = 324, + anon_sym_place = 325, + anon_sym_STAR2 = 326, + anon_sym_unplace = 327, + anon_sym_jump = 328, + anon_sym_POUND = 329, + anon_sym_PIPE_PIPE = 330, + anon_sym_AMP_AMP = 331, + anon_sym_DASH = 332, + anon_sym_DOT_DOT = 333, + anon_sym_is = 334, + anon_sym_isnot = 335, + anon_sym_EQ_EQ = 336, + anon_sym_BANG_EQ = 337, + anon_sym_GT2 = 338, + anon_sym_GT_EQ = 339, + anon_sym_LT_EQ = 340, + anon_sym_EQ_TILDE = 341, + anon_sym_BANG_TILDE = 342, + anon_sym_BANG = 343, + sym_float_literal = 344, + sym_integer_literal = 345, + anon_sym_LBRACK2 = 346, + anon_sym_RBRACK2 = 347, + aux_sym_filename_token1 = 348, + aux_sym_filename_token2 = 349, + aux_sym_filename_token3 = 350, + aux_sym_filename_token4 = 351, + aux_sym_filename_token5 = 352, + aux_sym_filename_token6 = 353, + aux_sym_filename_token7 = 354, + aux_sym_filename_token8 = 355, + aux_sym_pattern_multi_token1 = 356, + aux_sym_pattern_multi_token2 = 357, + aux_sym_pattern_multi_token3 = 358, + aux_sym__pattern_ordinary_atom_token1 = 359, + aux_sym__pattern_ordinary_atom_token2 = 360, + anon_sym_BSLASH_LPAREN = 361, + anon_sym_BSLASH_RPAREN = 362, + anon_sym_BSLASH_PERCENT_LPAREN = 363, + anon_sym_BSLASHz_LPAREN = 364, + sym_register = 365, + sym_literal_key = 366, + anon_sym_POUND_LBRACE = 367, + anon_sym_DASH_GT = 368, + sym__no = 369, + sym__inv = 370, + sym__newline_or_pipe = 371, + sym__line_continuation = 372, + sym__script_heredoc_marker = 373, + sym__let_heredoc_marker = 374, + sym__heredoc_end = 375, + sym__separator_first = 376, + sym__separator = 377, + sym__scope_dict = 378, + sym_scope = 379, + sym_string_literal = 380, + sym_comment = 381, + sym__bang_filter = 382, + sym__function = 383, + sym__endfunction = 384, + sym__for = 385, + sym__endfor = 386, + sym__while = 387, + sym__endwhile = 388, + sym__if = 389, + sym__elseif = 390, + sym__else = 391, + sym__endif = 392, + sym__try = 393, + sym__catch = 394, + sym__finally = 395, + sym__endtry = 396, + sym__const = 397, + sym__normal = 398, + sym__return = 399, + sym__perl = 400, + sym__lua = 401, + sym__ruby = 402, + sym__python = 403, + sym__throw = 404, + sym__execute = 405, + sym__autocmd = 406, + sym__silent = 407, + sym__echo = 408, + sym__echon = 409, + sym__echohl = 410, + sym__echomsg = 411, + sym__echoerr = 412, + sym__map = 413, + sym__nmap = 414, + sym__vmap = 415, + sym__xmap = 416, + sym__smap = 417, + sym__omap = 418, + sym__imap = 419, + sym__lmap = 420, + sym__cmap = 421, + sym__tmap = 422, + sym__noremap = 423, + sym__vnoremap = 424, + sym__nnoremap = 425, + sym__xnoremap = 426, + sym__snoremap = 427, + sym__onoremap = 428, + sym__inoremap = 429, + sym__lnoremap = 430, + sym__cnoremap = 431, + sym__tnoremap = 432, + sym__augroup = 433, + sym__highlight = 434, + sym__default = 435, + sym__syntax = 436, + sym__set = 437, + sym__setlocal = 438, + sym__setfiletype = 439, + sym__browse = 440, + sym__options = 441, + sym__startinsert = 442, + sym__stopinsert = 443, + sym__scriptencoding = 444, + sym__source = 445, + sym__global = 446, + sym__colorscheme = 447, + sym__comclear = 448, + sym__delcommand = 449, + sym__runtime = 450, + sym__wincmd = 451, + sym__sign = 452, + sym__filetype = 453, + sym__let = 454, + sym__unlet = 455, + sym__call = 456, + sym__break = 457, + sym__continue = 458, + sym_unknown_command_name = 459, + sym_script_file = 460, + sym__cmd_separator = 461, + aux_sym__separated_statements = 462, + sym__statement = 463, + sym_unknown_builtin_statement = 464, + sym_return_statement = 465, + sym_break_statement = 466, + sym_continue_statement = 467, + sym_scope_dict = 468, + sym_normal_statement = 469, + sym__filetype_immediate = 470, + sym_filetypes = 471, + sym_setfiletype_statement = 472, + sym_options_statement = 473, + sym_startinsert_statement = 474, + sym_stopinsert_statement = 475, + sym_encoding = 476, + sym_scriptencoding_statement = 477, + sym_comclear_statement = 478, + sym_delcommand_statement = 479, + sym__runtime_where = 480, + sym_runtime_statement = 481, + sym_wincmd_statement = 482, + sym_source_statement = 483, + sym_global_statement = 484, + sym__filetype_state = 485, + sym_filetype_statement = 486, + sym_colorscheme_statement = 487, + sym_lua_statement = 488, + sym_ruby_statement = 489, + sym_python_statement = 490, + sym_perl_statement = 491, + sym_script = 492, + sym_for_loop = 493, + sym_while_loop = 494, + sym_if_statement = 495, + sym_elseif_statement = 496, + sym_else_statement = 497, + sym_try_statement = 498, + sym__au_pattern = 499, + sym_catch_statement = 500, + sym_finally_statement = 501, + sym_throw_statement = 502, + sym_autocmd_statement = 503, + sym_augroup_statement = 504, + sym_au_event_list = 505, + sym__bang_filter_bangs = 506, + sym__bang_filter_command_argument = 507, + sym__bang_filter_command = 508, + sym_bang_filter_statement = 509, + sym_scoped_identifier = 510, + sym_argument = 511, + sym__curly_braces_name_expression = 512, + sym__immediate_curly_braces_name_expression = 513, + sym_identifier = 514, + sym__ident = 515, + sym__let_operator = 516, + sym__assignment_variable = 517, + sym__let_assignment = 518, + sym_let_statement = 519, + sym__const_assignment = 520, + sym_const_statement = 521, + sym__let_heredoc = 522, + sym__let_heredoc_parameter = 523, + sym_option_name = 524, + sym_no_option = 525, + sym_inv_option = 526, + sym_default_option = 527, + sym__set_option = 528, + sym__set_operator = 529, + sym__set_rhs = 530, + sym_set_item = 531, + sym_set_statement = 532, + sym_setlocal_statement = 533, + sym_unlet_statement = 534, + sym_call_statement = 535, + sym_echo_statement = 536, + sym_echon_statement = 537, + sym_echohl_statement = 538, + sym_echomsg_statement = 539, + sym_echoerr_statement = 540, + sym_execute_statement = 541, + sym_silent_statement = 542, + sym_user_command = 543, + sym_command_argument = 544, + sym_function_definition = 545, + sym_function_declaration = 546, + sym_parameters = 547, + sym_default_parameter = 548, + sym_at = 549, + sym_range_statement = 550, + sym__range = 551, + sym__range_explicit = 552, + sym__range_marker = 553, + sym_current_line = 554, + sym_next_line = 555, + sym_last_line = 556, + sym_previous_pattern = 557, + sym_register_statement = 558, + sym_map_statement = 559, + sym__map_definition = 560, + sym__keycode_in = 561, + sym__immediate_keycode = 562, + sym_keycode = 563, + sym__map_lhs = 564, + sym__map_rhs = 565, + sym__hl_body_link = 566, + sym__hl_body_clear = 567, + sym__hl_body_none = 568, + sym__hl_attr_list = 569, + sym__hl_key_cterm = 570, + aux_sym__hl_term_list = 571, + sym__hl_key_start_stop = 572, + sym__hl_key_ctermfg_ctermbg = 573, + sym__hl_key_gui = 574, + sym__hl_quoted_name = 575, + sym__hl_color_name = 576, + sym__hl_key_gui_color = 577, + sym__hl_key_font = 578, + sym_hl_attribute = 579, + sym__hl_body_keys = 580, + sym__hl_body = 581, + sym_highlight_statement = 582, + sym__syn_enable = 583, + sym__syn_case = 584, + sym__syn_spell = 585, + sym__syn_foldlevel = 586, + sym__syn_iskeyword = 587, + sym__syn_conceal = 588, + sym__syn_hl_pattern = 589, + sym_hl_groups = 590, + sym__syn_arguments_keyword = 591, + sym__syn_arguments_match = 592, + sym__syn_arguments_region = 593, + sym__syn_arguments_cluster = 594, + sym__syn_pattern_offset = 595, + sym__syn_keyword_identifier = 596, + sym__syn_keyword = 597, + sym__syn_match = 598, + sym__syn_region_start = 599, + sym__syn_region_skip = 600, + sym__syn_region_end = 601, + sym__syn_region = 602, + sym__syn_cluster = 603, + sym__syn_include = 604, + sym__syn_sync_lines = 605, + sym__syn_sync = 606, + sym__syn_list = 607, + sym__syn_clear = 608, + sym_syntax_statement = 609, + sym__sign_name = 610, + sym__sign_define_arg_text = 611, + sym__sign_define_argument = 612, + sym__sign_define = 613, + sym__sign_undefine = 614, + sym__sign_list = 615, + sym__sign_place_place_argument = 616, + sym__sign_place_place = 617, + sym__sign_place_list_argument = 618, + aux_sym__sign_place_list = 619, + sym__sign_place = 620, + sym__sign_unplace_cursor_argument = 621, + sym__sign_unplace_cursor = 622, + sym__sign_unplace_id_argument = 623, + sym__sign_unplace_id = 624, + sym__sign_unplace = 625, + sym__sign_jump_argument = 626, + sym__sign_jump = 627, + sym_sign_statement = 628, + sym__variable = 629, + sym__expression = 630, + sym_ternary_expression = 631, + sym_match_case = 632, + sym_binary_operation = 633, + sym_unary_operation = 634, + sym_list = 635, + sym_list_assignment = 636, + sym_index_expression = 637, + sym_slice_expression = 638, + sym_field_expression = 639, + sym_call_expression = 640, + sym_filename = 641, + sym_pattern_multi = 642, + aux_sym__pattern_ordinary_atom = 643, + sym__pattern_atom = 644, + sym__pattern_piece = 645, + aux_sym__pattern_concat = 646, + sym__pattern_branch = 647, + sym_pattern = 648, + sym_env_variable = 649, + sym_option = 650, + sym_dictionnary_entry = 651, + sym_dictionnary = 652, + sym__literal_dictionary_entry = 653, + sym_literal_dictionary = 654, + sym_lambda_expression = 655, + aux_sym__statement_repeat1 = 656, + aux_sym_unknown_builtin_statement_repeat1 = 657, + aux_sym_filetypes_repeat1 = 658, + aux_sym_runtime_statement_repeat1 = 659, + aux_sym_script_repeat1 = 660, + aux_sym_if_statement_repeat1 = 661, + aux_sym_try_statement_repeat1 = 662, + aux_sym_autocmd_statement_repeat1 = 663, + aux_sym_au_event_list_repeat1 = 664, + aux_sym__bang_filter_command_argument_repeat1 = 665, + aux_sym__bang_filter_command_repeat1 = 666, + aux_sym_identifier_repeat1 = 667, + aux_sym_let_statement_repeat1 = 668, + aux_sym__let_heredoc_repeat1 = 669, + aux_sym_set_statement_repeat1 = 670, + aux_sym_unlet_statement_repeat1 = 671, + aux_sym_function_definition_repeat1 = 672, + aux_sym_parameters_repeat1 = 673, + aux_sym_parameters_repeat2 = 674, + aux_sym_map_statement_repeat1 = 675, + aux_sym__map_lhs_repeat1 = 676, + aux_sym__map_rhs_repeat1 = 677, + aux_sym__hl_attr_list_repeat1 = 678, + aux_sym__hl_body_keys_repeat1 = 679, + aux_sym_hl_groups_repeat1 = 680, + aux_sym__syn_keyword_identifier_repeat1 = 681, + aux_sym__syn_keyword_repeat1 = 682, + aux_sym__syn_keyword_repeat2 = 683, + aux_sym__syn_match_repeat1 = 684, + aux_sym__syn_match_repeat2 = 685, + aux_sym__syn_region_repeat1 = 686, + aux_sym__syn_region_repeat2 = 687, + aux_sym__syn_cluster_repeat1 = 688, + aux_sym__syn_sync_repeat1 = 689, + aux_sym__sign_define_repeat1 = 690, + aux_sym__sign_place_place_repeat1 = 691, + aux_sym__sign_unplace_id_repeat1 = 692, + aux_sym__sign_jump_repeat1 = 693, + aux_sym_list_repeat1 = 694, + aux_sym_filename_repeat1 = 695, + aux_sym__pattern_ordinary_atom_repeat1 = 696, + aux_sym__pattern_branch_repeat1 = 697, + aux_sym_pattern_repeat1 = 698, + aux_sym_dictionnary_repeat1 = 699, + aux_sym_literal_dictionary_repeat1 = 700, + alias_sym_arguments = 701, + alias_sym_augroup_name = 702, + alias_sym_body = 703, + alias_sym_file = 704, + alias_sym_filenames = 705, + alias_sym_filter_command = 706, + alias_sym_name = 707, + alias_sym_range = 708, }; static const char * const ts_symbol_names[] = { @@ -1019,7 +1024,10 @@ static const char * const ts_symbol_names[] = { [anon_sym_lc] = "lc", [aux_sym__syn_pattern_offset_token1] = "_syn_pattern_offset_token1", [aux_sym__syn_pattern_offset_token2] = "_syn_pattern_offset_token2", - [sym__syn_keyword_identifier] = "keyword", + [aux_sym__syn_keyword_identifier_token1] = "_syn_keyword_identifier_token1", + [aux_sym__syn_keyword_identifier_token2] = "_syn_keyword_identifier_token2", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", [anon_sym_keyword] = "keyword", [anon_sym_skip] = "skip", [anon_sym_end] = "end", @@ -1074,8 +1082,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_BANG] = "!", [sym_float_literal] = "float_literal", [sym_integer_literal] = "integer_literal", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", + [anon_sym_LBRACK2] = "[", + [anon_sym_RBRACK2] = "]", [aux_sym_filename_token1] = "filename_token1", [aux_sym_filename_token2] = "filename_token2", [aux_sym_filename_token3] = "filename_token3", @@ -1324,6 +1332,7 @@ static const char * const ts_symbol_names[] = { [sym__syn_arguments_region] = "syntax_argument", [sym__syn_arguments_cluster] = "syntax_argument", [sym__syn_pattern_offset] = "pattern_offset", + [sym__syn_keyword_identifier] = "keyword", [sym__syn_keyword] = "_syn_keyword", [sym__syn_match] = "_syn_match", [sym__syn_region_start] = "syntax_argument", @@ -1408,6 +1417,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__hl_attr_list_repeat1] = "_hl_attr_list_repeat1", [aux_sym__hl_body_keys_repeat1] = "_hl_body_keys_repeat1", [aux_sym_hl_groups_repeat1] = "hl_groups_repeat1", + [aux_sym__syn_keyword_identifier_repeat1] = "_syn_keyword_identifier_repeat1", [aux_sym__syn_keyword_repeat1] = "_syn_keyword_repeat1", [aux_sym__syn_keyword_repeat2] = "_syn_keyword_repeat2", [aux_sym__syn_match_repeat1] = "_syn_match_repeat1", @@ -1726,7 +1736,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_lc] = anon_sym_lc, [aux_sym__syn_pattern_offset_token1] = aux_sym__syn_pattern_offset_token1, [aux_sym__syn_pattern_offset_token2] = aux_sym__syn_pattern_offset_token2, - [sym__syn_keyword_identifier] = sym_keyword, + [aux_sym__syn_keyword_identifier_token1] = aux_sym__syn_keyword_identifier_token1, + [aux_sym__syn_keyword_identifier_token2] = aux_sym__syn_keyword_identifier_token2, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_keyword] = anon_sym_keyword, [anon_sym_skip] = anon_sym_skip, [anon_sym_end] = anon_sym_end, @@ -1781,8 +1794,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_BANG] = anon_sym_BANG, [sym_float_literal] = sym_float_literal, [sym_integer_literal] = sym_integer_literal, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_LBRACK2] = anon_sym_LBRACK, + [anon_sym_RBRACK2] = anon_sym_RBRACK, [aux_sym_filename_token1] = aux_sym_filename_token1, [aux_sym_filename_token2] = aux_sym_filename_token2, [aux_sym_filename_token3] = aux_sym_filename_token3, @@ -2031,6 +2044,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__syn_arguments_region] = sym__syn_arguments_region, [sym__syn_arguments_cluster] = sym__syn_arguments_region, [sym__syn_pattern_offset] = sym__syn_pattern_offset, + [sym__syn_keyword_identifier] = sym_keyword, [sym__syn_keyword] = sym__syn_keyword, [sym__syn_match] = sym__syn_match, [sym__syn_region_start] = sym__syn_arguments_region, @@ -2115,6 +2129,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__hl_attr_list_repeat1] = aux_sym__hl_attr_list_repeat1, [aux_sym__hl_body_keys_repeat1] = aux_sym__hl_body_keys_repeat1, [aux_sym_hl_groups_repeat1] = aux_sym_hl_groups_repeat1, + [aux_sym__syn_keyword_identifier_repeat1] = aux_sym__syn_keyword_identifier_repeat1, [aux_sym__syn_keyword_repeat1] = aux_sym__syn_keyword_repeat1, [aux_sym__syn_keyword_repeat2] = aux_sym__syn_keyword_repeat2, [aux_sym__syn_match_repeat1] = aux_sym__syn_match_repeat1, @@ -3297,9 +3312,21 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [sym__syn_keyword_identifier] = { + [aux_sym__syn_keyword_identifier_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__syn_keyword_identifier_token2] = { + .visible = false, + .named = false, + }, + [anon_sym_LBRACK] = { .visible = true, - .named = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, }, [anon_sym_keyword] = { .visible = true, @@ -3517,11 +3544,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_LBRACK] = { + [anon_sym_LBRACK2] = { .visible = true, .named = false, }, - [anon_sym_RBRACK] = { + [anon_sym_RBRACK2] = { .visible = true, .named = false, }, @@ -4517,6 +4544,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__syn_keyword_identifier] = { + .visible = true, + .named = true, + }, [sym__syn_keyword] = { .visible = false, .named = true, @@ -4853,6 +4884,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__syn_keyword_identifier_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__syn_keyword_repeat1] = { .visible = false, .named = false, @@ -5591,2644 +5626,2650 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(667); - if (lookahead == '\n') ADVANCE(711); - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '#') ADVANCE(1801); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '\'') ADVANCE(1598); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == '*') ADVANCE(1798); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(681); - if (lookahead == '/') ADVANCE(1185); - if (lookahead == ':') ADVANCE(1144); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1303); - if (lookahead == '=') ADVANCE(1143); - if (lookahead == '>') ADVANCE(1308); - if (lookahead == '?') ADVANCE(1186); - if (lookahead == '@') ADVANCE(1165); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(1317); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == '_') ADVANCE(781); - if (lookahead == '{') ADVANCE(802); - if (lookahead == '|') ADVANCE(737); - if (lookahead == '}') ADVANCE(801); - if (lookahead == '~') ADVANCE(737); + if (eof) ADVANCE(688); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '#') ADVANCE(1733); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '\'') ADVANCE(1579); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == '*') ADVANCE(1730); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(702); + if (lookahead == '/') ADVANCE(1206); + if (lookahead == ':') ADVANCE(1165); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1324); + if (lookahead == '=') ADVANCE(1164); + if (lookahead == '>') ADVANCE(1329); + if (lookahead == '?') ADVANCE(1207); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == '[') ADVANCE(1683); + if (lookahead == '\\') ADVANCE(1338); + if (lookahead == ']') ADVANCE(1684); + if (lookahead == '_') ADVANCE(802); + if (lookahead == '{') ADVANCE(823); + if (lookahead == '|') ADVANCE(758); + if (lookahead == '}') ADVANCE(822); + if (lookahead == '~') ADVANCE(758); if (lookahead == '\t' || - lookahead == ' ') SKIP(664) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(737); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(781); + lookahead == ' ') SKIP(685) + if (lookahead == '"' || + ('^' <= lookahead && lookahead <= '`')) ADVANCE(758); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(758); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(802); if (lookahead != 0 && - lookahead != '\r') ADVANCE(737); + lookahead != '\r') ADVANCE(758); END_STATE(); case 1: if (lookahead == '\t') SKIP(1) - if (lookahead == ' ') ADVANCE(1154); + if (lookahead == ' ') ADVANCE(1175); END_STATE(); case 2: if (lookahead == '\t') SKIP(1) - if (lookahead == ' ') ADVANCE(1154); + if (lookahead == ' ') ADVANCE(1175); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(743); + lookahead == 'a') ADVANCE(764); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(758); + lookahead == 'b') ADVANCE(779); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(746); + lookahead == 'c') ADVANCE(767); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(741); + lookahead == 'd') ADVANCE(762); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(775); + lookahead == 'e') ADVANCE(796); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(778); + lookahead == 'f') ADVANCE(799); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(768); + lookahead == 'h') ADVANCE(789); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(771); + lookahead == 'i') ADVANCE(792); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(763); + lookahead == 'k') ADVANCE(784); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(765); + lookahead == 'l') ADVANCE(786); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(738); + lookahead == 'm') ADVANCE(759); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(773); + lookahead == 'n') ADVANCE(794); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(757); + lookahead == 'p') ADVANCE(778); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(769); + lookahead == 'r') ADVANCE(790); if (lookahead == 'S' || - lookahead == 's') ADVANCE(748); + lookahead == 's') ADVANCE(769); if (lookahead == 'T' || - lookahead == 't') ADVANCE(756); + lookahead == 't') ADVANCE(777); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(777); + lookahead == 'u') ADVANCE(798); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(762); + lookahead == 'x') ADVANCE(783); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(737); + lookahead != '\r') ADVANCE(758); END_STATE(); case 3: - if (lookahead == '\t') SKIP(4) - if (lookahead == ' ') ADVANCE(1154); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '+') ADVANCE(215); - if (lookahead == '-') ADVANCE(216); - if (lookahead == ':') ADVANCE(1144); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(1143); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == '^') ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + if (lookahead == '\t') SKIP(3) + if (lookahead == ' ') ADVANCE(1189); + if (lookahead == 'c') ADVANCE(1196); + if (lookahead == 'i') ADVANCE(1193); + if (lookahead == 'l') ADVANCE(1195); + if (lookahead == 'n') ADVANCE(1197); + if (lookahead == 't') ADVANCE(1194); + if (lookahead != 0 && + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(1188); END_STATE(); case 4: - if (lookahead == '\t') SKIP(4) - if (lookahead == ' ') ADVANCE(1154); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '\\') ADVANCE(510); + if (lookahead == '\t') SKIP(5) + if (lookahead == ' ') ADVANCE(1175); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '+') ADVANCE(225); + if (lookahead == '-') ADVANCE(226); + if (lookahead == ':') ADVANCE(1165); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(1164); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == '^') ADVANCE(227); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(701); END_STATE(); case 5: - if (lookahead == '\t') SKIP(6) - if (lookahead == ' ') ADVANCE(1154); - if (lookahead == '+') ADVANCE(215); - if (lookahead == '-') ADVANCE(216); - if (lookahead == ':') ADVANCE(1144); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(1143); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == '^') ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + if (lookahead == '\t') SKIP(5) + if (lookahead == ' ') ADVANCE(1175); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '\\') ADVANCE(531); END_STATE(); case 6: - if (lookahead == '\t') SKIP(6) - if (lookahead == ' ') ADVANCE(1154); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); + if (lookahead == '\t') SKIP(7) + if (lookahead == ' ') ADVANCE(1175); + if (lookahead == '+') ADVANCE(225); + if (lookahead == '-') ADVANCE(226); + if (lookahead == ':') ADVANCE(1165); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(1164); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == '^') ADVANCE(227); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); case 7: if (lookahead == '\t') SKIP(7) - if (lookahead == ' ') ADVANCE(1168); - if (lookahead == '<') ADVANCE(1178); - if (lookahead == '\\') ADVANCE(1177); - if (lookahead == 'c') ADVANCE(1175); - if (lookahead == 'i') ADVANCE(1172); - if (lookahead == 'l') ADVANCE(1174); - if (lookahead == 'n') ADVANCE(1176); - if (lookahead == 't') ADVANCE(1173); - if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(1167); + if (lookahead == ' ') ADVANCE(1175); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); case 8: if (lookahead == '\t') SKIP(8) - if (lookahead == ' ') ADVANCE(1169); - if (lookahead == 'c') ADVANCE(1175); - if (lookahead == 'i') ADVANCE(1172); - if (lookahead == 'l') ADVANCE(1174); - if (lookahead == 'n') ADVANCE(1176); - if (lookahead == 't') ADVANCE(1173); + if (lookahead == ' ') ADVANCE(1190); + if (lookahead == '<') ADVANCE(1199); + if (lookahead == '\\') ADVANCE(1198); + if (lookahead == 'c') ADVANCE(1196); + if (lookahead == 'i') ADVANCE(1193); + if (lookahead == 'l') ADVANCE(1195); + if (lookahead == 'n') ADVANCE(1197); + if (lookahead == 't') ADVANCE(1194); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(1167); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(1188); END_STATE(); case 9: if (lookahead == '\t') SKIP(9) - if (lookahead == ' ') ADVANCE(1170); - if (lookahead == '<') ADVANCE(1178); - if (lookahead == 'c') ADVANCE(1175); - if (lookahead == 'i') ADVANCE(1172); - if (lookahead == 'l') ADVANCE(1174); - if (lookahead == 'n') ADVANCE(1176); - if (lookahead == 't') ADVANCE(1173); + if (lookahead == ' ') ADVANCE(1191); + if (lookahead == '<') ADVANCE(1199); + if (lookahead == 'c') ADVANCE(1196); + if (lookahead == 'i') ADVANCE(1193); + if (lookahead == 'l') ADVANCE(1195); + if (lookahead == 'n') ADVANCE(1197); + if (lookahead == 't') ADVANCE(1194); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(1167); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(1188); END_STATE(); case 10: if (lookahead == '\t') SKIP(10) - if (lookahead == ' ') ADVANCE(1154); - if (lookahead == '<') ADVANCE(529); + if (lookahead == ' ') ADVANCE(1175); + if (lookahead == '<') ADVANCE(550); END_STATE(); case 11: if (lookahead == '\t') SKIP(10) - if (lookahead == ' ') ADVANCE(1154); - if (lookahead == '<') ADVANCE(1150); - if (lookahead == '\\') ADVANCE(1153); + if (lookahead == ' ') ADVANCE(1175); + if (lookahead == '<') ADVANCE(1171); + if (lookahead == '\\') ADVANCE(1174); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1152); + lookahead != '\n') ADVANCE(1173); END_STATE(); case 12: if (lookahead == '\t') SKIP(12) - if (lookahead == ' ') ADVANCE(1154); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); + if (lookahead == ' ') ADVANCE(1175); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); END_STATE(); case 13: if (lookahead == '\t') SKIP(12) - if (lookahead == ' ') ADVANCE(1154); - if (lookahead == '<') ADVANCE(1150); - if (lookahead == '\\') ADVANCE(1149); + if (lookahead == ' ') ADVANCE(1175); + if (lookahead == '<') ADVANCE(1171); + if (lookahead == '\\') ADVANCE(1170); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1152); + lookahead != '\n') ADVANCE(1173); END_STATE(); case 14: - if (lookahead == '\t') ADVANCE(1612); + if (lookahead == '\t') ADVANCE(1593); if (lookahead == ' ') SKIP(14) - if (lookahead == 'c') ADVANCE(1618); + if (lookahead == 'c') ADVANCE(1599); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1623); + lookahead != '\n') ADVANCE(1604); END_STATE(); case 15: - if (lookahead == '\t') ADVANCE(1613); + if (lookahead == '\t') ADVANCE(1594); if (lookahead == ' ') SKIP(15) - if (lookahead == '<') ADVANCE(1621); - if (lookahead == '\\') ADVANCE(1620); - if (lookahead == 'c') ADVANCE(1618); + if (lookahead == '<') ADVANCE(1602); + if (lookahead == '\\') ADVANCE(1601); + if (lookahead == 'c') ADVANCE(1599); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1623); + lookahead != '\n') ADVANCE(1604); END_STATE(); case 16: - if (lookahead == '\t') ADVANCE(1614); + if (lookahead == '\t') ADVANCE(1595); if (lookahead == ' ') SKIP(16) - if (lookahead == '<') ADVANCE(1621); - if (lookahead == 'c') ADVANCE(1618); + if (lookahead == '<') ADVANCE(1602); + if (lookahead == 'c') ADVANCE(1599); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1623); + lookahead != '\n') ADVANCE(1604); END_STATE(); case 17: if (lookahead == '\t') SKIP(17) - if (lookahead == ' ') ADVANCE(1171); + if (lookahead == ' ') ADVANCE(1192); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(1167); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(1188); END_STATE(); case 18: if (lookahead == '\t') SKIP(18) - if (lookahead == ' ') ADVANCE(670); + if (lookahead == ' ') ADVANCE(691); END_STATE(); case 19: if (lookahead == '\t') SKIP(18) - if (lookahead == ' ') ADVANCE(670); - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '\'') ADVANCE(1598); + if (lookahead == ' ') ADVANCE(691); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '\'') ADVANCE(1579); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1611); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1592); END_STATE(); case 20: if (lookahead == '\t') SKIP(18) - if (lookahead == ' ') ADVANCE(670); - if (lookahead == '<') ADVANCE(1307); + if (lookahead == ' ') ADVANCE(691); + if (lookahead == '<') ADVANCE(1328); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(1583); + lookahead != '\r') ADVANCE(1564); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(709); + if (lookahead == '\n') ADVANCE(730); if (lookahead == '\t' || lookahead == ' ') ADVANCE(21); if (lookahead != 0) ADVANCE(22); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(709); + if (lookahead == '\n') ADVANCE(730); if (lookahead != 0) ADVANCE(22); END_STATE(); case 23: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '#') ADVANCE(509); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(212); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(213); - if (lookahead == '+') ADVANCE(1194); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1807); - if (lookahead == '.') ADVANCE(148); - if (lookahead == '/') ADVANCE(214); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(1123); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '#') ADVANCE(530); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(222); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(223); + if (lookahead == '+') ADVANCE(1215); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1739); + if (lookahead == '.') ADVANCE(151); + if (lookahead == '/') ADVANCE(224); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(1144); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 24: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '.') ADVANCE(681); - if (lookahead == '/') ADVANCE(1185); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '?') ADVANCE(1186); - if (lookahead == '\\') ADVANCE(111); - if (lookahead == 'e') ADVANCE(1099); - if (lookahead == 'u') ADVANCE(991); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '\'') ADVANCE(1581); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '.') ADVANCE(702); + if (lookahead == '/') ADVANCE(1206); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '?') ADVANCE(1207); + if (lookahead == '\\') ADVANCE(112); + if (lookahead == 'e') ADVANCE(1120); + if (lookahead == 'u') ADVANCE(1012); if (lookahead == '\t' || - lookahead == ' ') SKIP(113) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1765); + lookahead == ' ') SKIP(114) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); case 25: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '.') ADVANCE(147); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '.') ADVANCE(150); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || - lookahead == ' ') SKIP(117) - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); + lookahead == ' ') SKIP(118) + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(156); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 26: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '/') ADVANCE(1185); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1914); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '/') ADVANCE(1206); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1846); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1890); + lookahead == ' ') ADVANCE(1822); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 27: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '/') ADVANCE(1185); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1915); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '/') ADVANCE(1206); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1847); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1891); + lookahead == ' ') ADVANCE(1823); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 28: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == ',') ADVANCE(717); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1914); - if (lookahead == '?') ADVANCE(1186); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == ',') ADVANCE(738); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1846); + if (lookahead == '?') ADVANCE(1207); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1890); + lookahead == ' ') ADVANCE(1822); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 29: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == ',') ADVANCE(717); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1915); - if (lookahead == '?') ADVANCE(1186); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == ',') ADVANCE(738); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1847); + if (lookahead == '?') ADVANCE(1207); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1891); + lookahead == ' ') ADVANCE(1823); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 30: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '/') ADVANCE(1185); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1914); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '/') ADVANCE(1206); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1846); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1892); + lookahead == ' ') ADVANCE(1824); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 31: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '/') ADVANCE(1185); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1915); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '/') ADVANCE(1206); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1847); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1893); + lookahead == ' ') ADVANCE(1825); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 32: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1914); - if (lookahead == '?') ADVANCE(1186); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1846); + if (lookahead == '?') ADVANCE(1207); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1892); + lookahead == ' ') ADVANCE(1824); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 33: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1915); - if (lookahead == '?') ADVANCE(1186); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1847); + if (lookahead == '?') ADVANCE(1207); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1893); + lookahead == ' ') ADVANCE(1825); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 34: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(723); - if (lookahead == '\\') ADVANCE(734); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(744); + if (lookahead == '\\') ADVANCE(755); if (lookahead == '\t' || - lookahead == ' ') SKIP(199) + lookahead == ' ') SKIP(209) if (lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(722); + lookahead != '\r') ADVANCE(743); END_STATE(); case 35: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(723); - if (lookahead == '\\') ADVANCE(733); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(744); + if (lookahead == '\\') ADVANCE(754); if (lookahead == '\t' || - lookahead == ' ') SKIP(198) + lookahead == ' ') SKIP(208) if (lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(722); + lookahead != '\r') ADVANCE(743); END_STATE(); case 36: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '\\') ADVANCE(734); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '\\') ADVANCE(755); if (lookahead == '\t' || - lookahead == ' ') SKIP(248) + lookahead == ' ') SKIP(260) if (lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(722); + lookahead != '\r') ADVANCE(743); END_STATE(); case 37: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1859); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(732); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1791); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(753); if (lookahead == '\t' || - lookahead == ' ') SKIP(135) + lookahead == ' ') SKIP(136) if (lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1858); + lookahead == '}') ADVANCE(1790); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1857); + lookahead == '~') ADVANCE(1789); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1847); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1779); END_STATE(); case 38: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1859); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(725); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1791); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(746); if (lookahead == '\t' || - lookahead == ' ') SKIP(137) + lookahead == ' ') SKIP(138) if (lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1858); + lookahead == '}') ADVANCE(1790); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1857); + lookahead == '~') ADVANCE(1789); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1847); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1779); END_STATE(); case 39: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '*') ADVANCE(1859); - if (lookahead == 'A') ADVANCE(1849); - if (lookahead == 'O') ADVANCE(1850); - if (lookahead == 'P') ADVANCE(1848); - if (lookahead == 'S') ADVANCE(1851); - if (lookahead == '\\') ADVANCE(725); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '*') ADVANCE(1791); + if (lookahead == 'A') ADVANCE(1781); + if (lookahead == 'O') ADVANCE(1782); + if (lookahead == 'P') ADVANCE(1780); + if (lookahead == 'S') ADVANCE(1783); + if (lookahead == '\\') ADVANCE(746); if (lookahead == '\t' || - lookahead == ' ') SKIP(139) + lookahead == ' ') SKIP(140) if (lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1858); + lookahead == '}') ADVANCE(1790); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1857); + lookahead == '~') ADVANCE(1789); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1847); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1779); END_STATE(); case 40: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '/') ADVANCE(1185); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1916); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '/') ADVANCE(1206); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1848); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1898); + lookahead == ' ') ADVANCE(1830); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 41: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '/') ADVANCE(1185); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '/') ADVANCE(1206); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1899); + lookahead == ' ') ADVANCE(1831); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 42: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == ',') ADVANCE(717); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1916); - if (lookahead == '?') ADVANCE(1186); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == ',') ADVANCE(738); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1848); + if (lookahead == '?') ADVANCE(1207); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1898); + lookahead == ' ') ADVANCE(1830); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 43: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == ',') ADVANCE(717); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '?') ADVANCE(1186); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == ',') ADVANCE(738); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '?') ADVANCE(1207); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1899); + lookahead == ' ') ADVANCE(1831); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 44: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '/') ADVANCE(1185); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1916); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '/') ADVANCE(1206); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1848); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1900); + lookahead == ' ') ADVANCE(1832); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 45: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '/') ADVANCE(1185); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '/') ADVANCE(1206); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1901); + lookahead == ' ') ADVANCE(1833); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 46: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1916); - if (lookahead == '?') ADVANCE(1186); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1848); + if (lookahead == '?') ADVANCE(1207); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1900); + lookahead == ' ') ADVANCE(1832); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 47: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '?') ADVANCE(1186); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '?') ADVANCE(1207); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1901); + lookahead == ' ') ADVANCE(1833); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 48: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(1455); - if (lookahead == 'l') ADVANCE(1429); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(1458); + if (lookahead == 'l') ADVANCE(1434); if (lookahead == '\t' || - lookahead == ' ') SKIP(178) + lookahead == ' ') SKIP(180) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 49: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || - lookahead == ' ') SKIP(183) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(806); + lookahead == ' ') SKIP(185) + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(827); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 50: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '<') ADVANCE(723); - if (lookahead == '\\') ADVANCE(732); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '<') ADVANCE(744); + if (lookahead == '\\') ADVANCE(753); if (lookahead == '\t' || - lookahead == ' ') SKIP(198) + lookahead == ' ') SKIP(208) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(722); + lookahead != '\r') ADVANCE(743); END_STATE(); case 51: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '<') ADVANCE(723); - if (lookahead == '\\') ADVANCE(725); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '<') ADVANCE(744); + if (lookahead == '\\') ADVANCE(746); if (lookahead == '\t' || - lookahead == ' ') SKIP(199) + lookahead == ' ') SKIP(209) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(722); + lookahead != '\r') ADVANCE(743); END_STATE(); case 52: - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '\\') ADVANCE(725); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '\\') ADVANCE(746); if (lookahead == '\t' || - lookahead == ' ') SKIP(248) + lookahead == ' ') SKIP(260) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(722); + lookahead != '\r') ADVANCE(743); END_STATE(); case 53: - if (lookahead == '!') ADVANCE(1833); - if (lookahead == '#') ADVANCE(752); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '0') ADVANCE(749); - if (lookahead == '<') ADVANCE(1303); - if (lookahead == '@') ADVANCE(782); - if (lookahead == 'A') ADVANCE(742); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(1316); - if (lookahead == 'a') ADVANCE(739); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '!') ADVANCE(1765); + if (lookahead == '#') ADVANCE(773); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '0') ADVANCE(770); + if (lookahead == '<') ADVANCE(1324); + if (lookahead == '@') ADVANCE(803); + if (lookahead == 'A') ADVANCE(763); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(1337); + if (lookahead == 'a') ADVANCE(760); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || lookahead == ' ') SKIP(56) if (lookahead == 'B' || - lookahead == 'b') ADVANCE(753); + lookahead == 'b') ADVANCE(774); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(745); + lookahead == 'c') ADVANCE(766); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(740); + lookahead == 'd') ADVANCE(761); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(774); + lookahead == 'e') ADVANCE(795); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(779); + lookahead == 'f') ADVANCE(800); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(767); + lookahead == 'h') ADVANCE(788); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(770); + lookahead == 'i') ADVANCE(791); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(760); + lookahead == 'k') ADVANCE(781); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(764); + lookahead == 'l') ADVANCE(785); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(744); + lookahead == 'm') ADVANCE(765); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(772); + lookahead == 'n') ADVANCE(793); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(754); + lookahead == 'p') ADVANCE(775); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(766); + lookahead == 'r') ADVANCE(787); if (lookahead == 'S' || - lookahead == 's') ADVANCE(747); + lookahead == 's') ADVANCE(768); if (lookahead == 'T' || - lookahead == 't') ADVANCE(755); + lookahead == 't') ADVANCE(776); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(776); + lookahead == 'u') ADVANCE(797); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(761); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(750); + lookahead == 'x') ADVANCE(782); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(771); if (('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(780); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(801); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(737); + lookahead != '\r') ADVANCE(758); END_STATE(); case 54: - if (lookahead == '!') ADVANCE(1833); - if (lookahead == '#') ADVANCE(752); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '0') ADVANCE(749); - if (lookahead == '<') ADVANCE(1303); - if (lookahead == '@') ADVANCE(782); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(1316); - if (lookahead == 'a') ADVANCE(751); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '!') ADVANCE(1765); + if (lookahead == '#') ADVANCE(773); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '0') ADVANCE(770); + if (lookahead == '<') ADVANCE(1324); + if (lookahead == '@') ADVANCE(803); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(1337); + if (lookahead == 'a') ADVANCE(772); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(750); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(780); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(801); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(737); + lookahead != '\r') ADVANCE(758); END_STATE(); case 55: - if (lookahead == '!') ADVANCE(1833); - if (lookahead == '#') ADVANCE(509); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(212); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(213); - if (lookahead == '+') ADVANCE(1194); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1807); - if (lookahead == '.') ADVANCE(148); - if (lookahead == '/') ADVANCE(214); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(1123); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '!') ADVANCE(1765); + if (lookahead == '#') ADVANCE(530); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(222); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(223); + if (lookahead == '+') ADVANCE(1215); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1739); + if (lookahead == '.') ADVANCE(151); + if (lookahead == '/') ADVANCE(224); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(1144); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 56: - if (lookahead == '!') ADVANCE(1833); - if (lookahead == '#') ADVANCE(509); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '!') ADVANCE(1765); + if (lookahead == '#') ADVANCE(530); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 57: - if (lookahead == '!') ADVANCE(1833); - if (lookahead == '#') ADVANCE(1911); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '@') ADVANCE(1917); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(731); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '!') ADVANCE(1765); + if (lookahead == '#') ADVANCE(1843); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '@') ADVANCE(1849); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(752); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1886); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + lookahead == ' ') ADVANCE(1818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 58: - if (lookahead == '!') ADVANCE(1833); - if (lookahead == '#') ADVANCE(1802); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1808); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '}') ADVANCE(801); + if (lookahead == '!') ADVANCE(1765); + if (lookahead == '#') ADVANCE(1734); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1740); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '}') ADVANCE(822); if (lookahead == '\t' || lookahead == ' ') SKIP(58) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 59: - if (lookahead == '!') ADVANCE(1833); - if (lookahead == '#') ADVANCE(1882); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '@') ADVANCE(1884); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(725); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '!') ADVANCE(1765); + if (lookahead == '#') ADVANCE(1814); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '@') ADVANCE(1816); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(746); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1881); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + lookahead == ' ') ADVANCE(1813); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1880); + lookahead != '\n') ADVANCE(1812); END_STATE(); case 60: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '\'') ADVANCE(662); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1193); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1806); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == 'a') ADVANCE(282); - if (lookahead == 'b') ADVANCE(487); - if (lookahead == 'c') ADVANCE(263); - if (lookahead == 'd') ADVANCE(345); - if (lookahead == 'e') ADVANCE(501); - if (lookahead == 'f') ADVANCE(350); - if (lookahead == 'g') ADVANCE(445); - if (lookahead == 'i') ADVANCE(467); - if (lookahead == 'k') ADVANCE(306); - if (lookahead == 'l') ADVANCE(364); - if (lookahead == 'n') ADVANCE(257); - if (lookahead == 'p') ADVANCE(455); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(366); - if (lookahead == 't') ADVANCE(447); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '\'') ADVANCE(683); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1214); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1738); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(110); + if (lookahead == 'a') ADVANCE(299); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'c') ADVANCE(277); + if (lookahead == 'd') ADVANCE(363); + if (lookahead == 'e') ADVANCE(522); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(466); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'k') ADVANCE(323); + if (lookahead == 'l') ADVANCE(382); + if (lookahead == 'n') ADVANCE(270); + if (lookahead == 'p') ADVANCE(476); + if (lookahead == 'r') ADVANCE(320); + if (lookahead == 's') ADVANCE(385); + if (lookahead == 't') ADVANCE(468); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(700); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(721); END_STATE(); case 61: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '\'') ADVANCE(662); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1193); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1806); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == 'a') ADVANCE(282); - if (lookahead == 'b') ADVANCE(487); - if (lookahead == 'c') ADVANCE(263); - if (lookahead == 'd') ADVANCE(345); - if (lookahead == 'e') ADVANCE(501); - if (lookahead == 'f') ADVANCE(350); - if (lookahead == 'g') ADVANCE(445); - if (lookahead == 'i') ADVANCE(467); - if (lookahead == 'k') ADVANCE(306); - if (lookahead == 'l') ADVANCE(364); - if (lookahead == 'n') ADVANCE(257); - if (lookahead == 'p') ADVANCE(455); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(366); - if (lookahead == 't') ADVANCE(447); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '\'') ADVANCE(683); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1214); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1738); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(110); + if (lookahead == 'a') ADVANCE(299); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'c') ADVANCE(277); + if (lookahead == 'd') ADVANCE(363); + if (lookahead == 'e') ADVANCE(522); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(466); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'k') ADVANCE(323); + if (lookahead == 'l') ADVANCE(382); + if (lookahead == 'n') ADVANCE(270); + if (lookahead == 'p') ADVANCE(476); + if (lookahead == 'r') ADVANCE(320); + if (lookahead == 's') ADVANCE(385); + if (lookahead == 't') ADVANCE(468); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(700); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(721); END_STATE(); case 62: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '\'') ADVANCE(662); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1193); - if (lookahead == '-') ADVANCE(1806); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(797); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == 'i') ADVANCE(791); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '\'') ADVANCE(683); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1214); + if (lookahead == '-') ADVANCE(1738); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(818); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(110); + if (lookahead == 'i') ADVANCE(812); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(820); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(793); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(784); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(814); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(805); END_STATE(); case 63: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '\'') ADVANCE(662); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1193); - if (lookahead == '-') ADVANCE(1806); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == 'i') ADVANCE(467); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '\'') ADVANCE(683); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1214); + if (lookahead == '-') ADVANCE(1738); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(110); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(700); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(721); END_STATE(); case 64: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == 'i') ADVANCE(791); - if (lookahead == '|') ADVANCE(511); - if (lookahead == '}') ADVANCE(801); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == 'i') ADVANCE(812); + if (lookahead == '|') ADVANCE(532); + if (lookahead == '}') ADVANCE(822); if (lookahead == '\t' || lookahead == ' ') SKIP(65) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(793); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(814); END_STATE(); case 65: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == 'i') ADVANCE(467); - if (lookahead == '|') ADVANCE(511); - if (lookahead == '}') ADVANCE(801); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == '|') ADVANCE(532); + if (lookahead == '}') ADVANCE(822); if (lookahead == '\t' || lookahead == ' ') SKIP(65) END_STATE(); case 66: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1811); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == '|') ADVANCE(511); - if (lookahead == '}') ADVANCE(801); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1743); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == 'i') ADVANCE(411); + if (lookahead == '|') ADVANCE(532); + if (lookahead == '}') ADVANCE(822); if (lookahead == '\t' || lookahead == ' ') SKIP(67) if (lookahead == 'e' || - lookahead == 's') ADVANCE(1703); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1705); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(656); + lookahead == 's') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(677); END_STATE(); case 67: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1811); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == '|') ADVANCE(511); - if (lookahead == '}') ADVANCE(801); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1743); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == 'i') ADVANCE(411); + if (lookahead == '|') ADVANCE(532); + if (lookahead == '}') ADVANCE(822); if (lookahead == '\t' || lookahead == ' ') SKIP(67) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(656); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(677); END_STATE(); case 68: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1811); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == 'i') ADVANCE(467); - if (lookahead == '|') ADVANCE(511); - if (lookahead == '}') ADVANCE(801); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1743); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == '|') ADVANCE(532); + if (lookahead == '}') ADVANCE(822); if (lookahead == '\t' || lookahead == ' ') SKIP(68) END_STATE(); case 69: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(75) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 70: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(785); - if (lookahead == 'i') ADVANCE(787); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(806); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(75) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); case 71: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(76) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 72: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(785); - if (lookahead == 'i') ADVANCE(787); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(806); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(76) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); case 73: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'i') ADVANCE(791); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'i') ADVANCE(812); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(77) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(793); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(814); END_STATE(); case 74: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'i') ADVANCE(467); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(78) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(656); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(677); END_STATE(); case 75: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(75) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 76: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(76) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 77: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'i') ADVANCE(467); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(77) END_STATE(); case 78: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'i') ADVANCE(467); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(78) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(656); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(677); END_STATE(); case 79: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1181); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1800); - if (lookahead == '+') ADVANCE(1196); - if (lookahead == '-') ADVANCE(1810); - if (lookahead == '.') ADVANCE(683); - if (lookahead == '/') ADVANCE(1184); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == 'N') ADVANCE(237); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'c') ADVANCE(479); - if (lookahead == 'f') ADVANCE(425); - if (lookahead == 'g') ADVANCE(490); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 's') ADVANCE(470); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1202); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1732); + if (lookahead == '+') ADVANCE(1217); + if (lookahead == '-') ADVANCE(1742); + if (lookahead == '.') ADVANCE(704); + if (lookahead == '/') ADVANCE(1205); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == 'N') ADVANCE(248); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'c') ADVANCE(500); + if (lookahead == 'f') ADVANCE(446); + if (lookahead == 'g') ADVANCE(511); + if (lookahead == 'i') ADVANCE(411); + if (lookahead == 's') ADVANCE(491); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(82) END_STATE(); case 80: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1181); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1800); - if (lookahead == '+') ADVANCE(1196); - if (lookahead == '-') ADVANCE(1810); - if (lookahead == '.') ADVANCE(683); - if (lookahead == '/') ADVANCE(1184); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1202); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1732); + if (lookahead == '+') ADVANCE(1217); + if (lookahead == '-') ADVANCE(1742); + if (lookahead == '.') ADVANCE(704); + if (lookahead == '/') ADVANCE(1205); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(83) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 81: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1181); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1800); - if (lookahead == '+') ADVANCE(1196); - if (lookahead == '-') ADVANCE(1810); - if (lookahead == '.') ADVANCE(683); - if (lookahead == '/') ADVANCE(1184); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1202); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1732); + if (lookahead == '+') ADVANCE(1217); + if (lookahead == '-') ADVANCE(1742); + if (lookahead == '.') ADVANCE(704); + if (lookahead == '/') ADVANCE(1205); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || - lookahead == ' ') SKIP(85) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(86) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 82: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1181); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1800); - if (lookahead == '+') ADVANCE(1196); - if (lookahead == '-') ADVANCE(1810); - if (lookahead == '.') ADVANCE(1189); - if (lookahead == '/') ADVANCE(1184); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == 'N') ADVANCE(237); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'c') ADVANCE(479); - if (lookahead == 'f') ADVANCE(425); - if (lookahead == 'g') ADVANCE(490); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 's') ADVANCE(470); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1202); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1732); + if (lookahead == '+') ADVANCE(1217); + if (lookahead == '-') ADVANCE(1742); + if (lookahead == '.') ADVANCE(1210); + if (lookahead == '/') ADVANCE(1205); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == 'N') ADVANCE(248); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'c') ADVANCE(500); + if (lookahead == 'f') ADVANCE(446); + if (lookahead == 'g') ADVANCE(511); + if (lookahead == 'i') ADVANCE(411); + if (lookahead == 's') ADVANCE(491); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(82) END_STATE(); case 83: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1181); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1800); - if (lookahead == '+') ADVANCE(1196); - if (lookahead == '-') ADVANCE(1810); - if (lookahead == '.') ADVANCE(1189); - if (lookahead == '/') ADVANCE(1184); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1202); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1732); + if (lookahead == '+') ADVANCE(1217); + if (lookahead == '-') ADVANCE(1742); + if (lookahead == '.') ADVANCE(1210); + if (lookahead == '/') ADVANCE(1205); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(83) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 84: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1181); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1800); - if (lookahead == '+') ADVANCE(1196); - if (lookahead == '-') ADVANCE(1810); - if (lookahead == '.') ADVANCE(1189); - if (lookahead == '/') ADVANCE(1184); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'i') ADVANCE(467); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1202); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1732); + if (lookahead == '+') ADVANCE(1217); + if (lookahead == '-') ADVANCE(1742); + if (lookahead == '.') ADVANCE(1210); + if (lookahead == '/') ADVANCE(1205); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(84) END_STATE(); case 85: - if (lookahead == '!') ADVANCE(210); - if (lookahead == '%') ADVANCE(1181); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1800); - if (lookahead == '+') ADVANCE(1196); - if (lookahead == '-') ADVANCE(1810); - if (lookahead == '.') ADVANCE(1189); - if (lookahead == '/') ADVANCE(1184); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1202); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1732); + if (lookahead == '+') ADVANCE(1217); + if (lookahead == '-') ADVANCE(1742); + if (lookahead == '.') ADVANCE(1210); + if (lookahead == '/') ADVANCE(1205); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(85) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 86: - if (lookahead == '!') ADVANCE(210); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '%') ADVANCE(1202); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1732); + if (lookahead == '+') ADVANCE(1217); + if (lookahead == '-') ADVANCE(1742); + if (lookahead == '.') ADVANCE(1210); + if (lookahead == '/') ADVANCE(1205); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); + if (lookahead == '\t' || + lookahead == ' ') SKIP(86) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); + END_STATE(); + case 87: + if (lookahead == '!') ADVANCE(220); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(986); - if (lookahead == '%') ADVANCE(1181); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1800); - if (lookahead == '+') ADVANCE(1196); - if (lookahead == '-') ADVANCE(1810); - if (lookahead == '.') ADVANCE(683); - if (lookahead == '/') ADVANCE(1184); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'i') ADVANCE(925); - if (lookahead == '{') ADVANCE(802); - if (lookahead == '|') ADVANCE(511); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(1007); + if (lookahead == '%') ADVANCE(1202); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1732); + if (lookahead == '+') ADVANCE(1217); + if (lookahead == '-') ADVANCE(1742); + if (lookahead == '.') ADVANCE(704); + if (lookahead == '/') ADVANCE(1205); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(944); + if (lookahead == 'i') ADVANCE(946); + if (lookahead == '{') ADVANCE(823); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(83) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); - case 87: - if (lookahead == '!') ADVANCE(210); + case 88: + if (lookahead == '!') ADVANCE(220); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(986); - if (lookahead == '%') ADVANCE(1181); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1800); - if (lookahead == '+') ADVANCE(1196); - if (lookahead == '-') ADVANCE(1810); - if (lookahead == '.') ADVANCE(683); - if (lookahead == '/') ADVANCE(1184); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'i') ADVANCE(925); - if (lookahead == '{') ADVANCE(802); - if (lookahead == '|') ADVANCE(511); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(1007); + if (lookahead == '%') ADVANCE(1202); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1732); + if (lookahead == '+') ADVANCE(1217); + if (lookahead == '-') ADVANCE(1742); + if (lookahead == '.') ADVANCE(704); + if (lookahead == '/') ADVANCE(1205); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(944); + if (lookahead == 'i') ADVANCE(946); + if (lookahead == '{') ADVANCE(823); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(85) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); - case 88: - if (lookahead == '!') ADVANCE(210); + case 89: + if (lookahead == '!') ADVANCE(220); if (lookahead == '#' || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '\'') ADVANCE(662); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1193); - if (lookahead == '-') ADVANCE(1806); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(931); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == 'i') ADVANCE(975); - if (lookahead == '{') ADVANCE(802); - if (lookahead == '|') ADVANCE(511); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '\'') ADVANCE(683); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1214); + if (lookahead == '-') ADVANCE(1738); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(952); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(110); + if (lookahead == 'i') ADVANCE(996); + if (lookahead == '{') ADVANCE(823); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(935); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(922); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(956); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(943); END_STATE(); - case 89: - if (lookahead == '!') ADVANCE(210); + case 90: + if (lookahead == '!') ADVANCE(220); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1811); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == 'i') ADVANCE(975); - if (lookahead == '{') ADVANCE(802); - if (lookahead == '|') ADVANCE(511); - if (lookahead == '}') ADVANCE(801); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1743); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == 'i') ADVANCE(996); + if (lookahead == '{') ADVANCE(823); + if (lookahead == '|') ADVANCE(532); + if (lookahead == '}') ADVANCE(822); if (lookahead == '\t' || lookahead == ' ') SKIP(68) END_STATE(); - case 90: - if (lookahead == '!') ADVANCE(210); + case 91: + if (lookahead == '!') ADVANCE(220); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'i') ADVANCE(975); - if (lookahead == '{') ADVANCE(802); - if (lookahead == '|') ADVANCE(511); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'i') ADVANCE(996); + if (lookahead == '{') ADVANCE(823); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(77) END_STATE(); - case 91: - if (lookahead == '!') ADVANCE(210); + case 92: + if (lookahead == '!') ADVANCE(220); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == '%') ADVANCE(1181); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1800); - if (lookahead == '+') ADVANCE(1196); - if (lookahead == '-') ADVANCE(1810); - if (lookahead == '.') ADVANCE(683); - if (lookahead == '/') ADVANCE(1184); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(1124); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'i') ADVANCE(975); - if (lookahead == '{') ADVANCE(802); - if (lookahead == '|') ADVANCE(511); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == '%') ADVANCE(1202); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1732); + if (lookahead == '+') ADVANCE(1217); + if (lookahead == '-') ADVANCE(1742); + if (lookahead == '.') ADVANCE(704); + if (lookahead == '/') ADVANCE(1205); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(1145); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'i') ADVANCE(996); + if (lookahead == '{') ADVANCE(823); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(84) END_STATE(); - case 92: - if (lookahead == '!') ADVANCE(1163); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1889); - if (lookahead == '\'') ADVANCE(1918); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1193); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1806); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1185); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1310); - if (lookahead == '=') ADVANCE(1905); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(1917); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(728); - if (lookahead == 'i') ADVANCE(1910); - if (lookahead == '|') ADVANCE(1912); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1887); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(700); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); - END_STATE(); case 93: - if (lookahead == '!') ADVANCE(1163); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1889); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1310); - if (lookahead == '=') ADVANCE(1905); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1186); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); - if (lookahead == 'i') ADVANCE(1910); - if (lookahead == '|') ADVANCE(1912); + if (lookahead == '!') ADVANCE(1184); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1821); + if (lookahead == '\'') ADVANCE(1850); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1214); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1738); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1206); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1331); + if (lookahead == '=') ADVANCE(1837); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(1849); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(749); + if (lookahead == 'i') ADVANCE(1842); + if (lookahead == '|') ADVANCE(1844); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1888); + lookahead == ' ') ADVANCE(1819); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(721); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 94: - if (lookahead == '!') ADVANCE(1834); - if (lookahead == '#') ADVANCE(509); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1139); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(1184); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1821); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1331); + if (lookahead == '=') ADVANCE(1837); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1207); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); + if (lookahead == 'i') ADVANCE(1842); + if (lookahead == '|') ADVANCE(1844); if (lookahead == '\t' || - lookahead == ' ') SKIP(98) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + lookahead == ' ') ADVANCE(1820); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1817); END_STATE(); case 95: - if (lookahead == '!') ADVANCE(1834); - if (lookahead == '#') ADVANCE(509); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1139); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(1766); + if (lookahead == '#') ADVANCE(530); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1160); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(99) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 96: - if (lookahead == '!') ADVANCE(1834); - if (lookahead == '#') ADVANCE(509); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1139); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(794); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(785); - if (lookahead == 'i') ADVANCE(787); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(1766); + if (lookahead == '#') ADVANCE(530); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1160); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || - lookahead == ' ') SKIP(98) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(796); + lookahead == ' ') SKIP(100) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 97: - if (lookahead == '!') ADVANCE(1834); - if (lookahead == '#') ADVANCE(509); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1139); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(794); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(785); - if (lookahead == 'i') ADVANCE(787); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(1766); + if (lookahead == '#') ADVANCE(530); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1160); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(815); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(806); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(99) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(796); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(817); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); case 98: - if (lookahead == '!') ADVANCE(1834); - if (lookahead == '#') ADVANCE(509); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1139); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(805); + if (lookahead == '!') ADVANCE(1766); + if (lookahead == '#') ADVANCE(530); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1160); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(815); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(806); if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || - lookahead == ' ') SKIP(98) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + lookahead == ' ') SKIP(100) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(817); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); case 99: - if (lookahead == '!') ADVANCE(1834); - if (lookahead == '#') ADVANCE(509); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1139); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(1766); + if (lookahead == '#') ADVANCE(530); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1160); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(99) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 100: - if (lookahead == '!') ADVANCE(1834); - if (lookahead == '#') ADVANCE(987); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1139); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(930); - if (lookahead == '<') ADVANCE(1311); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'i') ADVANCE(925); - if (lookahead == '{') ADVANCE(802); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(1766); + if (lookahead == '#') ADVANCE(530); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1160); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == 'i') ADVANCE(829); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || - lookahead == ' ') SKIP(98) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(933); + lookahead == ' ') SKIP(100) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 101: - if (lookahead == '!') ADVANCE(1834); - if (lookahead == '#') ADVANCE(987); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1139); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(930); - if (lookahead == '<') ADVANCE(1312); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'i') ADVANCE(925); - if (lookahead == '{') ADVANCE(802); - if (lookahead == '|') ADVANCE(511); + if (lookahead == '!') ADVANCE(1766); + if (lookahead == '#') ADVANCE(1008); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1160); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(951); + if (lookahead == '<') ADVANCE(1332); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(944); + if (lookahead == 'i') ADVANCE(946); + if (lookahead == '{') ADVANCE(823); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || lookahead == ' ') SKIP(99) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(933); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(954); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); case 102: - if (lookahead == '!') ADVANCE(1164); - if (lookahead == '<') ADVANCE(1157); - if (lookahead == '\\') ADVANCE(1156); + if (lookahead == '!') ADVANCE(1766); + if (lookahead == '#') ADVANCE(1008); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1160); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(951); + if (lookahead == '<') ADVANCE(1333); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(944); + if (lookahead == 'i') ADVANCE(946); + if (lookahead == '{') ADVANCE(823); + if (lookahead == '|') ADVANCE(532); if (lookahead == '\t' || - lookahead == ' ') SKIP(201) - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(1159); + lookahead == ' ') SKIP(100) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(954); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); case 103: - if (lookahead == '!') ADVANCE(1164); - if (lookahead == '<') ADVANCE(1157); + if (lookahead == '!') ADVANCE(1185); + if (lookahead == '<') ADVANCE(1178); + if (lookahead == '\\') ADVANCE(1177); if (lookahead == '\t' || - lookahead == ' ') SKIP(202) + lookahead == ' ') SKIP(211) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(1159); + lookahead != '\r') ADVANCE(1180); END_STATE(); case 104: - if (lookahead == '#') ADVANCE(654); - if (lookahead == '\'') ADVANCE(1598); - if (lookahead == '_') ADVANCE(1118); + if (lookahead == '!') ADVANCE(1185); + if (lookahead == '<') ADVANCE(1178); if (lookahead == '\t' || - lookahead == ' ') SKIP(513) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1591); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == ' ') SKIP(212) + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(1180); END_STATE(); case 105: - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '\'') ADVANCE(662); - if (lookahead == '+') ADVANCE(1191); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(153); - if (lookahead == '.') ADVANCE(1187); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(1143); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '\\') ADVANCE(110); - if (lookahead == 'b') ADVANCE(487); - if (lookahead == 'c') ADVANCE(263); - if (lookahead == 'd') ADVANCE(345); - if (lookahead == 'e') ADVANCE(501); - if (lookahead == 'f') ADVANCE(350); - if (lookahead == 'g') ADVANCE(445); - if (lookahead == 'k') ADVANCE(306); - if (lookahead == 'l') ADVANCE(364); - if (lookahead == 'n') ADVANCE(257); - if (lookahead == 'p') ADVANCE(455); - if (lookahead == 's') ADVANCE(366); - if (lookahead == 't') ADVANCE(447); + if (lookahead == '#') ADVANCE(675); + if (lookahead == '\'') ADVANCE(1579); + if (lookahead == '_') ADVANCE(1139); if (lookahead == '\t' || - lookahead == ' ') SKIP(106) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(700); + lookahead == ' ') SKIP(534) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1572); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1583); END_STATE(); case 106: - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '\'') ADVANCE(662); - if (lookahead == '+') ADVANCE(1191); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(153); - if (lookahead == '.') ADVANCE(1187); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '\\') ADVANCE(110); - if (lookahead == 'b') ADVANCE(487); - if (lookahead == 'c') ADVANCE(263); - if (lookahead == 'd') ADVANCE(345); - if (lookahead == 'e') ADVANCE(501); - if (lookahead == 'f') ADVANCE(350); - if (lookahead == 'g') ADVANCE(445); - if (lookahead == 'k') ADVANCE(306); - if (lookahead == 'l') ADVANCE(364); - if (lookahead == 'n') ADVANCE(257); - if (lookahead == 'p') ADVANCE(455); - if (lookahead == 's') ADVANCE(366); - if (lookahead == 't') ADVANCE(447); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '\'') ADVANCE(683); + if (lookahead == '+') ADVANCE(1212); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(156); + if (lookahead == '.') ADVANCE(1208); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(1164); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '\\') ADVANCE(111); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'c') ADVANCE(277); + if (lookahead == 'd') ADVANCE(363); + if (lookahead == 'e') ADVANCE(522); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(466); + if (lookahead == 'k') ADVANCE(323); + if (lookahead == 'l') ADVANCE(382); + if (lookahead == 'n') ADVANCE(270); + if (lookahead == 'p') ADVANCE(476); + if (lookahead == 's') ADVANCE(385); + if (lookahead == 't') ADVANCE(468); if (lookahead == '\t' || - lookahead == ' ') SKIP(106) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(700); + lookahead == ' ') SKIP(107) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(721); END_STATE(); case 107: - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '\'') ADVANCE(662); - if (lookahead == '+') ADVANCE(1192); - if (lookahead == '-') ADVANCE(153); - if (lookahead == '.') ADVANCE(1187); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == 'a') ADVANCE(1134); - if (lookahead == 't') ADVANCE(1132); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '\'') ADVANCE(683); + if (lookahead == '+') ADVANCE(1212); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(156); + if (lookahead == '.') ADVANCE(1208); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '\\') ADVANCE(111); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'c') ADVANCE(277); + if (lookahead == 'd') ADVANCE(363); + if (lookahead == 'e') ADVANCE(522); + if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'g') ADVANCE(466); + if (lookahead == 'k') ADVANCE(323); + if (lookahead == 'l') ADVANCE(382); + if (lookahead == 'n') ADVANCE(270); + if (lookahead == 'p') ADVANCE(476); + if (lookahead == 's') ADVANCE(385); + if (lookahead == 't') ADVANCE(468); if (lookahead == '\t' || lookahead == ' ') SKIP(107) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(1135); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(700); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(721); END_STATE(); case 108: - if (lookahead == '&') ADVANCE(1200); - if (lookahead == ')') ADVANCE(1920); - if (lookahead == '/') ADVANCE(1198); - if (lookahead == '?') ADVANCE(1199); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '\'') ADVANCE(683); + if (lookahead == '+') ADVANCE(1213); + if (lookahead == '-') ADVANCE(156); + if (lookahead == '.') ADVANCE(1208); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '\\') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1155); + if (lookahead == 't') ADVANCE(1153); + if (lookahead == '\t' || + lookahead == ' ') SKIP(108) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(1156); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(721); END_STATE(); case 109: - if (lookahead == '&') ADVANCE(1200); - if (lookahead == '/') ADVANCE(1198); - if (lookahead == '?') ADVANCE(1199); + if (lookahead == '&') ADVANCE(1221); + if (lookahead == ')') ADVANCE(1852); + if (lookahead == '/') ADVANCE(1219); + if (lookahead == '?') ADVANCE(1220); + if (lookahead == '|') ADVANCE(1361); END_STATE(); case 110: - if (lookahead == '&') ADVANCE(1200); - if (lookahead == '/') ADVANCE(1198); - if (lookahead == '?') ADVANCE(1199); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '&') ADVANCE(1221); + if (lookahead == '/') ADVANCE(1219); + if (lookahead == '?') ADVANCE(1220); END_STATE(); case 111: - if (lookahead == '&') ADVANCE(1200); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '&') ADVANCE(1221); + if (lookahead == '/') ADVANCE(1219); + if (lookahead == '?') ADVANCE(1220); + if (lookahead == '|') ADVANCE(1361); END_STATE(); case 112: - if (lookahead == '&') ADVANCE(1804); + if (lookahead == '&') ADVANCE(1221); + if (lookahead == '|') ADVANCE(1361); END_STATE(); case 113: - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == ',') ADVANCE(717); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(111); - if (lookahead == 'e') ADVANCE(1099); - if (lookahead == 'u') ADVANCE(991); + if (lookahead == '&') ADVANCE(1736); + END_STATE(); + case 114: + if (lookahead == '\'') ADVANCE(1581); + if (lookahead == ',') ADVANCE(738); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(112); + if (lookahead == 'e') ADVANCE(1120); + if (lookahead == 'u') ADVANCE(1012); if (lookahead == '\t' || - lookahead == ' ') SKIP(113) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1765); + lookahead == ' ') SKIP(114) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - END_STATE(); - case 114: - if (lookahead == '(') ADVANCE(1921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); case 115: - if (lookahead == '(') ADVANCE(1922); + if (lookahead == '(') ADVANCE(1853); END_STATE(); case 116: - if (lookahead == ')') ADVANCE(1161); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(1123); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == '\t' || - lookahead == ' ') SKIP(116) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(656); + if (lookahead == '(') ADVANCE(1854); END_STATE(); case 117: - if (lookahead == ')') ADVANCE(1161); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '.') ADVANCE(147); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == '{') ADVANCE(800); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(228); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(1144); + if (lookahead == '\\') ADVANCE(531); if (lookahead == '\t' || lookahead == ' ') SKIP(117) - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(677); END_STATE(); case 118: - if (lookahead == '*') ADVANCE(1798); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(1165); - if (lookahead == '\\') ADVANCE(510); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '.') ADVANCE(150); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || - lookahead == ' ') SKIP(169) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + lookahead == ' ') SKIP(118) + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(156); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 119: - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '<') ADVANCE(1914); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); - if (lookahead == 'm') ADVANCE(1906); + if (lookahead == '*') ADVANCE(1730); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == '\\') ADVANCE(531); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1894); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead == ' ') SKIP(171) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 120: - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '<') ADVANCE(1914); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '<') ADVANCE(1846); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); + if (lookahead == 'm') ADVANCE(1838); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1895); + lookahead == ' ') ADVANCE(1826); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 121: - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '<') ADVANCE(1914); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(726); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '<') ADVANCE(1846); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1895); + lookahead == ' ') ADVANCE(1827); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 122: - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '<') ADVANCE(1915); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); - if (lookahead == 'm') ADVANCE(1906); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '<') ADVANCE(1846); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(747); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1896); + lookahead == ' ') ADVANCE(1827); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 123: - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '<') ADVANCE(1915); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(729); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '<') ADVANCE(1847); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); + if (lookahead == 'm') ADVANCE(1838); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1897); + lookahead == ' ') ADVANCE(1828); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 124: - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(1874); - if (lookahead == 'b') ADVANCE(1869); - if (lookahead == 'f') ADVANCE(1864); - if (lookahead == 'g') ADVANCE(1867); - if (lookahead == 'l') ADVANCE(1866); - if (lookahead == 'n') ADVANCE(1861); - if (lookahead == 'p') ADVANCE(1868); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '<') ADVANCE(1847); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(750); if (lookahead == '\t' || - lookahead == ' ') SKIP(172) - if (lookahead == '!' || - lookahead == ':' || - lookahead == '@' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(1873); - if (('#' <= lookahead && lookahead <= '%') || - ('+' <= lookahead && lookahead <= '/') || - lookahead == '=' || - lookahead == '_' || - lookahead == '~') ADVANCE(1872); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + lookahead == ' ') ADVANCE(1829); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1817); END_STATE(); case 125: - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(1874); - if (lookahead == 'b') ADVANCE(1869); - if (lookahead == 'f') ADVANCE(1864); - if (lookahead == 'g') ADVANCE(1867); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(1807); + if (lookahead == 'b') ADVANCE(1801); + if (lookahead == 'f') ADVANCE(1796); + if (lookahead == 'g') ADVANCE(1799); + if (lookahead == 'l') ADVANCE(1798); + if (lookahead == 'n') ADVANCE(1793); + if (lookahead == 'p') ADVANCE(1800); if (lookahead == '\t' || - lookahead == ' ') SKIP(173) + lookahead == ' ') SKIP(188) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); END_STATE(); case 126: - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(1874); - if (lookahead == 'c') ADVANCE(1870); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 'l') ADVANCE(1865); - if (lookahead == 'n') ADVANCE(1871); - if (lookahead == 't') ADVANCE(1863); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(1807); + if (lookahead == 'b') ADVANCE(1801); + if (lookahead == 'f') ADVANCE(1796); + if (lookahead == 'g') ADVANCE(1799); if (lookahead == '\t' || - lookahead == ' ') SKIP(177) + lookahead == ' ') SKIP(189) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); END_STATE(); case 127: - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(1874); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(1807); + if (lookahead == 'c') ADVANCE(1802); + if (lookahead == 'i') ADVANCE(1794); + if (lookahead == 'l') ADVANCE(1797); + if (lookahead == 'n') ADVANCE(1803); + if (lookahead == 't') ADVANCE(1795); if (lookahead == '\t' || - lookahead == ' ') SKIP(185) + lookahead == ' ') SKIP(190) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); END_STATE(); case 128: - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(1875); - if (lookahead == 'b') ADVANCE(1869); - if (lookahead == 'f') ADVANCE(1864); - if (lookahead == 'g') ADVANCE(1867); - if (lookahead == 'l') ADVANCE(1866); - if (lookahead == 'n') ADVANCE(1861); - if (lookahead == 'p') ADVANCE(1868); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(1807); if (lookahead == '\t' || - lookahead == ' ') SKIP(186) + lookahead == ' ') SKIP(192) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); END_STATE(); case 129: - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(1875); - if (lookahead == 'b') ADVANCE(1869); - if (lookahead == 'f') ADVANCE(1864); - if (lookahead == 'g') ADVANCE(1867); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(1806); + if (lookahead == 'b') ADVANCE(1801); + if (lookahead == 'f') ADVANCE(1796); + if (lookahead == 'g') ADVANCE(1799); + if (lookahead == 'l') ADVANCE(1798); + if (lookahead == 'n') ADVANCE(1793); + if (lookahead == 'p') ADVANCE(1800); if (lookahead == '\t' || - lookahead == ' ') SKIP(187) + lookahead == ' ') SKIP(174) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); END_STATE(); case 130: - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(1875); - if (lookahead == 'c') ADVANCE(1870); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 'l') ADVANCE(1865); - if (lookahead == 'n') ADVANCE(1871); - if (lookahead == 't') ADVANCE(1863); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(1806); + if (lookahead == 'b') ADVANCE(1801); + if (lookahead == 'f') ADVANCE(1796); + if (lookahead == 'g') ADVANCE(1799); if (lookahead == '\t' || - lookahead == ' ') SKIP(188) + lookahead == ' ') SKIP(175) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); END_STATE(); case 131: - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(1875); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(1806); + if (lookahead == 'c') ADVANCE(1802); + if (lookahead == 'i') ADVANCE(1794); + if (lookahead == 'l') ADVANCE(1797); + if (lookahead == 'n') ADVANCE(1803); + if (lookahead == 't') ADVANCE(1795); if (lookahead == '\t' || - lookahead == ' ') SKIP(190) + lookahead == ' ') SKIP(179) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); END_STATE(); case 132: - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(734); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(1806); if (lookahead == '\t' || - lookahead == ' ') SKIP(137) + lookahead == ' ') SKIP(187) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); END_STATE(); case 133: - if (lookahead == '*') ADVANCE(1876); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(733); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(755); if (lookahead == '\t' || - lookahead == ' ') SKIP(135) + lookahead == ' ') SKIP(138) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1873); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1872); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1860); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); END_STATE(); case 134: - if (lookahead == '*') ADVANCE(1859); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(732); - if (lookahead == 'c') ADVANCE(1855); - if (lookahead == 'i') ADVANCE(1852); - if (lookahead == 'l') ADVANCE(1854); - if (lookahead == 'n') ADVANCE(1856); - if (lookahead == 't') ADVANCE(1853); + if (lookahead == '*') ADVANCE(1808); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(754); if (lookahead == '\t' || - lookahead == ' ') SKIP(134) + lookahead == ' ') SKIP(136) if (lookahead == '!' || lookahead == ':' || lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1858); + lookahead == '}') ADVANCE(1805); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1857); + lookahead == '~') ADVANCE(1804); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1847); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1792); END_STATE(); case 135: - if (lookahead == '*') ADVANCE(1859); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(732); + if (lookahead == '*') ADVANCE(1791); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(753); + if (lookahead == 'c') ADVANCE(1787); + if (lookahead == 'i') ADVANCE(1784); + if (lookahead == 'l') ADVANCE(1786); + if (lookahead == 'n') ADVANCE(1788); + if (lookahead == 't') ADVANCE(1785); if (lookahead == '\t' || lookahead == ' ') SKIP(135) if (lookahead == '!' || @@ -8236,25 +8277,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1858); + lookahead == '}') ADVANCE(1790); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1857); + lookahead == '~') ADVANCE(1789); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1847); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1779); END_STATE(); case 136: - if (lookahead == '*') ADVANCE(1859); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(725); - if (lookahead == 'c') ADVANCE(1855); - if (lookahead == 'i') ADVANCE(1852); - if (lookahead == 'l') ADVANCE(1854); - if (lookahead == 'n') ADVANCE(1856); - if (lookahead == 't') ADVANCE(1853); + if (lookahead == '*') ADVANCE(1791); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(753); if (lookahead == '\t' || lookahead == ' ') SKIP(136) if (lookahead == '!' || @@ -8262,20 +8298,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1858); + lookahead == '}') ADVANCE(1790); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1857); + lookahead == '~') ADVANCE(1789); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1847); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1779); END_STATE(); case 137: - if (lookahead == '*') ADVANCE(1859); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(725); + if (lookahead == '*') ADVANCE(1791); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(746); + if (lookahead == 'c') ADVANCE(1787); + if (lookahead == 'i') ADVANCE(1784); + if (lookahead == 'l') ADVANCE(1786); + if (lookahead == 'n') ADVANCE(1788); + if (lookahead == 't') ADVANCE(1785); if (lookahead == '\t' || lookahead == ' ') SKIP(137) if (lookahead == '!' || @@ -8283,2588 +8324,2773 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1858); + lookahead == '}') ADVANCE(1790); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1857); + lookahead == '~') ADVANCE(1789); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1847); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1779); END_STATE(); case 138: - if (lookahead == '*') ADVANCE(1859); - if (lookahead == '@') ADVANCE(1165); - if (lookahead == '\\') ADVANCE(725); + if (lookahead == '*') ADVANCE(1791); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(746); if (lookahead == '\t' || lookahead == ' ') SKIP(138) if (lookahead == '!' || lookahead == ':' || + lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1858); + lookahead == '}') ADVANCE(1790); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1857); + lookahead == '~') ADVANCE(1789); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1847); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1779); END_STATE(); case 139: - if (lookahead == '*') ADVANCE(1859); - if (lookahead == 'A') ADVANCE(1849); - if (lookahead == 'O') ADVANCE(1850); - if (lookahead == 'P') ADVANCE(1848); - if (lookahead == 'S') ADVANCE(1851); - if (lookahead == '\\') ADVANCE(725); + if (lookahead == '*') ADVANCE(1791); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == '\\') ADVANCE(746); if (lookahead == '\t' || lookahead == ' ') SKIP(139) if (lookahead == '!' || lookahead == ':' || - lookahead == '@' || ('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(1858); + lookahead == '}') ADVANCE(1790); if (('#' <= lookahead && lookahead <= '%') || ('+' <= lookahead && lookahead <= '/') || lookahead == '=' || lookahead == '_' || - lookahead == '~') ADVANCE(1857); + lookahead == '~') ADVANCE(1789); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1847); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1779); END_STATE(); case 140: - if (lookahead == ',') ADVANCE(717); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(1711); - if (lookahead == 'n') ADVANCE(1714); - if (lookahead == 's') ADVANCE(1726); - if (lookahead == 't') ADVANCE(1740); + if (lookahead == '*') ADVANCE(1791); + if (lookahead == 'A') ADVANCE(1781); + if (lookahead == 'O') ADVANCE(1782); + if (lookahead == 'P') ADVANCE(1780); + if (lookahead == 'S') ADVANCE(1783); + if (lookahead == '\\') ADVANCE(746); if (lookahead == '\t' || lookahead == ' ') SKIP(140) - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= ']') || + if (lookahead == '!' || + lookahead == ':' || + lookahead == '@' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '{' || + lookahead == '}') ADVANCE(1790); + if (('#' <= lookahead && lookahead <= '%') || + ('+' <= lookahead && lookahead <= '/') || + lookahead == '=' || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + lookahead == '~') ADVANCE(1789); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1779); END_STATE(); case 141: - if (lookahead == ',') ADVANCE(717); - if (lookahead == '}') ADVANCE(801); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '<') ADVANCE(1675); + if (lookahead == '\\') ADVANCE(1674); + if (lookahead == 'c') ADVANCE(1670); + if (lookahead == 'n') ADVANCE(1671); + if (lookahead == 's') ADVANCE(1672); + if (lookahead == 't') ADVANCE(1673); if (lookahead == '\t' || lookahead == ' ') SKIP(141) - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1924); + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1669); END_STATE(); case 142: - if (lookahead == ',') ADVANCE(717); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '<') ADVANCE(1675); + if (lookahead == 'c') ADVANCE(1670); + if (lookahead == 'n') ADVANCE(1671); + if (lookahead == 's') ADVANCE(1672); + if (lookahead == 't') ADVANCE(1673); if (lookahead == '\t' || lookahead == ' ') SKIP(142) - if (lookahead != 0 && - lookahead != '\n') ADVANCE(716); + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1669); END_STATE(); case 143: - if (lookahead == ',') ADVANCE(512); - if (lookahead == '-') ADVANCE(144); - if (lookahead == '}') ADVANCE(1879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (lookahead == ',') ADVANCE(738); + if (lookahead == 'c') ADVANCE(1670); + if (lookahead == 'n') ADVANCE(1671); + if (lookahead == 's') ADVANCE(1672); + if (lookahead == 't') ADVANCE(1673); + if (lookahead == '\t' || + lookahead == ' ') SKIP(143) + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1669); END_STATE(); case 144: - if (lookahead == ',') ADVANCE(512); - if (lookahead == '}') ADVANCE(1879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '}') ADVANCE(822); + if (lookahead == '\t' || + lookahead == ' ') SKIP(144) + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1856); END_STATE(); case 145: - if (lookahead == '-') ADVANCE(1207); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '\t' || + lookahead == ' ') SKIP(145) + if (lookahead != 0 && + lookahead != '\n') ADVANCE(737); END_STATE(); case 146: - if (lookahead == '-') ADVANCE(154); + if (lookahead == ',') ADVANCE(533); + if (lookahead == '-') ADVANCE(147); + if (lookahead == '}') ADVANCE(1811); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); END_STATE(); case 147: - if (lookahead == '.') ADVANCE(149); + if (lookahead == ',') ADVANCE(533); + if (lookahead == '}') ADVANCE(1811); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); END_STATE(); case 148: - if (lookahead == '.') ADVANCE(149); - if (lookahead == '=') ADVANCE(1130); + if (lookahead == '-') ADVANCE(1228); END_STATE(); case 149: - if (lookahead == '.') ADVANCE(1166); + if (lookahead == '-') ADVANCE(157); END_STATE(); case 150: - if (lookahead == '/') ADVANCE(151); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '?') ADVANCE(227); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(997); - if (lookahead == '\t' || - lookahead == ' ') SKIP(150) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + if (lookahead == '.') ADVANCE(152); END_STATE(); case 151: - if (lookahead == '/') ADVANCE(714); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); + if (lookahead == '.') ADVANCE(152); + if (lookahead == '=') ADVANCE(1151); END_STATE(); case 152: - if (lookahead == '0') ADVANCE(1840); - if (lookahead == '>') ADVANCE(1926); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); + if (lookahead == '.') ADVANCE(1187); END_STATE(); case 153: - if (lookahead == '0') ADVANCE(1840); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); + if (lookahead == '/') ADVANCE(154); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '?') ADVANCE(237); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(1018); + if (lookahead == '\t' || + lookahead == ' ') SKIP(153) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); case 154: - if (lookahead == '0') ADVANCE(1297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1299); + if (lookahead == '/') ADVANCE(735); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(154); END_STATE(); case 155: - if (lookahead == '1') ADVANCE(158); - if (lookahead == '3') ADVANCE(157); - if (lookahead == '8') ADVANCE(689); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == '>') ADVANCE(1858); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); END_STATE(); case 156: - if (lookahead == '2') ADVANCE(690); - if (lookahead == '4') ADVANCE(694); + if (lookahead == '0') ADVANCE(1772); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); END_STATE(); case 157: - if (lookahead == '2') ADVANCE(698); + if (lookahead == '0') ADVANCE(1318); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1320); END_STATE(); case 158: - if (lookahead == '6') ADVANCE(692); + if (lookahead == '1') ADVANCE(161); + if (lookahead == '3') ADVANCE(160); + if (lookahead == '8') ADVANCE(710); END_STATE(); case 159: - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1305); - if (lookahead == '\\') ADVANCE(1316); - if (lookahead == '|') ADVANCE(737); + if (lookahead == '2') ADVANCE(711); + if (lookahead == '4') ADVANCE(715); + END_STATE(); + case 160: + if (lookahead == '2') ADVANCE(719); + END_STATE(); + case 161: + if (lookahead == '6') ADVANCE(713); + END_STATE(); + case 162: + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1326); + if (lookahead == '\\') ADVANCE(1337); + if (lookahead == '|') ADVANCE(758); if (lookahead == '\t' || - lookahead == ' ') SKIP(161) + lookahead == ' ') SKIP(164) if (lookahead == 'A' || - lookahead == 'a') ADVANCE(743); + lookahead == 'a') ADVANCE(764); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(758); + lookahead == 'b') ADVANCE(779); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(746); + lookahead == 'c') ADVANCE(767); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(741); + lookahead == 'd') ADVANCE(762); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(775); + lookahead == 'e') ADVANCE(796); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(778); + lookahead == 'f') ADVANCE(799); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(768); + lookahead == 'h') ADVANCE(789); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(771); + lookahead == 'i') ADVANCE(792); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(763); + lookahead == 'k') ADVANCE(784); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(765); + lookahead == 'l') ADVANCE(786); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(738); + lookahead == 'm') ADVANCE(759); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(773); + lookahead == 'n') ADVANCE(794); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(757); + lookahead == 'p') ADVANCE(778); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(769); + lookahead == 'r') ADVANCE(790); if (lookahead == 'S' || - lookahead == 's') ADVANCE(748); + lookahead == 's') ADVANCE(769); if (lookahead == 'T' || - lookahead == 't') ADVANCE(756); + lookahead == 't') ADVANCE(777); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(777); + lookahead == 'u') ADVANCE(798); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(762); + lookahead == 'x') ADVANCE(783); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(737); + lookahead != '\r') ADVANCE(758); END_STATE(); - case 160: - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1305); - if (lookahead == '\\') ADVANCE(1316); - if (lookahead == '|') ADVANCE(737); + case 163: + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1326); + if (lookahead == '\\') ADVANCE(1337); + if (lookahead == '|') ADVANCE(758); if (lookahead == '\t' || - lookahead == ' ') SKIP(161) + lookahead == ' ') SKIP(164) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(737); + lookahead != '\r') ADVANCE(758); END_STATE(); - case 161: - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1315); - if (lookahead == '\\') ADVANCE(725); + case 164: + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1336); + if (lookahead == '\\') ADVANCE(746); if (lookahead == '\t' || - lookahead == ' ') SKIP(161) + lookahead == ' ') SKIP(164) if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '|') ADVANCE(1319); + lookahead != '|') ADVANCE(1340); END_STATE(); - case 162: - if (lookahead == '<') ADVANCE(1303); - if (lookahead == '\\') ADVANCE(1316); + case 165: + if (lookahead == '<') ADVANCE(1324); + if (lookahead == '\\') ADVANCE(1337); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1323); + lookahead == 'a') ADVANCE(1344); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1328); + lookahead == 'b') ADVANCE(1349); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1324); + lookahead == 'c') ADVANCE(1345); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1322); + lookahead == 'd') ADVANCE(1343); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1357); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1338); + lookahead == 'f') ADVANCE(1359); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1332); + lookahead == 'h') ADVANCE(1353); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1334); + lookahead == 'i') ADVANCE(1355); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1330); + lookahead == 'k') ADVANCE(1351); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1331); + lookahead == 'l') ADVANCE(1352); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1321); + lookahead == 'm') ADVANCE(1342); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1335); + lookahead == 'n') ADVANCE(1356); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1327); + lookahead == 'p') ADVANCE(1348); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1333); + lookahead == 'r') ADVANCE(1354); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1325); + lookahead == 's') ADVANCE(1346); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1326); + lookahead == 't') ADVANCE(1347); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1337); + lookahead == 'u') ADVANCE(1358); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1329); + lookahead == 'x') ADVANCE(1350); if (lookahead != 0 && lookahead != '\n' && - lookahead != '|') ADVANCE(1320); + lookahead != '|') ADVANCE(1341); END_STATE(); - case 163: - if (lookahead == '<') ADVANCE(1303); - if (lookahead == '\\') ADVANCE(1316); + case 166: + if (lookahead == '<') ADVANCE(1324); + if (lookahead == '\\') ADVANCE(1337); if (lookahead != 0 && lookahead != '\n' && - lookahead != '|') ADVANCE(1320); - END_STATE(); - case 164: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(1123); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '\t' || - lookahead == ' ') SKIP(164) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); - END_STATE(); - case 165: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(1165); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(1382); - if (lookahead == 'c') ADVANCE(1493); - if (lookahead == 'r') ADVANCE(1395); - if (lookahead == '\t' || - lookahead == ' ') SKIP(165) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 166: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(1165); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(1364); - if (lookahead == 'd') ADVANCE(1421); - if (lookahead == 'e') ADVANCE(1462); - if (lookahead == 'f') ADVANCE(1488); - if (lookahead == 'k') ADVANCE(1393); - if (lookahead == 'm') ADVANCE(1347); - if (lookahead == 'n') ADVANCE(1383); - if (lookahead == 'o') ADVANCE(1473); - if (lookahead == 's') ADVANCE(1438); - if (lookahead == 't') ADVANCE(1513); - if (lookahead == '\t' || - lookahead == ' ') SKIP(166) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + lookahead != '|') ADVANCE(1341); END_STATE(); case 167: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(1165); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(1366); - if (lookahead == 'n') ADVANCE(1387); - if (lookahead == 's') ADVANCE(1435); - if (lookahead == 't') ADVANCE(1508); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(1144); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || lookahead == ' ') SKIP(167) - if (lookahead == '-' || - ('[' <= lookahead && lookahead <= ']')) ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 168: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(1165); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(1365); - if (lookahead == 'd') ADVANCE(1421); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'f') ADVANCE(1488); - if (lookahead == 'k') ADVANCE(1393); - if (lookahead == 'n') ADVANCE(1383); - if (lookahead == 's') ADVANCE(1438); - if (lookahead == 't') ADVANCE(1513); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(1398); + if (lookahead == 'c') ADVANCE(1490); + if (lookahead == 'r') ADVANCE(1405); if (lookahead == '\t' || lookahead == ' ') SKIP(168) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 169: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(1165); - if (lookahead == '\\') ADVANCE(510); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(1381); + if (lookahead == 'd') ADVANCE(1429); + if (lookahead == 'e') ADVANCE(1464); + if (lookahead == 'f') ADVANCE(1487); + if (lookahead == 'k') ADVANCE(1406); + if (lookahead == 'm') ADVANCE(1368); + if (lookahead == 'n') ADVANCE(1399); + if (lookahead == 'o') ADVANCE(1471); + if (lookahead == 's') ADVANCE(1443); + if (lookahead == 't') ADVANCE(1504); if (lookahead == '\t' || lookahead == ' ') SKIP(169) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 170: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(1383); + if (lookahead == 'd') ADVANCE(1429); + if (lookahead == 'e') ADVANCE(1528); + if (lookahead == 'f') ADVANCE(1487); + if (lookahead == 'k') ADVANCE(1406); + if (lookahead == 'n') ADVANCE(1399); + if (lookahead == 's') ADVANCE(1443); + if (lookahead == 't') ADVANCE(1504); if (lookahead == '\t' || lookahead == ' ') SKIP(170) - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 171: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(785); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == '\\') ADVANCE(531); if (lookahead == '\t' || - lookahead == ' ') SKIP(170) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == ' ') SKIP(171) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 172: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'b') ADVANCE(487); - if (lookahead == 'f') ADVANCE(348); - if (lookahead == 'g') ADVANCE(445); - if (lookahead == 'l') ADVANCE(364); - if (lookahead == 'n') ADVANCE(256); - if (lookahead == 'p') ADVANCE(455); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || lookahead == ' ') SKIP(172) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 173: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'b') ADVANCE(487); - if (lookahead == 'f') ADVANCE(348); - if (lookahead == 'g') ADVANCE(445); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(806); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || - lookahead == ' ') SKIP(173) + lookahead == ' ') SKIP(172) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); case 174: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(989); - if (lookahead == 'd') ADVANCE(1030); - if (lookahead == 'e') ADVANCE(998); - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'k') ADVANCE(1015); - if (lookahead == 'm') ADVANCE(1110); - if (lookahead == 'n') ADVANCE(1010); - if (lookahead == 'o') ADVANCE(1058); - if (lookahead == 's') ADVANCE(1038); - if (lookahead == 't') ADVANCE(1082); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'g') ADVANCE(466); + if (lookahead == 'l') ADVANCE(382); + if (lookahead == 'n') ADVANCE(269); + if (lookahead == 'p') ADVANCE(476); if (lookahead == '\t' || lookahead == ' ') SKIP(174) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); END_STATE(); case 175: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(989); - if (lookahead == 'd') ADVANCE(1030); - if (lookahead == 'e') ADVANCE(998); - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'k') ADVANCE(1015); - if (lookahead == 'm') ADVANCE(1110); - if (lookahead == 'n') ADVANCE(1010); - if (lookahead == 'o') ADVANCE(1058); - if (lookahead == 's') ADVANCE(1039); - if (lookahead == 't') ADVANCE(1082); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'g') ADVANCE(466); if (lookahead == '\t' || lookahead == ' ') SKIP(175) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); END_STATE(); case 176: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(1542); - if (lookahead == 'i') ADVANCE(1370); - if (lookahead == 'l') ADVANCE(1432); - if (lookahead == 'n') ADVANCE(1537); - if (lookahead == 't') ADVANCE(1406); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(1010); + if (lookahead == 'd') ADVANCE(1051); + if (lookahead == 'e') ADVANCE(1019); + if (lookahead == 'f') ADVANCE(1089); + if (lookahead == 'k') ADVANCE(1036); + if (lookahead == 'm') ADVANCE(1131); + if (lookahead == 'n') ADVANCE(1031); + if (lookahead == 'o') ADVANCE(1079); + if (lookahead == 's') ADVANCE(1059); + if (lookahead == 't') ADVANCE(1103); if (lookahead == '\t' || lookahead == ' ') SKIP(176) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); case 177: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(488); - if (lookahead == 'i') ADVANCE(264); - if (lookahead == 'l') ADVANCE(360); - if (lookahead == 'n') ADVANCE(489); - if (lookahead == 't') ADVANCE(320); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(1010); + if (lookahead == 'd') ADVANCE(1051); + if (lookahead == 'e') ADVANCE(1019); + if (lookahead == 'f') ADVANCE(1089); + if (lookahead == 'k') ADVANCE(1036); + if (lookahead == 'm') ADVANCE(1131); + if (lookahead == 'n') ADVANCE(1031); + if (lookahead == 'o') ADVANCE(1079); + if (lookahead == 's') ADVANCE(1060); + if (lookahead == 't') ADVANCE(1103); if (lookahead == '\t' || lookahead == ' ') SKIP(177) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); case 178: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(1455); - if (lookahead == 'l') ADVANCE(1429); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(1526); + if (lookahead == 'i') ADVANCE(1387); + if (lookahead == 'l') ADVANCE(1438); + if (lookahead == 'n') ADVANCE(1523); + if (lookahead == 't') ADVANCE(1417); if (lookahead == '\t' || lookahead == ' ') SKIP(178) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 179: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(479); - if (lookahead == 'f') ADVANCE(425); - if (lookahead == 'g') ADVANCE(490); - if (lookahead == 's') ADVANCE(470); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(509); + if (lookahead == 'i') ADVANCE(280); + if (lookahead == 'l') ADVANCE(378); + if (lookahead == 'n') ADVANCE(510); + if (lookahead == 't') ADVANCE(338); if (lookahead == '\t' || lookahead == ' ') SKIP(179) END_STATE(); case 180: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(990); - if (lookahead == 'd') ADVANCE(1030); - if (lookahead == 'e') ADVANCE(1103); - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'k') ADVANCE(1015); - if (lookahead == 'n') ADVANCE(1010); - if (lookahead == 's') ADVANCE(1038); - if (lookahead == 't') ADVANCE(1082); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(1458); + if (lookahead == 'l') ADVANCE(1434); if (lookahead == '\t' || lookahead == ' ') SKIP(180) - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 181: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'm') ADVANCE(1355); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(500); + if (lookahead == 'f') ADVANCE(446); + if (lookahead == 'g') ADVANCE(511); + if (lookahead == 's') ADVANCE(491); if (lookahead == '\t' || lookahead == ' ') SKIP(181) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); END_STATE(); case 182: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 's') ADVANCE(1098); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(1011); + if (lookahead == 'd') ADVANCE(1051); + if (lookahead == 'e') ADVANCE(1124); + if (lookahead == 'f') ADVANCE(1089); + if (lookahead == 'k') ADVANCE(1036); + if (lookahead == 'n') ADVANCE(1031); + if (lookahead == 's') ADVANCE(1060); + if (lookahead == 't') ADVANCE(1103); if (lookahead == '\t' || lookahead == ' ') SKIP(182) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); case 183: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'm') ADVANCE(1372); if (lookahead == '\t' || lookahead == ' ') SKIP(183) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(806); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 184: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 's') ADVANCE(1119); if (lookahead == '\t' || lookahead == ' ') SKIP(184) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); case 185: - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || lookahead == ' ') SKIP(185) + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(827); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); case 186: - if (lookahead == '<') ADVANCE(529); - if (lookahead == 'b') ADVANCE(487); - if (lookahead == 'f') ADVANCE(348); - if (lookahead == 'g') ADVANCE(445); - if (lookahead == 'l') ADVANCE(364); - if (lookahead == 'n') ADVANCE(256); - if (lookahead == 'p') ADVANCE(455); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); if (lookahead == '\t' || lookahead == ' ') SKIP(186) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); case 187: - if (lookahead == '<') ADVANCE(529); - if (lookahead == 'b') ADVANCE(487); - if (lookahead == 'f') ADVANCE(348); - if (lookahead == 'g') ADVANCE(445); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); if (lookahead == '\t' || lookahead == ' ') SKIP(187) END_STATE(); case 188: - if (lookahead == '<') ADVANCE(529); - if (lookahead == 'c') ADVANCE(488); - if (lookahead == 'i') ADVANCE(264); - if (lookahead == 'l') ADVANCE(360); - if (lookahead == 'n') ADVANCE(489); - if (lookahead == 't') ADVANCE(320); + if (lookahead == '<') ADVANCE(550); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'g') ADVANCE(466); + if (lookahead == 'l') ADVANCE(382); + if (lookahead == 'n') ADVANCE(269); + if (lookahead == 'p') ADVANCE(476); if (lookahead == '\t' || lookahead == ' ') SKIP(188) END_STATE(); case 189: - if (lookahead == '<') ADVANCE(529); - if (lookahead == 'c') ADVANCE(479); - if (lookahead == 'f') ADVANCE(425); - if (lookahead == 'g') ADVANCE(490); - if (lookahead == 's') ADVANCE(470); + if (lookahead == '<') ADVANCE(550); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'g') ADVANCE(466); if (lookahead == '\t' || lookahead == ' ') SKIP(189) END_STATE(); case 190: - if (lookahead == '<') ADVANCE(529); + if (lookahead == '<') ADVANCE(550); + if (lookahead == 'c') ADVANCE(509); + if (lookahead == 'i') ADVANCE(280); + if (lookahead == 'l') ADVANCE(378); + if (lookahead == 'n') ADVANCE(510); + if (lookahead == 't') ADVANCE(338); if (lookahead == '\t' || lookahead == ' ') SKIP(190) END_STATE(); case 191: - if (lookahead == '<') ADVANCE(1131); + if (lookahead == '<') ADVANCE(550); + if (lookahead == 'c') ADVANCE(500); + if (lookahead == 'f') ADVANCE(446); + if (lookahead == 'g') ADVANCE(511); + if (lookahead == 's') ADVANCE(491); + if (lookahead == '\t' || + lookahead == ' ') SKIP(191) END_STATE(); case 192: - if (lookahead == '<') ADVANCE(1916); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); - if (lookahead == 'm') ADVANCE(1906); + if (lookahead == '<') ADVANCE(550); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1902); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead == ' ') SKIP(192) END_STATE(); case 193: - if (lookahead == '<') ADVANCE(1916); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1903); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + if (lookahead == '<') ADVANCE(1152); END_STATE(); case 194: - if (lookahead == '<') ADVANCE(1306); - if (lookahead == '\\') ADVANCE(1581); - if (lookahead == 'c') ADVANCE(1576); - if (lookahead == 'f') ADVANCE(1571); - if (lookahead == 'g') ADVANCE(1580); - if (lookahead == 's') ADVANCE(1577); + if (lookahead == '<') ADVANCE(1848); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); + if (lookahead == 'm') ADVANCE(1838); if (lookahead == '\t' || - lookahead == ' ') SKIP(179) + lookahead == ' ') ADVANCE(1834); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(1583); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 195: - if (lookahead == '<') ADVANCE(1306); - if (lookahead == 'c') ADVANCE(1576); - if (lookahead == 'f') ADVANCE(1571); - if (lookahead == 'g') ADVANCE(1580); - if (lookahead == 's') ADVANCE(1577); + if (lookahead == '<') ADVANCE(1848); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); if (lookahead == '\t' || - lookahead == ' ') SKIP(189) + lookahead == ' ') ADVANCE(1835); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(1583); + lookahead != '\n') ADVANCE(1817); END_STATE(); case 196: - if (lookahead == '<') ADVANCE(1307); - if (lookahead == 'c') ADVANCE(1576); - if (lookahead == 'f') ADVANCE(1571); - if (lookahead == 'g') ADVANCE(1580); - if (lookahead == 's') ADVANCE(1577); + if (lookahead == '<') ADVANCE(1327); + if (lookahead == '\\') ADVANCE(1562); + if (lookahead == 'c') ADVANCE(1557); + if (lookahead == 'f') ADVANCE(1552); + if (lookahead == 'g') ADVANCE(1561); + if (lookahead == 's') ADVANCE(1558); if (lookahead == '\t' || - lookahead == ' ') SKIP(270) + lookahead == ' ') SKIP(181) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(1583); + lookahead != '\r') ADVANCE(1564); END_STATE(); case 197: - if (lookahead == '<') ADVANCE(1313); - if (lookahead == '\\') ADVANCE(725); + if (lookahead == '<') ADVANCE(1327); + if (lookahead == 'c') ADVANCE(1557); + if (lookahead == 'f') ADVANCE(1552); + if (lookahead == 'g') ADVANCE(1561); + if (lookahead == 's') ADVANCE(1558); if (lookahead == '\t' || - lookahead == ' ') SKIP(197) + lookahead == ' ') SKIP(191) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(722); + lookahead != '\r') ADVANCE(1564); END_STATE(); case 198: - if (lookahead == '<') ADVANCE(723); - if (lookahead == '\\') ADVANCE(732); + if (lookahead == '<') ADVANCE(1328); + if (lookahead == 'c') ADVANCE(1557); + if (lookahead == 'f') ADVANCE(1552); + if (lookahead == 'g') ADVANCE(1561); + if (lookahead == 's') ADVANCE(1558); if (lookahead == '\t' || - lookahead == ' ') SKIP(198) + lookahead == ' ') SKIP(286) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(722); + lookahead != '\r') ADVANCE(1564); END_STATE(); case 199: - if (lookahead == '<') ADVANCE(723); - if (lookahead == '\\') ADVANCE(725); + if (lookahead == '<') ADVANCE(1675); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == '\\') ADVANCE(1674); + if (lookahead == 'c') ADVANCE(1382); + if (lookahead == 'n') ADVANCE(1399); + if (lookahead == 's') ADVANCE(1443); + if (lookahead == 't') ADVANCE(1504); if (lookahead == '\t' || lookahead == ' ') SKIP(199) - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(722); + if (('!' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= '^') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '~')) ADVANCE(1669); + if (('0' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 200: - if (lookahead == '<') ADVANCE(1314); - if (lookahead == '\\') ADVANCE(725); + if (lookahead == '<') ADVANCE(1675); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == 'c') ADVANCE(1382); + if (lookahead == 'n') ADVANCE(1399); + if (lookahead == 's') ADVANCE(1443); + if (lookahead == 't') ADVANCE(1504); if (lookahead == '\t' || lookahead == ' ') SKIP(200) + if (('!' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= '^') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '~')) ADVANCE(1669); + if (('0' <= lookahead && lookahead <= 'z')) ADVANCE(1534); + END_STATE(); + case 201: + if (lookahead == '<') ADVANCE(1675); + if (lookahead == '[') ADVANCE(1683); + if (lookahead == '\\') ADVANCE(1674); + if (lookahead == 'c') ADVANCE(1670); + if (lookahead == 'n') ADVANCE(1671); + if (lookahead == 's') ADVANCE(1672); + if (lookahead == 't') ADVANCE(1673); + if (lookahead == '\t' || + lookahead == ' ') SKIP(203) + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1669); + END_STATE(); + case 202: + if (lookahead == '<') ADVANCE(1675); + if (lookahead == '[') ADVANCE(1683); + if (lookahead == 'c') ADVANCE(1670); + if (lookahead == 'n') ADVANCE(1671); + if (lookahead == 's') ADVANCE(1672); + if (lookahead == 't') ADVANCE(1673); + if (lookahead == '\t' || + lookahead == ' ') SKIP(204) + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1669); + END_STATE(); + case 203: + if (lookahead == '<') ADVANCE(1675); + if (lookahead == '\\') ADVANCE(1674); + if (lookahead == 'c') ADVANCE(1670); + if (lookahead == 'n') ADVANCE(1671); + if (lookahead == 's') ADVANCE(1672); + if (lookahead == 't') ADVANCE(1673); + if (lookahead == '\t' || + lookahead == ' ') SKIP(203) + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1669); + END_STATE(); + case 204: + if (lookahead == '<') ADVANCE(1675); + if (lookahead == 'c') ADVANCE(1670); + if (lookahead == 'n') ADVANCE(1671); + if (lookahead == 's') ADVANCE(1672); + if (lookahead == 't') ADVANCE(1673); + if (lookahead == '\t' || + lookahead == ' ') SKIP(204) + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1669); + END_STATE(); + case 205: + if (lookahead == '<') ADVANCE(1682); + if (lookahead == '\\') ADVANCE(1681); + if (lookahead == 'c') ADVANCE(1677); + if (lookahead == 'n') ADVANCE(1678); + if (lookahead == 's') ADVANCE(1679); + if (lookahead == 't') ADVANCE(1680); + if (lookahead == '\t' || + lookahead == ' ') SKIP(203) + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1676); + END_STATE(); + case 206: + if (lookahead == '<') ADVANCE(1682); + if (lookahead == 'c') ADVANCE(1677); + if (lookahead == 'n') ADVANCE(1678); + if (lookahead == 's') ADVANCE(1679); + if (lookahead == 't') ADVANCE(1680); + if (lookahead == '\t' || + lookahead == ' ') SKIP(204) + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1676); + END_STATE(); + case 207: + if (lookahead == '<') ADVANCE(1334); + if (lookahead == '\\') ADVANCE(746); + if (lookahead == '\t' || + lookahead == ' ') SKIP(207) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(722); + lookahead != '\r') ADVANCE(743); END_STATE(); - case 201: - if (lookahead == '<') ADVANCE(1157); - if (lookahead == '\\') ADVANCE(1156); + case 208: + if (lookahead == '<') ADVANCE(744); + if (lookahead == '\\') ADVANCE(753); if (lookahead == '\t' || - lookahead == ' ') SKIP(201) + lookahead == ' ') SKIP(208) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(1159); + lookahead != '\r') ADVANCE(743); END_STATE(); - case 202: - if (lookahead == '<') ADVANCE(1157); + case 209: + if (lookahead == '<') ADVANCE(744); + if (lookahead == '\\') ADVANCE(746); if (lookahead == '\t' || - lookahead == ' ') SKIP(202) + lookahead == ' ') SKIP(209) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(1159); + lookahead != '\r') ADVANCE(743); END_STATE(); - case 203: - if (lookahead == '<') ADVANCE(707); + case 210: + if (lookahead == '<') ADVANCE(1335); + if (lookahead == '\\') ADVANCE(746); if (lookahead == '\t' || - lookahead == ' ') SKIP(203) + lookahead == ' ') SKIP(210) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(708); + lookahead != '\r') ADVANCE(743); END_STATE(); - case 204: - if (lookahead == '<') ADVANCE(1304); - if (lookahead == '\\') ADVANCE(1317); + case 211: + if (lookahead == '<') ADVANCE(1178); + if (lookahead == '\\') ADVANCE(1177); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1320); + lookahead == ' ') SKIP(211) + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(1180); + END_STATE(); + case 212: + if (lookahead == '<') ADVANCE(1178); + if (lookahead == '\t' || + lookahead == ' ') SKIP(212) + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(1180); + END_STATE(); + case 213: + if (lookahead == '<') ADVANCE(728); + if (lookahead == '\t' || + lookahead == ' ') SKIP(213) + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(729); + END_STATE(); + case 214: + if (lookahead == '<') ADVANCE(1325); + if (lookahead == '\\') ADVANCE(1338); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1341); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1323); + lookahead == 'a') ADVANCE(1344); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1328); + lookahead == 'b') ADVANCE(1349); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1324); + lookahead == 'c') ADVANCE(1345); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1322); + lookahead == 'd') ADVANCE(1343); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1357); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1338); + lookahead == 'f') ADVANCE(1359); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1332); + lookahead == 'h') ADVANCE(1353); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1334); + lookahead == 'i') ADVANCE(1355); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1330); + lookahead == 'k') ADVANCE(1351); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1331); + lookahead == 'l') ADVANCE(1352); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1321); + lookahead == 'm') ADVANCE(1342); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1335); + lookahead == 'n') ADVANCE(1356); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1327); + lookahead == 'p') ADVANCE(1348); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1333); + lookahead == 'r') ADVANCE(1354); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1325); + lookahead == 's') ADVANCE(1346); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1326); + lookahead == 't') ADVANCE(1347); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1337); + lookahead == 'u') ADVANCE(1358); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1329); + lookahead == 'x') ADVANCE(1350); if (lookahead != 0 && lookahead != '\n' && - lookahead != '|') ADVANCE(1320); + lookahead != '|') ADVANCE(1341); END_STATE(); - case 205: - if (lookahead == '<') ADVANCE(1304); - if (lookahead == '\\') ADVANCE(1317); + case 215: + if (lookahead == '<') ADVANCE(1325); + if (lookahead == '\\') ADVANCE(1338); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1320); + lookahead == ' ') ADVANCE(1341); if (lookahead != 0 && lookahead != '\n' && - lookahead != '|') ADVANCE(1320); + lookahead != '|') ADVANCE(1341); END_STATE(); - case 206: - if (lookahead == '<') ADVANCE(1304); - if (lookahead == '\\') ADVANCE(1316); + case 216: + if (lookahead == '<') ADVANCE(1325); + if (lookahead == '\\') ADVANCE(1337); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1320); + lookahead == ' ') ADVANCE(1341); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1323); + lookahead == 'a') ADVANCE(1344); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1328); + lookahead == 'b') ADVANCE(1349); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1324); + lookahead == 'c') ADVANCE(1345); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1322); + lookahead == 'd') ADVANCE(1343); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1357); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1338); + lookahead == 'f') ADVANCE(1359); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1332); + lookahead == 'h') ADVANCE(1353); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1334); + lookahead == 'i') ADVANCE(1355); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1330); + lookahead == 'k') ADVANCE(1351); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1331); + lookahead == 'l') ADVANCE(1352); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1321); + lookahead == 'm') ADVANCE(1342); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1335); + lookahead == 'n') ADVANCE(1356); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1327); + lookahead == 'p') ADVANCE(1348); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1333); + lookahead == 'r') ADVANCE(1354); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1325); + lookahead == 's') ADVANCE(1346); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1326); + lookahead == 't') ADVANCE(1347); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1337); + lookahead == 'u') ADVANCE(1358); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1329); + lookahead == 'x') ADVANCE(1350); if (lookahead != 0 && lookahead != '\n' && - lookahead != '|') ADVANCE(1320); + lookahead != '|') ADVANCE(1341); END_STATE(); - case 207: - if (lookahead == '<') ADVANCE(1304); - if (lookahead == '\\') ADVANCE(1316); + case 217: + if (lookahead == '<') ADVANCE(1325); + if (lookahead == '\\') ADVANCE(1337); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1320); + lookahead == ' ') ADVANCE(1341); if (lookahead != 0 && lookahead != '\n' && - lookahead != '|') ADVANCE(1320); + lookahead != '|') ADVANCE(1341); END_STATE(); - case 208: - if (lookahead == '<') ADVANCE(759); - if (lookahead == '\\') ADVANCE(734); + case 218: + if (lookahead == '<') ADVANCE(780); + if (lookahead == '\\') ADVANCE(755); if (lookahead == '\t' || - lookahead == ' ') SKIP(199) + lookahead == ' ') SKIP(209) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(737); + lookahead != '\r') ADVANCE(758); END_STATE(); - case 209: - if (lookahead == '<') ADVANCE(759); - if (lookahead == '\\') ADVANCE(733); + case 219: + if (lookahead == '<') ADVANCE(780); + if (lookahead == '\\') ADVANCE(754); if (lookahead == '\t' || - lookahead == ' ') SKIP(198) + lookahead == ' ') SKIP(208) if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(737); - END_STATE(); - case 210: - if (lookahead == '=') ADVANCE(1826); - if (lookahead == '~') ADVANCE(1832); - END_STATE(); - case 211: - if (lookahead == '=') ADVANCE(1825); - if (lookahead == '~') ADVANCE(1831); - END_STATE(); - case 212: - if (lookahead == '=') ADVANCE(1129); - END_STATE(); - case 213: - if (lookahead == '=') ADVANCE(1127); - END_STATE(); - case 214: - if (lookahead == '=') ADVANCE(1128); - END_STATE(); - case 215: - if (lookahead == '=') ADVANCE(1145); - END_STATE(); - case 216: - if (lookahead == '=') ADVANCE(1147); - END_STATE(); - case 217: - if (lookahead == '=') ADVANCE(1146); - END_STATE(); - case 218: - if (lookahead == '>') ADVANCE(1926); - END_STATE(); - case 219: - if (lookahead == '>') ADVANCE(1345); + lookahead != '\r') ADVANCE(758); END_STATE(); case 220: - if (lookahead == '>') ADVANCE(1339); + if (lookahead == '=') ADVANCE(1758); + if (lookahead == '~') ADVANCE(1764); END_STATE(); case 221: - if (lookahead == '>') ADVANCE(1206); + if (lookahead == '=') ADVANCE(1757); + if (lookahead == '~') ADVANCE(1763); END_STATE(); case 222: - if (lookahead == '>') ADVANCE(1201); + if (lookahead == '=') ADVANCE(1150); END_STATE(); case 223: - if (lookahead == '>') ADVANCE(1202); + if (lookahead == '=') ADVANCE(1148); END_STATE(); case 224: - if (lookahead == '>') ADVANCE(1205); + if (lookahead == '=') ADVANCE(1149); END_STATE(); case 225: - if (lookahead == '>') ADVANCE(1203); + if (lookahead == '=') ADVANCE(1166); END_STATE(); case 226: - if (lookahead == '>') ADVANCE(1204); + if (lookahead == '=') ADVANCE(1168); END_STATE(); case 227: - if (lookahead == '?') ADVANCE(715); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(227); + if (lookahead == '=') ADVANCE(1167); END_STATE(); case 228: - if (lookahead == '@') ADVANCE(1165); - if (lookahead == 'c') ADVANCE(1364); - if (lookahead == 'd') ADVANCE(1421); - if (lookahead == 'e') ADVANCE(1462); - if (lookahead == 'f') ADVANCE(1488); - if (lookahead == 'k') ADVANCE(1393); - if (lookahead == 'm') ADVANCE(1347); - if (lookahead == 'n') ADVANCE(1383); - if (lookahead == 'o') ADVANCE(1473); - if (lookahead == 's') ADVANCE(1439); - if (lookahead == 't') ADVANCE(1513); - if (lookahead == '\t' || - lookahead == ' ') SKIP(228) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + if (lookahead == '>') ADVANCE(1858); END_STATE(); case 229: - if (lookahead == '@') ADVANCE(1165); - if (lookahead == 'c') ADVANCE(1364); - if (lookahead == 'd') ADVANCE(1421); - if (lookahead == 'e') ADVANCE(1544); - if (lookahead == 'f') ADVANCE(1488); - if (lookahead == 'k') ADVANCE(1393); - if (lookahead == 'm') ADVANCE(1347); - if (lookahead == 'n') ADVANCE(1383); - if (lookahead == 'o') ADVANCE(1473); - if (lookahead == 's') ADVANCE(1437); - if (lookahead == 't') ADVANCE(1513); - if (lookahead == '\t' || - lookahead == ' ') SKIP(229) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + if (lookahead == '>') ADVANCE(1366); END_STATE(); case 230: - if (lookahead == 'A') ADVANCE(238); + if (lookahead == '>') ADVANCE(1360); END_STATE(); case 231: - if (lookahead == 'C') ADVANCE(234); + if (lookahead == '>') ADVANCE(1227); END_STATE(); case 232: - if (lookahead == 'E') ADVANCE(1558); + if (lookahead == '>') ADVANCE(1222); END_STATE(); case 233: - if (lookahead == 'F') ADVANCE(672); - if (lookahead == '\t' || - lookahead == ' ') SKIP(233) - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + if (lookahead == '>') ADVANCE(1223); END_STATE(); case 234: - if (lookahead == 'K') ADVANCE(703); + if (lookahead == '>') ADVANCE(1226); END_STATE(); case 235: - if (lookahead == 'L') ADVANCE(704); + if (lookahead == '>') ADVANCE(1224); END_STATE(); case 236: - if (lookahead == 'N') ADVANCE(232); + if (lookahead == '>') ADVANCE(1225); END_STATE(); case 237: - if (lookahead == 'O') ADVANCE(236); + if (lookahead == '?') ADVANCE(736); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(237); END_STATE(); case 238: - if (lookahead == 'R') ADVANCE(240); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == 'c') ADVANCE(1381); + if (lookahead == 'd') ADVANCE(1429); + if (lookahead == 'e') ADVANCE(1464); + if (lookahead == 'f') ADVANCE(1487); + if (lookahead == 'k') ADVANCE(1406); + if (lookahead == 'm') ADVANCE(1368); + if (lookahead == 'n') ADVANCE(1399); + if (lookahead == 'o') ADVANCE(1471); + if (lookahead == 's') ADVANCE(1444); + if (lookahead == 't') ADVANCE(1504); + if (lookahead == '\t' || + lookahead == ' ') SKIP(238) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 239: - if (lookahead == 'T') ADVANCE(702); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == 'c') ADVANCE(1381); + if (lookahead == 'd') ADVANCE(1429); + if (lookahead == 'e') ADVANCE(1528); + if (lookahead == 'f') ADVANCE(1487); + if (lookahead == 'k') ADVANCE(1406); + if (lookahead == 'm') ADVANCE(1368); + if (lookahead == 'n') ADVANCE(1399); + if (lookahead == 'o') ADVANCE(1471); + if (lookahead == 's') ADVANCE(1442); + if (lookahead == 't') ADVANCE(1504); + if (lookahead == '\t' || + lookahead == ' ') SKIP(239) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 240: - if (lookahead == 'T') ADVANCE(701); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == 'c') ADVANCE(1382); + if (lookahead == 'n') ADVANCE(1399); + if (lookahead == 's') ADVANCE(1443); + if (lookahead == 't') ADVANCE(1504); + if (lookahead == '\t' || + lookahead == ' ') SKIP(240) + if (('!' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= '^') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '~')) ADVANCE(1669); + if (('0' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 241: - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(731); - if (lookahead == 'g') ADVANCE(1909); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1907); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + if (lookahead == 'A') ADVANCE(249); END_STATE(); case 242: - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(731); - if (lookahead == 'm') ADVANCE(1906); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1908); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + if (lookahead == 'C') ADVANCE(245); END_STATE(); case 243: - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(731); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1913); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + if (lookahead == 'E') ADVANCE(1539); END_STATE(); case 244: - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); - if (lookahead == 'm') ADVANCE(1906); + if (lookahead == 'F') ADVANCE(693); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1908); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + lookahead == ' ') SKIP(244) + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); END_STATE(); case 245: - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(730); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1913); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + if (lookahead == 'K') ADVANCE(724); END_STATE(); case 246: - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(727); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1913); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1885); + if (lookahead == 'L') ADVANCE(725); END_STATE(); case 247: - if (lookahead == '\\') ADVANCE(725); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1883); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1880); + if (lookahead == 'N') ADVANCE(243); END_STATE(); case 248: - if (lookahead == '\\') ADVANCE(725); - if (lookahead == '\t' || - lookahead == ' ') SKIP(248) - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(722); + if (lookahead == 'O') ADVANCE(247); END_STATE(); case 249: - if (lookahead == '\\') ADVANCE(734); - if (lookahead == '\t' || - lookahead == ' ') SKIP(248) - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(737); + if (lookahead == 'R') ADVANCE(251); END_STATE(); case 250: - if (lookahead == 'a') ADVANCE(471); - if (lookahead == 'i') ADVANCE(418); + if (lookahead == 'T') ADVANCE(723); END_STATE(); case 251: - if (lookahead == 'a') ADVANCE(506); + if (lookahead == 'T') ADVANCE(722); END_STATE(); case 252: - if (lookahead == 'a') ADVANCE(454); - if (lookahead == 'o') ADVANCE(430); + if (lookahead == '[') ADVANCE(1683); + if (lookahead == 'c') ADVANCE(1670); + if (lookahead == 'n') ADVANCE(1671); + if (lookahead == 's') ADVANCE(1672); + if (lookahead == 't') ADVANCE(1673); + if (lookahead == '\t' || + lookahead == ' ') SKIP(278) + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1669); END_STATE(); case 253: - if (lookahead == 'a') ADVANCE(448); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(752); + if (lookahead == 'g') ADVANCE(1841); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1839); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1817); END_STATE(); case 254: - if (lookahead == 'a') ADVANCE(354); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(752); + if (lookahead == 'm') ADVANCE(1838); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1840); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1817); END_STATE(); case 255: - if (lookahead == 'a') ADVANCE(416); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(752); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1845); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1817); END_STATE(); case 256: - if (lookahead == 'a') ADVANCE(389); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); + if (lookahead == 'm') ADVANCE(1838); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1840); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1817); END_STATE(); case 257: - if (lookahead == 'a') ADVANCE(389); - if (lookahead == 'e') ADVANCE(502); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(751); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1845); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1817); END_STATE(); case 258: - if (lookahead == 'a') ADVANCE(460); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(748); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1845); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1817); END_STATE(); case 259: - if (lookahead == 'a') ADVANCE(372); + if (lookahead == '\\') ADVANCE(746); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1815); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1812); END_STATE(); case 260: - if (lookahead == 'a') ADVANCE(374); + if (lookahead == '\\') ADVANCE(746); + if (lookahead == '\t' || + lookahead == ' ') SKIP(260) + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(743); END_STATE(); case 261: - if (lookahead == 'a') ADVANCE(357); + if (lookahead == '\\') ADVANCE(755); + if (lookahead == '\t' || + lookahead == ' ') SKIP(260) + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(758); END_STATE(); case 262: - if (lookahead == 'c') ADVANCE(337); - if (lookahead == 'o') ADVANCE(398); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(375); + if (lookahead == ']') ADVANCE(1684); + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1676); END_STATE(); case 263: - if (lookahead == 'c') ADVANCE(337); - if (lookahead == 'o') ADVANCE(417); + if (lookahead == 'a') ADVANCE(492); + if (lookahead == 'i') ADVANCE(439); END_STATE(); case 264: - if (lookahead == 'c') ADVANCE(422); + if (lookahead == 'a') ADVANCE(527); END_STATE(); case 265: - if (lookahead == 'c') ADVANCE(422); - if (lookahead == 'n') ADVANCE(712); + if (lookahead == 'a') ADVANCE(475); + if (lookahead == 'o') ADVANCE(451); END_STATE(); case 266: - if (lookahead == 'c') ADVANCE(344); + if (lookahead == 'a') ADVANCE(469); END_STATE(); case 267: - if (lookahead == 'c') ADVANCE(376); - if (lookahead == 't') ADVANCE(310); + if (lookahead == 'a') ADVANCE(372); END_STATE(); case 268: - if (lookahead == 'c') ADVANCE(1040); - if (lookahead == 'm') ADVANCE(996); - if (lookahead == '\t' || - lookahead == ' ') SKIP(268) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + if (lookahead == 'a') ADVANCE(436); END_STATE(); case 269: - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 't') ADVANCE(254); + if (lookahead == 'a') ADVANCE(408); END_STATE(); case 270: - if (lookahead == 'c') ADVANCE(479); - if (lookahead == 'f') ADVANCE(425); - if (lookahead == 'g') ADVANCE(490); - if (lookahead == 's') ADVANCE(470); - if (lookahead == '\t' || - lookahead == ' ') SKIP(270) + if (lookahead == 'a') ADVANCE(408); + if (lookahead == 'e') ADVANCE(523); END_STATE(); case 271: - if (lookahead == 'c') ADVANCE(459); - if (lookahead == 'i') ADVANCE(382); + if (lookahead == 'a') ADVANCE(481); END_STATE(); case 272: - if (lookahead == 'c') ADVANCE(397); - if (lookahead == 'j') ADVANCE(436); - if (lookahead == 'k') ADVANCE(450); - if (lookahead == 't') ADVANCE(499); + if (lookahead == 'a') ADVANCE(391); END_STATE(); case 273: - if (lookahead == 'c') ADVANCE(293); + if (lookahead == 'a') ADVANCE(393); END_STATE(); case 274: - if (lookahead == 'c') ADVANCE(323); - if (lookahead == 't') ADVANCE(254); + if (lookahead == 'a') ADVANCE(375); END_STATE(); case 275: - if (lookahead == 'd') ADVANCE(1699); + if (lookahead == 'a') ADVANCE(383); END_STATE(); case 276: - if (lookahead == 'd') ADVANCE(1756); + if (lookahead == 'c') ADVANCE(355); + if (lookahead == 'o') ADVANCE(417); + if (lookahead == 't') ADVANCE(303); + if (lookahead == 'u') ADVANCE(394); END_STATE(); case 277: - if (lookahead == 'd') ADVANCE(1675); + if (lookahead == 'c') ADVANCE(355); + if (lookahead == 'o') ADVANCE(438); END_STATE(); case 278: - if (lookahead == 'd') ADVANCE(1681); + if (lookahead == 'c') ADVANCE(1670); + if (lookahead == 'n') ADVANCE(1671); + if (lookahead == 's') ADVANCE(1672); + if (lookahead == 't') ADVANCE(1673); + if (lookahead == '\t' || + lookahead == ' ') SKIP(278) + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1669); END_STATE(); case 279: - if (lookahead == 'd') ADVANCE(1684); + if (lookahead == 'c') ADVANCE(1677); + if (lookahead == 'n') ADVANCE(1678); + if (lookahead == 's') ADVANCE(1679); + if (lookahead == 't') ADVANCE(1680); + if (lookahead == '\t' || + lookahead == ' ') SKIP(278) + if (('!' <= lookahead && lookahead <= '~')) ADVANCE(1676); END_STATE(); case 280: - if (lookahead == 'd') ADVANCE(1640); + if (lookahead == 'c') ADVANCE(443); END_STATE(); case 281: - if (lookahead == 'd') ADVANCE(719); + if (lookahead == 'c') ADVANCE(443); + if (lookahead == 'n') ADVANCE(733); END_STATE(); case 282: - if (lookahead == 'd') ADVANCE(275); + if (lookahead == 'c') ADVANCE(362); END_STATE(); case 283: - if (lookahead == 'd') ADVANCE(466); + if (lookahead == 'c') ADVANCE(395); + if (lookahead == 't') ADVANCE(327); END_STATE(); case 284: - if (lookahead == 'd') ADVANCE(322); + if (lookahead == 'c') ADVANCE(1061); + if (lookahead == 'm') ADVANCE(1017); + if (lookahead == '\t' || + lookahead == ' ') SKIP(284) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); case 285: - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'u') ADVANCE(390); + if (lookahead == 'c') ADVANCE(325); + if (lookahead == 't') ADVANCE(267); END_STATE(); case 286: - if (lookahead == 'e') ADVANCE(451); + if (lookahead == 'c') ADVANCE(500); + if (lookahead == 'f') ADVANCE(446); + if (lookahead == 'g') ADVANCE(511); + if (lookahead == 's') ADVANCE(491); + if (lookahead == '\t' || + lookahead == ' ') SKIP(286) END_STATE(); case 287: - if (lookahead == 'e') ADVANCE(1796); + if (lookahead == 'c') ADVANCE(480); + if (lookahead == 'i') ADVANCE(401); END_STATE(); case 288: - if (lookahead == 'e') ADVANCE(1701); + if (lookahead == 'c') ADVANCE(416); + if (lookahead == 'j') ADVANCE(457); + if (lookahead == 'k') ADVANCE(471); + if (lookahead == 't') ADVANCE(520); END_STATE(); case 289: - if (lookahead == 'e') ADVANCE(1693); + if (lookahead == 'c') ADVANCE(310); END_STATE(); case 290: - if (lookahead == 'e') ADVANCE(1657); + if (lookahead == 'c') ADVANCE(341); + if (lookahead == 't') ADVANCE(267); END_STATE(); case 291: - if (lookahead == 'e') ADVANCE(1786); + if (lookahead == 'c') ADVANCE(341); + if (lookahead == 't') ADVANCE(275); END_STATE(); case 292: - if (lookahead == 'e') ADVANCE(1788); + if (lookahead == 'd') ADVANCE(1662); END_STATE(); case 293: - if (lookahead == 'e') ADVANCE(718); + if (lookahead == 'd') ADVANCE(1688); END_STATE(); case 294: - if (lookahead == 'e') ADVANCE(691); + if (lookahead == 'd') ADVANCE(1638); END_STATE(); case 295: - if (lookahead == 'e') ADVANCE(696); + if (lookahead == 'd') ADVANCE(1644); END_STATE(); case 296: - if (lookahead == 'e') ADVANCE(697); + if (lookahead == 'd') ADVANCE(1647); END_STATE(); case 297: - if (lookahead == 'e') ADVANCE(695); + if (lookahead == 'd') ADVANCE(1615); END_STATE(); case 298: - if (lookahead == 'e') ADVANCE(693); + if (lookahead == 'd') ADVANCE(740); END_STATE(); case 299: - if (lookahead == 'e') ADVANCE(699); + if (lookahead == 'd') ADVANCE(292); END_STATE(); case 300: - if (lookahead == 'e') ADVANCE(1766); + if (lookahead == 'd') ADVANCE(487); END_STATE(); case 301: - if (lookahead == 'e') ADVANCE(1767); + if (lookahead == 'd') ADVANCE(340); END_STATE(); case 302: - if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'e') ADVANCE(523); + if (lookahead == 'u') ADVANCE(409); END_STATE(); case 303: - if (lookahead == 'e') ADVANCE(387); + if (lookahead == 'e') ADVANCE(472); END_STATE(); case 304: - if (lookahead == 'e') ADVANCE(443); + if (lookahead == 'e') ADVANCE(1728); END_STATE(); case 305: - if (lookahead == 'e') ADVANCE(465); + if (lookahead == 'e') ADVANCE(1664); END_STATE(); case 306: - if (lookahead == 'e') ADVANCE(304); + if (lookahead == 'e') ADVANCE(1656); END_STATE(); case 307: - if (lookahead == 'e') ADVANCE(388); - if (lookahead == 'n') ADVANCE(370); - if (lookahead == 'w') ADVANCE(339); + if (lookahead == 'e') ADVANCE(1626); END_STATE(); case 308: - if (lookahead == 'e') ADVANCE(259); + if (lookahead == 'e') ADVANCE(1718); END_STATE(); case 309: - if (lookahead == 'e') ADVANCE(449); + if (lookahead == 'e') ADVANCE(1720); END_STATE(); case 310: - if (lookahead == 'e') ADVANCE(402); + if (lookahead == 'e') ADVANCE(739); END_STATE(); case 311: - if (lookahead == 'e') ADVANCE(469); + if (lookahead == 'e') ADVANCE(712); END_STATE(); case 312: - if (lookahead == 'e') ADVANCE(403); + if (lookahead == 'e') ADVANCE(717); END_STATE(); case 313: - if (lookahead == 'e') ADVANCE(280); - if (lookahead == 's') ADVANCE(1672); + if (lookahead == 'e') ADVANCE(718); END_STATE(); case 314: - if (lookahead == 'e') ADVANCE(226); + if (lookahead == 'e') ADVANCE(716); END_STATE(); case 315: - if (lookahead == 'e') ADVANCE(281); + if (lookahead == 'e') ADVANCE(714); END_STATE(); case 316: - if (lookahead == 'e') ADVANCE(404); + if (lookahead == 'e') ADVANCE(720); END_STATE(); case 317: - if (lookahead == 'e') ADVANCE(456); + if (lookahead == 'e') ADVANCE(1698); END_STATE(); case 318: - if (lookahead == 'e') ADVANCE(453); + if (lookahead == 'e') ADVANCE(1699); END_STATE(); case 319: - if (lookahead == 'e') ADVANCE(411); + if (lookahead == 'e') ADVANCE(485); END_STATE(); case 320: - if (lookahead == 'e') ADVANCE(503); + if (lookahead == 'e') ADVANCE(406); END_STATE(); case 321: - if (lookahead == 'e') ADVANCE(503); - if (lookahead == 'r') ADVANCE(255); + if (lookahead == 'e') ADVANCE(464); END_STATE(); case 322: - if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'e') ADVANCE(486); END_STATE(); case 323: - if (lookahead == 'e') ADVANCE(260); + if (lookahead == 'e') ADVANCE(321); END_STATE(); case 324: - if (lookahead == 'e') ADVANCE(457); + if (lookahead == 'e') ADVANCE(407); + if (lookahead == 'n') ADVANCE(389); + if (lookahead == 'w') ADVANCE(357); END_STATE(); case 325: - if (lookahead == 'e') ADVANCE(341); + if (lookahead == 'e') ADVANCE(272); END_STATE(); case 326: - if (lookahead == 'e') ADVANCE(385); + if (lookahead == 'e') ADVANCE(470); END_STATE(); case 327: - if (lookahead == 'f') ADVANCE(328); + if (lookahead == 'e') ADVANCE(421); END_STATE(); case 328: - if (lookahead == 'f') ADVANCE(309); + if (lookahead == 'e') ADVANCE(490); END_STATE(); case 329: - if (lookahead == 'f') ADVANCE(318); + if (lookahead == 'e') ADVANCE(422); END_STATE(); case 330: - if (lookahead == 'f') ADVANCE(329); + if (lookahead == 'e') ADVANCE(297); END_STATE(); case 331: - if (lookahead == 'g') ADVANCE(1605); + if (lookahead == 'e') ADVANCE(297); + if (lookahead == 's') ADVANCE(1635); END_STATE(); case 332: - if (lookahead == 'g') ADVANCE(1603); + if (lookahead == 'e') ADVANCE(236); END_STATE(); case 333: - if (lookahead == 'g') ADVANCE(1594); + if (lookahead == 'e') ADVANCE(298); END_STATE(); case 334: - if (lookahead == 'g') ADVANCE(1592); + if (lookahead == 'e') ADVANCE(423); END_STATE(); case 335: - if (lookahead == 'g') ADVANCE(461); + if (lookahead == 'e') ADVANCE(477); END_STATE(); case 336: - if (lookahead == 'g') ADVANCE(462); + if (lookahead == 'e') ADVANCE(474); END_STATE(); case 337: - if (lookahead == 'h') ADVANCE(253); + if (lookahead == 'e') ADVANCE(430); END_STATE(); case 338: - if (lookahead == 'h') ADVANCE(367); + if (lookahead == 'e') ADVANCE(524); END_STATE(); case 339: - if (lookahead == 'h') ADVANCE(353); + if (lookahead == 'e') ADVANCE(524); + if (lookahead == 'r') ADVANCE(268); END_STATE(); case 340: - if (lookahead == 'h') ADVANCE(368); + if (lookahead == 'e') ADVANCE(427); END_STATE(); case 341: - if (lookahead == 'h') ADVANCE(369); + if (lookahead == 'e') ADVANCE(273); END_STATE(); case 342: - if (lookahead == 'h') ADVANCE(317); - if (lookahead == 't') ADVANCE(343); + if (lookahead == 'e') ADVANCE(478); END_STATE(); case 343: - if (lookahead == 'h') ADVANCE(324); + if (lookahead == 'e') ADVANCE(359); END_STATE(); case 344: - if (lookahead == 'h') ADVANCE(336); + if (lookahead == 'e') ADVANCE(404); END_STATE(); case 345: - if (lookahead == 'i') ADVANCE(463); + if (lookahead == 'f') ADVANCE(346); END_STATE(); case 346: - if (lookahead == 'i') ADVANCE(1596); + if (lookahead == 'f') ADVANCE(326); END_STATE(); case 347: - if (lookahead == 'i') ADVANCE(444); + if (lookahead == 'f') ADVANCE(336); END_STATE(); case 348: - if (lookahead == 'i') ADVANCE(380); + if (lookahead == 'f') ADVANCE(347); END_STATE(); case 349: - if (lookahead == 'i') ADVANCE(380); - if (lookahead == 'o') ADVANCE(378); + if (lookahead == 'g') ADVANCE(1586); END_STATE(); case 350: - if (lookahead == 'i') ADVANCE(380); - if (lookahead == 'o') ADVANCE(377); + if (lookahead == 'g') ADVANCE(1584); END_STATE(); case 351: - if (lookahead == 'i') ADVANCE(429); + if (lookahead == 'g') ADVANCE(1575); END_STATE(); case 352: - if (lookahead == 'i') ADVANCE(424); + if (lookahead == 'g') ADVANCE(1573); END_STATE(); case 353: - if (lookahead == 'i') ADVANCE(485); + if (lookahead == 'g') ADVANCE(482); END_STATE(); case 354: - if (lookahead == 'i') ADVANCE(395); + if (lookahead == 'g') ADVANCE(483); END_STATE(); case 355: - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'h') ADVANCE(266); END_STATE(); case 356: - if (lookahead == 'i') ADVANCE(435); + if (lookahead == 'h') ADVANCE(386); END_STATE(); case 357: - if (lookahead == 'i') ADVANCE(482); + if (lookahead == 'h') ADVANCE(371); END_STATE(); case 358: - if (lookahead == 'i') ADVANCE(441); + if (lookahead == 'h') ADVANCE(387); END_STATE(); case 359: - if (lookahead == 'i') ADVANCE(391); - if (lookahead == '\t' || - lookahead == ' ') SKIP(359) + if (lookahead == 'h') ADVANCE(388); END_STATE(); case 360: - if (lookahead == 'i') ADVANCE(405); + if (lookahead == 'h') ADVANCE(335); + if (lookahead == 't') ADVANCE(361); END_STATE(); case 361: - if (lookahead == 'i') ADVANCE(409); + if (lookahead == 'h') ADVANCE(342); END_STATE(); case 362: - if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'h') ADVANCE(354); END_STATE(); case 363: - if (lookahead == 'i') ADVANCE(412); + if (lookahead == 'i') ADVANCE(484); END_STATE(); case 364: - if (lookahead == 'i') ADVANCE(413); + if (lookahead == 'i') ADVANCE(1577); END_STATE(); case 365: - if (lookahead == 'k') ADVANCE(351); - if (lookahead == 't') ADVANCE(252); + if (lookahead == 'i') ADVANCE(465); END_STATE(); case 366: - if (lookahead == 'k') ADVANCE(356); + if (lookahead == 'i') ADVANCE(399); END_STATE(); case 367: - if (lookahead == 'l') ADVANCE(1783); + if (lookahead == 'i') ADVANCE(399); + if (lookahead == 'o') ADVANCE(397); END_STATE(); case 368: - if (lookahead == 'l') ADVANCE(1774); + if (lookahead == 'i') ADVANCE(399); + if (lookahead == 'o') ADVANCE(396); END_STATE(); case 369: - if (lookahead == 'l') ADVANCE(1771); + if (lookahead == 'i') ADVANCE(450); END_STATE(); case 370: - if (lookahead == 'l') ADVANCE(1662); + if (lookahead == 'i') ADVANCE(445); END_STATE(); case 371: - if (lookahead == 'l') ADVANCE(1780); + if (lookahead == 'i') ADVANCE(506); END_STATE(); case 372: - if (lookahead == 'l') ADVANCE(1625); + if (lookahead == 'i') ADVANCE(414); END_STATE(); case 373: - if (lookahead == 'l') ADVANCE(1687); + if (lookahead == 'i') ADVANCE(502); END_STATE(); case 374: - if (lookahead == 'l') ADVANCE(1624); + if (lookahead == 'i') ADVANCE(456); END_STATE(); case 375: - if (lookahead == 'l') ADVANCE(338); + if (lookahead == 'i') ADVANCE(503); END_STATE(); case 376: - if (lookahead == 'l') ADVANCE(491); + if (lookahead == 'i') ADVANCE(462); END_STATE(); case 377: - if (lookahead == 'l') ADVANCE(277); + if (lookahead == 'i') ADVANCE(410); + if (lookahead == '\t' || + lookahead == ' ') SKIP(377) END_STATE(); case 378: - if (lookahead == 'l') ADVANCE(277); - if (lookahead == 'n') ADVANCE(472); + if (lookahead == 'i') ADVANCE(424); END_STATE(); case 379: - if (lookahead == 'l') ADVANCE(251); + if (lookahead == 'i') ADVANCE(428); END_STATE(); case 380: - if (lookahead == 'l') ADVANCE(287); + if (lookahead == 'i') ADVANCE(429); END_STATE(); case 381: - if (lookahead == 'l') ADVANCE(1429); - if (lookahead == '\t' || - lookahead == ' ') SKIP(381) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + if (lookahead == 'i') ADVANCE(431); END_STATE(); case 382: - if (lookahead == 'l') ADVANCE(319); + if (lookahead == 'i') ADVANCE(432); END_STATE(); case 383: - if (lookahead == 'l') ADVANCE(361); + if (lookahead == 'i') ADVANCE(435); END_STATE(); case 384: - if (lookahead == 'l') ADVANCE(362); + if (lookahead == 'k') ADVANCE(369); + if (lookahead == 't') ADVANCE(265); END_STATE(); case 385: - if (lookahead == 'l') ADVANCE(363); + if (lookahead == 'k') ADVANCE(374); END_STATE(); case 386: - if (lookahead == 'm') ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1715); END_STATE(); case 387: - if (lookahead == 'm') ADVANCE(419); + if (lookahead == 'l') ADVANCE(1706); END_STATE(); case 388: - if (lookahead == 'm') ADVANCE(438); + if (lookahead == 'l') ADVANCE(1703); END_STATE(); case 389: - if (lookahead == 'm') ADVANCE(292); + if (lookahead == 'l') ADVANCE(1629); END_STATE(); case 390: - if (lookahead == 'm') ADVANCE(340); + if (lookahead == 'l') ADVANCE(1712); END_STATE(); case 391: - if (lookahead == 'n') ADVANCE(712); + if (lookahead == 'l') ADVANCE(1606); END_STATE(); case 392: - if (lookahead == 'n') ADVANCE(712); - if (lookahead == 's') ADVANCE(1814); + if (lookahead == 'l') ADVANCE(1650); END_STATE(); case 393: - if (lookahead == 'n') ADVANCE(472); + if (lookahead == 'l') ADVANCE(1605); END_STATE(); case 394: - if (lookahead == 'n') ADVANCE(1768); + if (lookahead == 'l') ADVANCE(356); END_STATE(); case 395: - if (lookahead == 'n') ADVANCE(313); + if (lookahead == 'l') ADVANCE(512); END_STATE(); case 396: - if (lookahead == 'n') ADVANCE(1642); + if (lookahead == 'l') ADVANCE(294); END_STATE(); case 397: - if (lookahead == 'n') ADVANCE(687); + if (lookahead == 'l') ADVANCE(294); + if (lookahead == 'n') ADVANCE(493); END_STATE(); case 398: - if (lookahead == 'n') ADVANCE(269); + if (lookahead == 'l') ADVANCE(264); END_STATE(); case 399: - if (lookahead == 'n') ADVANCE(273); + if (lookahead == 'l') ADVANCE(304); END_STATE(); case 400: - if (lookahead == 'n') ADVANCE(276); - if (lookahead == 'x') ADVANCE(267); + if (lookahead == 'l') ADVANCE(1434); + if (lookahead == '\t' || + lookahead == ' ') SKIP(400) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 401: - if (lookahead == 'n') ADVANCE(326); + if (lookahead == 'l') ADVANCE(337); END_STATE(); case 402: - if (lookahead == 'n') ADVANCE(278); + if (lookahead == 'l') ADVANCE(379); END_STATE(); case 403: - if (lookahead == 'n') ADVANCE(279); + if (lookahead == 'l') ADVANCE(380); END_STATE(); case 404: - if (lookahead == 'n') ADVANCE(475); + if (lookahead == 'l') ADVANCE(381); END_STATE(); case 405: - if (lookahead == 'n') ADVANCE(325); + if (lookahead == 'm') ADVANCE(1541); END_STATE(); case 406: - if (lookahead == 'n') ADVANCE(283); + if (lookahead == 'm') ADVANCE(440); END_STATE(); case 407: - if (lookahead == 'n') ADVANCE(347); + if (lookahead == 'm') ADVANCE(459); END_STATE(); case 408: - if (lookahead == 'n') ADVANCE(373); + if (lookahead == 'm') ADVANCE(309); END_STATE(); case 409: - if (lookahead == 'n') ADVANCE(302); + if (lookahead == 'm') ADVANCE(358); END_STATE(); case 410: - if (lookahead == 'n') ADVANCE(305); + if (lookahead == 'n') ADVANCE(733); END_STATE(); case 411: - if (lookahead == 'n') ADVANCE(484); + if (lookahead == 'n') ADVANCE(733); + if (lookahead == 's') ADVANCE(1746); END_STATE(); case 412: - if (lookahead == 'n') ADVANCE(289); + if (lookahead == 'n') ADVANCE(493); END_STATE(); case 413: - if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'n') ADVANCE(1700); END_STATE(); case 414: - if (lookahead == 'n') ADVANCE(311); + if (lookahead == 'n') ADVANCE(331); END_STATE(); case 415: - if (lookahead == 'n') ADVANCE(311); - if (lookahead == 'o') ADVANCE(399); + if (lookahead == 'n') ADVANCE(1617); END_STATE(); case 416: - if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'n') ADVANCE(708); END_STATE(); case 417: - if (lookahead == 'n') ADVANCE(274); + if (lookahead == 'n') ADVANCE(285); END_STATE(); case 418: - if (lookahead == 'n') ADVANCE(384); + if (lookahead == 'n') ADVANCE(289); END_STATE(); case 419: - if (lookahead == 'o') ADVANCE(498); + if (lookahead == 'n') ADVANCE(293); + if (lookahead == 'x') ADVANCE(283); END_STATE(); case 420: - if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'n') ADVANCE(344); END_STATE(); case 421: - if (lookahead == 'o') ADVANCE(500); + if (lookahead == 'n') ADVANCE(295); END_STATE(); case 422: - if (lookahead == 'o') ADVANCE(394); + if (lookahead == 'n') ADVANCE(296); END_STATE(); case 423: - if (lookahead == 'o') ADVANCE(476); + if (lookahead == 'n') ADVANCE(496); END_STATE(); case 424: - if (lookahead == 'o') ADVANCE(458); + if (lookahead == 'n') ADVANCE(343); END_STATE(); case 425: - if (lookahead == 'o') ADVANCE(393); + if (lookahead == 'n') ADVANCE(300); END_STATE(); case 426: - if (lookahead == 'o') ADVANCE(493); + if (lookahead == 'n') ADVANCE(365); END_STATE(); case 427: - if (lookahead == 'o') ADVANCE(494); + if (lookahead == 'n') ADVANCE(392); END_STATE(); case 428: - if (lookahead == 'o') ADVANCE(495); + if (lookahead == 'n') ADVANCE(319); END_STATE(); case 429: - if (lookahead == 'p') ADVANCE(1754); + if (lookahead == 'n') ADVANCE(322); END_STATE(); case 430: - if (lookahead == 'p') ADVANCE(1588); + if (lookahead == 'n') ADVANCE(505); END_STATE(); case 431: - if (lookahead == 'p') ADVANCE(1792); + if (lookahead == 'n') ADVANCE(306); END_STATE(); case 432: - if (lookahead == 'p') ADVANCE(1607); + if (lookahead == 'n') ADVANCE(308); END_STATE(); case 433: - if (lookahead == 'p') ADVANCE(1647); + if (lookahead == 'n') ADVANCE(328); END_STATE(); case 434: - if (lookahead == 'p') ADVANCE(1690); + if (lookahead == 'n') ADVANCE(328); + if (lookahead == 'o') ADVANCE(418); END_STATE(); case 435: - if (lookahead == 'p') ADVANCE(307); + if (lookahead == 'n') ADVANCE(330); END_STATE(); case 436: - if (lookahead == 'p') ADVANCE(685); + if (lookahead == 'n') ADVANCE(489); END_STATE(); case 437: - if (lookahead == 'p') ADVANCE(342); + if (lookahead == 'n') ADVANCE(291); END_STATE(); case 438: - if (lookahead == 'p') ADVANCE(478); + if (lookahead == 'n') ADVANCE(290); END_STATE(); case 439: - if (lookahead == 'p') ADVANCE(379); + if (lookahead == 'n') ADVANCE(403); END_STATE(); case 440: - if (lookahead == 'p') ADVANCE(452); + if (lookahead == 'o') ADVANCE(519); END_STATE(); case 441: - if (lookahead == 'p') ADVANCE(483); + if (lookahead == 'o') ADVANCE(513); END_STATE(); case 442: - if (lookahead == 'p') ADVANCE(258); + if (lookahead == 'o') ADVANCE(521); END_STATE(); case 443: - if (lookahead == 'p') ADVANCE(312); + if (lookahead == 'o') ADVANCE(413); END_STATE(); case 444: - if (lookahead == 'q') ADVANCE(496); + if (lookahead == 'o') ADVANCE(497); END_STATE(); case 445: - if (lookahead == 'r') ADVANCE(420); + if (lookahead == 'o') ADVANCE(479); END_STATE(); case 446: - if (lookahead == 'r') ADVANCE(420); - if (lookahead == 'u') ADVANCE(346); + if (lookahead == 'o') ADVANCE(412); END_STATE(); case 447: - if (lookahead == 'r') ADVANCE(255); + if (lookahead == 'o') ADVANCE(514); END_STATE(); case 448: - if (lookahead == 'r') ADVANCE(1632); + if (lookahead == 'o') ADVANCE(515); END_STATE(); case 449: - if (lookahead == 'r') ADVANCE(1790); + if (lookahead == 'o') ADVANCE(516); END_STATE(); case 450: - if (lookahead == 'r') ADVANCE(686); + if (lookahead == 'p') ADVANCE(1686); END_STATE(); case 451: - if (lookahead == 'r') ADVANCE(386); + if (lookahead == 'p') ADVANCE(1569); END_STATE(); case 452: - if (lookahead == 'r') ADVANCE(221); + if (lookahead == 'p') ADVANCE(1724); END_STATE(); case 453: - if (lookahead == 'r') ADVANCE(222); + if (lookahead == 'p') ADVANCE(1588); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(474); + if (lookahead == 'p') ADVANCE(1620); END_STATE(); case 455: - if (lookahead == 'r') ADVANCE(352); + if (lookahead == 'p') ADVANCE(1653); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(300); + if (lookahead == 'p') ADVANCE(324); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(301); + if (lookahead == 'p') ADVANCE(706); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(355); + if (lookahead == 'p') ADVANCE(360); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(358); + if (lookahead == 'p') ADVANCE(499); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(316); + if (lookahead == 'p') ADVANCE(398); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(426); + if (lookahead == 'p') ADVANCE(473); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(427); + if (lookahead == 'p') ADVANCE(504); END_STATE(); case 463: - if (lookahead == 's') ADVANCE(439); + if (lookahead == 'p') ADVANCE(271); END_STATE(); case 464: - if (lookahead == 's') ADVANCE(1762); + if (lookahead == 'p') ADVANCE(329); END_STATE(); case 465: - if (lookahead == 's') ADVANCE(1759); + if (lookahead == 'q') ADVANCE(517); END_STATE(); case 466: - if (lookahead == 's') ADVANCE(1696); + if (lookahead == 'r') ADVANCE(441); END_STATE(); case 467: - if (lookahead == 's') ADVANCE(1814); + if (lookahead == 'r') ADVANCE(441); + if (lookahead == 'u') ADVANCE(364); END_STATE(); case 468: - if (lookahead == 's') ADVANCE(442); + if (lookahead == 'r') ADVANCE(268); END_STATE(); case 469: - if (lookahead == 's') ADVANCE(486); + if (lookahead == 'r') ADVANCE(1611); END_STATE(); case 470: - if (lookahead == 't') ADVANCE(252); + if (lookahead == 'r') ADVANCE(1722); END_STATE(); case 471: - if (lookahead == 't') ADVANCE(266); - if (lookahead == 'x') ADVANCE(383); + if (lookahead == 'r') ADVANCE(707); END_STATE(); case 472: - if (lookahead == 't') ADVANCE(1609); + if (lookahead == 'r') ADVANCE(405); END_STATE(); case 473: - if (lookahead == 't') ADVANCE(1777); + if (lookahead == 'r') ADVANCE(231); END_STATE(); case 474: - if (lookahead == 't') ADVANCE(1584); + if (lookahead == 'r') ADVANCE(232); END_STATE(); case 475: - if (lookahead == 't') ADVANCE(1652); + if (lookahead == 'r') ADVANCE(495); END_STATE(); case 476: - if (lookahead == 't') ADVANCE(1819); + if (lookahead == 'r') ADVANCE(370); END_STATE(); case 477: - if (lookahead == 't') ADVANCE(1132); - if (lookahead == '\t' || - lookahead == ' ') SKIP(477) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1135); + if (lookahead == 'r') ADVANCE(317); END_STATE(); case 478: - if (lookahead == 't') ADVANCE(507); + if (lookahead == 'r') ADVANCE(318); END_STATE(); case 479: - if (lookahead == 't') ADVANCE(286); + if (lookahead == 'r') ADVANCE(373); END_STATE(); case 480: - if (lookahead == 't') ADVANCE(335); + if (lookahead == 'r') ADVANCE(376); END_STATE(); case 481: - if (lookahead == 't') ADVANCE(508); + if (lookahead == 'r') ADVANCE(334); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(223); + if (lookahead == 'r') ADVANCE(447); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(224); + if (lookahead == 'r') ADVANCE(448); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(225); + if (lookahead == 's') ADVANCE(460); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(290); + if (lookahead == 's') ADVANCE(1694); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(315); + if (lookahead == 's') ADVANCE(1691); END_STATE(); case 487: - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 's') ADVANCE(1659); END_STATE(); case 488: - if (lookahead == 'u') ADVANCE(375); + if (lookahead == 's') ADVANCE(1746); END_STATE(); case 489: - if (lookahead == 'u') ADVANCE(390); + if (lookahead == 's') ADVANCE(463); END_STATE(); case 490: - if (lookahead == 'u') ADVANCE(346); + if (lookahead == 's') ADVANCE(507); END_STATE(); case 491: - if (lookahead == 'u') ADVANCE(284); + if (lookahead == 't') ADVANCE(265); END_STATE(); case 492: - if (lookahead == 'u') ADVANCE(431); + if (lookahead == 't') ADVANCE(282); + if (lookahead == 'x') ADVANCE(402); END_STATE(); case 493: - if (lookahead == 'u') ADVANCE(433); + if (lookahead == 't') ADVANCE(1590); END_STATE(); case 494: - if (lookahead == 'u') ADVANCE(434); + if (lookahead == 't') ADVANCE(1709); END_STATE(); case 495: - if (lookahead == 'u') ADVANCE(437); + if (lookahead == 't') ADVANCE(1565); END_STATE(); case 496: - if (lookahead == 'u') ADVANCE(314); + if (lookahead == 't') ADVANCE(1623); END_STATE(); case 497: - if (lookahead == 'u') ADVANCE(330); + if (lookahead == 't') ADVANCE(1751); END_STATE(); case 498: - if (lookahead == 'v') ADVANCE(288); + if (lookahead == 't') ADVANCE(1153); + if (lookahead == '\t' || + lookahead == ' ') SKIP(498) + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1156); END_STATE(); case 499: - if (lookahead == 'w') ADVANCE(688); + if (lookahead == 't') ADVANCE(528); END_STATE(); case 500: - if (lookahead == 'w') ADVANCE(261); + if (lookahead == 't') ADVANCE(303); END_STATE(); case 501: - if (lookahead == 'x') ADVANCE(267); + if (lookahead == 't') ADVANCE(353); END_STATE(); case 502: - if (lookahead == 'x') ADVANCE(480); + if (lookahead == 't') ADVANCE(529); END_STATE(); case 503: - if (lookahead == 'x') ADVANCE(473); + if (lookahead == 't') ADVANCE(233); END_STATE(); case 504: - if (lookahead == 'x') ADVANCE(383); + if (lookahead == 't') ADVANCE(234); END_STATE(); case 505: - if (lookahead == 'x') ADVANCE(440); + if (lookahead == 't') ADVANCE(235); END_STATE(); case 506: - if (lookahead == 'y') ADVANCE(1678); + if (lookahead == 't') ADVANCE(307); END_STATE(); case 507: - if (lookahead == 'y') ADVANCE(1667); + if (lookahead == 't') ADVANCE(333); END_STATE(); case 508: - if (lookahead == 'y') ADVANCE(1794); + if (lookahead == 'u') ADVANCE(345); END_STATE(); case 509: - if (lookahead == '{') ADVANCE(1925); + if (lookahead == 'u') ADVANCE(394); END_STATE(); case 510: - if (lookahead == '|') ADVANCE(1340); + if (lookahead == 'u') ADVANCE(409); END_STATE(); case 511: - if (lookahead == '|') ADVANCE(1803); + if (lookahead == 'u') ADVANCE(364); END_STATE(); case 512: - if (lookahead == '}') ADVANCE(1879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(512); + if (lookahead == 'u') ADVANCE(301); END_STATE(); case 513: - if (lookahead == '\t' || - lookahead == ' ') SKIP(513) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + if (lookahead == 'u') ADVANCE(452); END_STATE(); case 514: + if (lookahead == 'u') ADVANCE(454); + END_STATE(); + case 515: + if (lookahead == 'u') ADVANCE(455); + END_STATE(); + case 516: + if (lookahead == 'u') ADVANCE(458); + END_STATE(); + case 517: + if (lookahead == 'u') ADVANCE(332); + END_STATE(); + case 518: + if (lookahead == 'u') ADVANCE(348); + END_STATE(); + case 519: + if (lookahead == 'v') ADVANCE(305); + END_STATE(); + case 520: + if (lookahead == 'w') ADVANCE(709); + END_STATE(); + case 521: + if (lookahead == 'w') ADVANCE(274); + END_STATE(); + case 522: + if (lookahead == 'x') ADVANCE(283); + END_STATE(); + case 523: + if (lookahead == 'x') ADVANCE(501); + END_STATE(); + case 524: + if (lookahead == 'x') ADVANCE(494); + END_STATE(); + case 525: + if (lookahead == 'x') ADVANCE(402); + END_STATE(); + case 526: + if (lookahead == 'x') ADVANCE(461); + END_STATE(); + case 527: + if (lookahead == 'y') ADVANCE(1641); + END_STATE(); + case 528: + if (lookahead == 'y') ADVANCE(1632); + END_STATE(); + case 529: + if (lookahead == 'y') ADVANCE(1726); + END_STATE(); + case 530: + if (lookahead == '{') ADVANCE(1857); + END_STATE(); + case 531: + if (lookahead == '|') ADVANCE(1361); + END_STATE(); + case 532: + if (lookahead == '|') ADVANCE(1735); + END_STATE(); + case 533: + if (lookahead == '}') ADVANCE(1811); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(533); + END_STATE(); + case 534: if (lookahead == '\t' || - lookahead == ' ') SKIP(514) + lookahead == ' ') SKIP(534) if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 515: + case 535: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(736); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(735); + lookahead == ' ') SKIP(535) + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); END_STATE(); - case 516: + case 536: if (lookahead == '\t' || - lookahead == ' ') SKIP(516) + lookahead == ' ') SKIP(536) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1137); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1158); END_STATE(); - case 517: + case 537: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(757); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(756); + END_STATE(); + case 538: if (lookahead == '\t' || - lookahead == ' ') SKIP(517) + lookahead == ' ') SKIP(538) if (('<' <= lookahead && lookahead <= '>') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(705); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(726); END_STATE(); - case 518: + case 539: if (lookahead == '+' || - lookahead == '-') ADVANCE(644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1836); + lookahead == '-') ADVANCE(665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1768); END_STATE(); - case 519: + case 540: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1286); + lookahead == 'a') ADVANCE(1307); END_STATE(); - case 520: + case 541: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(605); + lookahead == 'a') ADVANCE(626); END_STATE(); - case 521: + case 542: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(558); + lookahead == 'a') ADVANCE(579); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(630); + lookahead == 'l') ADVANCE(651); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(567); + lookahead == 'o') ADVANCE(588); END_STATE(); - case 522: + case 543: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(617); + lookahead == 'a') ADVANCE(638); END_STATE(); - case 523: + case 544: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(532); + lookahead == 'a') ADVANCE(553); END_STATE(); - case 524: + case 545: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(537); + lookahead == 'a') ADVANCE(558); END_STATE(); - case 525: + case 546: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(537); + lookahead == 'a') ADVANCE(558); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(619); + lookahead == 'f') ADVANCE(640); END_STATE(); - case 526: + case 547: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(578); + lookahead == 'a') ADVANCE(599); END_STATE(); - case 527: + case 548: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(574); + lookahead == 'a') ADVANCE(595); END_STATE(); - case 528: + case 549: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1214); + lookahead == 'b') ADVANCE(1235); END_STATE(); - case 529: + case 550: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(604); + lookahead == 'c') ADVANCE(625); END_STATE(); - case 530: + case 551: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1224); + lookahead == 'c') ADVANCE(1245); END_STATE(); - case 531: + case 552: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(526); + lookahead == 'c') ADVANCE(547); END_STATE(); - case 532: + case 553: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(546); + lookahead == 'c') ADVANCE(567); END_STATE(); - case 533: + case 554: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1270); + lookahead == 'd') ADVANCE(1291); if (lookahead == 'T' || - lookahead == 't') ADVANCE(549); + lookahead == 't') ADVANCE(570); END_STATE(); - case 534: + case 555: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1293); + lookahead == 'd') ADVANCE(1314); END_STATE(); - case 535: + case 556: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(220); + lookahead == 'd') ADVANCE(230); END_STATE(); - case 536: + case 557: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(593); + lookahead == 'd') ADVANCE(614); END_STATE(); - case 537: + case 558: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(552); + lookahead == 'd') ADVANCE(573); END_STATE(); - case 538: + case 559: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(548); + lookahead == 'd') ADVANCE(569); END_STATE(); - case 539: + case 560: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(597); + lookahead == 'd') ADVANCE(618); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(602); + lookahead == 'u') ADVANCE(623); END_STATE(); - case 540: + case 561: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(554); + lookahead == 'e') ADVANCE(575); END_STATE(); - case 541: + case 562: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1256); + lookahead == 'e') ADVANCE(1277); END_STATE(); - case 542: + case 563: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1258); + lookahead == 'e') ADVANCE(1279); END_STATE(); - case 543: + case 564: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(571); + lookahead == 'e') ADVANCE(592); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(635); + lookahead == 'i') ADVANCE(656); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(636); + lookahead == 'o') ADVANCE(657); END_STATE(); - case 544: + case 565: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1268); + lookahead == 'e') ADVANCE(1289); END_STATE(); - case 545: + case 566: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(539); + lookahead == 'e') ADVANCE(560); END_STATE(); - case 546: + case 567: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1226); + lookahead == 'e') ADVANCE(1247); END_STATE(); - case 547: + case 568: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1240); + lookahead == 'e') ADVANCE(1261); END_STATE(); - case 548: + case 569: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1282); + lookahead == 'e') ADVANCE(1303); END_STATE(); - case 549: + case 570: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(607); + lookahead == 'e') ADVANCE(628); END_STATE(); - case 550: + case 571: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(610); + lookahead == 'e') ADVANCE(631); END_STATE(); - case 551: + case 572: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(545); END_STATE(); - case 552: + case 573: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(608); + lookahead == 'e') ADVANCE(629); END_STATE(); - case 553: + case 574: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(555); + lookahead == 'e') ADVANCE(576); END_STATE(); - case 554: + case 575: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(619); + lookahead == 'f') ADVANCE(640); END_STATE(); - case 555: + case 576: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(621); + lookahead == 'f') ADVANCE(642); END_STATE(); - case 556: + case 577: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1295); + lookahead == 'g') ADVANCE(1316); END_STATE(); - case 557: + case 578: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(562); + lookahead == 'g') ADVANCE(583); END_STATE(); - case 558: + case 579: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(545); + lookahead == 'g') ADVANCE(566); END_STATE(); - case 559: + case 580: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(563); + lookahead == 'g') ADVANCE(584); END_STATE(); - case 560: + case 581: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(520); + lookahead == 'h') ADVANCE(541); END_STATE(); - case 561: + case 582: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1230); + lookahead == 'h') ADVANCE(1251); END_STATE(); - case 562: + case 583: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(620); + lookahead == 'h') ADVANCE(641); END_STATE(); - case 563: + case 584: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(624); + lookahead == 'h') ADVANCE(645); END_STATE(); - case 564: + case 585: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); + lookahead == 'i') ADVANCE(578); END_STATE(); - case 565: + case 586: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1236); + lookahead == 'i') ADVANCE(1257); END_STATE(); - case 566: + case 587: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(590); + lookahead == 'i') ADVANCE(611); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(577); + lookahead == 'u') ADVANCE(598); END_STATE(); - case 567: + case 588: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(589); + lookahead == 'i') ADVANCE(610); END_STATE(); - case 568: + case 589: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(603); + lookahead == 'i') ADVANCE(624); END_STATE(); - case 569: + case 590: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(538); + lookahead == 'i') ADVANCE(559); END_STATE(); - case 570: + case 591: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(559); + lookahead == 'i') ADVANCE(580); END_STATE(); - case 571: + case 592: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1234); + lookahead == 'l') ADVANCE(1255); END_STATE(); - case 572: + case 593: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1238); + lookahead == 'l') ADVANCE(1259); END_STATE(); - case 573: + case 594: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1210); + lookahead == 'l') ADVANCE(1231); END_STATE(); - case 574: + case 595: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1288); + lookahead == 'l') ADVANCE(1309); END_STATE(); - case 575: + case 596: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(638); + lookahead == 'l') ADVANCE(659); END_STATE(); - case 576: + case 597: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(601); + lookahead == 'l') ADVANCE(622); END_STATE(); - case 577: + case 598: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(627); + lookahead == 'l') ADVANCE(648); END_STATE(); - case 578: + case 599: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(579); + lookahead == 'l') ADVANCE(600); END_STATE(); - case 579: + case 600: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(551); + lookahead == 'l') ADVANCE(572); END_STATE(); - case 580: + case 601: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(535); + lookahead == 'm') ADVANCE(556); END_STATE(); - case 581: + case 602: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(583); + lookahead == 'm') ADVANCE(604); END_STATE(); - case 582: + case 603: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(544); + lookahead == 'm') ADVANCE(565); END_STATE(); - case 583: + case 604: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(519); + lookahead == 'm') ADVANCE(540); END_STATE(); - case 584: + case 605: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1246); + lookahead == 'n') ADVANCE(1267); END_STATE(); - case 585: + case 606: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(533); + lookahead == 'n') ADVANCE(554); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(634); + lookahead == 'q') ADVANCE(655); END_STATE(); - case 586: + case 607: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1220); + lookahead == 'n') ADVANCE(1241); END_STATE(); - case 587: + case 608: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1274); + lookahead == 'n') ADVANCE(1295); END_STATE(); - case 588: + case 609: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(596); + lookahead == 'n') ADVANCE(617); END_STATE(); - case 589: + case 610: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(623); + lookahead == 'n') ADVANCE(644); END_STATE(); - case 590: + case 611: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(631); + lookahead == 'n') ADVANCE(652); END_STATE(); - case 591: + case 612: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(636); + lookahead == 'o') ADVANCE(657); END_STATE(); - case 592: + case 613: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(628); + lookahead == 'o') ADVANCE(649); END_STATE(); - case 593: + case 614: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1264); + lookahead == 'o') ADVANCE(1285); END_STATE(); - case 594: + case 615: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(582); + lookahead == 'o') ADVANCE(603); END_STATE(); - case 595: + case 616: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(581); + lookahead == 'o') ADVANCE(602); END_STATE(); - case 596: + case 617: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(611); + lookahead == 'o') ADVANCE(632); END_STATE(); - case 597: + case 618: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(637); + lookahead == 'o') ADVANCE(658); END_STATE(); - case 598: + case 619: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(633); + lookahead == 'o') ADVANCE(654); END_STATE(); - case 599: + case 620: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1244); + lookahead == 'p') ADVANCE(1265); END_STATE(); - case 600: + case 621: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1242); + lookahead == 'p') ADVANCE(1263); END_STATE(); - case 601: + case 622: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1262); + lookahead == 'p') ADVANCE(1283); END_STATE(); - case 602: + case 623: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1272); + lookahead == 'p') ADVANCE(1293); END_STATE(); - case 603: + case 624: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(575); + lookahead == 'p') ADVANCE(596); END_STATE(); - case 604: + case 625: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(219); + lookahead == 'r') ADVANCE(229); END_STATE(); - case 605: + case 626: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(146); + lookahead == 'r') ADVANCE(149); END_STATE(); - case 606: + case 627: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1232); + lookahead == 'r') ADVANCE(1253); END_STATE(); - case 607: + case 628: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1222); + lookahead == 'r') ADVANCE(1243); END_STATE(); - case 608: + case 629: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1291); + lookahead == 'r') ADVANCE(1312); END_STATE(); - case 609: + case 630: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(586); + lookahead == 'r') ADVANCE(607); END_STATE(); - case 610: + case 631: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(622); + lookahead == 'r') ADVANCE(643); END_STATE(); - case 611: + case 632: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(547); + lookahead == 'r') ADVANCE(568); END_STATE(); - case 612: + case 633: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1276); + lookahead == 's') ADVANCE(1297); END_STATE(); - case 613: + case 634: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1278); + lookahead == 's') ADVANCE(1299); END_STATE(); - case 614: + case 635: if (lookahead == 'S' || - lookahead == 's') ADVANCE(541); + lookahead == 's') ADVANCE(562); END_STATE(); - case 615: + case 636: if (lookahead == 'S' || - lookahead == 's') ADVANCE(565); + lookahead == 's') ADVANCE(586); END_STATE(); - case 616: + case 637: if (lookahead == 'S' || - lookahead == 's') ADVANCE(542); + lookahead == 's') ADVANCE(563); END_STATE(); - case 617: + case 638: if (lookahead == 'S' || - lookahead == 's') ADVANCE(561); + lookahead == 's') ADVANCE(582); END_STATE(); - case 618: + case 639: if (lookahead == 'S' || - lookahead == 's') ADVANCE(550); + lookahead == 's') ADVANCE(571); END_STATE(); - case 619: + case 640: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1249); + lookahead == 't') ADVANCE(1270); END_STATE(); - case 620: + case 641: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1253); + lookahead == 't') ADVANCE(1274); END_STATE(); - case 621: + case 642: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1248); + lookahead == 't') ADVANCE(1269); END_STATE(); - case 622: + case 643: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1266); + lookahead == 't') ADVANCE(1287); END_STATE(); - case 623: + case 644: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1284); + lookahead == 't') ADVANCE(1305); END_STATE(); - case 624: + case 645: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1252); + lookahead == 't') ADVANCE(1273); END_STATE(); - case 625: + case 646: if (lookahead == 'T' || - lookahead == 't') ADVANCE(145); + lookahead == 't') ADVANCE(148); END_STATE(); - case 626: + case 647: if (lookahead == 'T' || - lookahead == 't') ADVANCE(632); + lookahead == 't') ADVANCE(653); END_STATE(); - case 627: + case 648: if (lookahead == 'T' || - lookahead == 't') ADVANCE(568); + lookahead == 't') ADVANCE(589); END_STATE(); - case 628: + case 649: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(614); + lookahead == 'u') ADVANCE(635); END_STATE(); - case 629: + case 650: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(556); + lookahead == 'u') ADVANCE(577); END_STATE(); - case 630: + case 651: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(612); + lookahead == 'u') ADVANCE(633); END_STATE(); - case 631: + case 652: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(613); + lookahead == 'u') ADVANCE(634); END_STATE(); - case 632: + case 653: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(609); + lookahead == 'u') ADVANCE(630); END_STATE(); - case 633: + case 654: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(616); + lookahead == 'u') ADVANCE(637); END_STATE(); - case 634: + case 655: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(527); + lookahead == 'u') ADVANCE(548); END_STATE(); - case 635: + case 656: if (lookahead == 'V' || - lookahead == 'v') ADVANCE(569); + lookahead == 'v') ADVANCE(590); END_STATE(); - case 636: + case 657: if (lookahead == 'W' || - lookahead == 'w') ADVANCE(584); + lookahead == 'w') ADVANCE(605); END_STATE(); - case 637: + case 658: if (lookahead == 'W' || - lookahead == 'w') ADVANCE(587); + lookahead == 'w') ADVANCE(608); END_STATE(); - case 638: + case 659: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1280); + lookahead == 'y') ADVANCE(1301); END_STATE(); - case 639: + case 660: if (lookahead == '0' || - lookahead == '1') ADVANCE(1841); + lookahead == '1') ADVANCE(1773); END_STATE(); - case 640: + case 661: if (lookahead == '!' || lookahead == '=' || - lookahead == '>') ADVANCE(1878); + lookahead == '>') ADVANCE(1810); END_STATE(); - case 641: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); + case 662: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(793); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(814); END_STATE(); - case 642: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1261); + case 663: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1282); END_STATE(); - case 643: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1835); + case 664: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1767); END_STATE(); - case 644: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1836); + case 665: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1768); END_STATE(); - case 645: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1704); + case 666: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); - case 646: + case 667: if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(986); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(1123); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == '{') ADVANCE(802); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(1007); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(1144); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'a') ADVANCE(944); + if (lookahead == '{') ADVANCE(823); if (lookahead == '\t' || - lookahead == ' ') SKIP(164) + lookahead == ' ') SKIP(167) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); - case 647: + case 668: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1844); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1776); END_STATE(); - case 648: + case 669: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1302); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1323); END_STATE(); - case 649: + case 670: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1601); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1582); END_STATE(); - case 650: + case 671: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(649); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(670); END_STATE(); - case 651: + case 672: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(650); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(671); END_STATE(); - case 652: + case 673: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(651); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(672); END_STATE(); - case 653: + case 674: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(673); END_STATE(); - case 654: + case 675: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(653); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(674); END_STATE(); - case 655: + case 676: if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(218); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(1123); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == '{') ADVANCE(802); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(228); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(1144); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == '{') ADVANCE(823); if (lookahead == '\t' || - lookahead == ' ') SKIP(116) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(928); + lookahead == ' ') SKIP(117) + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(949); END_STATE(); - case 656: + case 677: if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(721); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); END_STATE(); - case 657: - if (aux_sym_identifier_token2_character_set_1(lookahead)) ADVANCE(986); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'b') ADVANCE(979); - if (lookahead == 'f') ADVANCE(949); - if (lookahead == 'g') ADVANCE(972); - if (lookahead == 'l') ADVANCE(950); - if (lookahead == 'n') ADVANCE(985); - if (lookahead == 'p') ADVANCE(973); - if (lookahead == '{') ADVANCE(802); + case 678: + if (aux_sym_identifier_token2_character_set_1(lookahead)) ADVANCE(1007); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'b') ADVANCE(1000); + if (lookahead == 'f') ADVANCE(970); + if (lookahead == 'g') ADVANCE(993); + if (lookahead == 'l') ADVANCE(971); + if (lookahead == 'n') ADVANCE(1006); + if (lookahead == 'p') ADVANCE(994); + if (lookahead == '{') ADVANCE(823); if (lookahead == '\t' || - lookahead == ' ') SKIP(172) + lookahead == ' ') SKIP(174) END_STATE(); - case 658: - if (aux_sym_identifier_token2_character_set_2(lookahead)) ADVANCE(986); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == 'c') ADVANCE(981); - if (lookahead == 'i') ADVANCE(937); - if (lookahead == 'l') ADVANCE(953); - if (lookahead == 'n') ADVANCE(982); - if (lookahead == 't') ADVANCE(941); - if (lookahead == '{') ADVANCE(802); + case 679: + if (aux_sym_identifier_token2_character_set_2(lookahead)) ADVANCE(1007); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '\\') ADVANCE(531); + if (lookahead == 'c') ADVANCE(1002); + if (lookahead == 'i') ADVANCE(958); + if (lookahead == 'l') ADVANCE(974); + if (lookahead == 'n') ADVANCE(1003); + if (lookahead == 't') ADVANCE(962); + if (lookahead == '{') ADVANCE(823); if (lookahead == '\t' || - lookahead == ' ') SKIP(177) + lookahead == ' ') SKIP(179) END_STATE(); - case 659: + case 680: if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'i') ADVANCE(963); - if (lookahead == '{') ADVANCE(802); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'i') ADVANCE(984); + if (lookahead == '{') ADVANCE(823); if (lookahead == '\t' || - lookahead == ' ') SKIP(359) + lookahead == ' ') SKIP(377) END_STATE(); - case 660: + case 681: if (lookahead == '"' || lookahead == '#' || lookahead == '%' || @@ -10872,914 +11098,915 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '+' || ('.' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1923); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1855); END_STATE(); - case 661: + case 682: if (lookahead != 0 && lookahead != '\n' && - lookahead != '\'') ADVANCE(1599); + lookahead != '\'') ADVANCE(1580); END_STATE(); - case 662: + case 683: if (lookahead != 0 && - lookahead != '\n') ADVANCE(1179); + lookahead != '\n') ADVANCE(1200); END_STATE(); - case 663: + case 684: if (lookahead != 0 && - lookahead != '\n') ADVANCE(1318); + lookahead != '\n') ADVANCE(1339); END_STATE(); - case 664: - if (eof) ADVANCE(667); - if (lookahead == '\n') ADVANCE(711); - if (lookahead == '!') ADVANCE(1833); - if (lookahead == '#') ADVANCE(1801); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(1187); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1309); - if (lookahead == '=') ADVANCE(1122); - if (lookahead == '>') ADVANCE(1827); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(1165); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == '\\') ADVANCE(732); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == '_') ADVANCE(724); - if (lookahead == '{') ADVANCE(800); - if (lookahead == '|') ADVANCE(722); - if (lookahead == '}') ADVANCE(801); - if (lookahead == '~') ADVANCE(722); + case 685: + if (eof) ADVANCE(688); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '!') ADVANCE(1765); + if (lookahead == '#') ADVANCE(1733); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '\'') ADVANCE(1581); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(1208); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1330); + if (lookahead == '=') ADVANCE(1143); + if (lookahead == '>') ADVANCE(1759); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(1186); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == '\\') ADVANCE(753); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == '_') ADVANCE(745); + if (lookahead == '{') ADVANCE(821); + if (lookahead == '|') ADVANCE(743); + if (lookahead == '}') ADVANCE(822); + if (lookahead == '~') ADVANCE(743); if (lookahead == '\t' || - lookahead == ' ') SKIP(664) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(722); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + lookahead == ' ') SKIP(685) + if (lookahead == '"' || + ('^' <= lookahead && lookahead <= '`')) ADVANCE(743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(743); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(727); if (lookahead != 0 && - lookahead != '\r') ADVANCE(722); + lookahead != '\r') ADVANCE(743); END_STATE(); - case 665: - if (eof) ADVANCE(667); - if (lookahead == '!') ADVANCE(1162); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '\'') ADVANCE(662); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1193); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(152); - if (lookahead == '.') ADVANCE(1187); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(1123); - if (lookahead == '>') ADVANCE(1308); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '\\') ADVANCE(108); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == 'a') ADVANCE(282); - if (lookahead == 'b') ADVANCE(487); - if (lookahead == 'c') ADVANCE(262); - if (lookahead == 'd') ADVANCE(345); - if (lookahead == 'e') ADVANCE(400); - if (lookahead == 'f') ADVANCE(349); - if (lookahead == 'g') ADVANCE(446); - if (lookahead == 'i') ADVANCE(265); - if (lookahead == 'k') ADVANCE(306); - if (lookahead == 'l') ADVANCE(360); - if (lookahead == 'm') ADVANCE(250); - if (lookahead == 'n') ADVANCE(285); - if (lookahead == 'o') ADVANCE(401); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(365); - if (lookahead == 't') ADVANCE(321); - if (lookahead == '}') ADVANCE(801); + case 686: + if (eof) ADVANCE(688); + if (lookahead == '!') ADVANCE(1183); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '\'') ADVANCE(683); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1214); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(1208); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(1144); + if (lookahead == '>') ADVANCE(1329); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '\\') ADVANCE(109); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == 'a') ADVANCE(299); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'c') ADVANCE(276); + if (lookahead == 'd') ADVANCE(363); + if (lookahead == 'e') ADVANCE(419); + if (lookahead == 'f') ADVANCE(367); + if (lookahead == 'g') ADVANCE(467); + if (lookahead == 'i') ADVANCE(281); + if (lookahead == 'k') ADVANCE(323); + if (lookahead == 'l') ADVANCE(378); + if (lookahead == 'm') ADVANCE(263); + if (lookahead == 'n') ADVANCE(302); + if (lookahead == 'o') ADVANCE(420); + if (lookahead == 'r') ADVANCE(320); + if (lookahead == 's') ADVANCE(384); + if (lookahead == 't') ADVANCE(339); + if (lookahead == '}') ADVANCE(822); if (lookahead == '\t' || - lookahead == ' ') SKIP(666) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(700); + lookahead == ' ') SKIP(687) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(721); END_STATE(); - case 666: - if (eof) ADVANCE(667); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '\'') ADVANCE(662); - if (lookahead == ')') ADVANCE(1161); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1193); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(152); - if (lookahead == '.') ADVANCE(1187); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(1123); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(660); - if (lookahead == '\\') ADVANCE(108); - if (lookahead == ']') ADVANCE(1846); - if (lookahead == 'a') ADVANCE(282); - if (lookahead == 'b') ADVANCE(487); - if (lookahead == 'c') ADVANCE(262); - if (lookahead == 'd') ADVANCE(345); - if (lookahead == 'e') ADVANCE(400); - if (lookahead == 'f') ADVANCE(349); - if (lookahead == 'g') ADVANCE(446); - if (lookahead == 'i') ADVANCE(265); - if (lookahead == 'k') ADVANCE(306); - if (lookahead == 'l') ADVANCE(360); - if (lookahead == 'm') ADVANCE(250); - if (lookahead == 'n') ADVANCE(285); - if (lookahead == 'o') ADVANCE(401); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(365); - if (lookahead == 't') ADVANCE(321); - if (lookahead == '}') ADVANCE(801); + case 687: + if (eof) ADVANCE(688); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '\'') ADVANCE(683); + if (lookahead == ')') ADVANCE(1182); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1214); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(155); + if (lookahead == '.') ADVANCE(1208); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(550); + if (lookahead == '=') ADVANCE(1144); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(681); + if (lookahead == '\\') ADVANCE(109); + if (lookahead == ']') ADVANCE(1778); + if (lookahead == 'a') ADVANCE(299); + if (lookahead == 'b') ADVANCE(508); + if (lookahead == 'c') ADVANCE(276); + if (lookahead == 'd') ADVANCE(363); + if (lookahead == 'e') ADVANCE(419); + if (lookahead == 'f') ADVANCE(367); + if (lookahead == 'g') ADVANCE(467); + if (lookahead == 'i') ADVANCE(281); + if (lookahead == 'k') ADVANCE(323); + if (lookahead == 'l') ADVANCE(378); + if (lookahead == 'm') ADVANCE(263); + if (lookahead == 'n') ADVANCE(302); + if (lookahead == 'o') ADVANCE(420); + if (lookahead == 'r') ADVANCE(320); + if (lookahead == 's') ADVANCE(384); + if (lookahead == 't') ADVANCE(339); + if (lookahead == '}') ADVANCE(822); if (lookahead == '\t' || - lookahead == ' ') SKIP(666) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(700); + lookahead == ' ') SKIP(687) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(721); END_STATE(); - case 667: + case 688: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 668: + case 689: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 669: + case 690: ACCEPT_TOKEN(anon_sym_a_COLON); END_STATE(); - case 670: + case 691: ACCEPT_TOKEN(aux_sym_normal_statement_token1); - if (lookahead == '\t') ADVANCE(670); - if (lookahead == ' ') ADVANCE(670); + if (lookahead == '\t') ADVANCE(691); + if (lookahead == ' ') ADVANCE(691); if (lookahead != 0 && - lookahead != '\n') ADVANCE(671); + lookahead != '\n') ADVANCE(692); END_STATE(); - case 671: + case 692: ACCEPT_TOKEN(aux_sym_normal_statement_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(671); + lookahead != '\n') ADVANCE(692); END_STATE(); - case 672: + case 693: ACCEPT_TOKEN(sym_filetype); - if (lookahead == 'A') ADVANCE(678); + if (lookahead == 'A') ADVANCE(699); if (lookahead == '-' || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); END_STATE(); - case 673: + case 694: ACCEPT_TOKEN(sym_filetype); - if (lookahead == 'A') ADVANCE(675); + if (lookahead == 'A') ADVANCE(696); if (lookahead == '-' || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); END_STATE(); - case 674: + case 695: ACCEPT_TOKEN(sym_filetype); - if (lookahead == 'B') ADVANCE(673); + if (lookahead == 'B') ADVANCE(694); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); END_STATE(); - case 675: + case 696: ACCEPT_TOKEN(sym_filetype); - if (lookahead == 'C') ADVANCE(676); + if (lookahead == 'C') ADVANCE(697); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); END_STATE(); - case 676: + case 697: ACCEPT_TOKEN(sym_filetype); - if (lookahead == 'K') ADVANCE(684); + if (lookahead == 'K') ADVANCE(705); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); END_STATE(); - case 677: + case 698: ACCEPT_TOKEN(sym_filetype); - if (lookahead == 'L') ADVANCE(674); + if (lookahead == 'L') ADVANCE(695); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); END_STATE(); - case 678: + case 699: ACCEPT_TOKEN(sym_filetype); - if (lookahead == 'L') ADVANCE(677); + if (lookahead == 'L') ADVANCE(698); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); END_STATE(); - case 679: + case 700: ACCEPT_TOKEN(sym_filetype); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); END_STATE(); - case 680: + case 701: ACCEPT_TOKEN(aux_sym__filetype_immediate_token1); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(701); END_STATE(); - case 681: + case 702: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 682: + case 703: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1812); + if (lookahead == '.') ADVANCE(1744); END_STATE(); - case 683: + case 704: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1812); - if (lookahead == '=') ADVANCE(1130); + if (lookahead == '.') ADVANCE(1744); + if (lookahead == '=') ADVANCE(1151); END_STATE(); - case 684: + case 705: ACCEPT_TOKEN(anon_sym_FALLBACK); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); END_STATE(); - case 685: + case 706: ACCEPT_TOKEN(anon_sym_euc_DASHjp); END_STATE(); - case 686: + case 707: ACCEPT_TOKEN(anon_sym_euc_DASHkr); END_STATE(); - case 687: + case 708: ACCEPT_TOKEN(anon_sym_euc_DASHcn); END_STATE(); - case 688: + case 709: ACCEPT_TOKEN(anon_sym_euc_DASHtw); END_STATE(); - case 689: + case 710: ACCEPT_TOKEN(anon_sym_utf_DASH8); END_STATE(); - case 690: + case 711: ACCEPT_TOKEN(anon_sym_ucs_DASH2); - if (lookahead == '1') ADVANCE(294); - if (lookahead == 'b') ADVANCE(295); + if (lookahead == '1') ADVANCE(311); + if (lookahead == 'b') ADVANCE(312); END_STATE(); - case 691: + case 712: ACCEPT_TOKEN(anon_sym_ucs_DASH21e); END_STATE(); - case 692: + case 713: ACCEPT_TOKEN(anon_sym_utf_DASH16); - if (lookahead == 'l') ADVANCE(298); + if (lookahead == 'l') ADVANCE(315); END_STATE(); - case 693: + case 714: ACCEPT_TOKEN(anon_sym_utf_DASH16le); END_STATE(); - case 694: + case 715: ACCEPT_TOKEN(anon_sym_ucs_DASH4); - if (lookahead == 'b') ADVANCE(296); - if (lookahead == 'l') ADVANCE(297); + if (lookahead == 'b') ADVANCE(313); + if (lookahead == 'l') ADVANCE(314); END_STATE(); - case 695: + case 716: ACCEPT_TOKEN(anon_sym_ucs_DASH4le); END_STATE(); - case 696: + case 717: ACCEPT_TOKEN(anon_sym_ucs_DASH2be); END_STATE(); - case 697: + case 718: ACCEPT_TOKEN(anon_sym_ucs_DASH4be); END_STATE(); - case 698: + case 719: ACCEPT_TOKEN(anon_sym_utf_DASH32); - if (lookahead == 'l') ADVANCE(299); + if (lookahead == 'l') ADVANCE(316); END_STATE(); - case 699: + case 720: ACCEPT_TOKEN(anon_sym_utf_DASH32le); END_STATE(); - case 700: + case 721: ACCEPT_TOKEN(sym_command_name); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(700); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(721); END_STATE(); - case 701: + case 722: ACCEPT_TOKEN(anon_sym_START); END_STATE(); - case 702: + case 723: ACCEPT_TOKEN(anon_sym_OPT); END_STATE(); - case 703: + case 724: ACCEPT_TOKEN(anon_sym_PACK); END_STATE(); - case 704: + case 725: ACCEPT_TOKEN(anon_sym_ALL); END_STATE(); - case 705: + case 726: ACCEPT_TOKEN(aux_sym_wincmd_statement_token1); END_STATE(); - case 706: + case 727: ACCEPT_TOKEN(aux_sym_wincmd_statement_token1); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 707: + case 728: ACCEPT_TOKEN(sym_chunk); - if (lookahead == '<') ADVANCE(710); + if (lookahead == '<') ADVANCE(731); if (lookahead != 0 && - lookahead != '\n') ADVANCE(708); + lookahead != '\n') ADVANCE(729); END_STATE(); - case 708: + case 729: ACCEPT_TOKEN(sym_chunk); if (lookahead != 0 && - lookahead != '\n') ADVANCE(708); + lookahead != '\n') ADVANCE(729); END_STATE(); - case 709: + case 730: ACCEPT_TOKEN(sym__heredoc_line); END_STATE(); - case 710: + case 731: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 711: + case 732: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 712: + case 733: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 713: + case 734: ACCEPT_TOKEN(anon_sym_in); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 714: + case 735: ACCEPT_TOKEN(aux_sym__au_pattern_token1); - if (lookahead == '/') ADVANCE(714); + if (lookahead == '/') ADVANCE(735); if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); + lookahead != '\n') ADVANCE(154); END_STATE(); - case 715: + case 736: ACCEPT_TOKEN(aux_sym__au_pattern_token2); - if (lookahead == '?') ADVANCE(715); + if (lookahead == '?') ADVANCE(736); if (lookahead != 0 && - lookahead != '\n') ADVANCE(227); + lookahead != '\n') ADVANCE(237); END_STATE(); - case 716: + case 737: ACCEPT_TOKEN(aux_sym_autocmd_statement_token1); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != ',') ADVANCE(716); + lookahead != ',') ADVANCE(737); END_STATE(); - case 717: + case 738: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 718: + case 739: ACCEPT_TOKEN(anon_sym_PLUS_PLUSonce); END_STATE(); - case 719: + case 740: ACCEPT_TOKEN(anon_sym_PLUS_PLUSnested); END_STATE(); - case 720: + case 741: ACCEPT_TOKEN(sym_au_event); - if (lookahead == '_') ADVANCE(921); + if (lookahead == '_') ADVANCE(942); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 721: + case 742: ACCEPT_TOKEN(sym_au_event); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(721); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(742); END_STATE(); - case 722: + case 743: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token1); END_STATE(); - case 723: + case 744: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(604); + lookahead == 'c') ADVANCE(625); END_STATE(); - case 724: + case 745: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token1); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 725: + case 746: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 726: + case 747: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '%') ADVANCE(114); - if (lookahead == '&') ADVANCE(1200); - if (lookahead == '(') ADVANCE(1919); - if (lookahead == ')') ADVANCE(1920); - if (lookahead == '@') ADVANCE(640); - if (lookahead == 'z') ADVANCE(115); - if (lookahead == '{') ADVANCE(143); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '%') ADVANCE(115); + if (lookahead == '&') ADVANCE(1221); + if (lookahead == '(') ADVANCE(1851); + if (lookahead == ')') ADVANCE(1852); + if (lookahead == '@') ADVANCE(661); + if (lookahead == 'z') ADVANCE(116); + if (lookahead == '{') ADVANCE(146); + if (lookahead == '|') ADVANCE(1361); if (lookahead == '+' || lookahead == '=' || - lookahead == '?') ADVANCE(1877); + lookahead == '?') ADVANCE(1809); END_STATE(); - case 727: + case 748: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '%') ADVANCE(114); - if (lookahead == '&') ADVANCE(1200); - if (lookahead == '(') ADVANCE(1919); - if (lookahead == ')') ADVANCE(1920); - if (lookahead == 'z') ADVANCE(115); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '%') ADVANCE(115); + if (lookahead == '&') ADVANCE(1221); + if (lookahead == '(') ADVANCE(1851); + if (lookahead == ')') ADVANCE(1852); + if (lookahead == 'z') ADVANCE(116); + if (lookahead == '|') ADVANCE(1361); END_STATE(); - case 728: + case 749: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '%') ADVANCE(114); - if (lookahead == '&') ADVANCE(1200); - if (lookahead == '(') ADVANCE(1919); - if (lookahead == '/') ADVANCE(1198); - if (lookahead == '?') ADVANCE(1199); - if (lookahead == '@') ADVANCE(640); - if (lookahead == 'z') ADVANCE(115); - if (lookahead == '{') ADVANCE(143); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '%') ADVANCE(115); + if (lookahead == '&') ADVANCE(1221); + if (lookahead == '(') ADVANCE(1851); + if (lookahead == '/') ADVANCE(1219); + if (lookahead == '?') ADVANCE(1220); + if (lookahead == '@') ADVANCE(661); + if (lookahead == 'z') ADVANCE(116); + if (lookahead == '{') ADVANCE(146); + if (lookahead == '|') ADVANCE(1361); if (lookahead == '+' || - lookahead == '=') ADVANCE(1877); + lookahead == '=') ADVANCE(1809); END_STATE(); - case 729: + case 750: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '%') ADVANCE(114); - if (lookahead == '&') ADVANCE(1200); - if (lookahead == '(') ADVANCE(1919); - if (lookahead == '@') ADVANCE(640); - if (lookahead == 'z') ADVANCE(115); - if (lookahead == '{') ADVANCE(143); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '%') ADVANCE(115); + if (lookahead == '&') ADVANCE(1221); + if (lookahead == '(') ADVANCE(1851); + if (lookahead == '@') ADVANCE(661); + if (lookahead == 'z') ADVANCE(116); + if (lookahead == '{') ADVANCE(146); + if (lookahead == '|') ADVANCE(1361); if (lookahead == '+' || lookahead == '=' || - lookahead == '?') ADVANCE(1877); + lookahead == '?') ADVANCE(1809); END_STATE(); - case 730: + case 751: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '%') ADVANCE(114); - if (lookahead == '&') ADVANCE(1200); - if (lookahead == '(') ADVANCE(1919); - if (lookahead == 'z') ADVANCE(115); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '%') ADVANCE(115); + if (lookahead == '&') ADVANCE(1221); + if (lookahead == '(') ADVANCE(1851); + if (lookahead == 'z') ADVANCE(116); + if (lookahead == '|') ADVANCE(1361); END_STATE(); - case 731: + case 752: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '%') ADVANCE(114); - if (lookahead == '(') ADVANCE(1919); - if (lookahead == 'z') ADVANCE(115); + if (lookahead == '%') ADVANCE(115); + if (lookahead == '(') ADVANCE(1851); + if (lookahead == 'z') ADVANCE(116); END_STATE(); - case 732: + case 753: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '|') ADVANCE(1361); END_STATE(); - case 733: + case 754: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '|') ADVANCE(1361); if (lookahead != 0 && - lookahead != '\n') ADVANCE(783); + lookahead != '\n') ADVANCE(804); END_STATE(); - case 734: + case 755: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead != 0 && - lookahead != '\n') ADVANCE(783); + lookahead != '\n') ADVANCE(804); END_STATE(); - case 735: + case 756: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token2); END_STATE(); - case 736: + case 757: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token2); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(736); + lookahead == ' ') ADVANCE(757); if (lookahead != 0 && - lookahead != '\n') ADVANCE(735); + lookahead != '\n') ADVANCE(756); END_STATE(); - case 737: + case 758: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); END_STATE(); - case 738: + case 759: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(1207); + if (lookahead == '-') ADVANCE(1228); END_STATE(); - case 739: + case 760: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(1207); - if (lookahead == ':') ADVANCE(669); + if (lookahead == '-') ADVANCE(1228); + if (lookahead == ':') ADVANCE(690); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(901); + lookahead == 'l') ADVANCE(922); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 740: + case 761: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(1207); + if (lookahead == '-') ADVANCE(1228); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(856); + lookahead == 'e') ADVANCE(877); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(918); + lookahead == 'o') ADVANCE(939); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 741: + case 762: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(1207); + if (lookahead == '-') ADVANCE(1228); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(571); + lookahead == 'e') ADVANCE(592); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(636); + lookahead == 'o') ADVANCE(657); END_STATE(); - case 742: + case 763: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(1207); + if (lookahead == '-') ADVANCE(1228); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(901); + lookahead == 'l') ADVANCE(922); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 743: + case 764: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(1207); + if (lookahead == '-') ADVANCE(1228); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(625); + lookahead == 'l') ADVANCE(646); END_STATE(); - case 744: + case 765: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(1207); + if (lookahead == '-') ADVANCE(1228); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 745: + case 766: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(1209); + if (lookahead == '-') ADVANCE(1230); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(812); + lookahead == 'h') ADVANCE(833); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1219); + lookahead == 'r') ADVANCE(1240); if (lookahead == 'S' || - lookahead == 's') ADVANCE(850); + lookahead == 's') ADVANCE(871); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 746: + case 767: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(1209); + if (lookahead == '-') ADVANCE(1230); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(520); + lookahead == 'h') ADVANCE(541); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1218); + lookahead == 'r') ADVANCE(1239); if (lookahead == 'S' || - lookahead == 's') ADVANCE(565); + lookahead == 's') ADVANCE(586); END_STATE(); - case 747: + case 768: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(1208); + if (lookahead == '-') ADVANCE(1229); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(824); + lookahead == 'i') ADVANCE(845); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(813); + lookahead == 'p') ADVANCE(834); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 748: + case 769: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '-') ADVANCE(1208); + if (lookahead == '-') ADVANCE(1229); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(534); + lookahead == 'i') ADVANCE(555); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(523); + lookahead == 'p') ADVANCE(544); END_STATE(); - case 749: + case 770: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '.') ADVANCE(643); + if (lookahead == '.') ADVANCE(664); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(639); + lookahead == 'b') ADVANCE(660); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(647); + lookahead == 'x') ADVANCE(668); if (lookahead == '8' || - lookahead == '9') ADVANCE(1839); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1838); + lookahead == '9') ADVANCE(1771); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1770); END_STATE(); - case 750: + case 771: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '.') ADVANCE(643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (lookahead == '.') ADVANCE(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1771); END_STATE(); - case 751: + case 772: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == ':') ADVANCE(669); + if (lookahead == ':') ADVANCE(690); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 752: + case 773: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (lookahead == '{') ADVANCE(1925); + if (lookahead == '{') ADVANCE(1857); END_STATE(); - case 753: + case 774: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(887); + lookahead == 'a') ADVANCE(908); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1212); + lookahead == 's') ADVANCE(1233); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 754: + case 775: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(845); + lookahead == 'a') ADVANCE(866); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(910); + lookahead == 'l') ADVANCE(931); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 755: + case 776: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(819); + lookahead == 'a') ADVANCE(840); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 756: + case 777: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(528); + lookahead == 'a') ADVANCE(549); END_STATE(); - case 757: + case 778: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(558); + lookahead == 'a') ADVANCE(579); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(629); + lookahead == 'l') ADVANCE(650); END_STATE(); - case 758: + case 779: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(606); + lookahead == 'a') ADVANCE(627); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1213); + lookahead == 's') ADVANCE(1234); END_STATE(); - case 759: + case 780: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(604); + lookahead == 'c') ADVANCE(625); END_STATE(); - case 760: + case 781: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(877); + lookahead == 'c') ADVANCE(898); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(829); + lookahead == 'd') ADVANCE(850); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(868); + lookahead == 'e') ADVANCE(889); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(875); + lookahead == 'h') ADVANCE(896); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(830); + lookahead == 'l') ADVANCE(851); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(851); + lookahead == 'm') ADVANCE(872); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(810); + lookahead == 'p') ADVANCE(831); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(855); + lookahead == 'r') ADVANCE(876); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(882); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1290); + lookahead == 'u') ADVANCE(903); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1311); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 761: + case 782: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(894); + lookahead == 'c') ADVANCE(915); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 762: + case 783: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(615); + lookahead == 'c') ADVANCE(636); END_STATE(); - case 763: + case 784: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(595); + lookahead == 'c') ADVANCE(616); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(543); + lookahead == 'd') ADVANCE(564); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(585); + lookahead == 'e') ADVANCE(606); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(594); + lookahead == 'h') ADVANCE(615); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(553); + lookahead == 'l') ADVANCE(574); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(566); + lookahead == 'm') ADVANCE(587); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(521); + lookahead == 'p') ADVANCE(542); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(570); + lookahead == 'r') ADVANCE(591); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(599); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1290); + lookahead == 'u') ADVANCE(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1311); END_STATE(); - case 764: + case 785: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(815); + lookahead == 'e') ADVANCE(836); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(821); + lookahead == 'o') ADVANCE(842); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1229); + lookahead == 't') ADVANCE(1250); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 765: + case 786: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(525); + lookahead == 'e') ADVANCE(546); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(531); + lookahead == 'o') ADVANCE(552); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1228); + lookahead == 't') ADVANCE(1249); END_STATE(); - case 766: + case 787: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(908); + lookahead == 'e') ADVANCE(929); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(843); + lookahead == 'i') ADVANCE(864); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 767: + case 788: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(861); + lookahead == 'e') ADVANCE(882); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(866); + lookahead == 'o') ADVANCE(887); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 768: + case 789: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(576); + lookahead == 'e') ADVANCE(597); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(582); + lookahead == 'o') ADVANCE(603); END_STATE(); - case 769: + case 790: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(626); + lookahead == 'e') ADVANCE(647); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); + lookahead == 'i') ADVANCE(578); END_STATE(); - case 770: + case 791: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(872); + lookahead == 'g') ADVANCE(893); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(900); + lookahead == 'n') ADVANCE(921); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 771: + case 792: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(588); + lookahead == 'g') ADVANCE(609); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(618); + lookahead == 'n') ADVANCE(639); END_STATE(); - case 772: + case 793: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1217); + lookahead == 'l') ADVANCE(1238); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(883); + lookahead == 'o') ADVANCE(904); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(858); + lookahead == 'u') ADVANCE(879); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 773: + case 794: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1216); + lookahead == 'l') ADVANCE(1237); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(600); + lookahead == 'o') ADVANCE(621); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(573); + lookahead == 'u') ADVANCE(594); END_STATE(); - case 774: + case 795: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(823); + lookahead == 'n') ADVANCE(844); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(857); + lookahead == 'o') ADVANCE(878); if (lookahead == 'S' || - lookahead == 's') ADVANCE(820); + lookahead == 's') ADVANCE(841); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 775: + case 796: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(533); + lookahead == 'n') ADVANCE(554); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(572); + lookahead == 'o') ADVANCE(593); if (lookahead == 'S' || - lookahead == 's') ADVANCE(530); + lookahead == 's') ADVANCE(551); END_STATE(); - case 776: + case 797: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(825); + lookahead == 'n') ADVANCE(846); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1245); + lookahead == 'p') ADVANCE(1266); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 777: + case 798: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(536); + lookahead == 'n') ADVANCE(557); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1244); + lookahead == 'p') ADVANCE(1265); END_STATE(); - case 778: + case 799: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1261); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1282); END_STATE(); - case 779: + case 800: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1261); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1282); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 780: + case 801: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 781: + case 802: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 782: + case 803: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token3); if (lookahead == '"' || lookahead == '#' || @@ -11788,1184 +12015,1184 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '+' || ('.' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1923); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1855); END_STATE(); - case 783: + case 804: ACCEPT_TOKEN(aux_sym__bang_filter_command_argument_token4); END_STATE(); - case 784: + case 805: ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || - lookahead == '_') ADVANCE(793); + lookahead == '_') ADVANCE(814); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(784); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(805); END_STATE(); - case 785: + case 806: ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(793); - if (lookahead == ':') ADVANCE(669); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead == ':') ADVANCE(690); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); - case 786: + case 807: ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(793); - if (lookahead == 'o') ADVANCE(788); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead == 'o') ADVANCE(809); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); - case 787: + case 808: ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(793); - if (lookahead == 's') ADVANCE(1816); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead == 's') ADVANCE(1748); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); - case 788: + case 809: ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(793); - if (lookahead == 't') ADVANCE(1821); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead == 't') ADVANCE(1753); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); - case 789: + case 810: ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(793); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(814); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); - case 790: + case 811: ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z')) ADVANCE(793); - if (lookahead == 'o') ADVANCE(792); + ('p' <= lookahead && lookahead <= 'z')) ADVANCE(814); + if (lookahead == 'o') ADVANCE(813); END_STATE(); - case 791: + case 812: ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z')) ADVANCE(793); - if (lookahead == 's') ADVANCE(1818); + ('t' <= lookahead && lookahead <= 'z')) ADVANCE(814); + if (lookahead == 's') ADVANCE(1750); END_STATE(); - case 792: + case 813: ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(793); - if (lookahead == 't') ADVANCE(1824); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(814); + if (lookahead == 't') ADVANCE(1756); END_STATE(); - case 793: + case 814: ACCEPT_TOKEN(aux_sym_argument_token1); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(793); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(814); END_STATE(); - case 794: + case 815: ACCEPT_TOKEN(aux_sym_argument_token2); - if (lookahead == '.') ADVANCE(643); + if (lookahead == '.') ADVANCE(664); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(639); + lookahead == 'b') ADVANCE(660); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(647); + lookahead == 'x') ADVANCE(668); if (lookahead == '8' || - lookahead == '9') ADVANCE(796); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(795); + lookahead == '9') ADVANCE(817); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(816); END_STATE(); - case 795: + case 816: ACCEPT_TOKEN(aux_sym_argument_token2); - if (lookahead == '.') ADVANCE(643); + if (lookahead == '.') ADVANCE(664); if (lookahead == '8' || - lookahead == '9') ADVANCE(796); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(795); + lookahead == '9') ADVANCE(817); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(816); END_STATE(); - case 796: + case 817: ACCEPT_TOKEN(aux_sym_argument_token2); - if (lookahead == '.') ADVANCE(643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(796); + if (lookahead == '.') ADVANCE(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(817); END_STATE(); - case 797: + case 818: ACCEPT_TOKEN(aux_sym_argument_token2); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(639); + lookahead == 'b') ADVANCE(660); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(647); + lookahead == 'x') ADVANCE(668); if (lookahead == '8' || - lookahead == '9') ADVANCE(799); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(798); + lookahead == '9') ADVANCE(820); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(819); END_STATE(); - case 798: + case 819: ACCEPT_TOKEN(aux_sym_argument_token2); if (lookahead == '8' || - lookahead == '9') ADVANCE(799); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(798); + lookahead == '9') ADVANCE(820); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(819); END_STATE(); - case 799: + case 820: ACCEPT_TOKEN(aux_sym_argument_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); END_STATE(); - case 800: + case 821: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 801: + case 822: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 802: + case 823: ACCEPT_TOKEN(anon_sym_LBRACE2); END_STATE(); - case 803: + case 824: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == '-') ADVANCE(1207); + if (lookahead == '-') ADVANCE(1228); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 804: + case 825: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == '-') ADVANCE(154); + if (lookahead == '-') ADVANCE(157); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 805: + case 826: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(669); + if (lookahead == ':') ADVANCE(690); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 806: + case 827: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == '_') ADVANCE(921); + if (lookahead == '_') ADVANCE(942); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); END_STATE(); - case 807: + case 828: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'o') ADVANCE(809); + if (lookahead == 'o') ADVANCE(830); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 808: + case 829: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 's') ADVANCE(1813); + if (lookahead == 's') ADVANCE(1745); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 809: + case 830: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(1822); + if (lookahead == 't') ADVANCE(1754); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 810: + case 831: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(845); + lookahead == 'a') ADVANCE(866); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(911); + lookahead == 'l') ADVANCE(932); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(852); + lookahead == 'o') ADVANCE(873); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 811: + case 832: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1287); + lookahead == 'a') ADVANCE(1308); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 812: + case 833: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(890); + lookahead == 'a') ADVANCE(911); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 813: + case 834: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(822); + lookahead == 'a') ADVANCE(843); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 814: + case 835: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(897); + lookahead == 'a') ADVANCE(918); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 815: + case 836: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(828); + lookahead == 'a') ADVANCE(849); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(902); + lookahead == 'f') ADVANCE(923); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 816: + case 837: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(828); + lookahead == 'a') ADVANCE(849); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 817: + case 838: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(863); + lookahead == 'a') ADVANCE(884); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 818: + case 839: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(859); + lookahead == 'a') ADVANCE(880); if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 819: + case 840: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1215); + lookahead == 'b') ADVANCE(1236); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 820: + case 841: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1225); + lookahead == 'c') ADVANCE(1246); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 821: + case 842: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(817); + lookahead == 'c') ADVANCE(838); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 822: + case 843: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(833); + lookahead == 'c') ADVANCE(854); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 823: + case 844: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1271); + lookahead == 'd') ADVANCE(1292); if (lookahead == 'T' || - lookahead == 't') ADVANCE(838); + lookahead == 't') ADVANCE(859); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 824: + case 845: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1294); + lookahead == 'd') ADVANCE(1315); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 825: + case 846: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(876); + lookahead == 'd') ADVANCE(897); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 826: + case 847: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(880); + lookahead == 'd') ADVANCE(901); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(885); + lookahead == 'u') ADVANCE(906); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 827: + case 848: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(835); + lookahead == 'd') ADVANCE(856); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 828: + case 849: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(841); + lookahead == 'd') ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 829: + case 850: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(856); + lookahead == 'e') ADVANCE(877); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(917); + lookahead == 'i') ADVANCE(938); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(918); + lookahead == 'o') ADVANCE(939); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 830: + case 851: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(842); + lookahead == 'e') ADVANCE(863); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 831: + case 852: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1269); + lookahead == 'e') ADVANCE(1290); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 832: + case 853: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(826); + lookahead == 'e') ADVANCE(847); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 833: + case 854: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1227); + lookahead == 'e') ADVANCE(1248); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 834: + case 855: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1241); + lookahead == 'e') ADVANCE(1262); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 835: + case 856: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1283); + lookahead == 'e') ADVANCE(1304); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 836: + case 857: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1257); + lookahead == 'e') ADVANCE(1278); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 837: + case 858: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1259); + lookahead == 'e') ADVANCE(1280); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 838: + case 859: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(888); + lookahead == 'e') ADVANCE(909); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 839: + case 860: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(893); + lookahead == 'e') ADVANCE(914); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 840: + case 861: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(816); + lookahead == 'e') ADVANCE(837); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 841: + case 862: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(889); + lookahead == 'e') ADVANCE(910); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 842: + case 863: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(903); + lookahead == 'f') ADVANCE(924); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 843: + case 864: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(848); + lookahead == 'g') ADVANCE(869); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 844: + case 865: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1296); + lookahead == 'g') ADVANCE(1317); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 845: + case 866: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(832); + lookahead == 'g') ADVANCE(853); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 846: + case 867: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(849); + lookahead == 'g') ADVANCE(870); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 847: + case 868: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1231); + lookahead == 'h') ADVANCE(1252); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 848: + case 869: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(904); + lookahead == 'h') ADVANCE(925); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 849: + case 870: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(907); + lookahead == 'h') ADVANCE(928); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 850: + case 871: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1237); + lookahead == 'i') ADVANCE(1258); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 851: + case 872: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(874); + lookahead == 'i') ADVANCE(895); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(862); + lookahead == 'u') ADVANCE(883); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 852: + case 873: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(873); + lookahead == 'i') ADVANCE(894); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 853: + case 874: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(827); + lookahead == 'i') ADVANCE(848); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 854: + case 875: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(886); + lookahead == 'i') ADVANCE(907); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 855: + case 876: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(846); + lookahead == 'i') ADVANCE(867); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 856: + case 877: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1235); + lookahead == 'l') ADVANCE(1256); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 857: + case 878: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1239); + lookahead == 'l') ADVANCE(1260); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 858: + case 879: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1211); + lookahead == 'l') ADVANCE(1232); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 859: + case 880: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1289); + lookahead == 'l') ADVANCE(1310); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 860: + case 881: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(920); + lookahead == 'l') ADVANCE(941); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 861: + case 882: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(884); + lookahead == 'l') ADVANCE(905); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 862: + case 883: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(909); + lookahead == 'l') ADVANCE(930); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 863: + case 884: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(864); + lookahead == 'l') ADVANCE(885); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 864: + case 885: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(840); + lookahead == 'l') ADVANCE(861); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 865: + case 886: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(867); + lookahead == 'm') ADVANCE(888); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 866: + case 887: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(831); + lookahead == 'm') ADVANCE(852); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 867: + case 888: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(811); + lookahead == 'm') ADVANCE(832); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 868: + case 889: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(823); + lookahead == 'n') ADVANCE(844); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(915); + lookahead == 'q') ADVANCE(936); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 869: + case 890: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1247); + lookahead == 'n') ADVANCE(1268); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 870: + case 891: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1221); + lookahead == 'n') ADVANCE(1242); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 871: + case 892: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1275); + lookahead == 'n') ADVANCE(1296); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 872: + case 893: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(878); + lookahead == 'n') ADVANCE(899); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 873: + case 894: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(906); + lookahead == 'n') ADVANCE(927); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 874: + case 895: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(912); + lookahead == 'n') ADVANCE(933); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 875: + case 896: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(866); + lookahead == 'o') ADVANCE(887); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 876: + case 897: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1265); + lookahead == 'o') ADVANCE(1286); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 877: + case 898: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(865); + lookahead == 'o') ADVANCE(886); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 878: + case 899: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(892); + lookahead == 'o') ADVANCE(913); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 879: + case 900: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(914); + lookahead == 'o') ADVANCE(935); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 880: + case 901: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(919); + lookahead == 'o') ADVANCE(940); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 881: + case 902: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(916); + lookahead == 'o') ADVANCE(937); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 882: + case 903: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1245); + lookahead == 'p') ADVANCE(1266); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 883: + case 904: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1243); + lookahead == 'p') ADVANCE(1264); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 884: + case 905: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1263); + lookahead == 'p') ADVANCE(1284); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 885: + case 906: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1273); + lookahead == 'p') ADVANCE(1294); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 886: + case 907: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(860); + lookahead == 'p') ADVANCE(881); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 887: + case 908: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1233); + lookahead == 'r') ADVANCE(1254); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 888: + case 909: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1223); + lookahead == 'r') ADVANCE(1244); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 889: + case 910: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1292); + lookahead == 'r') ADVANCE(1313); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 890: + case 911: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(804); + lookahead == 'r') ADVANCE(825); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 891: + case 912: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(870); + lookahead == 'r') ADVANCE(891); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 892: + case 913: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(834); + lookahead == 'r') ADVANCE(855); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 893: + case 914: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(905); + lookahead == 'r') ADVANCE(926); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 894: + case 915: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(850); + lookahead == 's') ADVANCE(871); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 895: + case 916: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1277); + lookahead == 's') ADVANCE(1298); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 896: + case 917: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1279); + lookahead == 's') ADVANCE(1300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 897: + case 918: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(847); + lookahead == 's') ADVANCE(868); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 898: + case 919: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(836); + lookahead == 's') ADVANCE(857); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 899: + case 920: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(837); + lookahead == 's') ADVANCE(858); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 900: + case 921: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(839); + lookahead == 's') ADVANCE(860); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 901: + case 922: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(803); + lookahead == 't') ADVANCE(824); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 902: + case 923: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1250); + lookahead == 't') ADVANCE(1271); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 903: + case 924: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1251); + lookahead == 't') ADVANCE(1272); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 904: + case 925: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1254); + lookahead == 't') ADVANCE(1275); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 905: + case 926: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1267); + lookahead == 't') ADVANCE(1288); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 906: + case 927: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1285); + lookahead == 't') ADVANCE(1306); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 907: + case 928: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1255); + lookahead == 't') ADVANCE(1276); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 908: + case 929: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(913); + lookahead == 't') ADVANCE(934); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 909: + case 930: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(854); + lookahead == 't') ADVANCE(875); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 910: + case 931: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(844); + lookahead == 'u') ADVANCE(865); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 911: + case 932: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(895); + lookahead == 'u') ADVANCE(916); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 912: + case 933: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(896); + lookahead == 'u') ADVANCE(917); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 913: + case 934: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(891); + lookahead == 'u') ADVANCE(912); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 914: + case 935: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(898); + lookahead == 'u') ADVANCE(919); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 915: + case 936: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(818); + lookahead == 'u') ADVANCE(839); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 916: + case 937: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(899); + lookahead == 'u') ADVANCE(920); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 917: + case 938: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(853); + lookahead == 'v') ADVANCE(874); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 918: + case 939: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(869); + lookahead == 'w') ADVANCE(890); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 919: + case 940: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(871); + lookahead == 'w') ADVANCE(892); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 920: + case 941: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1281); + lookahead == 'y') ADVANCE(1302); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 921: + case 942: ACCEPT_TOKEN(aux_sym_identifier_token1); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 922: + case 943: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || - lookahead == '_') ADVANCE(986); + lookahead == '_') ADVANCE(1007); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(943); END_STATE(); - case 923: + case 944: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(986); - if (lookahead == ':') ADVANCE(669); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(1007); + if (lookahead == ':') ADVANCE(690); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); - case 924: + case 945: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(986); - if (lookahead == 'o') ADVANCE(926); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(1007); + if (lookahead == 'o') ADVANCE(947); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); - case 925: + case 946: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(986); - if (lookahead == 's') ADVANCE(1815); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(1007); + if (lookahead == 's') ADVANCE(1747); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); - case 926: + case 947: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(986); - if (lookahead == 't') ADVANCE(1820); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(1752); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); - case 927: + case 948: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(986); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(1007); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); - case 928: + case 949: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(986); + lookahead == '_') ADVANCE(1007); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); END_STATE(); - case 929: + case 950: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('G' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(929); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(950); END_STATE(); - case 930: + case 951: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || lookahead == 'A' || @@ -12976,17 +13203,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'a' || ('c' <= lookahead && lookahead <= 'w') || lookahead == 'y' || - lookahead == 'z') ADVANCE(986); - if (lookahead == '.') ADVANCE(643); + lookahead == 'z') ADVANCE(1007); + if (lookahead == '.') ADVANCE(664); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(936); + lookahead == 'b') ADVANCE(957); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(929); + lookahead == 'x') ADVANCE(950); if (lookahead == '8' || - lookahead == '9') ADVANCE(933); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(932); + lookahead == '9') ADVANCE(954); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(953); END_STATE(); - case 931: + case 952: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || lookahead == 'A' || @@ -12997,64 +13224,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'a' || ('c' <= lookahead && lookahead <= 'w') || lookahead == 'y' || - lookahead == 'z') ADVANCE(986); + lookahead == 'z') ADVANCE(1007); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(936); + lookahead == 'b') ADVANCE(957); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(929); + lookahead == 'x') ADVANCE(950); if (lookahead == '8' || - lookahead == '9') ADVANCE(935); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(934); + lookahead == '9') ADVANCE(956); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(955); END_STATE(); - case 932: + case 953: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == '.') ADVANCE(643); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == '.') ADVANCE(664); if (lookahead == '8' || - lookahead == '9') ADVANCE(933); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(932); + lookahead == '9') ADVANCE(954); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(953); END_STATE(); - case 933: + case 954: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == '.') ADVANCE(643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(933); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == '.') ADVANCE(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(954); END_STATE(); - case 934: + case 955: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); if (lookahead == '8' || - lookahead == '9') ADVANCE(935); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(934); + lookahead == '9') ADVANCE(956); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(955); END_STATE(); - case 935: + case 956: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(935); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(956); END_STATE(); - case 936: + case 957: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('2' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); if (lookahead == '0' || - lookahead == '1') ADVANCE(936); + lookahead == '1') ADVANCE(957); END_STATE(); - case 937: + case 958: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13062,460 +13289,460 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || lookahead == 'a' || lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'c') ADVANCE(968); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'c') ADVANCE(989); END_STATE(); - case 938: + case 959: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'e') ADVANCE(1797); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'e') ADVANCE(1729); END_STATE(); - case 939: + case 960: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'e') ADVANCE(1787); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'e') ADVANCE(1719); END_STATE(); - case 940: + case 961: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'e') ADVANCE(1789); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'e') ADVANCE(1721); END_STATE(); - case 941: + case 962: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'e') ADVANCE(983); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'e') ADVANCE(1004); END_STATE(); - case 942: + case 963: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'e') ADVANCE(971); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'e') ADVANCE(992); END_STATE(); - case 943: + case 964: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'e') ADVANCE(948); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'e') ADVANCE(969); END_STATE(); - case 944: + case 965: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'e') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'f') ADVANCE(945); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'f') ADVANCE(966); END_STATE(); - case 945: + case 966: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'e') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'f') ADVANCE(942); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'f') ADVANCE(963); END_STATE(); - case 946: + case 967: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'g') || - ('i' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'h') ADVANCE(956); + ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'h') ADVANCE(977); END_STATE(); - case 947: + case 968: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'g') || - ('i' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'h') ADVANCE(957); + ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'h') ADVANCE(978); END_STATE(); - case 948: + case 969: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'g') || - ('i' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'h') ADVANCE(958); + ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'h') ADVANCE(979); END_STATE(); - case 949: + case 970: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'i') ADVANCE(954); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'i') ADVANCE(975); END_STATE(); - case 950: + case 971: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'i') ADVANCE(964); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'i') ADVANCE(985); END_STATE(); - case 951: + case 972: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'i') ADVANCE(977); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'i') ADVANCE(998); END_STATE(); - case 952: + case 973: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'i') ADVANCE(969); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'i') ADVANCE(990); END_STATE(); - case 953: + case 974: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'i') ADVANCE(965); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'i') ADVANCE(986); END_STATE(); - case 954: + case 975: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'l') ADVANCE(938); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'l') ADVANCE(959); END_STATE(); - case 955: + case 976: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'l') ADVANCE(946); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'l') ADVANCE(967); END_STATE(); - case 956: + case 977: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'l') ADVANCE(1785); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'l') ADVANCE(1717); END_STATE(); - case 957: + case 978: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'l') ADVANCE(1776); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'l') ADVANCE(1708); END_STATE(); - case 958: + case 979: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'l') ADVANCE(1773); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'l') ADVANCE(1705); END_STATE(); - case 959: + case 980: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'l') ADVANCE(1782); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'l') ADVANCE(1714); END_STATE(); - case 960: + case 981: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'm') ADVANCE(940); + ('n' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'm') ADVANCE(961); END_STATE(); - case 961: + case 982: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'm') ADVANCE(947); + ('n' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'm') ADVANCE(968); END_STATE(); - case 962: + case 983: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'n') ADVANCE(1770); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'n') ADVANCE(1702); END_STATE(); - case 963: + case 984: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'n') ADVANCE(713); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'n') ADVANCE(734); END_STATE(); - case 964: + case 985: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'n') ADVANCE(939); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'n') ADVANCE(960); END_STATE(); - case 965: + case 986: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'n') ADVANCE(943); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'n') ADVANCE(964); END_STATE(); - case 966: + case 987: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'o') ADVANCE(976); + ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'o') ADVANCE(997); END_STATE(); - case 967: + case 988: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'o') ADVANCE(980); + ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'o') ADVANCE(1001); END_STATE(); - case 968: + case 989: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'o') ADVANCE(962); + ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'o') ADVANCE(983); END_STATE(); - case 969: + case 990: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'o') ADVANCE(974); + ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'o') ADVANCE(995); END_STATE(); - case 970: + case 991: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'p') ADVANCE(1793); + ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'p') ADVANCE(1725); END_STATE(); - case 971: + case 992: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'r') ADVANCE(1791); + ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(1723); END_STATE(); - case 972: + case 993: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'r') ADVANCE(967); + ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(988); END_STATE(); - case 973: + case 994: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'r') ADVANCE(952); + ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(973); END_STATE(); - case 974: + case 995: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'r') ADVANCE(951); + ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(972); END_STATE(); - case 975: + case 996: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 's') ADVANCE(1817); + ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 's') ADVANCE(1749); END_STATE(); - case 976: + case 997: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 't') ADVANCE(1823); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(1755); END_STATE(); - case 977: + case 998: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 't') ADVANCE(984); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(1005); END_STATE(); - case 978: + case 999: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 't') ADVANCE(1779); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(1711); END_STATE(); - case 979: + case 1000: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'u') ADVANCE(944); + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(965); END_STATE(); - case 980: + case 1001: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'u') ADVANCE(970); + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(991); END_STATE(); - case 981: + case 1002: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'u') ADVANCE(955); + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(976); END_STATE(); - case 982: + case 1003: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'u') ADVANCE(961); + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(982); END_STATE(); - case 983: + case 1004: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13523,46 +13750,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'w') || lookahead == 'y' || - lookahead == 'z') ADVANCE(986); - if (lookahead == 'x') ADVANCE(978); + lookahead == 'z') ADVANCE(1007); + if (lookahead == 'x') ADVANCE(999); END_STATE(); - case 984: + case 1005: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'x') || - lookahead == 'z') ADVANCE(986); - if (lookahead == 'y') ADVANCE(1795); + lookahead == 'z') ADVANCE(1007); + if (lookahead == 'y') ADVANCE(1727); END_STATE(); - case 985: + case 1006: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'a') ADVANCE(960); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'a') ADVANCE(981); END_STATE(); - case 986: + case 1007: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 987: + case 1008: ACCEPT_TOKEN(aux_sym_identifier_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == '{') ADVANCE(1925); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == '{') ADVANCE(1857); END_STATE(); - case 988: + case 1009: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13571,12 +13798,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'v') || - ('x' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1051); - if (lookahead == 'n') ADVANCE(1042); - if (lookahead == 'w') ADVANCE(1027); + ('x' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1072); + if (lookahead == 'n') ADVANCE(1063); + if (lookahead == 'w') ADVANCE(1048); END_STATE(); - case 989: + case 1010: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13585,11 +13812,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'a' || lookahead == 'b' || ('d' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'c') ADVANCE(1028); - if (lookahead == 'o') ADVANCE(1055); + ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'c') ADVANCE(1049); + if (lookahead == 'o') ADVANCE(1076); END_STATE(); - case 990: + case 1011: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13598,11 +13825,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'a' || lookahead == 'b' || ('d' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'c') ADVANCE(1028); - if (lookahead == 'o') ADVANCE(1066); + ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'c') ADVANCE(1049); + if (lookahead == 'o') ADVANCE(1087); END_STATE(); - case 991: + case 1012: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13611,11 +13838,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'a' || lookahead == 'b' || ('d' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'c') ADVANCE(1090); - if (lookahead == 't') ADVANCE(1024); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'c') ADVANCE(1111); + if (lookahead == 't') ADVANCE(1045); END_STATE(); - case 992: + case 1013: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13624,11 +13851,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'a' || lookahead == 'b' || ('d' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'c') ADVANCE(1045); - if (lookahead == 't') ADVANCE(1018); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'c') ADVANCE(1066); + if (lookahead == 't') ADVANCE(1039); END_STATE(); - case 993: + case 1014: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13637,11 +13864,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'a' || lookahead == 'b' || ('d' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'c') ADVANCE(1013); - if (lookahead == 't') ADVANCE(1114); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'c') ADVANCE(1034); + if (lookahead == 't') ADVANCE(1135); END_STATE(); - case 994: + case 1015: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13650,11 +13877,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'a' || lookahead == 'b' || ('d' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'c') ADVANCE(1021); - if (lookahead == 't') ADVANCE(1114); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'c') ADVANCE(1042); + if (lookahead == 't') ADVANCE(1135); END_STATE(); - case 995: + case 1016: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13662,22 +13889,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1006); - if (lookahead == 's') ADVANCE(1674); + ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1027); + if (lookahead == 's') ADVANCE(1637); END_STATE(); - case 996: + case 1017: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'a') ADVANCE(1105); - if (lookahead == 'i') ADVANCE(1067); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1126); + if (lookahead == 'i') ADVANCE(1088); END_STATE(); - case 997: + case 1018: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13686,11 +13913,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'k') || lookahead == 'm' || lookahead == 'n' || - ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1009); - if (lookahead == 'o') ADVANCE(1054); + ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1030); + if (lookahead == 'o') ADVANCE(1075); END_STATE(); - case 998: + case 1019: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13699,11 +13926,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'w') || lookahead == 'y' || - lookahead == 'z') ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1002); - if (lookahead == 'x') ADVANCE(992); + lookahead == 'z') ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1023); + if (lookahead == 'x') ADVANCE(1013); END_STATE(); - case 999: + case 1020: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13711,10 +13938,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || lookahead == 'a' || lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'c') ADVANCE(1119); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'c') ADVANCE(1140); END_STATE(); - case 1000: + case 1021: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13722,10 +13949,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || lookahead == 'a' || lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'c') ADVANCE(1029); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'c') ADVANCE(1050); END_STATE(); - case 1001: + case 1022: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -13733,1020 +13960,1020 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || lookahead == 'a' || lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'c') ADVANCE(1013); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'c') ADVANCE(1034); END_STATE(); - case 1002: + case 1023: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'd') ADVANCE(1758); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'd') ADVANCE(1690); END_STATE(); - case 1003: + case 1024: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'd') ADVANCE(1677); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'd') ADVANCE(1640); END_STATE(); - case 1004: + case 1025: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'd') ADVANCE(1683); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'd') ADVANCE(1646); END_STATE(); - case 1005: + case 1026: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'd') ADVANCE(1686); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'd') ADVANCE(1649); END_STATE(); - case 1006: + case 1027: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'd') ADVANCE(1641); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'd') ADVANCE(1616); END_STATE(); - case 1007: + case 1028: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'd') ADVANCE(1087); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'd') ADVANCE(1108); END_STATE(); - case 1008: + case 1029: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'c') || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'd') ADVANCE(1022); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'd') ADVANCE(1043); END_STATE(); - case 1009: + case 1030: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1108); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1129); END_STATE(); - case 1010: + case 1031: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1104); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1125); END_STATE(); - case 1011: + case 1032: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1695); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1658); END_STATE(); - case 1012: + case 1033: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1660); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1628); END_STATE(); - case 1013: + case 1034: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1109); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1130); END_STATE(); - case 1014: + case 1035: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1077); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1098); END_STATE(); - case 1015: + case 1036: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1014); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1035); END_STATE(); - case 1016: + case 1037: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1047); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1068); END_STATE(); - case 1017: + case 1038: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1088); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1109); END_STATE(); - case 1018: + case 1039: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1057); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1078); END_STATE(); - case 1019: + case 1040: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1089); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1110); END_STATE(); - case 1020: + case 1041: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1059); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1080); END_STATE(); - case 1021: + case 1042: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1117); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1138); END_STATE(); - case 1022: + case 1043: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1062); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1083); END_STATE(); - case 1023: + case 1044: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1060); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1081); END_STATE(); - case 1024: + case 1045: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'e') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'f') ADVANCE(1121); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'f') ADVANCE(1142); END_STATE(); - case 1025: + case 1046: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'f') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'g') ADVANCE(1081); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'g') ADVANCE(1102); END_STATE(); - case 1026: + case 1047: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'f') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'g') ADVANCE(1085); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'g') ADVANCE(1106); END_STATE(); - case 1027: + case 1048: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'g') || - ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'h') ADVANCE(1032); + ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'h') ADVANCE(1053); END_STATE(); - case 1028: + case 1049: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'g') || - ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'h') ADVANCE(1112); + ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'h') ADVANCE(1133); END_STATE(); - case 1029: + case 1050: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'g') || - ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'h') ADVANCE(1026); + ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'h') ADVANCE(1047); END_STATE(); - case 1030: + case 1051: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'i') ADVANCE(1086); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'i') ADVANCE(1107); END_STATE(); - case 1031: + case 1052: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'i') ADVANCE(1071); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'i') ADVANCE(1092); END_STATE(); - case 1032: + case 1053: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'i') ADVANCE(1097); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'i') ADVANCE(1118); END_STATE(); - case 1033: + case 1054: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'i') ADVANCE(1052); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'i') ADVANCE(1073); END_STATE(); - case 1034: + case 1055: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'i') ADVANCE(1074); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'i') ADVANCE(1095); END_STATE(); - case 1035: + case 1056: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'i') ADVANCE(1063); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'i') ADVANCE(1084); END_STATE(); - case 1036: + case 1057: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'i') ADVANCE(1064); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'i') ADVANCE(1085); END_STATE(); - case 1037: + case 1058: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'i') ADVANCE(1065); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'i') ADVANCE(1086); END_STATE(); - case 1038: + case 1059: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'j') || - ('l' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'k') ADVANCE(1031); + ('l' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'k') ADVANCE(1052); END_STATE(); - case 1039: + case 1060: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'j') || - ('l' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'k') ADVANCE(1034); + ('l' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'k') ADVANCE(1055); END_STATE(); - case 1040: + case 1061: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1009); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1030); END_STATE(); - case 1041: + case 1062: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1630); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1610); END_STATE(); - case 1042: + case 1063: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1665); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1631); END_STATE(); - case 1043: + case 1064: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1628); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1608); END_STATE(); - case 1044: + case 1065: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1689); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1652); END_STATE(); - case 1045: + case 1066: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1100); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1121); END_STATE(); - case 1046: + case 1067: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1003); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1024); END_STATE(); - case 1047: + case 1068: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1035); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1056); END_STATE(); - case 1048: + case 1069: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1111); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1132); END_STATE(); - case 1049: + case 1070: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1036); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1057); END_STATE(); - case 1050: + case 1071: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'l') ADVANCE(1037); + ('m' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1058); END_STATE(); - case 1051: + case 1072: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'm') ADVANCE(1075); + ('n' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'm') ADVANCE(1096); END_STATE(); - case 1052: + case 1073: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(995); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1016); END_STATE(); - case 1053: + case 1074: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1645); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1619); END_STATE(); - case 1054: + case 1075: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1001); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1022); END_STATE(); - case 1055: + case 1076: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(994); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1015); END_STATE(); - case 1056: + case 1077: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1091); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1112); END_STATE(); - case 1057: + case 1078: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1004); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1025); END_STATE(); - case 1058: + case 1079: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1016); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1037); END_STATE(); - case 1059: + case 1080: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1005); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1026); END_STATE(); - case 1060: + case 1081: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1093); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1114); END_STATE(); - case 1061: + case 1082: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1007); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1028); END_STATE(); - case 1062: + case 1083: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1044); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1065); END_STATE(); - case 1063: + case 1084: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1011); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1032); END_STATE(); - case 1064: + case 1085: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1017); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1038); END_STATE(); - case 1065: + case 1086: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1019); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1040); END_STATE(); - case 1066: + case 1087: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(993); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1014); END_STATE(); - case 1067: + case 1088: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'n') ADVANCE(1050); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1071); END_STATE(); - case 1068: + case 1089: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'o') ADVANCE(1046); + ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'o') ADVANCE(1067); END_STATE(); - case 1069: + case 1090: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'o') ADVANCE(1101); + ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'o') ADVANCE(1122); END_STATE(); - case 1070: + case 1091: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'o') ADVANCE(1102); + ('p' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'o') ADVANCE(1123); END_STATE(); - case 1071: + case 1092: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'p') ADVANCE(988); + ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'p') ADVANCE(1687); END_STATE(); - case 1072: + case 1093: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'p') ADVANCE(1650); + ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'p') ADVANCE(1622); END_STATE(); - case 1073: + case 1094: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'p') ADVANCE(1692); + ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'p') ADVANCE(1655); END_STATE(); - case 1074: + case 1095: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'p') ADVANCE(1755); + ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'p') ADVANCE(1009); END_STATE(); - case 1075: + case 1096: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'p') ADVANCE(1095); + ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'p') ADVANCE(1116); END_STATE(); - case 1076: + case 1097: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'p') ADVANCE(1048); + ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'p') ADVANCE(1069); END_STATE(); - case 1077: + case 1098: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'p') ADVANCE(1020); + ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'p') ADVANCE(1041); END_STATE(); - case 1078: + case 1099: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'p') ADVANCE(1115); + ('q' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'p') ADVANCE(1136); END_STATE(); - case 1079: + case 1100: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'r') ADVANCE(1556); + ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'r') ADVANCE(1537); END_STATE(); - case 1080: + case 1101: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'r') ADVANCE(1635); + ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'r') ADVANCE(1613); END_STATE(); - case 1081: + case 1102: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'r') ADVANCE(1069); + ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'r') ADVANCE(1090); END_STATE(); - case 1082: + case 1103: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'r') ADVANCE(1113); + ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'r') ADVANCE(1134); END_STATE(); - case 1083: + case 1104: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'r') ADVANCE(1094); + ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'r') ADVANCE(1115); END_STATE(); - case 1084: + case 1105: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'r') ADVANCE(1023); + ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'r') ADVANCE(1044); END_STATE(); - case 1085: + case 1106: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'r') ADVANCE(1070); + ('s' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'r') ADVANCE(1091); END_STATE(); - case 1086: + case 1107: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 's') ADVANCE(1076); + ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 's') ADVANCE(1097); END_STATE(); - case 1087: + case 1108: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 's') ADVANCE(1698); + ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 's') ADVANCE(1661); END_STATE(); - case 1088: + case 1109: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 's') ADVANCE(1764); + ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 's') ADVANCE(1696); END_STATE(); - case 1089: + case 1110: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 's') ADVANCE(1761); + ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 's') ADVANCE(1693); END_STATE(); - case 1090: + case 1111: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 's') ADVANCE(1120); + ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 's') ADVANCE(1141); END_STATE(); - case 1091: + case 1112: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 's') ADVANCE(1078); + ('t' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 's') ADVANCE(1099); END_STATE(); - case 1092: + case 1113: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 't') ADVANCE(1025); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 't') ADVANCE(1046); END_STATE(); - case 1093: + case 1114: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 't') ADVANCE(1655); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 't') ADVANCE(1625); END_STATE(); - case 1094: + case 1115: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 't') ADVANCE(1586); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 't') ADVANCE(1567); END_STATE(); - case 1095: + case 1116: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 't') ADVANCE(1107); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 't') ADVANCE(1128); END_STATE(); - case 1096: + case 1117: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 't') ADVANCE(1000); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 't') ADVANCE(1021); END_STATE(); - case 1097: + case 1118: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 't') ADVANCE(1012); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 't') ADVANCE(1033); END_STATE(); - case 1098: + case 1119: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 's') || - ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 't') ADVANCE(1116); + ('u' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 't') ADVANCE(1137); END_STATE(); - case 1099: + case 1120: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'u') ADVANCE(999); + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'u') ADVANCE(1020); END_STATE(); - case 1100: + case 1121: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'u') ADVANCE(1008); + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'u') ADVANCE(1029); END_STATE(); - case 1101: + case 1122: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'u') ADVANCE(1072); + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'u') ADVANCE(1093); END_STATE(); - case 1102: + case 1123: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 't') || - ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'u') ADVANCE(1073); + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'u') ADVANCE(1094); END_STATE(); - case 1103: + case 1124: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -14754,10 +14981,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'w') || lookahead == 'y' || - lookahead == 'z') ADVANCE(1118); - if (lookahead == 'x') ADVANCE(992); + lookahead == 'z') ADVANCE(1139); + if (lookahead == 'x') ADVANCE(1013); END_STATE(); - case 1104: + case 1125: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -14765,10 +14992,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'w') || lookahead == 'y' || - lookahead == 'z') ADVANCE(1118); - if (lookahead == 'x') ADVANCE(1092); + lookahead == 'z') ADVANCE(1139); + if (lookahead == 'x') ADVANCE(1113); END_STATE(); - case 1105: + case 1126: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -14776,4663 +15003,3619 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'w') || lookahead == 'y' || - lookahead == 'z') ADVANCE(1118); - if (lookahead == 'x') ADVANCE(1049); + lookahead == 'z') ADVANCE(1139); + if (lookahead == 'x') ADVANCE(1070); END_STATE(); - case 1106: + case 1127: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'x') || - lookahead == 'z') ADVANCE(1118); - if (lookahead == 'y') ADVANCE(1680); + lookahead == 'z') ADVANCE(1139); + if (lookahead == 'y') ADVANCE(1643); END_STATE(); - case 1107: + case 1128: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'x') || - lookahead == 'z') ADVANCE(1118); - if (lookahead == 'y') ADVANCE(1670); + lookahead == 'z') ADVANCE(1139); + if (lookahead == 'y') ADVANCE(1634); END_STATE(); - case 1108: + case 1129: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'a') ADVANCE(1079); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1100); END_STATE(); - case 1109: + case 1130: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'a') ADVANCE(1041); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1062); END_STATE(); - case 1110: + case 1131: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'a') ADVANCE(1096); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1117); END_STATE(); - case 1111: + case 1132: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'a') ADVANCE(1106); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1127); END_STATE(); - case 1112: + case 1133: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'a') ADVANCE(1080); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1101); END_STATE(); - case 1113: + case 1134: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'a') ADVANCE(1056); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1077); END_STATE(); - case 1114: + case 1135: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'a') ADVANCE(1033); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1054); END_STATE(); - case 1115: + case 1136: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'a') ADVANCE(1084); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1105); END_STATE(); - case 1116: + case 1137: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'a') ADVANCE(1083); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1104); END_STATE(); - case 1117: + case 1138: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'a') ADVANCE(1043); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1064); END_STATE(); - case 1118: + case 1139: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1119: + case 1140: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == '-') ADVANCE(272); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == '-') ADVANCE(288); END_STATE(); - case 1120: + case 1141: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == '-') ADVANCE(156); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == '-') ADVANCE(159); END_STATE(); - case 1121: + case 1142: ACCEPT_TOKEN(sym_keyword); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == '-') ADVANCE(155); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == '-') ADVANCE(158); END_STATE(); - case 1122: + case 1143: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1123: + case 1144: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '<') ADVANCE(191); + if (lookahead == '<') ADVANCE(193); END_STATE(); - case 1124: + case 1145: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '<') ADVANCE(191); - if (lookahead == '=') ADVANCE(1825); - if (lookahead == '~') ADVANCE(1831); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(1757); + if (lookahead == '~') ADVANCE(1763); END_STATE(); - case 1125: + case 1146: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 1126: + case 1147: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 1127: + case 1148: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 1128: + case 1149: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 1129: + case 1150: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 1130: + case 1151: ACCEPT_TOKEN(anon_sym_DOT_EQ); END_STATE(); - case 1131: + case 1152: ACCEPT_TOKEN(anon_sym_EQ_LT_LT); END_STATE(); - case 1132: + case 1153: ACCEPT_TOKEN(aux_sym_option_name_token1); - if (lookahead == '_') ADVANCE(1136); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1135); + if (lookahead == '_') ADVANCE(1157); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1156); END_STATE(); - case 1133: + case 1154: ACCEPT_TOKEN(aux_sym_option_name_token1); - if (lookahead == 'l') ADVANCE(1140); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1135); + if (lookahead == 'l') ADVANCE(1161); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1156); END_STATE(); - case 1134: + case 1155: ACCEPT_TOKEN(aux_sym_option_name_token1); - if (lookahead == 'l') ADVANCE(1133); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1135); + if (lookahead == 'l') ADVANCE(1154); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1156); END_STATE(); - case 1135: + case 1156: ACCEPT_TOKEN(aux_sym_option_name_token1); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1135); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1156); END_STATE(); - case 1136: + case 1157: ACCEPT_TOKEN(anon_sym_t_); END_STATE(); - case 1137: + case 1158: ACCEPT_TOKEN(aux_sym_option_name_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1137); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1158); END_STATE(); - case 1138: + case 1159: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 1139: + case 1160: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(1804); + if (lookahead == '&') ADVANCE(1736); END_STATE(); - case 1140: + case 1161: ACCEPT_TOKEN(anon_sym_all); - if (lookahead == '&') ADVANCE(1141); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1135); + if (lookahead == '&') ADVANCE(1162); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1156); END_STATE(); - case 1141: + case 1162: ACCEPT_TOKEN(anon_sym_all_AMP); END_STATE(); - case 1142: + case 1163: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 1143: + case 1164: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 1144: + case 1165: ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); - case 1145: + case 1166: ACCEPT_TOKEN(anon_sym_PLUS_EQ2); END_STATE(); - case 1146: + case 1167: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 1147: + case 1168: ACCEPT_TOKEN(anon_sym_DASH_EQ2); END_STATE(); - case 1148: + case 1169: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '>') ADVANCE(1152); - if (lookahead == '\\') ADVANCE(1153); + if (lookahead == '>') ADVANCE(1173); + if (lookahead == '\\') ADVANCE(1174); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != ' ') ADVANCE(1152); + lookahead != ' ') ADVANCE(1173); END_STATE(); - case 1149: + case 1170: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '\\') ADVANCE(1153); - if (lookahead == '|') ADVANCE(1341); + if (lookahead == '\\') ADVANCE(1174); + if (lookahead == '|') ADVANCE(1362); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1152); + lookahead != '\n') ADVANCE(1173); END_STATE(); - case 1150: + case 1171: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '\\') ADVANCE(1153); + if (lookahead == '\\') ADVANCE(1174); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1151); + lookahead == 'c') ADVANCE(1172); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != ' ') ADVANCE(1152); + lookahead != ' ') ADVANCE(1173); END_STATE(); - case 1151: + case 1172: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '\\') ADVANCE(1153); + if (lookahead == '\\') ADVANCE(1174); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1148); + lookahead == 'r') ADVANCE(1169); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != ' ') ADVANCE(1152); + lookahead != ' ') ADVANCE(1173); END_STATE(); - case 1152: + case 1173: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '\\') ADVANCE(1153); + if (lookahead == '\\') ADVANCE(1174); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != ' ') ADVANCE(1152); + lookahead != ' ') ADVANCE(1173); END_STATE(); - case 1153: + case 1174: ACCEPT_TOKEN(sym_set_value); - if (lookahead == '\\') ADVANCE(1153); + if (lookahead == '\\') ADVANCE(1174); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1152); + lookahead != '\n') ADVANCE(1173); END_STATE(); - case 1154: + case 1175: ACCEPT_TOKEN(anon_sym_); - if (lookahead == ' ') ADVANCE(1154); + if (lookahead == ' ') ADVANCE(1175); END_STATE(); - case 1155: + case 1176: ACCEPT_TOKEN(aux_sym_command_argument_token1); - if (lookahead == '>') ADVANCE(1159); + if (lookahead == '>') ADVANCE(1180); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1159); + lookahead != ' ') ADVANCE(1180); END_STATE(); - case 1156: + case 1177: ACCEPT_TOKEN(aux_sym_command_argument_token1); - if (lookahead == '|') ADVANCE(1343); + if (lookahead == '|') ADVANCE(1364); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1159); + lookahead != ' ') ADVANCE(1180); END_STATE(); - case 1157: + case 1178: ACCEPT_TOKEN(aux_sym_command_argument_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1158); + lookahead == 'c') ADVANCE(1179); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1159); + lookahead != ' ') ADVANCE(1180); END_STATE(); - case 1158: + case 1179: ACCEPT_TOKEN(aux_sym_command_argument_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1155); + lookahead == 'r') ADVANCE(1176); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1159); + lookahead != ' ') ADVANCE(1180); END_STATE(); - case 1159: + case 1180: ACCEPT_TOKEN(aux_sym_command_argument_token1); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1159); + lookahead != ' ') ADVANCE(1180); END_STATE(); - case 1160: + case 1181: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 1161: + case 1182: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 1162: + case 1183: ACCEPT_TOKEN(sym_bang); END_STATE(); - case 1163: + case 1184: ACCEPT_TOKEN(sym_bang); - if (lookahead == '=') ADVANCE(1826); - if (lookahead == '~') ADVANCE(1832); + if (lookahead == '=') ADVANCE(1758); + if (lookahead == '~') ADVANCE(1764); END_STATE(); - case 1164: + case 1185: ACCEPT_TOKEN(sym_bang); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1159); + lookahead != ' ') ADVANCE(1180); END_STATE(); - case 1165: + case 1186: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 1166: + case 1187: ACCEPT_TOKEN(sym_spread); END_STATE(); - case 1167: + case 1188: ACCEPT_TOKEN(sym__printable); END_STATE(); - case 1168: + case 1189: ACCEPT_TOKEN(sym__printable); - if (lookahead == ' ') ADVANCE(1168); - if (lookahead == '<') ADVANCE(1178); - if (lookahead == '\\') ADVANCE(1177); - if (lookahead == 'c') ADVANCE(1175); - if (lookahead == 'i') ADVANCE(1172); - if (lookahead == 'l') ADVANCE(1174); - if (lookahead == 'n') ADVANCE(1176); - if (lookahead == 't') ADVANCE(1173); + if (lookahead == ' ') ADVANCE(1189); + if (lookahead == 'c') ADVANCE(1196); + if (lookahead == 'i') ADVANCE(1193); + if (lookahead == 'l') ADVANCE(1195); + if (lookahead == 'n') ADVANCE(1197); + if (lookahead == 't') ADVANCE(1194); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1167); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1188); END_STATE(); - case 1169: + case 1190: ACCEPT_TOKEN(sym__printable); - if (lookahead == ' ') ADVANCE(1169); - if (lookahead == 'c') ADVANCE(1175); - if (lookahead == 'i') ADVANCE(1172); - if (lookahead == 'l') ADVANCE(1174); - if (lookahead == 'n') ADVANCE(1176); - if (lookahead == 't') ADVANCE(1173); + if (lookahead == ' ') ADVANCE(1190); + if (lookahead == '<') ADVANCE(1199); + if (lookahead == '\\') ADVANCE(1198); + if (lookahead == 'c') ADVANCE(1196); + if (lookahead == 'i') ADVANCE(1193); + if (lookahead == 'l') ADVANCE(1195); + if (lookahead == 'n') ADVANCE(1197); + if (lookahead == 't') ADVANCE(1194); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1167); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1188); END_STATE(); - case 1170: + case 1191: ACCEPT_TOKEN(sym__printable); - if (lookahead == ' ') ADVANCE(1170); - if (lookahead == '<') ADVANCE(1178); - if (lookahead == 'c') ADVANCE(1175); - if (lookahead == 'i') ADVANCE(1172); - if (lookahead == 'l') ADVANCE(1174); - if (lookahead == 'n') ADVANCE(1176); - if (lookahead == 't') ADVANCE(1173); + if (lookahead == ' ') ADVANCE(1191); + if (lookahead == '<') ADVANCE(1199); + if (lookahead == 'c') ADVANCE(1196); + if (lookahead == 'i') ADVANCE(1193); + if (lookahead == 'l') ADVANCE(1195); + if (lookahead == 'n') ADVANCE(1197); + if (lookahead == 't') ADVANCE(1194); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1167); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1188); END_STATE(); - case 1171: + case 1192: ACCEPT_TOKEN(sym__printable); - if (lookahead == ' ') ADVANCE(1171); + if (lookahead == ' ') ADVANCE(1192); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1167); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1188); END_STATE(); - case 1172: + case 1193: ACCEPT_TOKEN(sym__printable); - if (lookahead == 'c') ADVANCE(422); + if (lookahead == 'c') ADVANCE(443); END_STATE(); - case 1173: + case 1194: ACCEPT_TOKEN(sym__printable); - if (lookahead == 'e') ADVANCE(503); + if (lookahead == 'e') ADVANCE(524); END_STATE(); - case 1174: + case 1195: ACCEPT_TOKEN(sym__printable); - if (lookahead == 'i') ADVANCE(405); + if (lookahead == 'i') ADVANCE(424); END_STATE(); - case 1175: + case 1196: ACCEPT_TOKEN(sym__printable); - if (lookahead == 'u') ADVANCE(375); + if (lookahead == 'u') ADVANCE(394); END_STATE(); - case 1176: + case 1197: ACCEPT_TOKEN(sym__printable); - if (lookahead == 'u') ADVANCE(390); + if (lookahead == 'u') ADVANCE(409); END_STATE(); - case 1177: + case 1198: ACCEPT_TOKEN(sym__printable); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '|') ADVANCE(1361); END_STATE(); - case 1178: + case 1199: ACCEPT_TOKEN(sym__printable); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(604); + lookahead == 'c') ADVANCE(625); END_STATE(); - case 1179: + case 1200: ACCEPT_TOKEN(sym_mark); END_STATE(); - case 1180: + case 1201: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 1181: + case 1202: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(1129); + if (lookahead == '=') ADVANCE(1150); END_STATE(); - case 1182: + case 1203: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 1183: + case 1204: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 1184: + case 1205: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(1128); + if (lookahead == '=') ADVANCE(1149); END_STATE(); - case 1185: + case 1206: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 1186: + case 1207: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 1187: + case 1208: ACCEPT_TOKEN(anon_sym_DOT2); END_STATE(); - case 1188: + case 1209: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1812); + if (lookahead == '.') ADVANCE(1744); END_STATE(); - case 1189: + case 1210: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1812); - if (lookahead == '=') ADVANCE(1130); + if (lookahead == '.') ADVANCE(1744); + if (lookahead == '=') ADVANCE(1151); END_STATE(); - case 1190: + case 1211: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 1191: + case 1212: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(415); - if (lookahead == '0') ADVANCE(1840); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); + if (lookahead == '+') ADVANCE(434); + if (lookahead == '0') ADVANCE(1772); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); END_STATE(); - case 1192: + case 1213: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(414); - if (lookahead == '0') ADVANCE(1840); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '0') ADVANCE(1772); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); END_STATE(); - case 1193: + case 1214: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '0') ADVANCE(1840); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); + if (lookahead == '0') ADVANCE(1772); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); END_STATE(); - case 1194: + case 1215: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '=') ADVANCE(1125); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '=') ADVANCE(1146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); END_STATE(); - case 1195: + case 1216: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '0') ADVANCE(1837); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (lookahead == '0') ADVANCE(1769); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); END_STATE(); - case 1196: + case 1217: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(1125); + if (lookahead == '=') ADVANCE(1146); END_STATE(); - case 1197: + case 1218: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 1198: + case 1219: ACCEPT_TOKEN(anon_sym_BSLASH_SLASH); END_STATE(); - case 1199: + case 1220: ACCEPT_TOKEN(anon_sym_BSLASH_QMARK); END_STATE(); - case 1200: + case 1221: ACCEPT_TOKEN(anon_sym_BSLASH_AMP); END_STATE(); - case 1201: + case 1222: ACCEPT_TOKEN(anon_sym_LTbuffer_GT); END_STATE(); - case 1202: + case 1223: ACCEPT_TOKEN(anon_sym_LTnowait_GT); END_STATE(); - case 1203: + case 1224: ACCEPT_TOKEN(anon_sym_LTsilent_GT); END_STATE(); - case 1204: + case 1225: ACCEPT_TOKEN(anon_sym_LTunique_GT); END_STATE(); - case 1205: + case 1226: ACCEPT_TOKEN(anon_sym_LTscript_GT); END_STATE(); - case 1206: + case 1227: ACCEPT_TOKEN(anon_sym_LTexpr_GT); END_STATE(); - case 1207: + case 1228: ACCEPT_TOKEN(sym__keycode_modifier); END_STATE(); - case 1208: + case 1229: ACCEPT_TOKEN(sym__keycode_modifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(560); + lookahead == 'c') ADVANCE(581); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(591); + lookahead == 'd') ADVANCE(612); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(642); + lookahead == 'f') ADVANCE(663); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(540); + lookahead == 'l') ADVANCE(561); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(564); + lookahead == 'r') ADVANCE(585); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(599); + lookahead == 'u') ADVANCE(620); END_STATE(); - case 1209: + case 1230: ACCEPT_TOKEN(sym__keycode_modifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(591); + lookahead == 'd') ADVANCE(612); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(540); + lookahead == 'l') ADVANCE(561); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(564); + lookahead == 'r') ADVANCE(585); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(599); + lookahead == 'u') ADVANCE(620); END_STATE(); - case 1210: + case 1231: ACCEPT_TOKEN(aux_sym__keycode_in_token1); END_STATE(); - case 1211: + case 1232: ACCEPT_TOKEN(aux_sym__keycode_in_token1); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1212: + case 1233: ACCEPT_TOKEN(aux_sym__keycode_in_token2); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(814); + lookahead == 'l') ADVANCE(835); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1213: + case 1234: ACCEPT_TOKEN(aux_sym__keycode_in_token2); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(522); + lookahead == 'l') ADVANCE(543); END_STATE(); - case 1214: + case 1235: ACCEPT_TOKEN(aux_sym__keycode_in_token3); END_STATE(); - case 1215: + case 1236: ACCEPT_TOKEN(aux_sym__keycode_in_token3); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1216: + case 1237: ACCEPT_TOKEN(aux_sym__keycode_in_token4); END_STATE(); - case 1217: + case 1238: ACCEPT_TOKEN(aux_sym__keycode_in_token4); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1218: + case 1239: ACCEPT_TOKEN(aux_sym__keycode_in_token5); END_STATE(); - case 1219: + case 1240: ACCEPT_TOKEN(aux_sym__keycode_in_token5); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1220: + case 1241: ACCEPT_TOKEN(aux_sym__keycode_in_token6); END_STATE(); - case 1221: + case 1242: ACCEPT_TOKEN(aux_sym__keycode_in_token6); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1222: + case 1243: ACCEPT_TOKEN(aux_sym__keycode_in_token7); END_STATE(); - case 1223: + case 1244: ACCEPT_TOKEN(aux_sym__keycode_in_token7); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1224: + case 1245: ACCEPT_TOKEN(aux_sym__keycode_in_token8); END_STATE(); - case 1225: + case 1246: ACCEPT_TOKEN(aux_sym__keycode_in_token8); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1226: + case 1247: ACCEPT_TOKEN(aux_sym__keycode_in_token9); END_STATE(); - case 1227: + case 1248: ACCEPT_TOKEN(aux_sym__keycode_in_token9); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1228: + case 1249: ACCEPT_TOKEN(aux_sym__keycode_in_token10); END_STATE(); - case 1229: + case 1250: ACCEPT_TOKEN(aux_sym__keycode_in_token10); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1230: + case 1251: ACCEPT_TOKEN(aux_sym__keycode_in_token11); END_STATE(); - case 1231: + case 1252: ACCEPT_TOKEN(aux_sym__keycode_in_token11); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1232: + case 1253: ACCEPT_TOKEN(aux_sym__keycode_in_token12); END_STATE(); - case 1233: + case 1254: ACCEPT_TOKEN(aux_sym__keycode_in_token12); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1234: + case 1255: ACCEPT_TOKEN(aux_sym__keycode_in_token13); END_STATE(); - case 1235: + case 1256: ACCEPT_TOKEN(aux_sym__keycode_in_token13); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1236: + case 1257: ACCEPT_TOKEN(aux_sym__keycode_in_token14); END_STATE(); - case 1237: + case 1258: ACCEPT_TOKEN(aux_sym__keycode_in_token14); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1238: + case 1259: ACCEPT_TOKEN(aux_sym__keycode_in_token15); END_STATE(); - case 1239: + case 1260: ACCEPT_TOKEN(aux_sym__keycode_in_token15); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1240: + case 1261: ACCEPT_TOKEN(aux_sym__keycode_in_token16); END_STATE(); - case 1241: + case 1262: ACCEPT_TOKEN(aux_sym__keycode_in_token16); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1242: + case 1263: ACCEPT_TOKEN(aux_sym__keycode_in_token17); END_STATE(); - case 1243: + case 1264: ACCEPT_TOKEN(aux_sym__keycode_in_token17); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1244: + case 1265: ACCEPT_TOKEN(aux_sym__keycode_in_token18); END_STATE(); - case 1245: + case 1266: ACCEPT_TOKEN(aux_sym__keycode_in_token18); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1246: + case 1267: ACCEPT_TOKEN(aux_sym__keycode_in_token19); END_STATE(); - case 1247: + case 1268: ACCEPT_TOKEN(aux_sym__keycode_in_token19); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1248: + case 1269: ACCEPT_TOKEN(aux_sym__keycode_in_token20); END_STATE(); - case 1249: + case 1270: ACCEPT_TOKEN(aux_sym__keycode_in_token20); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(592); + lookahead == 'm') ADVANCE(613); END_STATE(); - case 1250: + case 1271: ACCEPT_TOKEN(aux_sym__keycode_in_token20); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(879); + lookahead == 'm') ADVANCE(900); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1251: + case 1272: ACCEPT_TOKEN(aux_sym__keycode_in_token20); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1252: + case 1273: ACCEPT_TOKEN(aux_sym__keycode_in_token21); END_STATE(); - case 1253: + case 1274: ACCEPT_TOKEN(aux_sym__keycode_in_token21); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(598); + lookahead == 'm') ADVANCE(619); END_STATE(); - case 1254: + case 1275: ACCEPT_TOKEN(aux_sym__keycode_in_token21); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(881); + lookahead == 'm') ADVANCE(902); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1255: + case 1276: ACCEPT_TOKEN(aux_sym__keycode_in_token21); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1256: + case 1277: ACCEPT_TOKEN(aux_sym__keycode_in_token22); END_STATE(); - case 1257: + case 1278: ACCEPT_TOKEN(aux_sym__keycode_in_token22); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1258: + case 1279: ACCEPT_TOKEN(aux_sym__keycode_in_token23); END_STATE(); - case 1259: + case 1280: ACCEPT_TOKEN(aux_sym__keycode_in_token23); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1260: + case 1281: ACCEPT_TOKEN(aux_sym__keycode_in_token24); END_STATE(); - case 1261: + case 1282: ACCEPT_TOKEN(aux_sym__keycode_in_token24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1281); END_STATE(); - case 1262: + case 1283: ACCEPT_TOKEN(aux_sym__keycode_in_token25); END_STATE(); - case 1263: + case 1284: ACCEPT_TOKEN(aux_sym__keycode_in_token25); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1264: + case 1285: ACCEPT_TOKEN(aux_sym__keycode_in_token26); END_STATE(); - case 1265: + case 1286: ACCEPT_TOKEN(aux_sym__keycode_in_token26); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1266: + case 1287: ACCEPT_TOKEN(aux_sym__keycode_in_token27); END_STATE(); - case 1267: + case 1288: ACCEPT_TOKEN(aux_sym__keycode_in_token27); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1268: + case 1289: ACCEPT_TOKEN(aux_sym__keycode_in_token28); END_STATE(); - case 1269: + case 1290: ACCEPT_TOKEN(aux_sym__keycode_in_token28); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1270: + case 1291: ACCEPT_TOKEN(aux_sym__keycode_in_token29); END_STATE(); - case 1271: + case 1292: ACCEPT_TOKEN(aux_sym__keycode_in_token29); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1272: + case 1293: ACCEPT_TOKEN(aux_sym__keycode_in_token30); END_STATE(); - case 1273: + case 1294: ACCEPT_TOKEN(aux_sym__keycode_in_token30); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1274: + case 1295: ACCEPT_TOKEN(aux_sym__keycode_in_token31); END_STATE(); - case 1275: + case 1296: ACCEPT_TOKEN(aux_sym__keycode_in_token31); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1276: + case 1297: ACCEPT_TOKEN(aux_sym__keycode_in_token32); END_STATE(); - case 1277: + case 1298: ACCEPT_TOKEN(aux_sym__keycode_in_token32); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1278: + case 1299: ACCEPT_TOKEN(aux_sym__keycode_in_token33); END_STATE(); - case 1279: + case 1300: ACCEPT_TOKEN(aux_sym__keycode_in_token33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1280: + case 1301: ACCEPT_TOKEN(aux_sym__keycode_in_token34); END_STATE(); - case 1281: + case 1302: ACCEPT_TOKEN(aux_sym__keycode_in_token34); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1282: + case 1303: ACCEPT_TOKEN(aux_sym__keycode_in_token35); END_STATE(); - case 1283: + case 1304: ACCEPT_TOKEN(aux_sym__keycode_in_token35); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1284: + case 1305: ACCEPT_TOKEN(aux_sym__keycode_in_token36); END_STATE(); - case 1285: + case 1306: ACCEPT_TOKEN(aux_sym__keycode_in_token36); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1286: + case 1307: ACCEPT_TOKEN(aux_sym__keycode_in_token37); END_STATE(); - case 1287: + case 1308: ACCEPT_TOKEN(aux_sym__keycode_in_token37); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1288: + case 1309: ACCEPT_TOKEN(aux_sym__keycode_in_token38); END_STATE(); - case 1289: + case 1310: ACCEPT_TOKEN(aux_sym__keycode_in_token38); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1290: + case 1311: ACCEPT_TOKEN(aux_sym__keycode_in_token39); END_STATE(); - case 1291: + case 1312: ACCEPT_TOKEN(aux_sym__keycode_in_token40); END_STATE(); - case 1292: + case 1313: ACCEPT_TOKEN(aux_sym__keycode_in_token40); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1293: + case 1314: ACCEPT_TOKEN(aux_sym__keycode_in_token41); END_STATE(); - case 1294: + case 1315: ACCEPT_TOKEN(aux_sym__keycode_in_token41); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1295: + case 1316: ACCEPT_TOKEN(aux_sym__keycode_in_token42); END_STATE(); - case 1296: + case 1317: ACCEPT_TOKEN(aux_sym__keycode_in_token42); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1297: + case 1318: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(1297); + if (lookahead == '0') ADVANCE(1318); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(648); + lookahead == 'x') ADVANCE(669); if (lookahead == '8' || - lookahead == '9') ADVANCE(1299); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(1298); + lookahead == '9') ADVANCE(1320); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(1319); END_STATE(); - case 1298: + case 1319: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(1297); + if (lookahead == '0') ADVANCE(1318); if (lookahead == '8' || - lookahead == '9') ADVANCE(1299); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(1298); + lookahead == '9') ADVANCE(1320); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(1319); END_STATE(); - case 1299: + case 1320: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(1297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1299); + if (lookahead == '0') ADVANCE(1318); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1320); END_STATE(); - case 1300: + case 1321: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(1300); + if (lookahead == '0') ADVANCE(1321); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(648); + lookahead == 'x') ADVANCE(669); if (lookahead == '8' || - lookahead == '9') ADVANCE(1302); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(1301); + lookahead == '9') ADVANCE(1323); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(1322); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1302); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1323); END_STATE(); - case 1301: + case 1322: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(1300); + if (lookahead == '0') ADVANCE(1321); if (lookahead == '8' || - lookahead == '9') ADVANCE(1302); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(1301); + lookahead == '9') ADVANCE(1323); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(1322); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1302); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1323); END_STATE(); - case 1302: + case 1323: ACCEPT_TOKEN(aux_sym__keycode_in_token43); - if (lookahead == '0') ADVANCE(1300); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1302); + if (lookahead == '0') ADVANCE(1321); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1323); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1302); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1323); END_STATE(); - case 1303: + case 1324: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 1304: + case 1325: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(604); + lookahead == 'c') ADVANCE(625); END_STATE(); - case 1305: + case 1326: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(580); + lookahead == 'c') ADVANCE(601); END_STATE(); - case 1306: + case 1327: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1582); + lookahead == 'c') ADVANCE(1563); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1307: + case 1328: ACCEPT_TOKEN(anon_sym_LT); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1308: + case 1329: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 1309: + case 1330: ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); - case 1310: + case 1331: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '!') ADVANCE(1878); - if (lookahead == '=') ADVANCE(1830); + if (lookahead == '!') ADVANCE(1810); + if (lookahead == '=') ADVANCE(1762); END_STATE(); - case 1311: + case 1332: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1830); + if (lookahead == '=') ADVANCE(1762); END_STATE(); - case 1312: + case 1333: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1830); + if (lookahead == '=') ADVANCE(1762); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(604); + lookahead == 'c') ADVANCE(625); END_STATE(); - case 1313: + case 1334: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == 'b') ADVANCE(497); - if (lookahead == 'e') ADVANCE(505); - if (lookahead == 'n') ADVANCE(421); - if (lookahead == 's') ADVANCE(271); - if (lookahead == 'u') ADVANCE(407); + if (lookahead == 'b') ADVANCE(518); + if (lookahead == 'e') ADVANCE(526); + if (lookahead == 'n') ADVANCE(442); + if (lookahead == 's') ADVANCE(287); + if (lookahead == 'u') ADVANCE(426); END_STATE(); - case 1314: + case 1335: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == 'b') ADVANCE(497); - if (lookahead == 'n') ADVANCE(421); - if (lookahead == 's') ADVANCE(271); - if (lookahead == 'u') ADVANCE(407); + if (lookahead == 'b') ADVANCE(518); + if (lookahead == 'n') ADVANCE(442); + if (lookahead == 's') ADVANCE(287); + if (lookahead == 'u') ADVANCE(426); END_STATE(); - case 1315: + case 1336: ACCEPT_TOKEN(anon_sym_LT2); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(580); + lookahead == 'c') ADVANCE(601); END_STATE(); - case 1316: + case 1337: ACCEPT_TOKEN(anon_sym_BSLASH2); END_STATE(); - case 1317: + case 1338: ACCEPT_TOKEN(anon_sym_BSLASH2); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '|') ADVANCE(1361); END_STATE(); - case 1318: + case 1339: ACCEPT_TOKEN(aux_sym__map_lhs_token1); END_STATE(); - case 1319: + case 1340: ACCEPT_TOKEN(aux_sym__map_rhs_token1); END_STATE(); - case 1320: + case 1341: ACCEPT_TOKEN(aux_sym__map_rhs_token2); END_STATE(); - case 1321: + case 1342: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (lookahead == '-') ADVANCE(1207); + if (lookahead == '-') ADVANCE(1228); END_STATE(); - case 1322: + case 1343: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (lookahead == '-') ADVANCE(1207); + if (lookahead == '-') ADVANCE(1228); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(571); + lookahead == 'e') ADVANCE(592); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(636); + lookahead == 'o') ADVANCE(657); END_STATE(); - case 1323: + case 1344: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (lookahead == '-') ADVANCE(1207); + if (lookahead == '-') ADVANCE(1228); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(625); + lookahead == 'l') ADVANCE(646); END_STATE(); - case 1324: + case 1345: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (lookahead == '-') ADVANCE(1209); + if (lookahead == '-') ADVANCE(1230); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(520); + lookahead == 'h') ADVANCE(541); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1218); + lookahead == 'r') ADVANCE(1239); if (lookahead == 'S' || - lookahead == 's') ADVANCE(565); + lookahead == 's') ADVANCE(586); END_STATE(); - case 1325: + case 1346: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (lookahead == '-') ADVANCE(1208); + if (lookahead == '-') ADVANCE(1229); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(534); + lookahead == 'i') ADVANCE(555); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(523); + lookahead == 'p') ADVANCE(544); END_STATE(); - case 1326: + case 1347: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(528); + lookahead == 'a') ADVANCE(549); END_STATE(); - case 1327: + case 1348: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(558); + lookahead == 'a') ADVANCE(579); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(629); + lookahead == 'l') ADVANCE(650); END_STATE(); - case 1328: + case 1349: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(606); + lookahead == 'a') ADVANCE(627); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1213); + lookahead == 's') ADVANCE(1234); END_STATE(); - case 1329: + case 1350: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(615); + lookahead == 'c') ADVANCE(636); END_STATE(); - case 1330: + case 1351: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(595); + lookahead == 'c') ADVANCE(616); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(543); + lookahead == 'd') ADVANCE(564); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(585); + lookahead == 'e') ADVANCE(606); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(594); + lookahead == 'h') ADVANCE(615); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(553); + lookahead == 'l') ADVANCE(574); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(566); + lookahead == 'm') ADVANCE(587); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(521); + lookahead == 'p') ADVANCE(542); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(570); + lookahead == 'r') ADVANCE(591); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(599); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1290); + lookahead == 'u') ADVANCE(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1311); END_STATE(); - case 1331: + case 1352: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(525); + lookahead == 'e') ADVANCE(546); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(531); + lookahead == 'o') ADVANCE(552); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1228); + lookahead == 't') ADVANCE(1249); END_STATE(); - case 1332: + case 1353: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(576); + lookahead == 'e') ADVANCE(597); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(582); + lookahead == 'o') ADVANCE(603); END_STATE(); - case 1333: + case 1354: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(626); + lookahead == 'e') ADVANCE(647); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); + lookahead == 'i') ADVANCE(578); END_STATE(); - case 1334: + case 1355: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(588); + lookahead == 'g') ADVANCE(609); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(618); + lookahead == 'n') ADVANCE(639); END_STATE(); - case 1335: + case 1356: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1216); + lookahead == 'l') ADVANCE(1237); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(600); + lookahead == 'o') ADVANCE(621); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(573); + lookahead == 'u') ADVANCE(594); END_STATE(); - case 1336: + case 1357: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(533); + lookahead == 'n') ADVANCE(554); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(572); + lookahead == 'o') ADVANCE(593); if (lookahead == 'S' || - lookahead == 's') ADVANCE(530); + lookahead == 's') ADVANCE(551); END_STATE(); - case 1337: + case 1358: ACCEPT_TOKEN(aux_sym__map_rhs_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(536); + lookahead == 'n') ADVANCE(557); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1244); + lookahead == 'p') ADVANCE(1265); END_STATE(); - case 1338: + case 1359: ACCEPT_TOKEN(aux_sym__map_rhs_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1261); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1282); END_STATE(); - case 1339: + case 1360: ACCEPT_TOKEN(aux_sym__map_rhs_token3); END_STATE(); - case 1340: + case 1361: ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); END_STATE(); - case 1341: + case 1362: ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); - if (lookahead == '\\') ADVANCE(1153); + if (lookahead == '\\') ADVANCE(1174); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != ' ') ADVANCE(1152); + lookahead != ' ') ADVANCE(1173); END_STATE(); - case 1342: + case 1363: ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1343: + case 1364: ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1159); + lookahead != ' ') ADVANCE(1180); END_STATE(); - case 1344: + case 1365: ACCEPT_TOKEN(anon_sym_BSLASH_PIPE); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1345: + case 1366: ACCEPT_TOKEN(aux_sym__map_rhs_token4); END_STATE(); - case 1346: + case 1367: ACCEPT_TOKEN(aux_sym__map_rhs_token4); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); - END_STATE(); - case 1347: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1525); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1348: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1549); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1349: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1507); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1350: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1509); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1552); - END_STATE(); - case 1351: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1466); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1552); - END_STATE(); - case 1352: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1424); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1552); - END_STATE(); - case 1353: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1446); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1552); - END_STATE(); - case 1354: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1485); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1355: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1548); - if (lookahead == 'i') ADVANCE(1487); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1356: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1427); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1357: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1516); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1358: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1514); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1552); - END_STATE(); - case 1359: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1515); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1360: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1511); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1361: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1442); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1362: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1444); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1363: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'a') ADVANCE(1430); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1364: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(1414); - if (lookahead == 'o') ADVANCE(1470); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1365: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(1414); - if (lookahead == 'o') ADVANCE(1486); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1366: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(1413); - if (lookahead == 'o') ADVANCE(1465); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); - END_STATE(); - case 1367: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(1420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + lookahead != ' ') ADVANCE(1604); END_STATE(); case 1368: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(1440); - if (lookahead == 't') ADVANCE(1396); + if (lookahead == 'a') ADVANCE(1514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1369: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(1399); - if (lookahead == 't') ADVANCE(1352); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'a') ADVANCE(1532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1370: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(1492); + if (lookahead == 'a') ADVANCE(1501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1371: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(1400); - if (lookahead == 't') ADVANCE(1356); + if (lookahead == 'a') ADVANCE(1483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1372: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'c') ADVANCE(1408); - if (lookahead == 't') ADVANCE(1356); + if (lookahead == 'a') ADVANCE(1531); + if (lookahead == 'i') ADVANCE(1486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1373: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(1757); + if (lookahead == 'a') ADVANCE(1432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1374: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(1676); + if (lookahead == 'a') ADVANCE(1506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1375: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(1682); + if (lookahead == 'a') ADVANCE(1505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1376: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(1685); + if (lookahead == 'a') ADVANCE(1502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1377: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(1639); + if (lookahead == 'a') ADVANCE(1447); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1378: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(1637); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'a') ADVANCE(1449); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1379: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(1700); + if (lookahead == 'a') ADVANCE(1435); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1380: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(1520); + if (lookahead == 'a') ADVANCE(1437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1381: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(1402); + if (lookahead == 'c') ADVANCE(1423); + if (lookahead == 'o') ADVANCE(1469); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1382: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'd') ADVANCE(1379); + if (lookahead == 'c') ADVANCE(1423); + if (lookahead == 'o') ADVANCE(1484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1383: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1546); + if (lookahead == 'c') ADVANCE(1423); + if (lookahead == 'o') ADVANCE(1485); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1384: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1460); - if (lookahead == 'n') ADVANCE(1441); - if (lookahead == 'w') ADVANCE(1416); + if (lookahead == 'c') ADVANCE(1428); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1385: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1694); + if (lookahead == 'c') ADVANCE(1445); + if (lookahead == 't') ADVANCE(1408); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1386: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1659); + if (lookahead == 'c') ADVANCE(1410); + if (lookahead == 't') ADVANCE(1373); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1387: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1545); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'c') ADVANCE(1491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1388: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1458); - if (lookahead == 'n') ADVANCE(1445); - if (lookahead == 'w') ADVANCE(1415); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'c') ADVANCE(1419); + if (lookahead == 't') ADVANCE(1373); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1389: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1378); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'c') ADVANCE(1419); + if (lookahead == 't') ADVANCE(1380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1390: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1658); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'd') ADVANCE(1689); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1391: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1702); + if (lookahead == 'd') ADVANCE(1639); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1392: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1506); + if (lookahead == 'd') ADVANCE(1645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1393: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1392); + if (lookahead == 'd') ADVANCE(1648); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1394: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1452); + if (lookahead == 'd') ADVANCE(1614); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1395: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1459); + if (lookahead == 'd') ADVANCE(1663); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1396: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1474); + if (lookahead == 'd') ADVANCE(1510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1397: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1521); + if (lookahead == 'd') ADVANCE(1412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1398: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1475); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'd') ADVANCE(1395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1399: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1353); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'e') ADVANCE(1529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1400: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1361); + if (lookahead == 'e') ADVANCE(1462); + if (lookahead == 'n') ADVANCE(1446); + if (lookahead == 'w') ADVANCE(1424); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1401: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1522); + if (lookahead == 'e') ADVANCE(1657); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1402: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1479); + if (lookahead == 'e') ADVANCE(1627); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1403: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1377); - if (lookahead == 's') ADVANCE(1673); + if (lookahead == 'e') ADVANCE(1665); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1404: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1477); + if (lookahead == 'e') ADVANCE(1500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1405: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1360); + if (lookahead == 'e') ADVANCE(1461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1406: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1547); + if (lookahead == 'e') ADVANCE(1404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1407: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1476); + if (lookahead == 'e') ADVANCE(1455); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1408: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1362); + if (lookahead == 'e') ADVANCE(1472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1409: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'e') ADVANCE(1419); + if (lookahead == 'e') ADVANCE(1511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1410: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'g') ADVANCE(1512); + if (lookahead == 'e') ADVANCE(1377); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1411: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'g') ADVANCE(1510); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'e') ADVANCE(1512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1412: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'g') ADVANCE(1517); + if (lookahead == 'e') ADVANCE(1476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1413: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(1350); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'e') ADVANCE(1394); + if (lookahead == 's') ADVANCE(1636); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1414: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(1349); + if (lookahead == 'e') ADVANCE(1394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1415: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(1425); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'e') ADVANCE(1474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1416: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(1426); + if (lookahead == 'e') ADVANCE(1376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1417: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1418: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(1448); + if (lookahead == 'e') ADVANCE(1473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1419: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(1449); + if (lookahead == 'e') ADVANCE(1378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1420: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'h') ADVANCE(1412); + if (lookahead == 'e') ADVANCE(1427); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1421: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1518); + if (lookahead == 'g') ADVANCE(1503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1422: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1499); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'g') ADVANCE(1507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1423: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1495); + if (lookahead == 'h') ADVANCE(1370); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1424: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1472); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'h') ADVANCE(1431); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1425: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1534); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'h') ADVANCE(1450); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1426: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1535); + if (lookahead == 'h') ADVANCE(1451); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1427: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1463); + if (lookahead == 'h') ADVANCE(1452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1428: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1498); + if (lookahead == 'h') ADVANCE(1422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1429: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1469); + if (lookahead == 'i') ADVANCE(1508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1430: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1471); + if (lookahead == 'i') ADVANCE(1493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1431: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1480); + if (lookahead == 'i') ADVANCE(1520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1432: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1482); + if (lookahead == 'i') ADVANCE(1465); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1433: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1483); + if (lookahead == 'i') ADVANCE(1496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1434: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'i') ADVANCE(1484); + if (lookahead == 'i') ADVANCE(1468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1435: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'k') ADVANCE(1422); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'i') ADVANCE(1470); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1436: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'k') ADVANCE(1554); + if (lookahead == 'i') ADVANCE(1478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1437: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'k') ADVANCE(1423); - if (lookahead == 't') ADVANCE(1359); + if (lookahead == 'i') ADVANCE(1479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1438: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'k') ADVANCE(1423); + if (lookahead == 'i') ADVANCE(1480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1439: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'k') ADVANCE(1428); + if (lookahead == 'i') ADVANCE(1481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1440: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1538); + if (lookahead == 'i') ADVANCE(1482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1441: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1664); + if (lookahead == 'k') ADVANCE(1535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1442: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1626); + if (lookahead == 'k') ADVANCE(1430); + if (lookahead == 't') ADVANCE(1375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1443: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1688); + if (lookahead == 'k') ADVANCE(1430); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1444: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1629); + if (lookahead == 'k') ADVANCE(1433); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1445: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1663); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'l') ADVANCE(1522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1446: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1627); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'l') ADVANCE(1630); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1447: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1784); + if (lookahead == 'l') ADVANCE(1607); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1448: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1775); + if (lookahead == 'l') ADVANCE(1651); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1449: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1772); + if (lookahead == 'l') ADVANCE(1609); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1450: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1781); + if (lookahead == 'l') ADVANCE(1716); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1451: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1374); + if (lookahead == 'l') ADVANCE(1707); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1452: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1431); + if (lookahead == 'l') ADVANCE(1704); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1453: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1417); + if (lookahead == 'l') ADVANCE(1713); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1454: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1348); + if (lookahead == 'l') ADVANCE(1391); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1455: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1405); + if (lookahead == 'l') ADVANCE(1436); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1456: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1433); + if (lookahead == 'l') ADVANCE(1425); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1457: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'l') ADVANCE(1434); + if (lookahead == 'l') ADVANCE(1369); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1458: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'm') ADVANCE(1501); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'l') ADVANCE(1416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1459: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'm') ADVANCE(1490); + if (lookahead == 'l') ADVANCE(1439); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1460: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'm') ADVANCE(1502); + if (lookahead == 'l') ADVANCE(1440); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1461: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'm') ADVANCE(1418); + if (lookahead == 'm') ADVANCE(1488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1462: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1373); - if (lookahead == 'x') ADVANCE(1368); + if (lookahead == 'm') ADVANCE(1497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1463: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1403); + if (lookahead == 'm') ADVANCE(1426); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1464: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1644); + if (lookahead == 'n') ADVANCE(1390); + if (lookahead == 'x') ADVANCE(1385); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1465: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1369); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'n') ADVANCE(1413); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1466: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1523); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'n') ADVANCE(1618); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1467: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1643); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'n') ADVANCE(1701); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1468: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1769); + if (lookahead == 'n') ADVANCE(1441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1469: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1436); + if (lookahead == 'n') ADVANCE(1386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1470: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1371); + if (lookahead == 'n') ADVANCE(1509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1471: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1519); + if (lookahead == 'n') ADVANCE(1407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1472: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1389); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'n') ADVANCE(1392); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1473: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1394); + if (lookahead == 'n') ADVANCE(1393); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1474: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1375); + if (lookahead == 'n') ADVANCE(1516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1475: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1531); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'n') ADVANCE(1396); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1476: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1376); + if (lookahead == 'n') ADVANCE(1448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1477: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1527); + if (lookahead == 'n') ADVANCE(1521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1478: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1380); + if (lookahead == 'n') ADVANCE(1401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1479: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1443); + if (lookahead == 'n') ADVANCE(1414); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1480: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1385); + if (lookahead == 'n') ADVANCE(1420); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1481: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1536); + if (lookahead == 'n') ADVANCE(1409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1482: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1409); + if (lookahead == 'n') ADVANCE(1411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1483: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1397); + if (lookahead == 'n') ADVANCE(1513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1484: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1401); + if (lookahead == 'n') ADVANCE(1389); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1485: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1524); + if (lookahead == 'n') ADVANCE(1388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1486: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1372); + if (lookahead == 'n') ADVANCE(1460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1487: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'n') ADVANCE(1457); + if (lookahead == 'o') ADVANCE(1454); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1488: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(1451); + if (lookahead == 'o') ADVANCE(1527); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1489: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(1539); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'o') ADVANCE(1524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1490: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(1543); + if (lookahead == 'o') ADVANCE(1477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1491: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(1540); + if (lookahead == 'o') ADVANCE(1467); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1492: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(1468); + if (lookahead == 'o') ADVANCE(1525); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1493: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(1481); + if (lookahead == 'p') ADVANCE(1400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1494: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'o') ADVANCE(1541); + if (lookahead == 'p') ADVANCE(1621); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1495: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1384); + if (lookahead == 'p') ADVANCE(1654); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1496: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1649); + if (lookahead == 'p') ADVANCE(1685); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1497: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1691); + if (lookahead == 'p') ADVANCE(1519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1498: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1753); + if (lookahead == 'p') ADVANCE(1457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1499: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1388); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'p') ADVANCE(1374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1500: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1648); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'p') ADVANCE(1418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1501: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1530); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'r') ADVANCE(1612); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1502: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1533); + if (lookahead == 'r') ADVANCE(1536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1503: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1454); + if (lookahead == 'r') ADVANCE(1489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1504: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1358); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'r') ADVANCE(1371); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1505: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1357); + if (lookahead == 'r') ADVANCE(1517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1506: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'p') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(1415); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1507: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(1634); + if (lookahead == 'r') ADVANCE(1492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1508: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(1351); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 's') ADVANCE(1498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1509: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(1633); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 's') ADVANCE(1636); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1510: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(1489); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 's') ADVANCE(1660); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1511: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(1555); + if (lookahead == 's') ADVANCE(1695); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1512: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(1491); + if (lookahead == 's') ADVANCE(1692); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1513: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(1354); + if (lookahead == 's') ADVANCE(1499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1514: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(1398); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 't') ADVANCE(1384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1515: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(1528); + if (lookahead == 't') ADVANCE(1421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1516: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(1404); + if (lookahead == 't') ADVANCE(1624); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1517: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'r') ADVANCE(1494); + if (lookahead == 't') ADVANCE(1566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1518: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(1503); + if (lookahead == 't') ADVANCE(1710); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1519: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(1673); + if (lookahead == 't') ADVANCE(1533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1520: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(1697); + if (lookahead == 't') ADVANCE(1402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1521: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(1763); + if (lookahead == 't') ADVANCE(1379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1522: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(1760); + if (lookahead == 'u') ADVANCE(1397); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1523: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(1504); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'u') ADVANCE(1463); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1524: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 's') ADVANCE(1505); + if (lookahead == 'u') ADVANCE(1494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1525: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1367); + if (lookahead == 'u') ADVANCE(1495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1526: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1410); + if (lookahead == 'u') ADVANCE(1456); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1527: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1654); + if (lookahead == 'v') ADVANCE(1403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1528: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1585); + if (lookahead == 'x') ADVANCE(1385); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1529: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1411); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'x') ADVANCE(1515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1530: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1551); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'x') ADVANCE(1518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1531: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1653); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'x') ADVANCE(1459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1532: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1778); + if (lookahead == 'y') ADVANCE(1642); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1533: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1550); + if (lookahead == 'y') ADVANCE(1633); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1534: ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1390); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); case 1535: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1386); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1536: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 't') ADVANCE(1363); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1537: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(1461); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1538: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(1381); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1539: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(1500); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); - END_STATE(); - case 1540: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1541: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(1497); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1542: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'u') ADVANCE(1453); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1543: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'v') ADVANCE(1391); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1544: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'x') ADVANCE(1368); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1545: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'x') ADVANCE(1529); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); - END_STATE(); - case 1546: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'x') ADVANCE(1526); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1547: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'x') ADVANCE(1532); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1548: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'x') ADVANCE(1456); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1549: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'y') ADVANCE(1679); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1550: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'y') ADVANCE(1669); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1551: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == 'y') ADVANCE(1668); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); - END_STATE(); - case 1552: - ACCEPT_TOKEN(sym_hl_group); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); - END_STATE(); - case 1553: - ACCEPT_TOKEN(sym_hl_group); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); - END_STATE(); - case 1554: ACCEPT_TOKEN(anon_sym_link); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1555: + case 1536: ACCEPT_TOKEN(anon_sym_clear); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1556: + case 1537: ACCEPT_TOKEN(anon_sym_clear); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1557: + case 1538: ACCEPT_TOKEN(anon_sym_clear); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1558: + case 1539: ACCEPT_TOKEN(anon_sym_NONE); END_STATE(); - case 1559: + case 1540: ACCEPT_TOKEN(anon_sym_cterm); - if (lookahead == 'b') ADVANCE(1566); - if (lookahead == 'f') ADVANCE(1567); + if (lookahead == 'b') ADVANCE(1547); + if (lookahead == 'f') ADVANCE(1548); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1560: + case 1541: ACCEPT_TOKEN(anon_sym_cterm); - if (lookahead == 'b') ADVANCE(333); - if (lookahead == 'f') ADVANCE(334); + if (lookahead == 'b') ADVANCE(351); + if (lookahead == 'f') ADVANCE(352); END_STATE(); - case 1561: + case 1542: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == '>') ADVANCE(1583); + if (lookahead == '>') ADVANCE(1564); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1562: + case 1543: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'a') ADVANCE(1575); - if (lookahead == 'o') ADVANCE(1572); + if (lookahead == 'a') ADVANCE(1556); + if (lookahead == 'o') ADVANCE(1553); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1563: + case 1544: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'e') ADVANCE(1574); + if (lookahead == 'e') ADVANCE(1555); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1564: + case 1545: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'g') ADVANCE(1606); + if (lookahead == 'g') ADVANCE(1587); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1565: + case 1546: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'g') ADVANCE(1604); + if (lookahead == 'g') ADVANCE(1585); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1566: + case 1547: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'g') ADVANCE(1595); + if (lookahead == 'g') ADVANCE(1576); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1567: + case 1548: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'g') ADVANCE(1593); + if (lookahead == 'g') ADVANCE(1574); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1568: + case 1549: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'i') ADVANCE(1597); + if (lookahead == 'i') ADVANCE(1578); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1569: + case 1550: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'm') ADVANCE(1559); + if (lookahead == 'm') ADVANCE(1540); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1570: + case 1551: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'n') ADVANCE(1578); + if (lookahead == 'n') ADVANCE(1559); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1571: + case 1552: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'o') ADVANCE(1570); + if (lookahead == 'o') ADVANCE(1551); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1572: + case 1553: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'p') ADVANCE(1589); + if (lookahead == 'p') ADVANCE(1570); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1573: + case 1554: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'p') ADVANCE(1608); + if (lookahead == 'p') ADVANCE(1589); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1574: + case 1555: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'r') ADVANCE(1569); + if (lookahead == 'r') ADVANCE(1550); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1575: + case 1556: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'r') ADVANCE(1579); + if (lookahead == 'r') ADVANCE(1560); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1576: + case 1557: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 't') ADVANCE(1563); + if (lookahead == 't') ADVANCE(1544); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1577: + case 1558: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 't') ADVANCE(1562); + if (lookahead == 't') ADVANCE(1543); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1578: + case 1559: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 't') ADVANCE(1610); + if (lookahead == 't') ADVANCE(1591); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1579: + case 1560: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 't') ADVANCE(1587); + if (lookahead == 't') ADVANCE(1568); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1580: + case 1561: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == 'u') ADVANCE(1568); + if (lookahead == 'u') ADVANCE(1549); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1581: + case 1562: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); - if (lookahead == '|') ADVANCE(1342); + if (lookahead == '|') ADVANCE(1363); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1582: + case 1563: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1561); + lookahead == 'r') ADVANCE(1542); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1583: + case 1564: ACCEPT_TOKEN(aux_sym__hl_term_list_token1); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1584: + case 1565: ACCEPT_TOKEN(anon_sym_start); END_STATE(); - case 1585: + case 1566: ACCEPT_TOKEN(anon_sym_start); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1586: + case 1567: ACCEPT_TOKEN(anon_sym_start); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1587: + case 1568: ACCEPT_TOKEN(anon_sym_start); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1588: + case 1569: ACCEPT_TOKEN(anon_sym_stop); END_STATE(); - case 1589: + case 1570: ACCEPT_TOKEN(anon_sym_stop); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1590: + case 1571: ACCEPT_TOKEN(sym__hl_color_nr); END_STATE(); - case 1591: + case 1572: ACCEPT_TOKEN(sym__hl_color_nr); - if (lookahead == '*') ADVANCE(1590); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1591); + if (lookahead == '*') ADVANCE(1571); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1572); END_STATE(); - case 1592: + case 1573: ACCEPT_TOKEN(anon_sym_ctermfg); END_STATE(); - case 1593: + case 1574: ACCEPT_TOKEN(anon_sym_ctermfg); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1594: + case 1575: ACCEPT_TOKEN(anon_sym_ctermbg); END_STATE(); - case 1595: + case 1576: ACCEPT_TOKEN(anon_sym_ctermbg); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1596: + case 1577: ACCEPT_TOKEN(anon_sym_gui); - if (lookahead == 'b') ADVANCE(331); - if (lookahead == 'f') ADVANCE(332); - if (lookahead == 's') ADVANCE(432); + if (lookahead == 'b') ADVANCE(349); + if (lookahead == 'f') ADVANCE(350); + if (lookahead == 's') ADVANCE(453); END_STATE(); - case 1597: + case 1578: ACCEPT_TOKEN(anon_sym_gui); - if (lookahead == 'b') ADVANCE(1564); - if (lookahead == 'f') ADVANCE(1565); - if (lookahead == 's') ADVANCE(1573); + if (lookahead == 'b') ADVANCE(1545); + if (lookahead == 'f') ADVANCE(1546); + if (lookahead == 's') ADVANCE(1554); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1598: + case 1579: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1599: + case 1580: ACCEPT_TOKEN(aux_sym__hl_quoted_name_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\'') ADVANCE(1599); + lookahead != '\'') ADVANCE(1580); END_STATE(); - case 1600: + case 1581: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1601: + case 1582: ACCEPT_TOKEN(aux_sym__hl_color_name_token1); END_STATE(); - case 1602: + case 1583: ACCEPT_TOKEN(aux_sym__hl_color_name_token2); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(1118); + lookahead == '_') ADVANCE(1139); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1583); END_STATE(); - case 1603: + case 1584: ACCEPT_TOKEN(anon_sym_guifg); END_STATE(); - case 1604: + case 1585: ACCEPT_TOKEN(anon_sym_guifg); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1605: + case 1586: ACCEPT_TOKEN(anon_sym_guibg); END_STATE(); - case 1606: + case 1587: ACCEPT_TOKEN(anon_sym_guibg); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1607: + case 1588: ACCEPT_TOKEN(anon_sym_guisp); END_STATE(); - case 1608: + case 1589: ACCEPT_TOKEN(anon_sym_guisp); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1609: + case 1590: ACCEPT_TOKEN(anon_sym_font); END_STATE(); - case 1610: + case 1591: ACCEPT_TOKEN(anon_sym_font); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(1583); + lookahead != ' ') ADVANCE(1564); END_STATE(); - case 1611: + case 1592: ACCEPT_TOKEN(aux_sym__hl_key_font_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1611); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1592); END_STATE(); - case 1612: + case 1593: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == '\t') ADVANCE(1612); - if (lookahead == 'c') ADVANCE(1618); + if (lookahead == '\t') ADVANCE(1593); + if (lookahead == 'c') ADVANCE(1599); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1613: + case 1594: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == '\t') ADVANCE(1613); - if (lookahead == '<') ADVANCE(1621); - if (lookahead == '\\') ADVANCE(1620); - if (lookahead == 'c') ADVANCE(1618); + if (lookahead == '\t') ADVANCE(1594); + if (lookahead == '<') ADVANCE(1602); + if (lookahead == '\\') ADVANCE(1601); + if (lookahead == 'c') ADVANCE(1599); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1614: + case 1595: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == '\t') ADVANCE(1614); - if (lookahead == '<') ADVANCE(1621); - if (lookahead == 'c') ADVANCE(1618); + if (lookahead == '\t') ADVANCE(1595); + if (lookahead == '<') ADVANCE(1602); + if (lookahead == 'c') ADVANCE(1599); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1615: + case 1596: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == '>') ADVANCE(1346); + if (lookahead == '>') ADVANCE(1367); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1616: + case 1597: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'a') ADVANCE(1619); + if (lookahead == 'a') ADVANCE(1600); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1617: + case 1598: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'e') ADVANCE(1616); + if (lookahead == 'e') ADVANCE(1597); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1618: + case 1599: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'l') ADVANCE(1617); + if (lookahead == 'l') ADVANCE(1598); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1619: + case 1600: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == 'r') ADVANCE(1557); + if (lookahead == 'r') ADVANCE(1538); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1620: + case 1601: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); - if (lookahead == '|') ADVANCE(1344); + if (lookahead == '|') ADVANCE(1365); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1621: + case 1602: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1622); + lookahead == 'c') ADVANCE(1603); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1622: + case 1603: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1615); + lookahead == 'r') ADVANCE(1596); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1623: + case 1604: ACCEPT_TOKEN(aux_sym__syn_iskeyword_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != ' ') ADVANCE(1623); + lookahead != ' ') ADVANCE(1604); END_STATE(); - case 1624: - ACCEPT_TOKEN(anon_sym_conceal); - END_STATE(); - case 1625: + case 1605: ACCEPT_TOKEN(anon_sym_conceal); - if (lookahead == 'e') ADVANCE(406); END_STATE(); - case 1626: + case 1606: ACCEPT_TOKEN(anon_sym_conceal); - if (lookahead == 'e') ADVANCE(1478); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + if (lookahead == 'e') ADVANCE(425); END_STATE(); - case 1627: + case 1607: ACCEPT_TOKEN(anon_sym_conceal); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); + if (lookahead == 'e') ADVANCE(1475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1628: + case 1608: ACCEPT_TOKEN(anon_sym_conceal); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1061); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1082); END_STATE(); - case 1629: + case 1609: ACCEPT_TOKEN(anon_sym_conceal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1630: + case 1610: ACCEPT_TOKEN(anon_sym_conceal); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - END_STATE(); - case 1631: - ACCEPT_TOKEN(anon_sym_conceal); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1632: - ACCEPT_TOKEN(anon_sym_cchar); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1633: + case 1611: ACCEPT_TOKEN(anon_sym_cchar); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); END_STATE(); - case 1634: + case 1612: ACCEPT_TOKEN(anon_sym_cchar); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1635: + case 1613: ACCEPT_TOKEN(anon_sym_cchar); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - END_STATE(); - case 1636: - ACCEPT_TOKEN(anon_sym_cchar); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1637: - ACCEPT_TOKEN(anon_sym_contained); - if (lookahead == 'i') ADVANCE(1467); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); - END_STATE(); - case 1638: - ACCEPT_TOKEN(anon_sym_contained); - if (lookahead == 'i') ADVANCE(1732); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1639: + case 1614: ACCEPT_TOKEN(anon_sym_contained); - if (lookahead == 'i') ADVANCE(1464); + if (lookahead == 'i') ADVANCE(1466); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1640: + case 1615: ACCEPT_TOKEN(anon_sym_contained); - if (lookahead == 'i') ADVANCE(396); + if (lookahead == 'i') ADVANCE(415); END_STATE(); - case 1641: + case 1616: ACCEPT_TOKEN(anon_sym_contained); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'i') ADVANCE(1053); - END_STATE(); - case 1642: - ACCEPT_TOKEN(anon_sym_containedin); + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'i') ADVANCE(1074); END_STATE(); - case 1643: + case 1617: ACCEPT_TOKEN(anon_sym_containedin); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); END_STATE(); - case 1644: + case 1618: ACCEPT_TOKEN(anon_sym_containedin); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1645: + case 1619: ACCEPT_TOKEN(anon_sym_containedin); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - END_STATE(); - case 1646: - ACCEPT_TOKEN(anon_sym_containedin); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1647: - ACCEPT_TOKEN(anon_sym_nextgroup); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1648: + case 1620: ACCEPT_TOKEN(anon_sym_nextgroup); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); END_STATE(); - case 1649: + case 1621: ACCEPT_TOKEN(anon_sym_nextgroup); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1650: + case 1622: ACCEPT_TOKEN(anon_sym_nextgroup); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - END_STATE(); - case 1651: - ACCEPT_TOKEN(anon_sym_nextgroup); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1652: - ACCEPT_TOKEN(anon_sym_transparent); - END_STATE(); - case 1653: + case 1623: ACCEPT_TOKEN(anon_sym_transparent); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); END_STATE(); - case 1654: + case 1624: ACCEPT_TOKEN(anon_sym_transparent); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1655: + case 1625: ACCEPT_TOKEN(anon_sym_transparent); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - END_STATE(); - case 1656: - ACCEPT_TOKEN(anon_sym_transparent); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1657: - ACCEPT_TOKEN(anon_sym_skipwhite); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1658: + case 1626: ACCEPT_TOKEN(anon_sym_skipwhite); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); END_STATE(); - case 1659: + case 1627: ACCEPT_TOKEN(anon_sym_skipwhite); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1660: + case 1628: ACCEPT_TOKEN(anon_sym_skipwhite); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - END_STATE(); - case 1661: - ACCEPT_TOKEN(anon_sym_skipwhite); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1662: - ACCEPT_TOKEN(anon_sym_skipnl); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1663: + case 1629: ACCEPT_TOKEN(anon_sym_skipnl); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); END_STATE(); - case 1664: + case 1630: ACCEPT_TOKEN(anon_sym_skipnl); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1665: + case 1631: ACCEPT_TOKEN(anon_sym_skipnl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - END_STATE(); - case 1666: - ACCEPT_TOKEN(anon_sym_skipnl); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1667: - ACCEPT_TOKEN(anon_sym_skipempty); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1668: + case 1632: ACCEPT_TOKEN(anon_sym_skipempty); - if (lookahead == '-' || - lookahead == '[' || - lookahead == ']') ADVANCE(1752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1552); END_STATE(); - case 1669: + case 1633: ACCEPT_TOKEN(anon_sym_skipempty); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1670: + case 1634: ACCEPT_TOKEN(anon_sym_skipempty); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - END_STATE(); - case 1671: - ACCEPT_TOKEN(anon_sym_skipempty); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1672: + case 1635: ACCEPT_TOKEN(anon_sym_contains); END_STATE(); - case 1673: + case 1636: ACCEPT_TOKEN(anon_sym_contains); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1674: + case 1637: ACCEPT_TOKEN(anon_sym_contains); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1675: + case 1638: ACCEPT_TOKEN(anon_sym_fold); END_STATE(); - case 1676: + case 1639: ACCEPT_TOKEN(anon_sym_fold); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1677: + case 1640: ACCEPT_TOKEN(anon_sym_fold); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1678: + case 1641: ACCEPT_TOKEN(anon_sym_display); END_STATE(); - case 1679: + case 1642: ACCEPT_TOKEN(anon_sym_display); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1680: + case 1643: ACCEPT_TOKEN(anon_sym_display); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1681: + case 1644: ACCEPT_TOKEN(anon_sym_extend); END_STATE(); - case 1682: + case 1645: ACCEPT_TOKEN(anon_sym_extend); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1683: + case 1646: ACCEPT_TOKEN(anon_sym_extend); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1684: + case 1647: ACCEPT_TOKEN(anon_sym_keepend); END_STATE(); - case 1685: + case 1648: ACCEPT_TOKEN(anon_sym_keepend); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1686: + case 1649: ACCEPT_TOKEN(anon_sym_keepend); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1687: + case 1650: ACCEPT_TOKEN(anon_sym_excludenl); END_STATE(); - case 1688: + case 1651: ACCEPT_TOKEN(anon_sym_excludenl); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1689: + case 1652: ACCEPT_TOKEN(anon_sym_excludenl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1690: + case 1653: ACCEPT_TOKEN(anon_sym_matchgroup); END_STATE(); - case 1691: + case 1654: ACCEPT_TOKEN(anon_sym_matchgroup); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1692: + case 1655: ACCEPT_TOKEN(anon_sym_matchgroup); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1693: + case 1656: ACCEPT_TOKEN(anon_sym_oneline); END_STATE(); - case 1694: + case 1657: ACCEPT_TOKEN(anon_sym_oneline); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1695: + case 1658: ACCEPT_TOKEN(anon_sym_oneline); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1696: + case 1659: ACCEPT_TOKEN(anon_sym_concealends); END_STATE(); - case 1697: + case 1660: ACCEPT_TOKEN(anon_sym_concealends); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1698: + case 1661: ACCEPT_TOKEN(anon_sym_concealends); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1699: + case 1662: ACCEPT_TOKEN(anon_sym_add); END_STATE(); - case 1700: + case 1663: ACCEPT_TOKEN(anon_sym_add); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1701: + case 1664: ACCEPT_TOKEN(anon_sym_remove); END_STATE(); - case 1702: + case 1665: ACCEPT_TOKEN(anon_sym_remove); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1703: + case 1666: ACCEPT_TOKEN(aux_sym__syn_pattern_offset_token1); if (lookahead == '+' || - lookahead == '-') ADVANCE(645); + lookahead == '-') ADVANCE(666); END_STATE(); - case 1704: + case 1667: ACCEPT_TOKEN(aux_sym__syn_pattern_offset_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); - case 1705: + case 1668: ACCEPT_TOKEN(aux_sym__syn_pattern_offset_token2); END_STATE(); - case 1706: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'a') ADVANCE(1741); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1707: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'a') ADVANCE(1731); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1708: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'a') ADVANCE(1724); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1709: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'a') ADVANCE(1728); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1710: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'a') ADVANCE(1743); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1711: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'c') ADVANCE(1721); - if (lookahead == 'o') ADVANCE(1730); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1712: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'c') ADVANCE(1719); - if (lookahead == 't') ADVANCE(1708); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1713: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'd') ADVANCE(1638); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1714: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'e') ADVANCE(1750); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1715: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'e') ADVANCE(1729); - if (lookahead == 'n') ADVANCE(1727); - if (lookahead == 'w') ADVANCE(1722); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1716: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'e') ADVANCE(1713); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1717: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'e') ADVANCE(1661); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1718: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'e') ADVANCE(1734); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1719: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'e') ADVANCE(1709); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1720: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'g') ADVANCE(1742); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1721: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'h') ADVANCE(1706); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1722: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'h') ADVANCE(1725); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1723: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'i') ADVANCE(1736); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1724: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'i') ADVANCE(1733); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1725: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'i') ADVANCE(1748); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1726: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'k') ADVANCE(1723); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1727: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'l') ADVANCE(1666); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1728: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'l') ADVANCE(1631); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1729: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'm') ADVANCE(1738); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1730: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'n') ADVANCE(1712); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1731: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'n') ADVANCE(1744); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1732: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'n') ADVANCE(1646); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1733: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'n') ADVANCE(1716); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1734: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'n') ADVANCE(1747); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1735: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'o') ADVANCE(1749); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1736: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'p') ADVANCE(1715); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); - END_STATE(); - case 1737: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'p') ADVANCE(1651); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1669: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token1); END_STATE(); - case 1738: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'p') ADVANCE(1746); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1670: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token1); + if (lookahead == 'c') ADVANCE(355); + if (lookahead == 'o') ADVANCE(437); END_STATE(); - case 1739: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'p') ADVANCE(1710); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1671: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token1); + if (lookahead == 'e') ADVANCE(523); END_STATE(); - case 1740: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'r') ADVANCE(1707); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1672: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token1); + if (lookahead == 'k') ADVANCE(374); END_STATE(); - case 1741: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'r') ADVANCE(1636); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1673: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token1); + if (lookahead == 'r') ADVANCE(268); END_STATE(); - case 1742: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'r') ADVANCE(1735); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1674: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token1); + if (lookahead == '|') ADVANCE(1361); END_STATE(); - case 1743: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'r') ADVANCE(1718); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1675: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(625); END_STATE(); - case 1744: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 's') ADVANCE(1739); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1676: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token2); END_STATE(); - case 1745: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 't') ADVANCE(1720); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1677: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token2); + if (lookahead == 'c') ADVANCE(355); + if (lookahead == 'o') ADVANCE(437); END_STATE(); - case 1746: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 't') ADVANCE(1751); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1678: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token2); + if (lookahead == 'e') ADVANCE(523); END_STATE(); - case 1747: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 't') ADVANCE(1656); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1679: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token2); + if (lookahead == 'k') ADVANCE(374); END_STATE(); - case 1748: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 't') ADVANCE(1717); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1680: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token2); + if (lookahead == 'r') ADVANCE(268); END_STATE(); - case 1749: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'u') ADVANCE(1737); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1681: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token2); + if (lookahead == '|') ADVANCE(1361); END_STATE(); - case 1750: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'x') ADVANCE(1745); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1682: + ACCEPT_TOKEN(aux_sym__syn_keyword_identifier_token2); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(625); END_STATE(); - case 1751: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == 'y') ADVANCE(1671); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1683: + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 1752: - ACCEPT_TOKEN(sym__syn_keyword_identifier); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '[') || - lookahead == ']' || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1752); + case 1684: + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 1753: + case 1685: ACCEPT_TOKEN(anon_sym_skip); - if (lookahead == 'e') ADVANCE(1460); - if (lookahead == 'n') ADVANCE(1441); - if (lookahead == 'w') ADVANCE(1416); + if (lookahead == 'e') ADVANCE(1462); + if (lookahead == 'n') ADVANCE(1446); + if (lookahead == 'w') ADVANCE(1424); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1754: + case 1686: ACCEPT_TOKEN(anon_sym_skip); - if (lookahead == 'e') ADVANCE(388); - if (lookahead == 'n') ADVANCE(370); - if (lookahead == 'w') ADVANCE(339); + if (lookahead == 'e') ADVANCE(407); + if (lookahead == 'n') ADVANCE(389); + if (lookahead == 'w') ADVANCE(357); END_STATE(); - case 1755: + case 1687: ACCEPT_TOKEN(anon_sym_skip); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || @@ -19441,672 +18624,672 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'd') || ('f' <= lookahead && lookahead <= 'm') || ('o' <= lookahead && lookahead <= 'v') || - ('x' <= lookahead && lookahead <= 'z')) ADVANCE(1118); - if (lookahead == 'e') ADVANCE(1051); - if (lookahead == 'n') ADVANCE(1042); - if (lookahead == 'w') ADVANCE(1027); + ('x' <= lookahead && lookahead <= 'z')) ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1072); + if (lookahead == 'n') ADVANCE(1063); + if (lookahead == 'w') ADVANCE(1048); END_STATE(); - case 1756: + case 1688: ACCEPT_TOKEN(anon_sym_end); END_STATE(); - case 1757: + case 1689: ACCEPT_TOKEN(anon_sym_end); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1758: + case 1690: ACCEPT_TOKEN(anon_sym_end); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1759: + case 1691: ACCEPT_TOKEN(anon_sym_minlines); END_STATE(); - case 1760: + case 1692: ACCEPT_TOKEN(anon_sym_minlines); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1761: + case 1693: ACCEPT_TOKEN(anon_sym_minlines); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1762: + case 1694: ACCEPT_TOKEN(anon_sym_maxlines); END_STATE(); - case 1763: + case 1695: ACCEPT_TOKEN(anon_sym_maxlines); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1764: + case 1696: ACCEPT_TOKEN(anon_sym_maxlines); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1139); END_STATE(); - case 1765: + case 1697: ACCEPT_TOKEN(aux_sym__syn_sync_lines_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1765); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1697); END_STATE(); - case 1766: + case 1698: ACCEPT_TOKEN(anon_sym_grouphere); END_STATE(); - case 1767: + case 1699: ACCEPT_TOKEN(anon_sym_groupthere); END_STATE(); - case 1768: + case 1700: ACCEPT_TOKEN(anon_sym_icon); END_STATE(); - case 1769: + case 1701: ACCEPT_TOKEN(anon_sym_icon); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1770: + case 1702: ACCEPT_TOKEN(anon_sym_icon); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1771: + case 1703: ACCEPT_TOKEN(anon_sym_linehl); END_STATE(); - case 1772: + case 1704: ACCEPT_TOKEN(anon_sym_linehl); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1773: + case 1705: ACCEPT_TOKEN(anon_sym_linehl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1774: + case 1706: ACCEPT_TOKEN(anon_sym_numhl); END_STATE(); - case 1775: + case 1707: ACCEPT_TOKEN(anon_sym_numhl); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1776: + case 1708: ACCEPT_TOKEN(anon_sym_numhl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1777: + case 1709: ACCEPT_TOKEN(anon_sym_text); - if (lookahead == 'h') ADVANCE(371); + if (lookahead == 'h') ADVANCE(390); END_STATE(); - case 1778: + case 1710: ACCEPT_TOKEN(anon_sym_text); - if (lookahead == 'h') ADVANCE(1450); + if (lookahead == 'h') ADVANCE(1453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1779: + case 1711: ACCEPT_TOKEN(anon_sym_text); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'g') || - ('i' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'h') ADVANCE(959); + ('i' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'h') ADVANCE(980); END_STATE(); - case 1780: + case 1712: ACCEPT_TOKEN(anon_sym_texthl); END_STATE(); - case 1781: + case 1713: ACCEPT_TOKEN(anon_sym_texthl); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1782: + case 1714: ACCEPT_TOKEN(anon_sym_texthl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1783: + case 1715: ACCEPT_TOKEN(anon_sym_culhl); END_STATE(); - case 1784: + case 1716: ACCEPT_TOKEN(anon_sym_culhl); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1553); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1534); END_STATE(); - case 1785: + case 1717: ACCEPT_TOKEN(anon_sym_culhl); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1786: + case 1718: ACCEPT_TOKEN(anon_sym_line); END_STATE(); - case 1787: + case 1719: ACCEPT_TOKEN(anon_sym_line); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1788: + case 1720: ACCEPT_TOKEN(anon_sym_name); END_STATE(); - case 1789: + case 1721: ACCEPT_TOKEN(anon_sym_name); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1790: + case 1722: ACCEPT_TOKEN(anon_sym_buffer); END_STATE(); - case 1791: + case 1723: ACCEPT_TOKEN(anon_sym_buffer); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1792: + case 1724: ACCEPT_TOKEN(anon_sym_group); END_STATE(); - case 1793: + case 1725: ACCEPT_TOKEN(anon_sym_group); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1794: + case 1726: ACCEPT_TOKEN(anon_sym_priority); END_STATE(); - case 1795: + case 1727: ACCEPT_TOKEN(anon_sym_priority); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1796: + case 1728: ACCEPT_TOKEN(anon_sym_file); END_STATE(); - case 1797: + case 1729: ACCEPT_TOKEN(anon_sym_file); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1798: + case 1730: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 1799: + case 1731: ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); - case 1800: + case 1732: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '=') ADVANCE(1127); + if (lookahead == '=') ADVANCE(1148); END_STATE(); - case 1801: + case 1733: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 1802: + case 1734: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '{') ADVANCE(1925); + if (lookahead == '{') ADVANCE(1857); END_STATE(); - case 1803: + case 1735: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 1804: + case 1736: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 1805: + case 1737: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 1806: + case 1738: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(1840); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); + if (lookahead == '0') ADVANCE(1772); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); END_STATE(); - case 1807: + case 1739: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '=') ADVANCE(1126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '=') ADVANCE(1147); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); END_STATE(); - case 1808: + case 1740: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '>') ADVANCE(1926); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '>') ADVANCE(1858); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); END_STATE(); - case 1809: + case 1741: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(1837); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (lookahead == '0') ADVANCE(1769); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); END_STATE(); - case 1810: + case 1742: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(1126); + if (lookahead == '=') ADVANCE(1147); END_STATE(); - case 1811: + case 1743: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(1926); + if (lookahead == '>') ADVANCE(1858); END_STATE(); - case 1812: + case 1744: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 1813: + case 1745: ACCEPT_TOKEN(anon_sym_is); - if (lookahead == 'n') ADVANCE(807); + if (lookahead == 'n') ADVANCE(828); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1814: + case 1746: ACCEPT_TOKEN(anon_sym_is); - if (lookahead == 'n') ADVANCE(423); + if (lookahead == 'n') ADVANCE(444); END_STATE(); - case 1815: + case 1747: ACCEPT_TOKEN(anon_sym_is); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(986); - if (lookahead == 'n') ADVANCE(924); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(1007); + if (lookahead == 'n') ADVANCE(945); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); - case 1816: + case 1748: ACCEPT_TOKEN(anon_sym_is); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(793); - if (lookahead == 'n') ADVANCE(786); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead == 'n') ADVANCE(807); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); - case 1817: + case 1749: ACCEPT_TOKEN(anon_sym_is); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(986); - if (lookahead == 'n') ADVANCE(966); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'n') ADVANCE(987); END_STATE(); - case 1818: + case 1750: ACCEPT_TOKEN(anon_sym_is); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z')) ADVANCE(793); - if (lookahead == 'n') ADVANCE(790); + ('o' <= lookahead && lookahead <= 'z')) ADVANCE(814); + if (lookahead == 'n') ADVANCE(811); END_STATE(); - case 1819: + case 1751: ACCEPT_TOKEN(anon_sym_isnot); END_STATE(); - case 1820: + case 1752: ACCEPT_TOKEN(anon_sym_isnot); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(986); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(1007); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(927); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(948); END_STATE(); - case 1821: + case 1753: ACCEPT_TOKEN(anon_sym_isnot); if (lookahead == '#' || - ('0' <= lookahead && lookahead <= '9')) ADVANCE(793); + ('0' <= lookahead && lookahead <= '9')) ADVANCE(814); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(789); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); - case 1822: + case 1754: ACCEPT_TOKEN(anon_sym_isnot); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(942); END_STATE(); - case 1823: + case 1755: ACCEPT_TOKEN(anon_sym_isnot); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(986); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); - case 1824: + case 1756: ACCEPT_TOKEN(anon_sym_isnot); if (lookahead == '#' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(793); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(814); END_STATE(); - case 1825: + case 1757: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 1826: + case 1758: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 1827: + case 1759: ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 1828: + case 1760: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1829); + if (lookahead == '=') ADVANCE(1761); END_STATE(); - case 1829: + case 1761: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 1830: + case 1762: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 1831: + case 1763: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 1832: + case 1764: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 1833: + case 1765: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 1834: + case 1766: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1826); - if (lookahead == '~') ADVANCE(1832); + if (lookahead == '=') ADVANCE(1758); + if (lookahead == '~') ADVANCE(1764); END_STATE(); - case 1835: + case 1767: ACCEPT_TOKEN(sym_float_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1835); + lookahead == 'e') ADVANCE(539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1767); END_STATE(); - case 1836: + case 1768: ACCEPT_TOKEN(sym_float_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1836); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1768); END_STATE(); - case 1837: + case 1769: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(643); + if (lookahead == '.') ADVANCE(664); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(639); + lookahead == 'b') ADVANCE(660); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(647); + lookahead == 'x') ADVANCE(668); if (lookahead == '8' || - lookahead == '9') ADVANCE(1839); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1838); + lookahead == '9') ADVANCE(1771); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1770); END_STATE(); - case 1838: + case 1770: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(643); + if (lookahead == '.') ADVANCE(664); if (lookahead == '8' || - lookahead == '9') ADVANCE(1839); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1838); + lookahead == '9') ADVANCE(1771); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1770); END_STATE(); - case 1839: + case 1771: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1839); + if (lookahead == '.') ADVANCE(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1771); END_STATE(); - case 1840: + case 1772: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(639); + lookahead == 'b') ADVANCE(660); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(647); + lookahead == 'x') ADVANCE(668); if (lookahead == '8' || - lookahead == '9') ADVANCE(1843); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1842); + lookahead == '9') ADVANCE(1775); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1774); END_STATE(); - case 1841: + case 1773: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '0' || - lookahead == '1') ADVANCE(1841); + lookahead == '1') ADVANCE(1773); END_STATE(); - case 1842: + case 1774: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '8' || - lookahead == '9') ADVANCE(1843); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1842); + lookahead == '9') ADVANCE(1775); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1774); END_STATE(); - case 1843: + case 1775: ACCEPT_TOKEN(sym_integer_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1843); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1775); END_STATE(); - case 1844: + case 1776: ACCEPT_TOKEN(sym_integer_literal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1844); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1776); END_STATE(); - case 1845: - ACCEPT_TOKEN(anon_sym_LBRACK); + case 1777: + ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1846: - ACCEPT_TOKEN(anon_sym_RBRACK); + case 1778: + ACCEPT_TOKEN(anon_sym_RBRACK2); END_STATE(); - case 1847: + case 1779: ACCEPT_TOKEN(aux_sym_filename_token1); END_STATE(); - case 1848: + case 1780: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'A') ADVANCE(231); + if (lookahead == 'A') ADVANCE(242); END_STATE(); - case 1849: + case 1781: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'L') ADVANCE(235); + if (lookahead == 'L') ADVANCE(246); END_STATE(); - case 1850: + case 1782: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'P') ADVANCE(239); + if (lookahead == 'P') ADVANCE(250); END_STATE(); - case 1851: + case 1783: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'T') ADVANCE(230); + if (lookahead == 'T') ADVANCE(241); END_STATE(); - case 1852: + case 1784: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'c') ADVANCE(422); + if (lookahead == 'c') ADVANCE(443); END_STATE(); - case 1853: + case 1785: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'e') ADVANCE(503); + if (lookahead == 'e') ADVANCE(524); END_STATE(); - case 1854: + case 1786: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'i') ADVANCE(405); + if (lookahead == 'i') ADVANCE(424); END_STATE(); - case 1855: + case 1787: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'u') ADVANCE(375); + if (lookahead == 'u') ADVANCE(394); END_STATE(); - case 1856: + case 1788: ACCEPT_TOKEN(aux_sym_filename_token1); - if (lookahead == 'u') ADVANCE(390); + if (lookahead == 'u') ADVANCE(409); END_STATE(); - case 1857: + case 1789: ACCEPT_TOKEN(aux_sym_filename_token2); END_STATE(); - case 1858: + case 1790: ACCEPT_TOKEN(aux_sym_filename_token3); END_STATE(); - case 1859: + case 1791: ACCEPT_TOKEN(aux_sym_filename_token4); END_STATE(); - case 1860: + case 1792: ACCEPT_TOKEN(aux_sym_filename_token5); END_STATE(); - case 1861: + case 1793: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'a') ADVANCE(389); + if (lookahead == 'a') ADVANCE(408); END_STATE(); - case 1862: + case 1794: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'c') ADVANCE(422); + if (lookahead == 'c') ADVANCE(443); END_STATE(); - case 1863: + case 1795: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'e') ADVANCE(503); + if (lookahead == 'e') ADVANCE(524); END_STATE(); - case 1864: + case 1796: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'i') ADVANCE(380); + if (lookahead == 'i') ADVANCE(399); END_STATE(); - case 1865: + case 1797: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'i') ADVANCE(405); + if (lookahead == 'i') ADVANCE(424); END_STATE(); - case 1866: + case 1798: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'i') ADVANCE(413); + if (lookahead == 'i') ADVANCE(432); END_STATE(); - case 1867: + case 1799: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'r') ADVANCE(420); + if (lookahead == 'r') ADVANCE(441); END_STATE(); - case 1868: + case 1800: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'r') ADVANCE(352); + if (lookahead == 'r') ADVANCE(370); END_STATE(); - case 1869: + case 1801: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 'u') ADVANCE(345); END_STATE(); - case 1870: + case 1802: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'u') ADVANCE(375); + if (lookahead == 'u') ADVANCE(394); END_STATE(); - case 1871: + case 1803: ACCEPT_TOKEN(aux_sym_filename_token5); - if (lookahead == 'u') ADVANCE(390); + if (lookahead == 'u') ADVANCE(409); END_STATE(); - case 1872: + case 1804: ACCEPT_TOKEN(aux_sym_filename_token6); END_STATE(); - case 1873: + case 1805: ACCEPT_TOKEN(aux_sym_filename_token7); END_STATE(); - case 1874: + case 1806: ACCEPT_TOKEN(aux_sym_filename_token7); - if (lookahead == '|') ADVANCE(1340); + if (lookahead == '|') ADVANCE(1361); if (lookahead != 0 && - lookahead != '\n') ADVANCE(783); + lookahead != '\n') ADVANCE(804); END_STATE(); - case 1875: + case 1807: ACCEPT_TOKEN(aux_sym_filename_token7); if (lookahead != 0 && - lookahead != '\n') ADVANCE(783); + lookahead != '\n') ADVANCE(804); END_STATE(); - case 1876: + case 1808: ACCEPT_TOKEN(aux_sym_filename_token8); END_STATE(); - case 1877: + case 1809: ACCEPT_TOKEN(aux_sym_pattern_multi_token1); END_STATE(); - case 1878: + case 1810: ACCEPT_TOKEN(aux_sym_pattern_multi_token2); END_STATE(); - case 1879: + case 1811: ACCEPT_TOKEN(aux_sym_pattern_multi_token3); END_STATE(); - case 1880: + case 1812: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token1); END_STATE(); - case 1881: + case 1813: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token1); - if (lookahead == '!') ADVANCE(1833); - if (lookahead == '#') ADVANCE(1882); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '@') ADVANCE(1884); - if (lookahead == '[') ADVANCE(1845); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '!') ADVANCE(1765); + if (lookahead == '#') ADVANCE(1814); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '@') ADVANCE(1816); + if (lookahead == '[') ADVANCE(1777); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1881); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + lookahead == ' ') ADVANCE(1813); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); if (lookahead != 0 && lookahead != '\n' && lookahead != '\\' && - lookahead != ']') ADVANCE(1880); + lookahead != ']') ADVANCE(1812); END_STATE(); - case 1882: + case 1814: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token1); - if (lookahead == '{') ADVANCE(1925); + if (lookahead == '{') ADVANCE(1857); END_STATE(); - case 1883: + case 1815: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1883); + lookahead == ' ') ADVANCE(1815); if (lookahead != 0 && lookahead != '\n' && lookahead != '\\' && - lookahead != ']') ADVANCE(1880); + lookahead != ']') ADVANCE(1812); END_STATE(); - case 1884: + case 1816: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token1); if (lookahead == '"' || lookahead == '#' || @@ -20115,342 +19298,342 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '+' || ('.' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1923); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1855); END_STATE(); - case 1885: + case 1817: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); END_STATE(); - case 1886: + case 1818: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '!') ADVANCE(1833); - if (lookahead == '#') ADVANCE(1911); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '&') ADVANCE(1138); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '+') ADVANCE(1195); - if (lookahead == '-') ADVANCE(1809); - if (lookahead == '0') ADVANCE(1837); - if (lookahead == '@') ADVANCE(1917); - if (lookahead == 'a') ADVANCE(805); - if (lookahead == '{') ADVANCE(800); + if (lookahead == '!') ADVANCE(1765); + if (lookahead == '#') ADVANCE(1843); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '&') ADVANCE(1159); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '+') ADVANCE(1216); + if (lookahead == '-') ADVANCE(1741); + if (lookahead == '0') ADVANCE(1769); + if (lookahead == '@') ADVANCE(1849); + if (lookahead == 'a') ADVANCE(826); + if (lookahead == '{') ADVANCE(821); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1886); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1839); + lookahead == ' ') ADVANCE(1818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1771); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(921); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(942); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1887: + case 1819: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '!') ADVANCE(1904); - if (lookahead == '$') ADVANCE(1197); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1889); - if (lookahead == '\'') ADVANCE(1918); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1193); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1806); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == '0') ADVANCE(1840); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1310); - if (lookahead == '=') ADVANCE(1905); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == '@') ADVANCE(1917); - if (lookahead == 'i') ADVANCE(1910); - if (lookahead == '|') ADVANCE(1912); + if (lookahead == '!') ADVANCE(1836); + if (lookahead == '$') ADVANCE(1218); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1821); + if (lookahead == '\'') ADVANCE(1850); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1214); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1738); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == '0') ADVANCE(1772); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1331); + if (lookahead == '=') ADVANCE(1837); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == '@') ADVANCE(1849); + if (lookahead == 'i') ADVANCE(1842); + if (lookahead == '|') ADVANCE(1844); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1887); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1843); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(700); + lookahead == ' ') ADVANCE(1819); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1775); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(721); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1888: + case 1820: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '!') ADVANCE(1904); - if (lookahead == '%') ADVANCE(1180); - if (lookahead == '&') ADVANCE(1889); - if (lookahead == '(') ADVANCE(1160); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '+') ADVANCE(1190); - if (lookahead == ',') ADVANCE(717); - if (lookahead == '-') ADVANCE(1805); - if (lookahead == '.') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1183); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1310); - if (lookahead == '=') ADVANCE(1905); - if (lookahead == '>') ADVANCE(1828); - if (lookahead == '?') ADVANCE(1142); - if (lookahead == 'i') ADVANCE(1910); - if (lookahead == '|') ADVANCE(1912); + if (lookahead == '!') ADVANCE(1836); + if (lookahead == '%') ADVANCE(1201); + if (lookahead == '&') ADVANCE(1821); + if (lookahead == '(') ADVANCE(1181); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '+') ADVANCE(1211); + if (lookahead == ',') ADVANCE(738); + if (lookahead == '-') ADVANCE(1737); + if (lookahead == '.') ADVANCE(1209); + if (lookahead == '/') ADVANCE(1204); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1331); + if (lookahead == '=') ADVANCE(1837); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '?') ADVANCE(1163); + if (lookahead == 'i') ADVANCE(1842); + if (lookahead == '|') ADVANCE(1844); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1888); + lookahead == ' ') ADVANCE(1820); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1889: + case 1821: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '&') ADVANCE(1804); + if (lookahead == '&') ADVANCE(1736); END_STATE(); - case 1890: + case 1822: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == ',') ADVANCE(717); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1914); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == ',') ADVANCE(738); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1846); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1890); + lookahead == ' ') ADVANCE(1822); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1891: + case 1823: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == ',') ADVANCE(717); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1915); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == ',') ADVANCE(738); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1847); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1891); + lookahead == ' ') ADVANCE(1823); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1892: + case 1824: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1914); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1846); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1892); + lookahead == ' ') ADVANCE(1824); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1893: + case 1825: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1915); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1847); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1893); + lookahead == ' ') ADVANCE(1825); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1894: + case 1826: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '<') ADVANCE(1914); - if (lookahead == 'm') ADVANCE(1906); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '<') ADVANCE(1846); + if (lookahead == 'm') ADVANCE(1838); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1894); + lookahead == ' ') ADVANCE(1826); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1895: + case 1827: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '<') ADVANCE(1914); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '<') ADVANCE(1846); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1895); + lookahead == ' ') ADVANCE(1827); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1896: + case 1828: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '<') ADVANCE(1915); - if (lookahead == 'm') ADVANCE(1906); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '<') ADVANCE(1847); + if (lookahead == 'm') ADVANCE(1838); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1896); + lookahead == ' ') ADVANCE(1828); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1897: + case 1829: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '*') ADVANCE(1799); - if (lookahead == '<') ADVANCE(1915); + if (lookahead == '*') ADVANCE(1731); + if (lookahead == '<') ADVANCE(1847); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1897); + lookahead == ' ') ADVANCE(1829); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1898: + case 1830: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == ',') ADVANCE(717); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1916); + if (lookahead == ',') ADVANCE(738); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); + if (lookahead == '<') ADVANCE(1848); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1898); + lookahead == ' ') ADVANCE(1830); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1899: + case 1831: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == ',') ADVANCE(717); - if (lookahead == ':') ADVANCE(668); - if (lookahead == ';') ADVANCE(1182); + if (lookahead == ',') ADVANCE(738); + if (lookahead == ':') ADVANCE(689); + if (lookahead == ';') ADVANCE(1203); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1899); + lookahead == ' ') ADVANCE(1831); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1900: + case 1832: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == ':') ADVANCE(668); - if (lookahead == '<') ADVANCE(1916); + if (lookahead == ':') ADVANCE(689); + if (lookahead == '<') ADVANCE(1848); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1900); + lookahead == ' ') ADVANCE(1832); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1901: + case 1833: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == ':') ADVANCE(668); + if (lookahead == ':') ADVANCE(689); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1901); + lookahead == ' ') ADVANCE(1833); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1902: + case 1834: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '<') ADVANCE(1916); - if (lookahead == 'm') ADVANCE(1906); + if (lookahead == '<') ADVANCE(1848); + if (lookahead == 'm') ADVANCE(1838); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1902); + lookahead == ' ') ADVANCE(1834); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1903: + case 1835: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '<') ADVANCE(1916); + if (lookahead == '<') ADVANCE(1848); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1903); + lookahead == ' ') ADVANCE(1835); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1904: + case 1836: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '=') ADVANCE(1826); - if (lookahead == '~') ADVANCE(1832); + if (lookahead == '=') ADVANCE(1758); + if (lookahead == '~') ADVANCE(1764); END_STATE(); - case 1905: + case 1837: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '=') ADVANCE(1825); - if (lookahead == '~') ADVANCE(1831); + if (lookahead == '=') ADVANCE(1757); + if (lookahead == '~') ADVANCE(1763); END_STATE(); - case 1906: + case 1838: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'i') ADVANCE(418); + if (lookahead == 'a') ADVANCE(525); + if (lookahead == 'i') ADVANCE(439); END_STATE(); - case 1907: + case 1839: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == 'g') ADVANCE(1909); + if (lookahead == 'g') ADVANCE(1841); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1907); + lookahead == ' ') ADVANCE(1839); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1908: + case 1840: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == 'm') ADVANCE(1906); + if (lookahead == 'm') ADVANCE(1838); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1908); + lookahead == ' ') ADVANCE(1840); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1909: + case 1841: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == 'r') ADVANCE(428); + if (lookahead == 'r') ADVANCE(449); END_STATE(); - case 1910: + case 1842: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == 's') ADVANCE(1814); + if (lookahead == 's') ADVANCE(1746); END_STATE(); - case 1911: + case 1843: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '{') ADVANCE(1925); + if (lookahead == '{') ADVANCE(1857); END_STATE(); - case 1912: + case 1844: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); - if (lookahead == '|') ADVANCE(1803); + if (lookahead == '|') ADVANCE(1735); END_STATE(); - case 1913: + case 1845: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1913); + lookahead == ' ') ADVANCE(1845); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(1885); + lookahead != '\\') ADVANCE(1817); END_STATE(); - case 1914: + case 1846: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); if (lookahead == '!' || - lookahead == '=') ADVANCE(1878); + lookahead == '=') ADVANCE(1810); END_STATE(); - case 1915: + case 1847: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); if (lookahead == '!' || - lookahead == '=') ADVANCE(1878); + lookahead == '=') ADVANCE(1810); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(604); + lookahead == 'c') ADVANCE(625); END_STATE(); - case 1916: + case 1848: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(604); + lookahead == 'c') ADVANCE(625); END_STATE(); - case 1917: + case 1849: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); if (lookahead == '"' || lookahead == '#' || @@ -20459,40 +19642,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '+' || ('.' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1923); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1855); END_STATE(); - case 1918: + case 1850: ACCEPT_TOKEN(aux_sym__pattern_ordinary_atom_token2); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1179); + lookahead != '\n') ADVANCE(1200); END_STATE(); - case 1919: + case 1851: ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); END_STATE(); - case 1920: + case 1852: ACCEPT_TOKEN(anon_sym_BSLASH_RPAREN); END_STATE(); - case 1921: + case 1853: ACCEPT_TOKEN(anon_sym_BSLASH_PERCENT_LPAREN); END_STATE(); - case 1922: + case 1854: ACCEPT_TOKEN(anon_sym_BSLASHz_LPAREN); END_STATE(); - case 1923: + case 1855: ACCEPT_TOKEN(sym_register); END_STATE(); - case 1924: + case 1856: ACCEPT_TOKEN(sym_literal_key); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1924); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1856); END_STATE(); - case 1925: + case 1857: ACCEPT_TOKEN(anon_sym_POUND_LBRACE); END_STATE(); - case 1926: + case 1858: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); default: @@ -21868,166 +21051,166 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 665, .external_lex_state = 2}, + [1] = {.lex_state = 686, .external_lex_state = 2}, [2] = {.lex_state = 60, .external_lex_state = 3}, [3] = {.lex_state = 60, .external_lex_state = 4}, [4] = {.lex_state = 60, .external_lex_state = 4}, - [5] = {.lex_state = 665, .external_lex_state = 5}, - [6] = {.lex_state = 665, .external_lex_state = 5}, - [7] = {.lex_state = 665, .external_lex_state = 3}, - [8] = {.lex_state = 665, .external_lex_state = 3}, - [9] = {.lex_state = 665, .external_lex_state = 3}, - [10] = {.lex_state = 665, .external_lex_state = 5}, - [11] = {.lex_state = 665, .external_lex_state = 5}, - [12] = {.lex_state = 665, .external_lex_state = 3}, - [13] = {.lex_state = 665, .external_lex_state = 5}, - [14] = {.lex_state = 665, .external_lex_state = 3}, - [15] = {.lex_state = 665, .external_lex_state = 5}, - [16] = {.lex_state = 665, .external_lex_state = 3}, - [17] = {.lex_state = 665, .external_lex_state = 5}, - [18] = {.lex_state = 665, .external_lex_state = 5}, - [19] = {.lex_state = 665, .external_lex_state = 5}, - [20] = {.lex_state = 665, .external_lex_state = 6}, - [21] = {.lex_state = 665, .external_lex_state = 6}, - [22] = {.lex_state = 665, .external_lex_state = 4}, - [23] = {.lex_state = 665, .external_lex_state = 6}, - [24] = {.lex_state = 665, .external_lex_state = 6}, - [25] = {.lex_state = 665, .external_lex_state = 6}, - [26] = {.lex_state = 665, .external_lex_state = 7}, - [27] = {.lex_state = 665, .external_lex_state = 7}, - [28] = {.lex_state = 665, .external_lex_state = 8}, - [29] = {.lex_state = 665, .external_lex_state = 9}, - [30] = {.lex_state = 665, .external_lex_state = 6}, - [31] = {.lex_state = 665, .external_lex_state = 2}, - [32] = {.lex_state = 665, .external_lex_state = 7}, - [33] = {.lex_state = 665, .external_lex_state = 6}, - [34] = {.lex_state = 665, .external_lex_state = 8}, - [35] = {.lex_state = 665, .external_lex_state = 6}, - [36] = {.lex_state = 665, .external_lex_state = 4}, - [37] = {.lex_state = 665, .external_lex_state = 2}, - [38] = {.lex_state = 665, .external_lex_state = 6}, - [39] = {.lex_state = 665, .external_lex_state = 6}, - [40] = {.lex_state = 665, .external_lex_state = 9}, - [41] = {.lex_state = 665, .external_lex_state = 6}, - [42] = {.lex_state = 665, .external_lex_state = 7}, - [43] = {.lex_state = 665, .external_lex_state = 4}, - [44] = {.lex_state = 665, .external_lex_state = 9}, - [45] = {.lex_state = 665, .external_lex_state = 8}, - [46] = {.lex_state = 665, .external_lex_state = 7}, - [47] = {.lex_state = 665, .external_lex_state = 6}, - [48] = {.lex_state = 665, .external_lex_state = 6}, - [49] = {.lex_state = 105, .external_lex_state = 10}, - [50] = {.lex_state = 105, .external_lex_state = 10}, - [51] = {.lex_state = 105, .external_lex_state = 10}, - [52] = {.lex_state = 105, .external_lex_state = 10}, - [53] = {.lex_state = 105, .external_lex_state = 10}, - [54] = {.lex_state = 105, .external_lex_state = 10}, - [55] = {.lex_state = 105, .external_lex_state = 10}, - [56] = {.lex_state = 105, .external_lex_state = 10}, - [57] = {.lex_state = 105, .external_lex_state = 10}, - [58] = {.lex_state = 105, .external_lex_state = 10}, - [59] = {.lex_state = 105, .external_lex_state = 10}, - [60] = {.lex_state = 105, .external_lex_state = 10}, - [61] = {.lex_state = 105, .external_lex_state = 10}, - [62] = {.lex_state = 105, .external_lex_state = 10}, - [63] = {.lex_state = 105, .external_lex_state = 10}, - [64] = {.lex_state = 105, .external_lex_state = 10}, - [65] = {.lex_state = 105, .external_lex_state = 10}, - [66] = {.lex_state = 105, .external_lex_state = 10}, - [67] = {.lex_state = 105, .external_lex_state = 10}, - [68] = {.lex_state = 105, .external_lex_state = 10}, - [69] = {.lex_state = 105, .external_lex_state = 10}, - [70] = {.lex_state = 105, .external_lex_state = 10}, - [71] = {.lex_state = 105, .external_lex_state = 10}, - [72] = {.lex_state = 105, .external_lex_state = 10}, - [73] = {.lex_state = 107, .external_lex_state = 10}, - [74] = {.lex_state = 107, .external_lex_state = 10}, - [75] = {.lex_state = 107, .external_lex_state = 10}, - [76] = {.lex_state = 107, .external_lex_state = 10}, - [77] = {.lex_state = 107, .external_lex_state = 10}, - [78] = {.lex_state = 107, .external_lex_state = 10}, - [79] = {.lex_state = 107, .external_lex_state = 10}, - [80] = {.lex_state = 107, .external_lex_state = 10}, - [81] = {.lex_state = 107, .external_lex_state = 10}, - [82] = {.lex_state = 107, .external_lex_state = 10}, - [83] = {.lex_state = 107, .external_lex_state = 10}, - [84] = {.lex_state = 665, .external_lex_state = 10}, - [85] = {.lex_state = 107, .external_lex_state = 10}, - [86] = {.lex_state = 107, .external_lex_state = 10}, - [87] = {.lex_state = 665, .external_lex_state = 10}, - [88] = {.lex_state = 107, .external_lex_state = 10}, - [89] = {.lex_state = 107, .external_lex_state = 10}, - [90] = {.lex_state = 107, .external_lex_state = 10}, - [91] = {.lex_state = 107, .external_lex_state = 10}, - [92] = {.lex_state = 107, .external_lex_state = 10}, - [93] = {.lex_state = 107, .external_lex_state = 10}, - [94] = {.lex_state = 665, .external_lex_state = 10}, - [95] = {.lex_state = 107, .external_lex_state = 10}, - [96] = {.lex_state = 107, .external_lex_state = 10}, - [97] = {.lex_state = 665, .external_lex_state = 10}, - [98] = {.lex_state = 665, .external_lex_state = 10}, - [99] = {.lex_state = 665, .external_lex_state = 10}, - [100] = {.lex_state = 665, .external_lex_state = 10}, - [101] = {.lex_state = 665, .external_lex_state = 10}, - [102] = {.lex_state = 665, .external_lex_state = 10}, - [103] = {.lex_state = 665, .external_lex_state = 10}, - [104] = {.lex_state = 665, .external_lex_state = 10}, - [105] = {.lex_state = 665, .external_lex_state = 10}, - [106] = {.lex_state = 665, .external_lex_state = 10}, - [107] = {.lex_state = 665, .external_lex_state = 10}, - [108] = {.lex_state = 665, .external_lex_state = 10}, - [109] = {.lex_state = 665, .external_lex_state = 10}, - [110] = {.lex_state = 665, .external_lex_state = 10}, - [111] = {.lex_state = 665, .external_lex_state = 10}, - [112] = {.lex_state = 665, .external_lex_state = 10}, - [113] = {.lex_state = 665, .external_lex_state = 10}, - [114] = {.lex_state = 665, .external_lex_state = 10}, - [115] = {.lex_state = 665, .external_lex_state = 10}, - [116] = {.lex_state = 665, .external_lex_state = 10}, - [117] = {.lex_state = 665, .external_lex_state = 10}, - [118] = {.lex_state = 665, .external_lex_state = 10}, - [119] = {.lex_state = 665, .external_lex_state = 10}, - [120] = {.lex_state = 665, .external_lex_state = 10}, - [121] = {.lex_state = 665, .external_lex_state = 10}, - [122] = {.lex_state = 665, .external_lex_state = 10}, - [123] = {.lex_state = 665, .external_lex_state = 10}, - [124] = {.lex_state = 665, .external_lex_state = 10}, - [125] = {.lex_state = 665, .external_lex_state = 10}, - [126] = {.lex_state = 665, .external_lex_state = 10}, - [127] = {.lex_state = 665, .external_lex_state = 10}, - [128] = {.lex_state = 665, .external_lex_state = 10}, - [129] = {.lex_state = 665, .external_lex_state = 10}, - [130] = {.lex_state = 665, .external_lex_state = 10}, - [131] = {.lex_state = 665, .external_lex_state = 10}, - [132] = {.lex_state = 665, .external_lex_state = 10}, - [133] = {.lex_state = 665, .external_lex_state = 10}, - [134] = {.lex_state = 665, .external_lex_state = 10}, - [135] = {.lex_state = 665, .external_lex_state = 10}, - [136] = {.lex_state = 665, .external_lex_state = 10}, - [137] = {.lex_state = 665, .external_lex_state = 10}, - [138] = {.lex_state = 665, .external_lex_state = 10}, - [139] = {.lex_state = 665, .external_lex_state = 10}, - [140] = {.lex_state = 665, .external_lex_state = 10}, - [141] = {.lex_state = 665, .external_lex_state = 10}, - [142] = {.lex_state = 665, .external_lex_state = 10}, - [143] = {.lex_state = 92, .external_lex_state = 3}, - [144] = {.lex_state = 92, .external_lex_state = 4}, - [145] = {.lex_state = 88, .external_lex_state = 3}, - [146] = {.lex_state = 88, .external_lex_state = 3}, - [147] = {.lex_state = 88, .external_lex_state = 3}, - [148] = {.lex_state = 88, .external_lex_state = 4}, - [149] = {.lex_state = 88, .external_lex_state = 3}, - [150] = {.lex_state = 88, .external_lex_state = 4}, - [151] = {.lex_state = 88, .external_lex_state = 3}, - [152] = {.lex_state = 88, .external_lex_state = 4}, - [153] = {.lex_state = 62, .external_lex_state = 3}, + [5] = {.lex_state = 686, .external_lex_state = 3}, + [6] = {.lex_state = 686, .external_lex_state = 3}, + [7] = {.lex_state = 686, .external_lex_state = 5}, + [8] = {.lex_state = 686, .external_lex_state = 5}, + [9] = {.lex_state = 686, .external_lex_state = 5}, + [10] = {.lex_state = 686, .external_lex_state = 3}, + [11] = {.lex_state = 686, .external_lex_state = 5}, + [12] = {.lex_state = 686, .external_lex_state = 3}, + [13] = {.lex_state = 686, .external_lex_state = 5}, + [14] = {.lex_state = 686, .external_lex_state = 5}, + [15] = {.lex_state = 686, .external_lex_state = 5}, + [16] = {.lex_state = 686, .external_lex_state = 5}, + [17] = {.lex_state = 686, .external_lex_state = 3}, + [18] = {.lex_state = 686, .external_lex_state = 3}, + [19] = {.lex_state = 686, .external_lex_state = 5}, + [20] = {.lex_state = 686, .external_lex_state = 6}, + [21] = {.lex_state = 686, .external_lex_state = 7}, + [22] = {.lex_state = 686, .external_lex_state = 6}, + [23] = {.lex_state = 686, .external_lex_state = 6}, + [24] = {.lex_state = 686, .external_lex_state = 6}, + [25] = {.lex_state = 686, .external_lex_state = 6}, + [26] = {.lex_state = 686, .external_lex_state = 4}, + [27] = {.lex_state = 686, .external_lex_state = 6}, + [28] = {.lex_state = 686, .external_lex_state = 8}, + [29] = {.lex_state = 686, .external_lex_state = 7}, + [30] = {.lex_state = 686, .external_lex_state = 7}, + [31] = {.lex_state = 686, .external_lex_state = 8}, + [32] = {.lex_state = 686, .external_lex_state = 2}, + [33] = {.lex_state = 686, .external_lex_state = 2}, + [34] = {.lex_state = 686, .external_lex_state = 6}, + [35] = {.lex_state = 686, .external_lex_state = 6}, + [36] = {.lex_state = 686, .external_lex_state = 8}, + [37] = {.lex_state = 686, .external_lex_state = 7}, + [38] = {.lex_state = 686, .external_lex_state = 4}, + [39] = {.lex_state = 686, .external_lex_state = 6}, + [40] = {.lex_state = 686, .external_lex_state = 9}, + [41] = {.lex_state = 686, .external_lex_state = 4}, + [42] = {.lex_state = 686, .external_lex_state = 6}, + [43] = {.lex_state = 686, .external_lex_state = 6}, + [44] = {.lex_state = 686, .external_lex_state = 9}, + [45] = {.lex_state = 686, .external_lex_state = 9}, + [46] = {.lex_state = 686, .external_lex_state = 6}, + [47] = {.lex_state = 686, .external_lex_state = 6}, + [48] = {.lex_state = 686, .external_lex_state = 7}, + [49] = {.lex_state = 106, .external_lex_state = 10}, + [50] = {.lex_state = 106, .external_lex_state = 10}, + [51] = {.lex_state = 106, .external_lex_state = 10}, + [52] = {.lex_state = 106, .external_lex_state = 10}, + [53] = {.lex_state = 106, .external_lex_state = 10}, + [54] = {.lex_state = 106, .external_lex_state = 10}, + [55] = {.lex_state = 106, .external_lex_state = 10}, + [56] = {.lex_state = 106, .external_lex_state = 10}, + [57] = {.lex_state = 106, .external_lex_state = 10}, + [58] = {.lex_state = 106, .external_lex_state = 10}, + [59] = {.lex_state = 106, .external_lex_state = 10}, + [60] = {.lex_state = 106, .external_lex_state = 10}, + [61] = {.lex_state = 106, .external_lex_state = 10}, + [62] = {.lex_state = 106, .external_lex_state = 10}, + [63] = {.lex_state = 106, .external_lex_state = 10}, + [64] = {.lex_state = 106, .external_lex_state = 10}, + [65] = {.lex_state = 106, .external_lex_state = 10}, + [66] = {.lex_state = 106, .external_lex_state = 10}, + [67] = {.lex_state = 106, .external_lex_state = 10}, + [68] = {.lex_state = 106, .external_lex_state = 10}, + [69] = {.lex_state = 106, .external_lex_state = 10}, + [70] = {.lex_state = 106, .external_lex_state = 10}, + [71] = {.lex_state = 106, .external_lex_state = 10}, + [72] = {.lex_state = 106, .external_lex_state = 10}, + [73] = {.lex_state = 108, .external_lex_state = 10}, + [74] = {.lex_state = 686, .external_lex_state = 10}, + [75] = {.lex_state = 108, .external_lex_state = 10}, + [76] = {.lex_state = 108, .external_lex_state = 10}, + [77] = {.lex_state = 108, .external_lex_state = 10}, + [78] = {.lex_state = 108, .external_lex_state = 10}, + [79] = {.lex_state = 108, .external_lex_state = 10}, + [80] = {.lex_state = 108, .external_lex_state = 10}, + [81] = {.lex_state = 108, .external_lex_state = 10}, + [82] = {.lex_state = 108, .external_lex_state = 10}, + [83] = {.lex_state = 108, .external_lex_state = 10}, + [84] = {.lex_state = 108, .external_lex_state = 10}, + [85] = {.lex_state = 108, .external_lex_state = 10}, + [86] = {.lex_state = 108, .external_lex_state = 10}, + [87] = {.lex_state = 686, .external_lex_state = 10}, + [88] = {.lex_state = 108, .external_lex_state = 10}, + [89] = {.lex_state = 686, .external_lex_state = 10}, + [90] = {.lex_state = 108, .external_lex_state = 10}, + [91] = {.lex_state = 108, .external_lex_state = 10}, + [92] = {.lex_state = 108, .external_lex_state = 10}, + [93] = {.lex_state = 108, .external_lex_state = 10}, + [94] = {.lex_state = 108, .external_lex_state = 10}, + [95] = {.lex_state = 108, .external_lex_state = 10}, + [96] = {.lex_state = 108, .external_lex_state = 10}, + [97] = {.lex_state = 686, .external_lex_state = 10}, + [98] = {.lex_state = 686, .external_lex_state = 10}, + [99] = {.lex_state = 686, .external_lex_state = 10}, + [100] = {.lex_state = 686, .external_lex_state = 10}, + [101] = {.lex_state = 686, .external_lex_state = 10}, + [102] = {.lex_state = 686, .external_lex_state = 10}, + [103] = {.lex_state = 686, .external_lex_state = 10}, + [104] = {.lex_state = 686, .external_lex_state = 10}, + [105] = {.lex_state = 686, .external_lex_state = 10}, + [106] = {.lex_state = 686, .external_lex_state = 10}, + [107] = {.lex_state = 686, .external_lex_state = 10}, + [108] = {.lex_state = 686, .external_lex_state = 10}, + [109] = {.lex_state = 686, .external_lex_state = 10}, + [110] = {.lex_state = 686, .external_lex_state = 10}, + [111] = {.lex_state = 686, .external_lex_state = 10}, + [112] = {.lex_state = 686, .external_lex_state = 10}, + [113] = {.lex_state = 686, .external_lex_state = 10}, + [114] = {.lex_state = 686, .external_lex_state = 10}, + [115] = {.lex_state = 686, .external_lex_state = 10}, + [116] = {.lex_state = 686, .external_lex_state = 10}, + [117] = {.lex_state = 686, .external_lex_state = 10}, + [118] = {.lex_state = 686, .external_lex_state = 10}, + [119] = {.lex_state = 686, .external_lex_state = 10}, + [120] = {.lex_state = 686, .external_lex_state = 10}, + [121] = {.lex_state = 686, .external_lex_state = 10}, + [122] = {.lex_state = 686, .external_lex_state = 10}, + [123] = {.lex_state = 686, .external_lex_state = 10}, + [124] = {.lex_state = 686, .external_lex_state = 10}, + [125] = {.lex_state = 686, .external_lex_state = 10}, + [126] = {.lex_state = 686, .external_lex_state = 10}, + [127] = {.lex_state = 686, .external_lex_state = 10}, + [128] = {.lex_state = 686, .external_lex_state = 10}, + [129] = {.lex_state = 686, .external_lex_state = 10}, + [130] = {.lex_state = 686, .external_lex_state = 10}, + [131] = {.lex_state = 686, .external_lex_state = 10}, + [132] = {.lex_state = 686, .external_lex_state = 10}, + [133] = {.lex_state = 686, .external_lex_state = 10}, + [134] = {.lex_state = 686, .external_lex_state = 10}, + [135] = {.lex_state = 686, .external_lex_state = 10}, + [136] = {.lex_state = 686, .external_lex_state = 10}, + [137] = {.lex_state = 686, .external_lex_state = 10}, + [138] = {.lex_state = 686, .external_lex_state = 10}, + [139] = {.lex_state = 686, .external_lex_state = 10}, + [140] = {.lex_state = 686, .external_lex_state = 10}, + [141] = {.lex_state = 686, .external_lex_state = 10}, + [142] = {.lex_state = 686, .external_lex_state = 10}, + [143] = {.lex_state = 93, .external_lex_state = 3}, + [144] = {.lex_state = 93, .external_lex_state = 4}, + [145] = {.lex_state = 89, .external_lex_state = 3}, + [146] = {.lex_state = 89, .external_lex_state = 3}, + [147] = {.lex_state = 89, .external_lex_state = 3}, + [148] = {.lex_state = 89, .external_lex_state = 4}, + [149] = {.lex_state = 89, .external_lex_state = 3}, + [150] = {.lex_state = 89, .external_lex_state = 4}, + [151] = {.lex_state = 62, .external_lex_state = 3}, + [152] = {.lex_state = 89, .external_lex_state = 4}, + [153] = {.lex_state = 89, .external_lex_state = 3}, [154] = {.lex_state = 60, .external_lex_state = 3}, [155] = {.lex_state = 60, .external_lex_state = 3}, [156] = {.lex_state = 60, .external_lex_state = 3}, [157] = {.lex_state = 60, .external_lex_state = 3}, [158] = {.lex_state = 60, .external_lex_state = 3}, [159] = {.lex_state = 60, .external_lex_state = 3}, - [160] = {.lex_state = 62, .external_lex_state = 4}, + [160] = {.lex_state = 60, .external_lex_state = 3}, [161] = {.lex_state = 60, .external_lex_state = 3}, [162] = {.lex_state = 60, .external_lex_state = 3}, [163] = {.lex_state = 60, .external_lex_state = 3}, @@ -22048,14 +21231,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [178] = {.lex_state = 60, .external_lex_state = 3}, [179] = {.lex_state = 60, .external_lex_state = 3}, [180] = {.lex_state = 60, .external_lex_state = 3}, - [181] = {.lex_state = 88, .external_lex_state = 4}, + [181] = {.lex_state = 60, .external_lex_state = 3}, [182] = {.lex_state = 60, .external_lex_state = 3}, [183] = {.lex_state = 60, .external_lex_state = 3}, [184] = {.lex_state = 60, .external_lex_state = 3}, [185] = {.lex_state = 60, .external_lex_state = 3}, - [186] = {.lex_state = 88, .external_lex_state = 4}, + [186] = {.lex_state = 60, .external_lex_state = 3}, [187] = {.lex_state = 60, .external_lex_state = 3}, - [188] = {.lex_state = 60, .external_lex_state = 3}, + [188] = {.lex_state = 62, .external_lex_state = 4}, [189] = {.lex_state = 60, .external_lex_state = 3}, [190] = {.lex_state = 60, .external_lex_state = 3}, [191] = {.lex_state = 60, .external_lex_state = 3}, @@ -22065,8 +21248,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [195] = {.lex_state = 60, .external_lex_state = 3}, [196] = {.lex_state = 60, .external_lex_state = 3}, [197] = {.lex_state = 60, .external_lex_state = 3}, - [198] = {.lex_state = 60, .external_lex_state = 3}, - [199] = {.lex_state = 60, .external_lex_state = 3}, + [198] = {.lex_state = 89, .external_lex_state = 4}, + [199] = {.lex_state = 89, .external_lex_state = 4}, [200] = {.lex_state = 60, .external_lex_state = 3}, [201] = {.lex_state = 60, .external_lex_state = 4}, [202] = {.lex_state = 60, .external_lex_state = 4}, @@ -22112,143 +21295,143 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [242] = {.lex_state = 60, .external_lex_state = 4}, [243] = {.lex_state = 60, .external_lex_state = 4}, [244] = {.lex_state = 60, .external_lex_state = 4}, - [245] = {.lex_state = 665, .external_lex_state = 3}, - [246] = {.lex_state = 665, .external_lex_state = 5}, - [247] = {.lex_state = 665, .external_lex_state = 3}, - [248] = {.lex_state = 665, .external_lex_state = 5}, - [249] = {.lex_state = 105, .external_lex_state = 10}, - [250] = {.lex_state = 665, .external_lex_state = 4}, - [251] = {.lex_state = 665, .external_lex_state = 7}, - [252] = {.lex_state = 665, .external_lex_state = 7}, - [253] = {.lex_state = 665, .external_lex_state = 2}, - [254] = {.lex_state = 665, .external_lex_state = 8}, - [255] = {.lex_state = 665, .external_lex_state = 9}, - [256] = {.lex_state = 665, .external_lex_state = 9}, - [257] = {.lex_state = 665, .external_lex_state = 6}, - [258] = {.lex_state = 105, .external_lex_state = 10}, - [259] = {.lex_state = 665, .external_lex_state = 4}, - [260] = {.lex_state = 665, .external_lex_state = 8}, - [261] = {.lex_state = 665, .external_lex_state = 6}, - [262] = {.lex_state = 665, .external_lex_state = 2}, - [263] = {.lex_state = 665, .external_lex_state = 10}, + [245] = {.lex_state = 686, .external_lex_state = 3}, + [246] = {.lex_state = 686, .external_lex_state = 5}, + [247] = {.lex_state = 686, .external_lex_state = 5}, + [248] = {.lex_state = 686, .external_lex_state = 3}, + [249] = {.lex_state = 106, .external_lex_state = 10}, + [250] = {.lex_state = 686, .external_lex_state = 6}, + [251] = {.lex_state = 686, .external_lex_state = 9}, + [252] = {.lex_state = 686, .external_lex_state = 9}, + [253] = {.lex_state = 686, .external_lex_state = 7}, + [254] = {.lex_state = 686, .external_lex_state = 6}, + [255] = {.lex_state = 686, .external_lex_state = 2}, + [256] = {.lex_state = 686, .external_lex_state = 8}, + [257] = {.lex_state = 686, .external_lex_state = 4}, + [258] = {.lex_state = 106, .external_lex_state = 10}, + [259] = {.lex_state = 686, .external_lex_state = 8}, + [260] = {.lex_state = 686, .external_lex_state = 4}, + [261] = {.lex_state = 686, .external_lex_state = 2}, + [262] = {.lex_state = 686, .external_lex_state = 7}, + [263] = {.lex_state = 686, .external_lex_state = 10}, [264] = {.lex_state = 53, .external_lex_state = 11}, [265] = {.lex_state = 53, .external_lex_state = 11}, [266] = {.lex_state = 24, .external_lex_state = 12}, [267] = {.lex_state = 24, .external_lex_state = 13}, - [268] = {.lex_state = 159, .external_lex_state = 12}, - [269] = {.lex_state = 159, .external_lex_state = 12}, - [270] = {.lex_state = 162, .external_lex_state = 13}, - [271] = {.lex_state = 204, .external_lex_state = 12}, - [272] = {.lex_state = 206, .external_lex_state = 12}, - [273] = {.lex_state = 204, .external_lex_state = 12}, - [274] = {.lex_state = 162, .external_lex_state = 13}, - [275] = {.lex_state = 206, .external_lex_state = 12}, - [276] = {.lex_state = 57, .external_lex_state = 11}, + [268] = {.lex_state = 162, .external_lex_state = 12}, + [269] = {.lex_state = 162, .external_lex_state = 12}, + [270] = {.lex_state = 214, .external_lex_state = 12}, + [271] = {.lex_state = 165, .external_lex_state = 13}, + [272] = {.lex_state = 216, .external_lex_state = 12}, + [273] = {.lex_state = 214, .external_lex_state = 12}, + [274] = {.lex_state = 165, .external_lex_state = 13}, + [275] = {.lex_state = 57, .external_lex_state = 11}, + [276] = {.lex_state = 216, .external_lex_state = 12}, [277] = {.lex_state = 57, .external_lex_state = 11}, [278] = {.lex_state = 57, .external_lex_state = 11}, [279] = {.lex_state = 57, .external_lex_state = 11}, - [280] = {.lex_state = 2, .external_lex_state = 12}, + [280] = {.lex_state = 23, .external_lex_state = 14}, [281] = {.lex_state = 23, .external_lex_state = 14}, [282] = {.lex_state = 23, .external_lex_state = 14}, [283] = {.lex_state = 23, .external_lex_state = 14}, - [284] = {.lex_state = 23, .external_lex_state = 14}, + [284] = {.lex_state = 2, .external_lex_state = 12}, [285] = {.lex_state = 53, .external_lex_state = 12}, [286] = {.lex_state = 53, .external_lex_state = 12}, [287] = {.lex_state = 53, .external_lex_state = 12}, - [288] = {.lex_state = 23, .external_lex_state = 14}, - [289] = {.lex_state = 58, .external_lex_state = 11}, - [290] = {.lex_state = 58, .external_lex_state = 15}, - [291] = {.lex_state = 23, .external_lex_state = 14}, + [288] = {.lex_state = 58, .external_lex_state = 15}, + [289] = {.lex_state = 23, .external_lex_state = 14}, + [290] = {.lex_state = 23, .external_lex_state = 14}, + [291] = {.lex_state = 58, .external_lex_state = 11}, [292] = {.lex_state = 59, .external_lex_state = 11}, [293] = {.lex_state = 59, .external_lex_state = 11}, [294] = {.lex_state = 59, .external_lex_state = 11}, - [295] = {.lex_state = 101, .external_lex_state = 11}, - [296] = {.lex_state = 101, .external_lex_state = 11}, - [297] = {.lex_state = 93, .external_lex_state = 16}, - [298] = {.lex_state = 101, .external_lex_state = 11}, + [295] = {.lex_state = 58, .external_lex_state = 11}, + [296] = {.lex_state = 58, .external_lex_state = 11}, + [297] = {.lex_state = 102, .external_lex_state = 11}, + [298] = {.lex_state = 58, .external_lex_state = 11}, [299] = {.lex_state = 58, .external_lex_state = 11}, - [300] = {.lex_state = 58, .external_lex_state = 11}, - [301] = {.lex_state = 100, .external_lex_state = 15}, - [302] = {.lex_state = 58, .external_lex_state = 11}, + [300] = {.lex_state = 102, .external_lex_state = 11}, + [301] = {.lex_state = 58, .external_lex_state = 11}, + [302] = {.lex_state = 101, .external_lex_state = 15}, [303] = {.lex_state = 58, .external_lex_state = 11}, - [304] = {.lex_state = 58, .external_lex_state = 11}, + [304] = {.lex_state = 94, .external_lex_state = 16}, [305] = {.lex_state = 58, .external_lex_state = 11}, - [306] = {.lex_state = 100, .external_lex_state = 15}, + [306] = {.lex_state = 101, .external_lex_state = 15}, [307] = {.lex_state = 58, .external_lex_state = 11}, - [308] = {.lex_state = 100, .external_lex_state = 15}, - [309] = {.lex_state = 58, .external_lex_state = 11}, - [310] = {.lex_state = 58, .external_lex_state = 11}, - [311] = {.lex_state = 58, .external_lex_state = 15}, + [308] = {.lex_state = 58, .external_lex_state = 11}, + [309] = {.lex_state = 102, .external_lex_state = 11}, + [310] = {.lex_state = 101, .external_lex_state = 15}, + [311] = {.lex_state = 88, .external_lex_state = 17}, [312] = {.lex_state = 58, .external_lex_state = 15}, - [313] = {.lex_state = 86, .external_lex_state = 17}, - [314] = {.lex_state = 58, .external_lex_state = 11}, - [315] = {.lex_state = 86, .external_lex_state = 17}, - [316] = {.lex_state = 58, .external_lex_state = 11}, - [317] = {.lex_state = 86, .external_lex_state = 17}, - [318] = {.lex_state = 58, .external_lex_state = 11}, + [313] = {.lex_state = 58, .external_lex_state = 15}, + [314] = {.lex_state = 58, .external_lex_state = 15}, + [315] = {.lex_state = 58, .external_lex_state = 15}, + [316] = {.lex_state = 58, .external_lex_state = 15}, + [317] = {.lex_state = 58, .external_lex_state = 11}, + [318] = {.lex_state = 58, .external_lex_state = 15}, [319] = {.lex_state = 58, .external_lex_state = 11}, [320] = {.lex_state = 58, .external_lex_state = 11}, [321] = {.lex_state = 58, .external_lex_state = 11}, - [322] = {.lex_state = 58, .external_lex_state = 11}, - [323] = {.lex_state = 58, .external_lex_state = 15}, + [322] = {.lex_state = 58, .external_lex_state = 15}, + [323] = {.lex_state = 87, .external_lex_state = 18}, [324] = {.lex_state = 58, .external_lex_state = 15}, [325] = {.lex_state = 58, .external_lex_state = 11}, - [326] = {.lex_state = 58, .external_lex_state = 15}, - [327] = {.lex_state = 58, .external_lex_state = 11}, + [326] = {.lex_state = 58, .external_lex_state = 11}, + [327] = {.lex_state = 58, .external_lex_state = 15}, [328] = {.lex_state = 58, .external_lex_state = 11}, [329] = {.lex_state = 58, .external_lex_state = 11}, [330] = {.lex_state = 87, .external_lex_state = 18}, - [331] = {.lex_state = 58, .external_lex_state = 11}, - [332] = {.lex_state = 58, .external_lex_state = 11}, - [333] = {.lex_state = 58, .external_lex_state = 11}, - [334] = {.lex_state = 58, .external_lex_state = 15}, - [335] = {.lex_state = 58, .external_lex_state = 15}, + [331] = {.lex_state = 58, .external_lex_state = 15}, + [332] = {.lex_state = 58, .external_lex_state = 15}, + [333] = {.lex_state = 87, .external_lex_state = 18}, + [334] = {.lex_state = 58, .external_lex_state = 11}, + [335] = {.lex_state = 58, .external_lex_state = 11}, [336] = {.lex_state = 58, .external_lex_state = 11}, [337] = {.lex_state = 58, .external_lex_state = 11}, - [338] = {.lex_state = 58, .external_lex_state = 15}, - [339] = {.lex_state = 58, .external_lex_state = 15}, - [340] = {.lex_state = 58, .external_lex_state = 15}, + [338] = {.lex_state = 58, .external_lex_state = 11}, + [339] = {.lex_state = 58, .external_lex_state = 11}, + [340] = {.lex_state = 58, .external_lex_state = 11}, [341] = {.lex_state = 58, .external_lex_state = 11}, - [342] = {.lex_state = 58, .external_lex_state = 11}, + [342] = {.lex_state = 58, .external_lex_state = 15}, [343] = {.lex_state = 58, .external_lex_state = 11}, - [344] = {.lex_state = 87, .external_lex_state = 18}, - [345] = {.lex_state = 58, .external_lex_state = 15}, - [346] = {.lex_state = 87, .external_lex_state = 18}, - [347] = {.lex_state = 58, .external_lex_state = 11}, - [348] = {.lex_state = 58, .external_lex_state = 15}, - [349] = {.lex_state = 58, .external_lex_state = 11}, + [344] = {.lex_state = 58, .external_lex_state = 11}, + [345] = {.lex_state = 58, .external_lex_state = 11}, + [346] = {.lex_state = 88, .external_lex_state = 17}, + [347] = {.lex_state = 88, .external_lex_state = 17}, + [348] = {.lex_state = 58, .external_lex_state = 11}, + [349] = {.lex_state = 23, .external_lex_state = 11}, [350] = {.lex_state = 58, .external_lex_state = 11}, [351] = {.lex_state = 58, .external_lex_state = 11}, [352] = {.lex_state = 58, .external_lex_state = 11}, [353] = {.lex_state = 58, .external_lex_state = 11}, [354] = {.lex_state = 58, .external_lex_state = 11}, - [355] = {.lex_state = 101, .external_lex_state = 11}, + [355] = {.lex_state = 23, .external_lex_state = 11}, [356] = {.lex_state = 58, .external_lex_state = 11}, - [357] = {.lex_state = 101, .external_lex_state = 11}, - [358] = {.lex_state = 58, .external_lex_state = 11}, - [359] = {.lex_state = 97, .external_lex_state = 11}, + [357] = {.lex_state = 102, .external_lex_state = 11}, + [358] = {.lex_state = 102, .external_lex_state = 11}, + [359] = {.lex_state = 98, .external_lex_state = 11}, [360] = {.lex_state = 58, .external_lex_state = 11}, [361] = {.lex_state = 58, .external_lex_state = 11}, - [362] = {.lex_state = 100, .external_lex_state = 15}, + [362] = {.lex_state = 58, .external_lex_state = 11}, [363] = {.lex_state = 58, .external_lex_state = 11}, - [364] = {.lex_state = 23, .external_lex_state = 11}, - [365] = {.lex_state = 23, .external_lex_state = 11}, - [366] = {.lex_state = 58, .external_lex_state = 11}, - [367] = {.lex_state = 96, .external_lex_state = 15}, - [368] = {.lex_state = 23, .external_lex_state = 11}, + [364] = {.lex_state = 58, .external_lex_state = 11}, + [365] = {.lex_state = 58, .external_lex_state = 11}, + [366] = {.lex_state = 101, .external_lex_state = 15}, + [367] = {.lex_state = 58, .external_lex_state = 11}, + [368] = {.lex_state = 58, .external_lex_state = 11}, [369] = {.lex_state = 58, .external_lex_state = 11}, [370] = {.lex_state = 58, .external_lex_state = 11}, [371] = {.lex_state = 58, .external_lex_state = 11}, [372] = {.lex_state = 58, .external_lex_state = 11}, - [373] = {.lex_state = 58, .external_lex_state = 11}, + [373] = {.lex_state = 97, .external_lex_state = 15}, [374] = {.lex_state = 58, .external_lex_state = 11}, - [375] = {.lex_state = 58, .external_lex_state = 11}, + [375] = {.lex_state = 101, .external_lex_state = 15}, [376] = {.lex_state = 58, .external_lex_state = 11}, - [377] = {.lex_state = 58, .external_lex_state = 11}, - [378] = {.lex_state = 100, .external_lex_state = 15}, - [379] = {.lex_state = 58, .external_lex_state = 15}, - [380] = {.lex_state = 58, .external_lex_state = 11}, - [381] = {.lex_state = 23, .external_lex_state = 11}, + [377] = {.lex_state = 58, .external_lex_state = 15}, + [378] = {.lex_state = 58, .external_lex_state = 11}, + [379] = {.lex_state = 23, .external_lex_state = 11}, + [380] = {.lex_state = 23, .external_lex_state = 11}, + [381] = {.lex_state = 58, .external_lex_state = 11}, [382] = {.lex_state = 58, .external_lex_state = 11}, [383] = {.lex_state = 58, .external_lex_state = 11}, [384] = {.lex_state = 58, .external_lex_state = 11}, @@ -22274,7 +21457,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [404] = {.lex_state = 58, .external_lex_state = 11}, [405] = {.lex_state = 58, .external_lex_state = 11}, [406] = {.lex_state = 58, .external_lex_state = 11}, - [407] = {.lex_state = 58, .external_lex_state = 11}, + [407] = {.lex_state = 87, .external_lex_state = 18}, [408] = {.lex_state = 58, .external_lex_state = 11}, [409] = {.lex_state = 58, .external_lex_state = 11}, [410] = {.lex_state = 58, .external_lex_state = 11}, @@ -22287,48 +21470,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [417] = {.lex_state = 58, .external_lex_state = 11}, [418] = {.lex_state = 58, .external_lex_state = 11}, [419] = {.lex_state = 58, .external_lex_state = 11}, - [420] = {.lex_state = 87, .external_lex_state = 18}, + [420] = {.lex_state = 58, .external_lex_state = 11}, [421] = {.lex_state = 58, .external_lex_state = 11}, [422] = {.lex_state = 58, .external_lex_state = 11}, - [423] = {.lex_state = 87, .external_lex_state = 18}, + [423] = {.lex_state = 58, .external_lex_state = 11}, [424] = {.lex_state = 58, .external_lex_state = 11}, [425] = {.lex_state = 58, .external_lex_state = 11}, [426] = {.lex_state = 58, .external_lex_state = 11}, [427] = {.lex_state = 58, .external_lex_state = 11}, [428] = {.lex_state = 58, .external_lex_state = 11}, - [429] = {.lex_state = 58, .external_lex_state = 11}, - [430] = {.lex_state = 86, .external_lex_state = 17}, - [431] = {.lex_state = 86, .external_lex_state = 17}, + [429] = {.lex_state = 88, .external_lex_state = 17}, + [430] = {.lex_state = 88, .external_lex_state = 17}, + [431] = {.lex_state = 58, .external_lex_state = 11}, [432] = {.lex_state = 58, .external_lex_state = 11}, [433] = {.lex_state = 58, .external_lex_state = 11}, - [434] = {.lex_state = 58, .external_lex_state = 11}, + [434] = {.lex_state = 87, .external_lex_state = 18}, [435] = {.lex_state = 58, .external_lex_state = 11}, [436] = {.lex_state = 58, .external_lex_state = 11}, - [437] = {.lex_state = 94, .external_lex_state = 15}, - [438] = {.lex_state = 58, .external_lex_state = 11}, + [437] = {.lex_state = 95, .external_lex_state = 15}, + [438] = {.lex_state = 95, .external_lex_state = 15}, [439] = {.lex_state = 58, .external_lex_state = 11}, [440] = {.lex_state = 58, .external_lex_state = 11}, [441] = {.lex_state = 58, .external_lex_state = 11}, [442] = {.lex_state = 58, .external_lex_state = 11}, [443] = {.lex_state = 58, .external_lex_state = 11}, [444] = {.lex_state = 58, .external_lex_state = 11}, - [445] = {.lex_state = 58, .external_lex_state = 11}, + [445] = {.lex_state = 95, .external_lex_state = 15}, [446] = {.lex_state = 58, .external_lex_state = 11}, [447] = {.lex_state = 58, .external_lex_state = 11}, - [448] = {.lex_state = 58, .external_lex_state = 11}, + [448] = {.lex_state = 96, .external_lex_state = 11}, [449] = {.lex_state = 58, .external_lex_state = 11}, [450] = {.lex_state = 58, .external_lex_state = 11}, [451] = {.lex_state = 58, .external_lex_state = 11}, [452] = {.lex_state = 58, .external_lex_state = 11}, [453] = {.lex_state = 58, .external_lex_state = 11}, - [454] = {.lex_state = 58, .external_lex_state = 11}, + [454] = {.lex_state = 96, .external_lex_state = 11}, [455] = {.lex_state = 58, .external_lex_state = 11}, [456] = {.lex_state = 58, .external_lex_state = 11}, [457] = {.lex_state = 58, .external_lex_state = 11}, [458] = {.lex_state = 58, .external_lex_state = 11}, - [459] = {.lex_state = 58, .external_lex_state = 11}, - [460] = {.lex_state = 58, .external_lex_state = 11}, - [461] = {.lex_state = 58, .external_lex_state = 11}, + [459] = {.lex_state = 96, .external_lex_state = 11}, + [460] = {.lex_state = 96, .external_lex_state = 11}, + [461] = {.lex_state = 96, .external_lex_state = 11}, [462] = {.lex_state = 58, .external_lex_state = 11}, [463] = {.lex_state = 58, .external_lex_state = 11}, [464] = {.lex_state = 58, .external_lex_state = 11}, @@ -22336,193 +21519,193 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [466] = {.lex_state = 58, .external_lex_state = 11}, [467] = {.lex_state = 58, .external_lex_state = 11}, [468] = {.lex_state = 58, .external_lex_state = 11}, - [469] = {.lex_state = 58, .external_lex_state = 11}, + [469] = {.lex_state = 96, .external_lex_state = 11}, [470] = {.lex_state = 58, .external_lex_state = 11}, [471] = {.lex_state = 58, .external_lex_state = 11}, [472] = {.lex_state = 58, .external_lex_state = 11}, - [473] = {.lex_state = 58, .external_lex_state = 11}, - [474] = {.lex_state = 58, .external_lex_state = 11}, - [475] = {.lex_state = 94, .external_lex_state = 15}, - [476] = {.lex_state = 94, .external_lex_state = 15}, - [477] = {.lex_state = 94, .external_lex_state = 15}, - [478] = {.lex_state = 94, .external_lex_state = 15}, - [479] = {.lex_state = 58, .external_lex_state = 11}, + [473] = {.lex_state = 96, .external_lex_state = 11}, + [474] = {.lex_state = 96, .external_lex_state = 11}, + [475] = {.lex_state = 58, .external_lex_state = 11}, + [476] = {.lex_state = 58, .external_lex_state = 11}, + [477] = {.lex_state = 96, .external_lex_state = 11}, + [478] = {.lex_state = 96, .external_lex_state = 11}, + [479] = {.lex_state = 96, .external_lex_state = 11}, [480] = {.lex_state = 58, .external_lex_state = 11}, - [481] = {.lex_state = 94, .external_lex_state = 15}, - [482] = {.lex_state = 94, .external_lex_state = 15}, - [483] = {.lex_state = 94, .external_lex_state = 15}, + [481] = {.lex_state = 96, .external_lex_state = 11}, + [482] = {.lex_state = 58, .external_lex_state = 11}, + [483] = {.lex_state = 96, .external_lex_state = 11}, [484] = {.lex_state = 58, .external_lex_state = 11}, - [485] = {.lex_state = 58, .external_lex_state = 11}, - [486] = {.lex_state = 94, .external_lex_state = 15}, - [487] = {.lex_state = 94, .external_lex_state = 15}, + [485] = {.lex_state = 96, .external_lex_state = 11}, + [486] = {.lex_state = 58, .external_lex_state = 11}, + [487] = {.lex_state = 58, .external_lex_state = 11}, [488] = {.lex_state = 58, .external_lex_state = 11}, [489] = {.lex_state = 58, .external_lex_state = 11}, - [490] = {.lex_state = 58, .external_lex_state = 11}, - [491] = {.lex_state = 58, .external_lex_state = 11}, + [490] = {.lex_state = 95, .external_lex_state = 15}, + [491] = {.lex_state = 96, .external_lex_state = 11}, [492] = {.lex_state = 58, .external_lex_state = 11}, - [493] = {.lex_state = 58, .external_lex_state = 11}, + [493] = {.lex_state = 96, .external_lex_state = 11}, [494] = {.lex_state = 58, .external_lex_state = 11}, [495] = {.lex_state = 58, .external_lex_state = 11}, - [496] = {.lex_state = 58, .external_lex_state = 11}, + [496] = {.lex_state = 96, .external_lex_state = 11}, [497] = {.lex_state = 58, .external_lex_state = 11}, - [498] = {.lex_state = 94, .external_lex_state = 15}, - [499] = {.lex_state = 94, .external_lex_state = 15}, - [500] = {.lex_state = 94, .external_lex_state = 15}, - [501] = {.lex_state = 94, .external_lex_state = 15}, - [502] = {.lex_state = 94, .external_lex_state = 15}, - [503] = {.lex_state = 94, .external_lex_state = 15}, - [504] = {.lex_state = 94, .external_lex_state = 15}, - [505] = {.lex_state = 94, .external_lex_state = 15}, - [506] = {.lex_state = 94, .external_lex_state = 15}, - [507] = {.lex_state = 94, .external_lex_state = 15}, - [508] = {.lex_state = 95, .external_lex_state = 11}, - [509] = {.lex_state = 94, .external_lex_state = 15}, - [510] = {.lex_state = 95, .external_lex_state = 11}, - [511] = {.lex_state = 58, .external_lex_state = 11}, - [512] = {.lex_state = 95, .external_lex_state = 11}, - [513] = {.lex_state = 94, .external_lex_state = 15}, - [514] = {.lex_state = 94, .external_lex_state = 15}, + [498] = {.lex_state = 58, .external_lex_state = 11}, + [499] = {.lex_state = 58, .external_lex_state = 11}, + [500] = {.lex_state = 58, .external_lex_state = 11}, + [501] = {.lex_state = 58, .external_lex_state = 11}, + [502] = {.lex_state = 96, .external_lex_state = 11}, + [503] = {.lex_state = 95, .external_lex_state = 15}, + [504] = {.lex_state = 96, .external_lex_state = 11}, + [505] = {.lex_state = 96, .external_lex_state = 11}, + [506] = {.lex_state = 96, .external_lex_state = 11}, + [507] = {.lex_state = 96, .external_lex_state = 11}, + [508] = {.lex_state = 96, .external_lex_state = 11}, + [509] = {.lex_state = 58, .external_lex_state = 11}, + [510] = {.lex_state = 58, .external_lex_state = 11}, + [511] = {.lex_state = 96, .external_lex_state = 11}, + [512] = {.lex_state = 58, .external_lex_state = 11}, + [513] = {.lex_state = 58, .external_lex_state = 11}, + [514] = {.lex_state = 96, .external_lex_state = 11}, [515] = {.lex_state = 58, .external_lex_state = 11}, - [516] = {.lex_state = 58, .external_lex_state = 11}, - [517] = {.lex_state = 58, .external_lex_state = 11}, + [516] = {.lex_state = 96, .external_lex_state = 11}, + [517] = {.lex_state = 96, .external_lex_state = 11}, [518] = {.lex_state = 58, .external_lex_state = 11}, [519] = {.lex_state = 58, .external_lex_state = 11}, [520] = {.lex_state = 58, .external_lex_state = 11}, - [521] = {.lex_state = 94, .external_lex_state = 15}, - [522] = {.lex_state = 94, .external_lex_state = 15}, + [521] = {.lex_state = 58, .external_lex_state = 11}, + [522] = {.lex_state = 58, .external_lex_state = 11}, [523] = {.lex_state = 58, .external_lex_state = 11}, - [524] = {.lex_state = 94, .external_lex_state = 15}, - [525] = {.lex_state = 94, .external_lex_state = 15}, - [526] = {.lex_state = 94, .external_lex_state = 15}, + [524] = {.lex_state = 58, .external_lex_state = 11}, + [525] = {.lex_state = 96, .external_lex_state = 11}, + [526] = {.lex_state = 96, .external_lex_state = 11}, [527] = {.lex_state = 58, .external_lex_state = 11}, - [528] = {.lex_state = 58, .external_lex_state = 11}, - [529] = {.lex_state = 94, .external_lex_state = 15}, - [530] = {.lex_state = 94, .external_lex_state = 15}, - [531] = {.lex_state = 94, .external_lex_state = 15}, - [532] = {.lex_state = 94, .external_lex_state = 15}, + [528] = {.lex_state = 96, .external_lex_state = 11}, + [529] = {.lex_state = 58, .external_lex_state = 11}, + [530] = {.lex_state = 58, .external_lex_state = 11}, + [531] = {.lex_state = 95, .external_lex_state = 15}, + [532] = {.lex_state = 58, .external_lex_state = 11}, [533] = {.lex_state = 58, .external_lex_state = 11}, [534] = {.lex_state = 58, .external_lex_state = 11}, - [535] = {.lex_state = 95, .external_lex_state = 11}, + [535] = {.lex_state = 95, .external_lex_state = 15}, [536] = {.lex_state = 58, .external_lex_state = 11}, [537] = {.lex_state = 58, .external_lex_state = 11}, [538] = {.lex_state = 58, .external_lex_state = 11}, - [539] = {.lex_state = 94, .external_lex_state = 15}, - [540] = {.lex_state = 95, .external_lex_state = 11}, - [541] = {.lex_state = 95, .external_lex_state = 11}, - [542] = {.lex_state = 94, .external_lex_state = 15}, - [543] = {.lex_state = 94, .external_lex_state = 15}, - [544] = {.lex_state = 94, .external_lex_state = 15}, - [545] = {.lex_state = 94, .external_lex_state = 15}, - [546] = {.lex_state = 94, .external_lex_state = 15}, - [547] = {.lex_state = 95, .external_lex_state = 11}, - [548] = {.lex_state = 95, .external_lex_state = 11}, - [549] = {.lex_state = 95, .external_lex_state = 11}, - [550] = {.lex_state = 95, .external_lex_state = 11}, - [551] = {.lex_state = 95, .external_lex_state = 11}, - [552] = {.lex_state = 94, .external_lex_state = 15}, + [539] = {.lex_state = 58, .external_lex_state = 11}, + [540] = {.lex_state = 58, .external_lex_state = 11}, + [541] = {.lex_state = 58, .external_lex_state = 11}, + [542] = {.lex_state = 58, .external_lex_state = 11}, + [543] = {.lex_state = 96, .external_lex_state = 11}, + [544] = {.lex_state = 96, .external_lex_state = 11}, + [545] = {.lex_state = 58, .external_lex_state = 11}, + [546] = {.lex_state = 95, .external_lex_state = 15}, + [547] = {.lex_state = 95, .external_lex_state = 15}, + [548] = {.lex_state = 95, .external_lex_state = 15}, + [549] = {.lex_state = 58, .external_lex_state = 11}, + [550] = {.lex_state = 58, .external_lex_state = 11}, + [551] = {.lex_state = 58, .external_lex_state = 11}, + [552] = {.lex_state = 95, .external_lex_state = 15}, [553] = {.lex_state = 58, .external_lex_state = 11}, - [554] = {.lex_state = 58, .external_lex_state = 11}, - [555] = {.lex_state = 58, .external_lex_state = 11}, - [556] = {.lex_state = 58, .external_lex_state = 11}, + [554] = {.lex_state = 95, .external_lex_state = 15}, + [555] = {.lex_state = 95, .external_lex_state = 15}, + [556] = {.lex_state = 95, .external_lex_state = 15}, [557] = {.lex_state = 58, .external_lex_state = 11}, [558] = {.lex_state = 58, .external_lex_state = 11}, - [559] = {.lex_state = 95, .external_lex_state = 11}, - [560] = {.lex_state = 58, .external_lex_state = 11}, - [561] = {.lex_state = 58, .external_lex_state = 11}, - [562] = {.lex_state = 94, .external_lex_state = 15}, - [563] = {.lex_state = 94, .external_lex_state = 15}, + [559] = {.lex_state = 58, .external_lex_state = 11}, + [560] = {.lex_state = 96, .external_lex_state = 11}, + [561] = {.lex_state = 96, .external_lex_state = 11}, + [562] = {.lex_state = 58, .external_lex_state = 11}, + [563] = {.lex_state = 96, .external_lex_state = 11}, [564] = {.lex_state = 58, .external_lex_state = 11}, [565] = {.lex_state = 58, .external_lex_state = 11}, [566] = {.lex_state = 58, .external_lex_state = 11}, [567] = {.lex_state = 58, .external_lex_state = 11}, - [568] = {.lex_state = 58, .external_lex_state = 11}, - [569] = {.lex_state = 58, .external_lex_state = 11}, + [568] = {.lex_state = 95, .external_lex_state = 15}, + [569] = {.lex_state = 96, .external_lex_state = 11}, [570] = {.lex_state = 58, .external_lex_state = 11}, - [571] = {.lex_state = 95, .external_lex_state = 11}, - [572] = {.lex_state = 95, .external_lex_state = 11}, - [573] = {.lex_state = 94, .external_lex_state = 15}, - [574] = {.lex_state = 95, .external_lex_state = 11}, - [575] = {.lex_state = 95, .external_lex_state = 11}, - [576] = {.lex_state = 95, .external_lex_state = 11}, - [577] = {.lex_state = 95, .external_lex_state = 11}, - [578] = {.lex_state = 95, .external_lex_state = 11}, - [579] = {.lex_state = 95, .external_lex_state = 11}, - [580] = {.lex_state = 95, .external_lex_state = 11}, - [581] = {.lex_state = 95, .external_lex_state = 11}, + [571] = {.lex_state = 95, .external_lex_state = 15}, + [572] = {.lex_state = 95, .external_lex_state = 15}, + [573] = {.lex_state = 95, .external_lex_state = 15}, + [574] = {.lex_state = 58, .external_lex_state = 11}, + [575] = {.lex_state = 95, .external_lex_state = 15}, + [576] = {.lex_state = 58, .external_lex_state = 11}, + [577] = {.lex_state = 95, .external_lex_state = 15}, + [578] = {.lex_state = 58, .external_lex_state = 11}, + [579] = {.lex_state = 95, .external_lex_state = 15}, + [580] = {.lex_state = 95, .external_lex_state = 15}, + [581] = {.lex_state = 58, .external_lex_state = 11}, [582] = {.lex_state = 58, .external_lex_state = 11}, - [583] = {.lex_state = 94, .external_lex_state = 15}, + [583] = {.lex_state = 58, .external_lex_state = 11}, [584] = {.lex_state = 58, .external_lex_state = 11}, - [585] = {.lex_state = 95, .external_lex_state = 11}, - [586] = {.lex_state = 95, .external_lex_state = 11}, - [587] = {.lex_state = 95, .external_lex_state = 11}, + [585] = {.lex_state = 58, .external_lex_state = 11}, + [586] = {.lex_state = 96, .external_lex_state = 11}, + [587] = {.lex_state = 58, .external_lex_state = 11}, [588] = {.lex_state = 58, .external_lex_state = 11}, [589] = {.lex_state = 58, .external_lex_state = 11}, - [590] = {.lex_state = 95, .external_lex_state = 11}, - [591] = {.lex_state = 95, .external_lex_state = 11}, - [592] = {.lex_state = 95, .external_lex_state = 11}, + [590] = {.lex_state = 58, .external_lex_state = 11}, + [591] = {.lex_state = 58, .external_lex_state = 11}, + [592] = {.lex_state = 58, .external_lex_state = 11}, [593] = {.lex_state = 58, .external_lex_state = 11}, - [594] = {.lex_state = 95, .external_lex_state = 11}, - [595] = {.lex_state = 95, .external_lex_state = 11}, - [596] = {.lex_state = 94, .external_lex_state = 15}, - [597] = {.lex_state = 58, .external_lex_state = 11}, - [598] = {.lex_state = 58, .external_lex_state = 11}, - [599] = {.lex_state = 95, .external_lex_state = 11}, - [600] = {.lex_state = 95, .external_lex_state = 11}, + [594] = {.lex_state = 58, .external_lex_state = 11}, + [595] = {.lex_state = 96, .external_lex_state = 11}, + [596] = {.lex_state = 96, .external_lex_state = 11}, + [597] = {.lex_state = 95, .external_lex_state = 15}, + [598] = {.lex_state = 96, .external_lex_state = 11}, + [599] = {.lex_state = 95, .external_lex_state = 15}, + [600] = {.lex_state = 58, .external_lex_state = 11}, [601] = {.lex_state = 58, .external_lex_state = 11}, - [602] = {.lex_state = 95, .external_lex_state = 11}, - [603] = {.lex_state = 95, .external_lex_state = 11}, - [604] = {.lex_state = 95, .external_lex_state = 11}, - [605] = {.lex_state = 95, .external_lex_state = 11}, - [606] = {.lex_state = 58, .external_lex_state = 11}, - [607] = {.lex_state = 95, .external_lex_state = 11}, - [608] = {.lex_state = 95, .external_lex_state = 11}, - [609] = {.lex_state = 95, .external_lex_state = 11}, - [610] = {.lex_state = 95, .external_lex_state = 11}, - [611] = {.lex_state = 58, .external_lex_state = 11}, + [602] = {.lex_state = 95, .external_lex_state = 15}, + [603] = {.lex_state = 58, .external_lex_state = 11}, + [604] = {.lex_state = 95, .external_lex_state = 15}, + [605] = {.lex_state = 95, .external_lex_state = 15}, + [606] = {.lex_state = 95, .external_lex_state = 15}, + [607] = {.lex_state = 95, .external_lex_state = 15}, + [608] = {.lex_state = 95, .external_lex_state = 15}, + [609] = {.lex_state = 58, .external_lex_state = 11}, + [610] = {.lex_state = 96, .external_lex_state = 11}, + [611] = {.lex_state = 95, .external_lex_state = 15}, [612] = {.lex_state = 58, .external_lex_state = 11}, - [613] = {.lex_state = 58, .external_lex_state = 11}, - [614] = {.lex_state = 95, .external_lex_state = 11}, - [615] = {.lex_state = 58, .external_lex_state = 11}, + [613] = {.lex_state = 95, .external_lex_state = 15}, + [614] = {.lex_state = 95, .external_lex_state = 15}, + [615] = {.lex_state = 95, .external_lex_state = 15}, [616] = {.lex_state = 58, .external_lex_state = 11}, [617] = {.lex_state = 58, .external_lex_state = 11}, [618] = {.lex_state = 58, .external_lex_state = 11}, [619] = {.lex_state = 58, .external_lex_state = 11}, - [620] = {.lex_state = 58, .external_lex_state = 11}, + [620] = {.lex_state = 95, .external_lex_state = 15}, [621] = {.lex_state = 58, .external_lex_state = 11}, [622] = {.lex_state = 58, .external_lex_state = 11}, [623] = {.lex_state = 58, .external_lex_state = 11}, - [624] = {.lex_state = 58, .external_lex_state = 11}, + [624] = {.lex_state = 95, .external_lex_state = 15}, [625] = {.lex_state = 58, .external_lex_state = 11}, [626] = {.lex_state = 58, .external_lex_state = 11}, - [627] = {.lex_state = 94, .external_lex_state = 15}, + [627] = {.lex_state = 58, .external_lex_state = 11}, [628] = {.lex_state = 58, .external_lex_state = 11}, - [629] = {.lex_state = 95, .external_lex_state = 11}, - [630] = {.lex_state = 95, .external_lex_state = 11}, + [629] = {.lex_state = 58, .external_lex_state = 11}, + [630] = {.lex_state = 58, .external_lex_state = 11}, [631] = {.lex_state = 58, .external_lex_state = 11}, - [632] = {.lex_state = 95, .external_lex_state = 11}, - [633] = {.lex_state = 58, .external_lex_state = 11}, + [632] = {.lex_state = 58, .external_lex_state = 11}, + [633] = {.lex_state = 95, .external_lex_state = 15}, [634] = {.lex_state = 58, .external_lex_state = 11}, - [635] = {.lex_state = 95, .external_lex_state = 11}, - [636] = {.lex_state = 58, .external_lex_state = 11}, - [637] = {.lex_state = 58, .external_lex_state = 11}, - [638] = {.lex_state = 58, .external_lex_state = 11}, + [635] = {.lex_state = 95, .external_lex_state = 15}, + [636] = {.lex_state = 95, .external_lex_state = 15}, + [637] = {.lex_state = 95, .external_lex_state = 15}, + [638] = {.lex_state = 95, .external_lex_state = 15}, [639] = {.lex_state = 58, .external_lex_state = 11}, - [640] = {.lex_state = 58, .external_lex_state = 11}, - [641] = {.lex_state = 58, .external_lex_state = 11}, - [642] = {.lex_state = 58, .external_lex_state = 11}, - [643] = {.lex_state = 58, .external_lex_state = 11}, + [640] = {.lex_state = 95, .external_lex_state = 15}, + [641] = {.lex_state = 95, .external_lex_state = 15}, + [642] = {.lex_state = 95, .external_lex_state = 15}, + [643] = {.lex_state = 95, .external_lex_state = 15}, [644] = {.lex_state = 58, .external_lex_state = 11}, [645] = {.lex_state = 58, .external_lex_state = 11}, - [646] = {.lex_state = 58, .external_lex_state = 11}, + [646] = {.lex_state = 96, .external_lex_state = 11}, [647] = {.lex_state = 58, .external_lex_state = 11}, [648] = {.lex_state = 58, .external_lex_state = 11}, [649] = {.lex_state = 58, .external_lex_state = 11}, - [650] = {.lex_state = 58, .external_lex_state = 11}, + [650] = {.lex_state = 96, .external_lex_state = 11}, [651] = {.lex_state = 58, .external_lex_state = 11}, [652] = {.lex_state = 58, .external_lex_state = 11}, [653] = {.lex_state = 58, .external_lex_state = 11}, [654] = {.lex_state = 58, .external_lex_state = 11}, - [655] = {.lex_state = 58, .external_lex_state = 11}, + [655] = {.lex_state = 96, .external_lex_state = 11}, [656] = {.lex_state = 58, .external_lex_state = 11}, [657] = {.lex_state = 58, .external_lex_state = 11}, [658] = {.lex_state = 58, .external_lex_state = 11}, @@ -22538,41 +21721,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [668] = {.lex_state = 58, .external_lex_state = 11}, [669] = {.lex_state = 58, .external_lex_state = 11}, [670] = {.lex_state = 58, .external_lex_state = 11}, - [671] = {.lex_state = 58, .external_lex_state = 11}, + [671] = {.lex_state = 96, .external_lex_state = 11}, [672] = {.lex_state = 58, .external_lex_state = 11}, [673] = {.lex_state = 58, .external_lex_state = 11}, [674] = {.lex_state = 58, .external_lex_state = 11}, [675] = {.lex_state = 58, .external_lex_state = 11}, [676] = {.lex_state = 58, .external_lex_state = 11}, [677] = {.lex_state = 58, .external_lex_state = 11}, - [678] = {.lex_state = 81, .external_lex_state = 18}, - [679] = {.lex_state = 80, .external_lex_state = 17}, - [680] = {.lex_state = 91, .external_lex_state = 12}, - [681] = {.lex_state = 91, .external_lex_state = 12}, - [682] = {.lex_state = 91, .external_lex_state = 12}, - [683] = {.lex_state = 89, .external_lex_state = 12}, - [684] = {.lex_state = 89, .external_lex_state = 12}, - [685] = {.lex_state = 89, .external_lex_state = 12}, - [686] = {.lex_state = 79, .external_lex_state = 12}, - [687] = {.lex_state = 91, .external_lex_state = 12}, - [688] = {.lex_state = 91, .external_lex_state = 12}, - [689] = {.lex_state = 150, .external_lex_state = 13}, - [690] = {.lex_state = 150, .external_lex_state = 12}, - [691] = {.lex_state = 79, .external_lex_state = 12}, - [692] = {.lex_state = 79, .external_lex_state = 12}, + [678] = {.lex_state = 81, .external_lex_state = 17}, + [679] = {.lex_state = 80, .external_lex_state = 18}, + [680] = {.lex_state = 92, .external_lex_state = 12}, + [681] = {.lex_state = 92, .external_lex_state = 12}, + [682] = {.lex_state = 92, .external_lex_state = 12}, + [683] = {.lex_state = 90, .external_lex_state = 12}, + [684] = {.lex_state = 90, .external_lex_state = 12}, + [685] = {.lex_state = 90, .external_lex_state = 12}, + [686] = {.lex_state = 92, .external_lex_state = 12}, + [687] = {.lex_state = 92, .external_lex_state = 12}, + [688] = {.lex_state = 79, .external_lex_state = 12}, + [689] = {.lex_state = 79, .external_lex_state = 12}, + [690] = {.lex_state = 79, .external_lex_state = 12}, + [691] = {.lex_state = 153, .external_lex_state = 13}, + [692] = {.lex_state = 153, .external_lex_state = 12}, [693] = {.lex_state = 79, .external_lex_state = 12}, - [694] = {.lex_state = 150, .external_lex_state = 12}, - [695] = {.lex_state = 66, .external_lex_state = 12}, - [696] = {.lex_state = 89, .external_lex_state = 12}, + [694] = {.lex_state = 153, .external_lex_state = 12}, + [695] = {.lex_state = 90, .external_lex_state = 12}, + [696] = {.lex_state = 90, .external_lex_state = 12}, [697] = {.lex_state = 66, .external_lex_state = 12}, [698] = {.lex_state = 66, .external_lex_state = 12}, - [699] = {.lex_state = 89, .external_lex_state = 12}, + [699] = {.lex_state = 66, .external_lex_state = 12}, [700] = {.lex_state = 79, .external_lex_state = 12}, [701] = {.lex_state = 79, .external_lex_state = 12}, - [702] = {.lex_state = 79, .external_lex_state = 12}, - [703] = {.lex_state = 70, .external_lex_state = 17}, - [704] = {.lex_state = 79, .external_lex_state = 12}, - [705] = {.lex_state = 72, .external_lex_state = 18}, + [702] = {.lex_state = 72, .external_lex_state = 17}, + [703] = {.lex_state = 79, .external_lex_state = 12}, + [704] = {.lex_state = 64, .external_lex_state = 12}, + [705] = {.lex_state = 79, .external_lex_state = 12}, [706] = {.lex_state = 79, .external_lex_state = 12}, [707] = {.lex_state = 79, .external_lex_state = 12}, [708] = {.lex_state = 79, .external_lex_state = 12}, @@ -22581,17 +21764,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [711] = {.lex_state = 79, .external_lex_state = 12}, [712] = {.lex_state = 79, .external_lex_state = 12}, [713] = {.lex_state = 79, .external_lex_state = 12}, - [714] = {.lex_state = 79, .external_lex_state = 12}, - [715] = {.lex_state = 64, .external_lex_state = 12}, + [714] = {.lex_state = 70, .external_lex_state = 18}, + [715] = {.lex_state = 79, .external_lex_state = 12}, [716] = {.lex_state = 66, .external_lex_state = 12}, - [717] = {.lex_state = 66, .external_lex_state = 12}, - [718] = {.lex_state = 90, .external_lex_state = 12}, + [717] = {.lex_state = 91, .external_lex_state = 12}, + [718] = {.lex_state = 176, .external_lex_state = 12}, [719] = {.lex_state = 66, .external_lex_state = 12}, [720] = {.lex_state = 66, .external_lex_state = 12}, [721] = {.lex_state = 66, .external_lex_state = 12}, - [722] = {.lex_state = 174, .external_lex_state = 13}, - [723] = {.lex_state = 66, .external_lex_state = 12}, - [724] = {.lex_state = 66, .external_lex_state = 12}, + [722] = {.lex_state = 90, .external_lex_state = 13}, + [723] = {.lex_state = 69, .external_lex_state = 18}, + [724] = {.lex_state = 90, .external_lex_state = 13}, [725] = {.lex_state = 66, .external_lex_state = 12}, [726] = {.lex_state = 66, .external_lex_state = 12}, [727] = {.lex_state = 66, .external_lex_state = 12}, @@ -22599,271 +21782,271 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [729] = {.lex_state = 66, .external_lex_state = 12}, [730] = {.lex_state = 66, .external_lex_state = 12}, [731] = {.lex_state = 66, .external_lex_state = 12}, - [732] = {.lex_state = 175, .external_lex_state = 12}, - [733] = {.lex_state = 66, .external_lex_state = 12}, + [732] = {.lex_state = 66, .external_lex_state = 12}, + [733] = {.lex_state = 177, .external_lex_state = 13}, [734] = {.lex_state = 66, .external_lex_state = 12}, - [735] = {.lex_state = 174, .external_lex_state = 12}, + [735] = {.lex_state = 66, .external_lex_state = 12}, [736] = {.lex_state = 66, .external_lex_state = 12}, [737] = {.lex_state = 66, .external_lex_state = 12}, [738] = {.lex_state = 66, .external_lex_state = 12}, - [739] = {.lex_state = 89, .external_lex_state = 13}, + [739] = {.lex_state = 66, .external_lex_state = 12}, [740] = {.lex_state = 66, .external_lex_state = 12}, [741] = {.lex_state = 66, .external_lex_state = 12}, [742] = {.lex_state = 66, .external_lex_state = 12}, [743] = {.lex_state = 66, .external_lex_state = 12}, [744] = {.lex_state = 66, .external_lex_state = 12}, - [745] = {.lex_state = 69, .external_lex_state = 17}, + [745] = {.lex_state = 66, .external_lex_state = 12}, [746] = {.lex_state = 66, .external_lex_state = 12}, - [747] = {.lex_state = 66, .external_lex_state = 12}, - [748] = {.lex_state = 66, .external_lex_state = 12}, + [747] = {.lex_state = 71, .external_lex_state = 17}, + [748] = {.lex_state = 177, .external_lex_state = 12}, [749] = {.lex_state = 66, .external_lex_state = 12}, - [750] = {.lex_state = 89, .external_lex_state = 13}, + [750] = {.lex_state = 66, .external_lex_state = 12}, [751] = {.lex_state = 66, .external_lex_state = 12}, - [752] = {.lex_state = 71, .external_lex_state = 18}, + [752] = {.lex_state = 66, .external_lex_state = 12}, [753] = {.lex_state = 66, .external_lex_state = 12}, [754] = {.lex_state = 66, .external_lex_state = 12}, - [755] = {.lex_state = 89, .external_lex_state = 13}, + [755] = {.lex_state = 66, .external_lex_state = 12}, [756] = {.lex_state = 66, .external_lex_state = 12}, - [757] = {.lex_state = 66, .external_lex_state = 12}, - [758] = {.lex_state = 71, .external_lex_state = 18}, + [757] = {.lex_state = 90, .external_lex_state = 13}, + [758] = {.lex_state = 66, .external_lex_state = 12}, [759] = {.lex_state = 66, .external_lex_state = 12}, [760] = {.lex_state = 66, .external_lex_state = 12}, - [761] = {.lex_state = 90, .external_lex_state = 12}, - [762] = {.lex_state = 66, .external_lex_state = 12}, - [763] = {.lex_state = 69, .external_lex_state = 17}, - [764] = {.lex_state = 90, .external_lex_state = 12}, + [761] = {.lex_state = 66, .external_lex_state = 12}, + [762] = {.lex_state = 91, .external_lex_state = 12}, + [763] = {.lex_state = 69, .external_lex_state = 18}, + [764] = {.lex_state = 66, .external_lex_state = 12}, [765] = {.lex_state = 66, .external_lex_state = 12}, - [766] = {.lex_state = 66, .external_lex_state = 12}, + [766] = {.lex_state = 91, .external_lex_state = 12}, [767] = {.lex_state = 66, .external_lex_state = 12}, [768] = {.lex_state = 66, .external_lex_state = 12}, - [769] = {.lex_state = 66, .external_lex_state = 12}, - [770] = {.lex_state = 175, .external_lex_state = 12}, - [771] = {.lex_state = 180, .external_lex_state = 13}, - [772] = {.lex_state = 66, .external_lex_state = 12}, - [773] = {.lex_state = 180, .external_lex_state = 13}, - [774] = {.lex_state = 180, .external_lex_state = 12}, - [775] = {.lex_state = 174, .external_lex_state = 13}, + [769] = {.lex_state = 71, .external_lex_state = 17}, + [770] = {.lex_state = 66, .external_lex_state = 12}, + [771] = {.lex_state = 66, .external_lex_state = 12}, + [772] = {.lex_state = 177, .external_lex_state = 13}, + [773] = {.lex_state = 66, .external_lex_state = 12}, + [774] = {.lex_state = 66, .external_lex_state = 12}, + [775] = {.lex_state = 66, .external_lex_state = 12}, [776] = {.lex_state = 66, .external_lex_state = 12}, - [777] = {.lex_state = 66, .external_lex_state = 12}, - [778] = {.lex_state = 180, .external_lex_state = 12}, + [777] = {.lex_state = 182, .external_lex_state = 12}, + [778] = {.lex_state = 176, .external_lex_state = 12}, [779] = {.lex_state = 66, .external_lex_state = 12}, - [780] = {.lex_state = 66, .external_lex_state = 12}, - [781] = {.lex_state = 66, .external_lex_state = 12}, - [782] = {.lex_state = 66, .external_lex_state = 12}, - [783] = {.lex_state = 665, .external_lex_state = 12}, - [784] = {.lex_state = 665, .external_lex_state = 12}, - [785] = {.lex_state = 66, .external_lex_state = 12}, - [786] = {.lex_state = 89, .external_lex_state = 13}, - [787] = {.lex_state = 665, .external_lex_state = 12}, - [788] = {.lex_state = 665, .external_lex_state = 12}, - [789] = {.lex_state = 665, .external_lex_state = 12}, - [790] = {.lex_state = 665, .external_lex_state = 12}, - [791] = {.lex_state = 665, .external_lex_state = 12}, - [792] = {.lex_state = 66, .external_lex_state = 12}, - [793] = {.lex_state = 89, .external_lex_state = 13}, - [794] = {.lex_state = 665, .external_lex_state = 12}, - [795] = {.lex_state = 90, .external_lex_state = 12}, - [796] = {.lex_state = 64, .external_lex_state = 13}, - [797] = {.lex_state = 66, .external_lex_state = 12}, - [798] = {.lex_state = 665, .external_lex_state = 12}, - [799] = {.lex_state = 73, .external_lex_state = 12}, - [800] = {.lex_state = 665, .external_lex_state = 12}, - [801] = {.lex_state = 665, .external_lex_state = 12}, - [802] = {.lex_state = 174, .external_lex_state = 12}, - [803] = {.lex_state = 665, .external_lex_state = 12}, - [804] = {.lex_state = 665, .external_lex_state = 12}, - [805] = {.lex_state = 90, .external_lex_state = 12}, - [806] = {.lex_state = 66, .external_lex_state = 13}, - [807] = {.lex_state = 66, .external_lex_state = 13}, - [808] = {.lex_state = 665, .external_lex_state = 12}, - [809] = {.lex_state = 66, .external_lex_state = 12}, + [780] = {.lex_state = 182, .external_lex_state = 13}, + [781] = {.lex_state = 182, .external_lex_state = 12}, + [782] = {.lex_state = 182, .external_lex_state = 13}, + [783] = {.lex_state = 686, .external_lex_state = 12}, + [784] = {.lex_state = 64, .external_lex_state = 13}, + [785] = {.lex_state = 686, .external_lex_state = 12}, + [786] = {.lex_state = 686, .external_lex_state = 12}, + [787] = {.lex_state = 90, .external_lex_state = 13}, + [788] = {.lex_state = 91, .external_lex_state = 12}, + [789] = {.lex_state = 73, .external_lex_state = 12}, + [790] = {.lex_state = 686, .external_lex_state = 12}, + [791] = {.lex_state = 686, .external_lex_state = 12}, + [792] = {.lex_state = 177, .external_lex_state = 12}, + [793] = {.lex_state = 66, .external_lex_state = 12}, + [794] = {.lex_state = 686, .external_lex_state = 12}, + [795] = {.lex_state = 686, .external_lex_state = 12}, + [796] = {.lex_state = 686, .external_lex_state = 12}, + [797] = {.lex_state = 90, .external_lex_state = 13}, + [798] = {.lex_state = 66, .external_lex_state = 12}, + [799] = {.lex_state = 686, .external_lex_state = 12}, + [800] = {.lex_state = 91, .external_lex_state = 12}, + [801] = {.lex_state = 686, .external_lex_state = 12}, + [802] = {.lex_state = 66, .external_lex_state = 12}, + [803] = {.lex_state = 686, .external_lex_state = 12}, + [804] = {.lex_state = 686, .external_lex_state = 12}, + [805] = {.lex_state = 686, .external_lex_state = 12}, + [806] = {.lex_state = 686, .external_lex_state = 12}, + [807] = {.lex_state = 66, .external_lex_state = 12}, + [808] = {.lex_state = 66, .external_lex_state = 12}, + [809] = {.lex_state = 66, .external_lex_state = 13}, [810] = {.lex_state = 66, .external_lex_state = 13}, [811] = {.lex_state = 66, .external_lex_state = 12}, - [812] = {.lex_state = 66, .external_lex_state = 13}, + [812] = {.lex_state = 66, .external_lex_state = 12}, [813] = {.lex_state = 66, .external_lex_state = 12}, [814] = {.lex_state = 66, .external_lex_state = 12}, [815] = {.lex_state = 66, .external_lex_state = 12}, [816] = {.lex_state = 66, .external_lex_state = 12}, [817] = {.lex_state = 66, .external_lex_state = 12}, - [818] = {.lex_state = 66, .external_lex_state = 12}, + [818] = {.lex_state = 686, .external_lex_state = 12}, [819] = {.lex_state = 66, .external_lex_state = 12}, - [820] = {.lex_state = 665, .external_lex_state = 12}, + [820] = {.lex_state = 66, .external_lex_state = 12}, [821] = {.lex_state = 66, .external_lex_state = 12}, [822] = {.lex_state = 66, .external_lex_state = 12}, [823] = {.lex_state = 66, .external_lex_state = 12}, - [824] = {.lex_state = 66, .external_lex_state = 12}, - [825] = {.lex_state = 66, .external_lex_state = 12}, - [826] = {.lex_state = 66, .external_lex_state = 13}, - [827] = {.lex_state = 74, .external_lex_state = 12}, - [828] = {.lex_state = 665, .external_lex_state = 13}, - [829] = {.lex_state = 665, .external_lex_state = 12}, - [830] = {.lex_state = 66, .external_lex_state = 12}, - [831] = {.lex_state = 74, .external_lex_state = 12}, - [832] = {.lex_state = 74, .external_lex_state = 12}, - [833] = {.lex_state = 66, .external_lex_state = 13}, - [834] = {.lex_state = 74, .external_lex_state = 12}, - [835] = {.lex_state = 74, .external_lex_state = 12}, - [836] = {.lex_state = 74, .external_lex_state = 12}, - [837] = {.lex_state = 74, .external_lex_state = 12}, - [838] = {.lex_state = 66, .external_lex_state = 12}, - [839] = {.lex_state = 74, .external_lex_state = 12}, - [840] = {.lex_state = 66, .external_lex_state = 12}, - [841] = {.lex_state = 74, .external_lex_state = 12}, - [842] = {.lex_state = 74, .external_lex_state = 12}, - [843] = {.lex_state = 74, .external_lex_state = 12}, - [844] = {.lex_state = 66, .external_lex_state = 13}, - [845] = {.lex_state = 166, .external_lex_state = 13}, + [824] = {.lex_state = 66, .external_lex_state = 13}, + [825] = {.lex_state = 66, .external_lex_state = 13}, + [826] = {.lex_state = 74, .external_lex_state = 12}, + [827] = {.lex_state = 66, .external_lex_state = 13}, + [828] = {.lex_state = 66, .external_lex_state = 13}, + [829] = {.lex_state = 66, .external_lex_state = 13}, + [830] = {.lex_state = 66, .external_lex_state = 13}, + [831] = {.lex_state = 66, .external_lex_state = 13}, + [832] = {.lex_state = 66, .external_lex_state = 13}, + [833] = {.lex_state = 74, .external_lex_state = 12}, + [834] = {.lex_state = 66, .external_lex_state = 13}, + [835] = {.lex_state = 66, .external_lex_state = 13}, + [836] = {.lex_state = 66, .external_lex_state = 13}, + [837] = {.lex_state = 686, .external_lex_state = 12}, + [838] = {.lex_state = 686, .external_lex_state = 12}, + [839] = {.lex_state = 66, .external_lex_state = 12}, + [840] = {.lex_state = 66, .external_lex_state = 13}, + [841] = {.lex_state = 66, .external_lex_state = 13}, + [842] = {.lex_state = 66, .external_lex_state = 13}, + [843] = {.lex_state = 66, .external_lex_state = 13}, + [844] = {.lex_state = 66, .external_lex_state = 12}, + [845] = {.lex_state = 66, .external_lex_state = 13}, [846] = {.lex_state = 74, .external_lex_state = 12}, - [847] = {.lex_state = 66, .external_lex_state = 12}, - [848] = {.lex_state = 74, .external_lex_state = 12}, - [849] = {.lex_state = 66, .external_lex_state = 12}, - [850] = {.lex_state = 66, .external_lex_state = 12}, + [847] = {.lex_state = 66, .external_lex_state = 13}, + [848] = {.lex_state = 66, .external_lex_state = 12}, + [849] = {.lex_state = 74, .external_lex_state = 12}, + [850] = {.lex_state = 66, .external_lex_state = 13}, [851] = {.lex_state = 74, .external_lex_state = 12}, - [852] = {.lex_state = 166, .external_lex_state = 12}, - [853] = {.lex_state = 66, .external_lex_state = 13}, - [854] = {.lex_state = 66, .external_lex_state = 13}, - [855] = {.lex_state = 66, .external_lex_state = 12}, - [856] = {.lex_state = 74, .external_lex_state = 12}, - [857] = {.lex_state = 66, .external_lex_state = 12}, + [852] = {.lex_state = 66, .external_lex_state = 13}, + [853] = {.lex_state = 74, .external_lex_state = 12}, + [854] = {.lex_state = 74, .external_lex_state = 12}, + [855] = {.lex_state = 74, .external_lex_state = 12}, + [856] = {.lex_state = 686, .external_lex_state = 12}, + [857] = {.lex_state = 74, .external_lex_state = 12}, [858] = {.lex_state = 74, .external_lex_state = 12}, - [859] = {.lex_state = 66, .external_lex_state = 12}, - [860] = {.lex_state = 74, .external_lex_state = 12}, - [861] = {.lex_state = 66, .external_lex_state = 12}, + [859] = {.lex_state = 686, .external_lex_state = 12}, + [860] = {.lex_state = 66, .external_lex_state = 13}, + [861] = {.lex_state = 74, .external_lex_state = 12}, [862] = {.lex_state = 66, .external_lex_state = 13}, - [863] = {.lex_state = 74, .external_lex_state = 12}, - [864] = {.lex_state = 665, .external_lex_state = 12}, - [865] = {.lex_state = 74, .external_lex_state = 12}, - [866] = {.lex_state = 665, .external_lex_state = 12}, - [867] = {.lex_state = 66, .external_lex_state = 13}, - [868] = {.lex_state = 66, .external_lex_state = 13}, - [869] = {.lex_state = 66, .external_lex_state = 13}, - [870] = {.lex_state = 66, .external_lex_state = 13}, - [871] = {.lex_state = 665, .external_lex_state = 12}, - [872] = {.lex_state = 665, .external_lex_state = 12}, + [863] = {.lex_state = 66, .external_lex_state = 13}, + [864] = {.lex_state = 74, .external_lex_state = 12}, + [865] = {.lex_state = 66, .external_lex_state = 12}, + [866] = {.lex_state = 74, .external_lex_state = 12}, + [867] = {.lex_state = 74, .external_lex_state = 12}, + [868] = {.lex_state = 74, .external_lex_state = 12}, + [869] = {.lex_state = 74, .external_lex_state = 12}, + [870] = {.lex_state = 169, .external_lex_state = 12}, + [871] = {.lex_state = 74, .external_lex_state = 12}, + [872] = {.lex_state = 74, .external_lex_state = 12}, [873] = {.lex_state = 66, .external_lex_state = 13}, [874] = {.lex_state = 66, .external_lex_state = 13}, - [875] = {.lex_state = 74, .external_lex_state = 12}, + [875] = {.lex_state = 66, .external_lex_state = 13}, [876] = {.lex_state = 66, .external_lex_state = 13}, - [877] = {.lex_state = 665, .external_lex_state = 12}, - [878] = {.lex_state = 66, .external_lex_state = 12}, - [879] = {.lex_state = 665, .external_lex_state = 13}, - [880] = {.lex_state = 665, .external_lex_state = 12}, - [881] = {.lex_state = 74, .external_lex_state = 12}, - [882] = {.lex_state = 66, .external_lex_state = 12}, - [883] = {.lex_state = 665, .external_lex_state = 12}, - [884] = {.lex_state = 66, .external_lex_state = 13}, - [885] = {.lex_state = 665, .external_lex_state = 12}, - [886] = {.lex_state = 66, .external_lex_state = 13}, - [887] = {.lex_state = 66, .external_lex_state = 13}, - [888] = {.lex_state = 66, .external_lex_state = 13}, - [889] = {.lex_state = 66, .external_lex_state = 13}, - [890] = {.lex_state = 74, .external_lex_state = 12}, - [891] = {.lex_state = 66, .external_lex_state = 13}, - [892] = {.lex_state = 66, .external_lex_state = 13}, + [877] = {.lex_state = 66, .external_lex_state = 13}, + [878] = {.lex_state = 66, .external_lex_state = 13}, + [879] = {.lex_state = 66, .external_lex_state = 13}, + [880] = {.lex_state = 66, .external_lex_state = 13}, + [881] = {.lex_state = 66, .external_lex_state = 13}, + [882] = {.lex_state = 66, .external_lex_state = 13}, + [883] = {.lex_state = 66, .external_lex_state = 13}, + [884] = {.lex_state = 686, .external_lex_state = 12}, + [885] = {.lex_state = 66, .external_lex_state = 13}, + [886] = {.lex_state = 686, .external_lex_state = 13}, + [887] = {.lex_state = 686, .external_lex_state = 12}, + [888] = {.lex_state = 66, .external_lex_state = 12}, + [889] = {.lex_state = 74, .external_lex_state = 12}, + [890] = {.lex_state = 686, .external_lex_state = 12}, + [891] = {.lex_state = 74, .external_lex_state = 12}, + [892] = {.lex_state = 74, .external_lex_state = 12}, [893] = {.lex_state = 66, .external_lex_state = 13}, - [894] = {.lex_state = 66, .external_lex_state = 13}, - [895] = {.lex_state = 74, .external_lex_state = 12}, - [896] = {.lex_state = 66, .external_lex_state = 12}, - [897] = {.lex_state = 66, .external_lex_state = 13}, + [894] = {.lex_state = 686, .external_lex_state = 12}, + [895] = {.lex_state = 66, .external_lex_state = 12}, + [896] = {.lex_state = 686, .external_lex_state = 12}, + [897] = {.lex_state = 74, .external_lex_state = 12}, [898] = {.lex_state = 74, .external_lex_state = 12}, - [899] = {.lex_state = 66, .external_lex_state = 13}, - [900] = {.lex_state = 66, .external_lex_state = 13}, - [901] = {.lex_state = 66, .external_lex_state = 12}, + [899] = {.lex_state = 686, .external_lex_state = 12}, + [900] = {.lex_state = 686, .external_lex_state = 12}, + [901] = {.lex_state = 66, .external_lex_state = 13}, [902] = {.lex_state = 74, .external_lex_state = 12}, [903] = {.lex_state = 66, .external_lex_state = 13}, [904] = {.lex_state = 66, .external_lex_state = 13}, - [905] = {.lex_state = 74, .external_lex_state = 12}, - [906] = {.lex_state = 74, .external_lex_state = 12}, - [907] = {.lex_state = 74, .external_lex_state = 12}, - [908] = {.lex_state = 66, .external_lex_state = 13}, + [905] = {.lex_state = 686, .external_lex_state = 13}, + [906] = {.lex_state = 66, .external_lex_state = 12}, + [907] = {.lex_state = 686, .external_lex_state = 12}, + [908] = {.lex_state = 686, .external_lex_state = 12}, [909] = {.lex_state = 66, .external_lex_state = 13}, - [910] = {.lex_state = 66, .external_lex_state = 13}, - [911] = {.lex_state = 166, .external_lex_state = 13}, + [910] = {.lex_state = 66, .external_lex_state = 12}, + [911] = {.lex_state = 66, .external_lex_state = 13}, [912] = {.lex_state = 66, .external_lex_state = 13}, - [913] = {.lex_state = 66, .external_lex_state = 13}, - [914] = {.lex_state = 74, .external_lex_state = 12}, - [915] = {.lex_state = 66, .external_lex_state = 13}, - [916] = {.lex_state = 66, .external_lex_state = 13}, - [917] = {.lex_state = 66, .external_lex_state = 13}, - [918] = {.lex_state = 66, .external_lex_state = 13}, + [913] = {.lex_state = 74, .external_lex_state = 12}, + [914] = {.lex_state = 66, .external_lex_state = 12}, + [915] = {.lex_state = 74, .external_lex_state = 12}, + [916] = {.lex_state = 74, .external_lex_state = 12}, + [917] = {.lex_state = 74, .external_lex_state = 12}, + [918] = {.lex_state = 66, .external_lex_state = 12}, [919] = {.lex_state = 74, .external_lex_state = 12}, [920] = {.lex_state = 74, .external_lex_state = 12}, - [921] = {.lex_state = 74, .external_lex_state = 12}, - [922] = {.lex_state = 66, .external_lex_state = 13}, - [923] = {.lex_state = 66, .external_lex_state = 13}, - [924] = {.lex_state = 66, .external_lex_state = 12}, - [925] = {.lex_state = 74, .external_lex_state = 12}, - [926] = {.lex_state = 166, .external_lex_state = 12}, - [927] = {.lex_state = 74, .external_lex_state = 12}, - [928] = {.lex_state = 74, .external_lex_state = 12}, - [929] = {.lex_state = 665, .external_lex_state = 12}, - [930] = {.lex_state = 665, .external_lex_state = 12}, - [931] = {.lex_state = 665, .external_lex_state = 13}, - [932] = {.lex_state = 66, .external_lex_state = 13}, + [921] = {.lex_state = 686, .external_lex_state = 12}, + [922] = {.lex_state = 74, .external_lex_state = 12}, + [923] = {.lex_state = 74, .external_lex_state = 12}, + [924] = {.lex_state = 686, .external_lex_state = 13}, + [925] = {.lex_state = 686, .external_lex_state = 12}, + [926] = {.lex_state = 74, .external_lex_state = 12}, + [927] = {.lex_state = 66, .external_lex_state = 12}, + [928] = {.lex_state = 169, .external_lex_state = 12}, + [929] = {.lex_state = 66, .external_lex_state = 12}, + [930] = {.lex_state = 74, .external_lex_state = 12}, + [931] = {.lex_state = 169, .external_lex_state = 13}, + [932] = {.lex_state = 74, .external_lex_state = 12}, [933] = {.lex_state = 66, .external_lex_state = 13}, [934] = {.lex_state = 66, .external_lex_state = 13}, - [935] = {.lex_state = 66, .external_lex_state = 13}, + [935] = {.lex_state = 74, .external_lex_state = 12}, [936] = {.lex_state = 66, .external_lex_state = 13}, [937] = {.lex_state = 66, .external_lex_state = 13}, [938] = {.lex_state = 74, .external_lex_state = 12}, - [939] = {.lex_state = 665, .external_lex_state = 12}, - [940] = {.lex_state = 66, .external_lex_state = 13}, - [941] = {.lex_state = 665, .external_lex_state = 12}, - [942] = {.lex_state = 66, .external_lex_state = 13}, - [943] = {.lex_state = 665, .external_lex_state = 12}, - [944] = {.lex_state = 74, .external_lex_state = 12}, - [945] = {.lex_state = 74, .external_lex_state = 12}, + [939] = {.lex_state = 74, .external_lex_state = 12}, + [940] = {.lex_state = 686, .external_lex_state = 12}, + [941] = {.lex_state = 66, .external_lex_state = 13}, + [942] = {.lex_state = 74, .external_lex_state = 12}, + [943] = {.lex_state = 66, .external_lex_state = 13}, + [944] = {.lex_state = 66, .external_lex_state = 13}, + [945] = {.lex_state = 66, .external_lex_state = 13}, [946] = {.lex_state = 74, .external_lex_state = 12}, - [947] = {.lex_state = 74, .external_lex_state = 12}, + [947] = {.lex_state = 686, .external_lex_state = 12}, [948] = {.lex_state = 74, .external_lex_state = 12}, - [949] = {.lex_state = 66, .external_lex_state = 12}, - [950] = {.lex_state = 74, .external_lex_state = 12}, - [951] = {.lex_state = 66, .external_lex_state = 12}, + [949] = {.lex_state = 686, .external_lex_state = 12}, + [950] = {.lex_state = 66, .external_lex_state = 13}, + [951] = {.lex_state = 686, .external_lex_state = 12}, [952] = {.lex_state = 74, .external_lex_state = 12}, - [953] = {.lex_state = 166, .external_lex_state = 12}, - [954] = {.lex_state = 66, .external_lex_state = 12}, + [953] = {.lex_state = 66, .external_lex_state = 12}, + [954] = {.lex_state = 66, .external_lex_state = 13}, [955] = {.lex_state = 74, .external_lex_state = 12}, - [956] = {.lex_state = 66, .external_lex_state = 13}, - [957] = {.lex_state = 665, .external_lex_state = 12}, - [958] = {.lex_state = 74, .external_lex_state = 12}, - [959] = {.lex_state = 74, .external_lex_state = 12}, - [960] = {.lex_state = 665, .external_lex_state = 12}, - [961] = {.lex_state = 74, .external_lex_state = 12}, - [962] = {.lex_state = 74, .external_lex_state = 12}, - [963] = {.lex_state = 665, .external_lex_state = 12}, - [964] = {.lex_state = 66, .external_lex_state = 13}, - [965] = {.lex_state = 66, .external_lex_state = 13}, - [966] = {.lex_state = 66, .external_lex_state = 13}, - [967] = {.lex_state = 665, .external_lex_state = 12}, - [968] = {.lex_state = 665, .external_lex_state = 12}, + [956] = {.lex_state = 74, .external_lex_state = 12}, + [957] = {.lex_state = 74, .external_lex_state = 12}, + [958] = {.lex_state = 66, .external_lex_state = 12}, + [959] = {.lex_state = 66, .external_lex_state = 13}, + [960] = {.lex_state = 66, .external_lex_state = 12}, + [961] = {.lex_state = 169, .external_lex_state = 13}, + [962] = {.lex_state = 66, .external_lex_state = 13}, + [963] = {.lex_state = 169, .external_lex_state = 12}, + [964] = {.lex_state = 74, .external_lex_state = 12}, + [965] = {.lex_state = 74, .external_lex_state = 12}, + [966] = {.lex_state = 74, .external_lex_state = 12}, + [967] = {.lex_state = 74, .external_lex_state = 12}, + [968] = {.lex_state = 74, .external_lex_state = 12}, [969] = {.lex_state = 66, .external_lex_state = 12}, - [970] = {.lex_state = 74, .external_lex_state = 12}, - [971] = {.lex_state = 66, .external_lex_state = 13}, - [972] = {.lex_state = 166, .external_lex_state = 13}, - [973] = {.lex_state = 74, .external_lex_state = 12}, + [970] = {.lex_state = 66, .external_lex_state = 12}, + [971] = {.lex_state = 66, .external_lex_state = 12}, + [972] = {.lex_state = 169, .external_lex_state = 13}, + [973] = {.lex_state = 66, .external_lex_state = 12}, [974] = {.lex_state = 66, .external_lex_state = 12}, [975] = {.lex_state = 74, .external_lex_state = 12}, [976] = {.lex_state = 66, .external_lex_state = 12}, [977] = {.lex_state = 66, .external_lex_state = 12}, [978] = {.lex_state = 66, .external_lex_state = 12}, - [979] = {.lex_state = 665, .external_lex_state = 12}, + [979] = {.lex_state = 182, .external_lex_state = 13}, [980] = {.lex_state = 66, .external_lex_state = 12}, [981] = {.lex_state = 66, .external_lex_state = 12}, - [982] = {.lex_state = 180, .external_lex_state = 12}, - [983] = {.lex_state = 228, .external_lex_state = 12}, - [984] = {.lex_state = 66, .external_lex_state = 12}, - [985] = {.lex_state = 665, .external_lex_state = 12}, + [982] = {.lex_state = 686, .external_lex_state = 12}, + [983] = {.lex_state = 66, .external_lex_state = 12}, + [984] = {.lex_state = 182, .external_lex_state = 12}, + [985] = {.lex_state = 66, .external_lex_state = 12}, [986] = {.lex_state = 66, .external_lex_state = 12}, - [987] = {.lex_state = 665, .external_lex_state = 12}, + [987] = {.lex_state = 66, .external_lex_state = 12}, [988] = {.lex_state = 66, .external_lex_state = 12}, [989] = {.lex_state = 66, .external_lex_state = 12}, [990] = {.lex_state = 66, .external_lex_state = 12}, [991] = {.lex_state = 66, .external_lex_state = 12}, - [992] = {.lex_state = 180, .external_lex_state = 13}, + [992] = {.lex_state = 66, .external_lex_state = 12}, [993] = {.lex_state = 66, .external_lex_state = 12}, [994] = {.lex_state = 66, .external_lex_state = 12}, [995] = {.lex_state = 66, .external_lex_state = 12}, - [996] = {.lex_state = 228, .external_lex_state = 12}, + [996] = {.lex_state = 66, .external_lex_state = 12}, [997] = {.lex_state = 66, .external_lex_state = 12}, [998] = {.lex_state = 66, .external_lex_state = 12}, [999] = {.lex_state = 66, .external_lex_state = 12}, @@ -22874,16 +22057,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1004] = {.lex_state = 66, .external_lex_state = 12}, [1005] = {.lex_state = 66, .external_lex_state = 12}, [1006] = {.lex_state = 66, .external_lex_state = 12}, - [1007] = {.lex_state = 66, .external_lex_state = 12}, - [1008] = {.lex_state = 66, .external_lex_state = 12}, + [1007] = {.lex_state = 238, .external_lex_state = 12}, + [1008] = {.lex_state = 686, .external_lex_state = 12}, [1009] = {.lex_state = 66, .external_lex_state = 12}, [1010] = {.lex_state = 66, .external_lex_state = 12}, [1011] = {.lex_state = 66, .external_lex_state = 12}, [1012] = {.lex_state = 66, .external_lex_state = 12}, [1013] = {.lex_state = 66, .external_lex_state = 12}, - [1014] = {.lex_state = 228, .external_lex_state = 12}, + [1014] = {.lex_state = 66, .external_lex_state = 12}, [1015] = {.lex_state = 66, .external_lex_state = 12}, - [1016] = {.lex_state = 665, .external_lex_state = 12}, + [1016] = {.lex_state = 66, .external_lex_state = 12}, [1017] = {.lex_state = 66, .external_lex_state = 12}, [1018] = {.lex_state = 66, .external_lex_state = 12}, [1019] = {.lex_state = 66, .external_lex_state = 12}, @@ -22892,8 +22075,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1022] = {.lex_state = 66, .external_lex_state = 12}, [1023] = {.lex_state = 66, .external_lex_state = 12}, [1024] = {.lex_state = 66, .external_lex_state = 12}, - [1025] = {.lex_state = 66, .external_lex_state = 12}, - [1026] = {.lex_state = 665, .external_lex_state = 12}, + [1025] = {.lex_state = 238, .external_lex_state = 12}, + [1026] = {.lex_state = 66, .external_lex_state = 12}, [1027] = {.lex_state = 66, .external_lex_state = 12}, [1028] = {.lex_state = 66, .external_lex_state = 12}, [1029] = {.lex_state = 66, .external_lex_state = 12}, @@ -22907,33 +22090,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1037] = {.lex_state = 66, .external_lex_state = 12}, [1038] = {.lex_state = 66, .external_lex_state = 12}, [1039] = {.lex_state = 66, .external_lex_state = 12}, - [1040] = {.lex_state = 66, .external_lex_state = 12}, + [1040] = {.lex_state = 238, .external_lex_state = 12}, [1041] = {.lex_state = 66, .external_lex_state = 12}, [1042] = {.lex_state = 66, .external_lex_state = 12}, [1043] = {.lex_state = 66, .external_lex_state = 12}, [1044] = {.lex_state = 66, .external_lex_state = 12}, - [1045] = {.lex_state = 66, .external_lex_state = 12}, + [1045] = {.lex_state = 686, .external_lex_state = 12}, [1046] = {.lex_state = 66, .external_lex_state = 12}, [1047] = {.lex_state = 66, .external_lex_state = 12}, [1048] = {.lex_state = 66, .external_lex_state = 12}, [1049] = {.lex_state = 66, .external_lex_state = 12}, [1050] = {.lex_state = 66, .external_lex_state = 12}, - [1051] = {.lex_state = 66, .external_lex_state = 12}, + [1051] = {.lex_state = 686, .external_lex_state = 12}, [1052] = {.lex_state = 66, .external_lex_state = 12}, [1053] = {.lex_state = 66, .external_lex_state = 12}, [1054] = {.lex_state = 66, .external_lex_state = 12}, - [1055] = {.lex_state = 66, .external_lex_state = 12}, + [1055] = {.lex_state = 686, .external_lex_state = 12}, [1056] = {.lex_state = 66, .external_lex_state = 12}, [1057] = {.lex_state = 66, .external_lex_state = 12}, [1058] = {.lex_state = 66, .external_lex_state = 12}, - [1059] = {.lex_state = 665, .external_lex_state = 12}, + [1059] = {.lex_state = 66, .external_lex_state = 12}, [1060] = {.lex_state = 66, .external_lex_state = 12}, [1061] = {.lex_state = 66, .external_lex_state = 12}, [1062] = {.lex_state = 66, .external_lex_state = 12}, [1063] = {.lex_state = 66, .external_lex_state = 12}, [1064] = {.lex_state = 66, .external_lex_state = 12}, [1065] = {.lex_state = 66, .external_lex_state = 12}, - [1066] = {.lex_state = 66, .external_lex_state = 12}, + [1066] = {.lex_state = 686, .external_lex_state = 12}, [1067] = {.lex_state = 66, .external_lex_state = 12}, [1068] = {.lex_state = 66, .external_lex_state = 12}, [1069] = {.lex_state = 66, .external_lex_state = 12}, @@ -22945,2173 +22128,2239 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1075] = {.lex_state = 66, .external_lex_state = 12}, [1076] = {.lex_state = 66, .external_lex_state = 12}, [1077] = {.lex_state = 66, .external_lex_state = 12}, - [1078] = {.lex_state = 665, .external_lex_state = 12}, - [1079] = {.lex_state = 665, .external_lex_state = 12}, - [1080] = {.lex_state = 665, .external_lex_state = 12}, - [1081] = {.lex_state = 665, .external_lex_state = 12}, - [1082] = {.lex_state = 665, .external_lex_state = 12}, - [1083] = {.lex_state = 665, .external_lex_state = 12}, - [1084] = {.lex_state = 665, .external_lex_state = 12}, - [1085] = {.lex_state = 229, .external_lex_state = 12}, - [1086] = {.lex_state = 665, .external_lex_state = 12}, - [1087] = {.lex_state = 665, .external_lex_state = 13}, - [1088] = {.lex_state = 665, .external_lex_state = 12}, - [1089] = {.lex_state = 665, .external_lex_state = 13}, - [1090] = {.lex_state = 665, .external_lex_state = 12}, - [1091] = {.lex_state = 66, .external_lex_state = 12}, - [1092] = {.lex_state = 66, .external_lex_state = 12}, - [1093] = {.lex_state = 665, .external_lex_state = 13}, - [1094] = {.lex_state = 665, .external_lex_state = 12}, - [1095] = {.lex_state = 229, .external_lex_state = 12}, - [1096] = {.lex_state = 665, .external_lex_state = 13}, - [1097] = {.lex_state = 229, .external_lex_state = 12}, - [1098] = {.lex_state = 665, .external_lex_state = 13}, - [1099] = {.lex_state = 665, .external_lex_state = 12}, + [1078] = {.lex_state = 686, .external_lex_state = 13}, + [1079] = {.lex_state = 686, .external_lex_state = 13}, + [1080] = {.lex_state = 239, .external_lex_state = 12}, + [1081] = {.lex_state = 686, .external_lex_state = 12}, + [1082] = {.lex_state = 66, .external_lex_state = 12}, + [1083] = {.lex_state = 686, .external_lex_state = 12}, + [1084] = {.lex_state = 66, .external_lex_state = 12}, + [1085] = {.lex_state = 66, .external_lex_state = 12}, + [1086] = {.lex_state = 686, .external_lex_state = 12}, + [1087] = {.lex_state = 686, .external_lex_state = 12}, + [1088] = {.lex_state = 686, .external_lex_state = 12}, + [1089] = {.lex_state = 686, .external_lex_state = 12}, + [1090] = {.lex_state = 686, .external_lex_state = 13}, + [1091] = {.lex_state = 686, .external_lex_state = 13}, + [1092] = {.lex_state = 686, .external_lex_state = 12}, + [1093] = {.lex_state = 686, .external_lex_state = 12}, + [1094] = {.lex_state = 239, .external_lex_state = 12}, + [1095] = {.lex_state = 686, .external_lex_state = 12}, + [1096] = {.lex_state = 686, .external_lex_state = 13}, + [1097] = {.lex_state = 686, .external_lex_state = 13}, + [1098] = {.lex_state = 686, .external_lex_state = 12}, + [1099] = {.lex_state = 239, .external_lex_state = 12}, [1100] = {.lex_state = 66, .external_lex_state = 12}, - [1101] = {.lex_state = 665, .external_lex_state = 13}, - [1102] = {.lex_state = 665, .external_lex_state = 13}, - [1103] = {.lex_state = 66, .external_lex_state = 12}, - [1104] = {.lex_state = 665, .external_lex_state = 12}, - [1105] = {.lex_state = 665, .external_lex_state = 12}, - [1106] = {.lex_state = 665, .external_lex_state = 13}, - [1107] = {.lex_state = 665, .external_lex_state = 12}, - [1108] = {.lex_state = 105, .external_lex_state = 12}, - [1109] = {.lex_state = 105, .external_lex_state = 12}, - [1110] = {.lex_state = 665, .external_lex_state = 13}, - [1111] = {.lex_state = 54, .external_lex_state = 11}, - [1112] = {.lex_state = 54, .external_lex_state = 11}, - [1113] = {.lex_state = 43, .external_lex_state = 16}, - [1114] = {.lex_state = 60, .external_lex_state = 13}, - [1115] = {.lex_state = 54, .external_lex_state = 11}, - [1116] = {.lex_state = 54, .external_lex_state = 11}, - [1117] = {.lex_state = 26, .external_lex_state = 16}, - [1118] = {.lex_state = 41, .external_lex_state = 16}, - [1119] = {.lex_state = 28, .external_lex_state = 16}, - [1120] = {.lex_state = 665, .external_lex_state = 12}, - [1121] = {.lex_state = 60, .external_lex_state = 13}, - [1122] = {.lex_state = 28, .external_lex_state = 16}, - [1123] = {.lex_state = 105, .external_lex_state = 12}, - [1124] = {.lex_state = 105, .external_lex_state = 12}, - [1125] = {.lex_state = 26, .external_lex_state = 16}, - [1126] = {.lex_state = 665, .external_lex_state = 13}, - [1127] = {.lex_state = 665, .external_lex_state = 13}, - [1128] = {.lex_state = 665, .external_lex_state = 13}, - [1129] = {.lex_state = 60, .external_lex_state = 13}, + [1101] = {.lex_state = 686, .external_lex_state = 12}, + [1102] = {.lex_state = 686, .external_lex_state = 12}, + [1103] = {.lex_state = 686, .external_lex_state = 12}, + [1104] = {.lex_state = 686, .external_lex_state = 12}, + [1105] = {.lex_state = 686, .external_lex_state = 13}, + [1106] = {.lex_state = 686, .external_lex_state = 13}, + [1107] = {.lex_state = 60, .external_lex_state = 13}, + [1108] = {.lex_state = 54, .external_lex_state = 11}, + [1109] = {.lex_state = 54, .external_lex_state = 11}, + [1110] = {.lex_state = 686, .external_lex_state = 13}, + [1111] = {.lex_state = 26, .external_lex_state = 16}, + [1112] = {.lex_state = 106, .external_lex_state = 12}, + [1113] = {.lex_state = 60, .external_lex_state = 13}, + [1114] = {.lex_state = 43, .external_lex_state = 16}, + [1115] = {.lex_state = 28, .external_lex_state = 16}, + [1116] = {.lex_state = 28, .external_lex_state = 16}, + [1117] = {.lex_state = 60, .external_lex_state = 13}, + [1118] = {.lex_state = 54, .external_lex_state = 11}, + [1119] = {.lex_state = 686, .external_lex_state = 12}, + [1120] = {.lex_state = 106, .external_lex_state = 12}, + [1121] = {.lex_state = 686, .external_lex_state = 13}, + [1122] = {.lex_state = 686, .external_lex_state = 13}, + [1123] = {.lex_state = 686, .external_lex_state = 13}, + [1124] = {.lex_state = 26, .external_lex_state = 16}, + [1125] = {.lex_state = 41, .external_lex_state = 16}, + [1126] = {.lex_state = 106, .external_lex_state = 12}, + [1127] = {.lex_state = 106, .external_lex_state = 12}, + [1128] = {.lex_state = 686, .external_lex_state = 12}, + [1129] = {.lex_state = 54, .external_lex_state = 11}, [1130] = {.lex_state = 60, .external_lex_state = 13}, [1131] = {.lex_state = 54, .external_lex_state = 11}, - [1132] = {.lex_state = 28, .external_lex_state = 16}, - [1133] = {.lex_state = 665, .external_lex_state = 12}, - [1134] = {.lex_state = 168, .external_lex_state = 12}, - [1135] = {.lex_state = 665, .external_lex_state = 13}, - [1136] = {.lex_state = 60, .external_lex_state = 13}, - [1137] = {.lex_state = 60, .external_lex_state = 13}, - [1138] = {.lex_state = 665, .external_lex_state = 13}, - [1139] = {.lex_state = 42, .external_lex_state = 19}, - [1140] = {.lex_state = 665, .external_lex_state = 13}, - [1141] = {.lex_state = 43, .external_lex_state = 16}, - [1142] = {.lex_state = 29, .external_lex_state = 19}, - [1143] = {.lex_state = 40, .external_lex_state = 19}, - [1144] = {.lex_state = 26, .external_lex_state = 16}, - [1145] = {.lex_state = 26, .external_lex_state = 16}, - [1146] = {.lex_state = 41, .external_lex_state = 16}, - [1147] = {.lex_state = 27, .external_lex_state = 19}, - [1148] = {.lex_state = 60, .external_lex_state = 13}, - [1149] = {.lex_state = 60, .external_lex_state = 13}, - [1150] = {.lex_state = 168, .external_lex_state = 12}, - [1151] = {.lex_state = 665, .external_lex_state = 13}, - [1152] = {.lex_state = 60, .external_lex_state = 13}, - [1153] = {.lex_state = 168, .external_lex_state = 13}, - [1154] = {.lex_state = 41, .external_lex_state = 16}, - [1155] = {.lex_state = 26, .external_lex_state = 16}, - [1156] = {.lex_state = 168, .external_lex_state = 13}, - [1157] = {.lex_state = 665, .external_lex_state = 13}, - [1158] = {.lex_state = 665, .external_lex_state = 13}, - [1159] = {.lex_state = 28, .external_lex_state = 16}, - [1160] = {.lex_state = 27, .external_lex_state = 19}, - [1161] = {.lex_state = 665, .external_lex_state = 12}, - [1162] = {.lex_state = 665, .external_lex_state = 13}, - [1163] = {.lex_state = 665, .external_lex_state = 13}, - [1164] = {.lex_state = 665, .external_lex_state = 13}, - [1165] = {.lex_state = 29, .external_lex_state = 19}, - [1166] = {.lex_state = 28, .external_lex_state = 16}, + [1132] = {.lex_state = 60, .external_lex_state = 13}, + [1133] = {.lex_state = 686, .external_lex_state = 13}, + [1134] = {.lex_state = 686, .external_lex_state = 13}, + [1135] = {.lex_state = 686, .external_lex_state = 13}, + [1136] = {.lex_state = 43, .external_lex_state = 16}, + [1137] = {.lex_state = 28, .external_lex_state = 16}, + [1138] = {.lex_state = 26, .external_lex_state = 16}, + [1139] = {.lex_state = 41, .external_lex_state = 16}, + [1140] = {.lex_state = 686, .external_lex_state = 13}, + [1141] = {.lex_state = 170, .external_lex_state = 12}, + [1142] = {.lex_state = 686, .external_lex_state = 13}, + [1143] = {.lex_state = 686, .external_lex_state = 12}, + [1144] = {.lex_state = 686, .external_lex_state = 13}, + [1145] = {.lex_state = 41, .external_lex_state = 16}, + [1146] = {.lex_state = 170, .external_lex_state = 13}, + [1147] = {.lex_state = 26, .external_lex_state = 16}, + [1148] = {.lex_state = 27, .external_lex_state = 19}, + [1149] = {.lex_state = 29, .external_lex_state = 19}, + [1150] = {.lex_state = 42, .external_lex_state = 19}, + [1151] = {.lex_state = 686, .external_lex_state = 13}, + [1152] = {.lex_state = 686, .external_lex_state = 13}, + [1153] = {.lex_state = 686, .external_lex_state = 13}, + [1154] = {.lex_state = 686, .external_lex_state = 12}, + [1155] = {.lex_state = 60, .external_lex_state = 13}, + [1156] = {.lex_state = 60, .external_lex_state = 13}, + [1157] = {.lex_state = 26, .external_lex_state = 16}, + [1158] = {.lex_state = 40, .external_lex_state = 19}, + [1159] = {.lex_state = 60, .external_lex_state = 13}, + [1160] = {.lex_state = 29, .external_lex_state = 19}, + [1161] = {.lex_state = 60, .external_lex_state = 13}, + [1162] = {.lex_state = 28, .external_lex_state = 16}, + [1163] = {.lex_state = 28, .external_lex_state = 16}, + [1164] = {.lex_state = 170, .external_lex_state = 12}, + [1165] = {.lex_state = 170, .external_lex_state = 13}, + [1166] = {.lex_state = 27, .external_lex_state = 19}, [1167] = {.lex_state = 43, .external_lex_state = 16}, - [1168] = {.lex_state = 105, .external_lex_state = 12}, - [1169] = {.lex_state = 60, .external_lex_state = 13}, - [1170] = {.lex_state = 54, .external_lex_state = 11}, - [1171] = {.lex_state = 40, .external_lex_state = 19}, - [1172] = {.lex_state = 54, .external_lex_state = 11}, - [1173] = {.lex_state = 27, .external_lex_state = 19}, - [1174] = {.lex_state = 665, .external_lex_state = 12}, - [1175] = {.lex_state = 665, .external_lex_state = 12}, - [1176] = {.lex_state = 27, .external_lex_state = 19}, - [1177] = {.lex_state = 105, .external_lex_state = 12}, - [1178] = {.lex_state = 665, .external_lex_state = 12}, - [1179] = {.lex_state = 60, .external_lex_state = 13}, - [1180] = {.lex_state = 40, .external_lex_state = 19}, - [1181] = {.lex_state = 60, .external_lex_state = 13}, - [1182] = {.lex_state = 27, .external_lex_state = 19}, - [1183] = {.lex_state = 105, .external_lex_state = 12}, - [1184] = {.lex_state = 665, .external_lex_state = 13}, - [1185] = {.lex_state = 105, .external_lex_state = 12}, - [1186] = {.lex_state = 168, .external_lex_state = 20}, - [1187] = {.lex_state = 42, .external_lex_state = 19}, - [1188] = {.lex_state = 60, .external_lex_state = 20}, - [1189] = {.lex_state = 29, .external_lex_state = 19}, - [1190] = {.lex_state = 30, .external_lex_state = 16}, - [1191] = {.lex_state = 47, .external_lex_state = 16}, - [1192] = {.lex_state = 54, .external_lex_state = 11}, - [1193] = {.lex_state = 665, .external_lex_state = 13}, - [1194] = {.lex_state = 29, .external_lex_state = 19}, - [1195] = {.lex_state = 30, .external_lex_state = 16}, + [1168] = {.lex_state = 27, .external_lex_state = 19}, + [1169] = {.lex_state = 106, .external_lex_state = 12}, + [1170] = {.lex_state = 60, .external_lex_state = 20}, + [1171] = {.lex_state = 60, .external_lex_state = 20}, + [1172] = {.lex_state = 106, .external_lex_state = 12}, + [1173] = {.lex_state = 54, .external_lex_state = 11}, + [1174] = {.lex_state = 60, .external_lex_state = 13}, + [1175] = {.lex_state = 686, .external_lex_state = 13}, + [1176] = {.lex_state = 60, .external_lex_state = 13}, + [1177] = {.lex_state = 686, .external_lex_state = 12}, + [1178] = {.lex_state = 686, .external_lex_state = 12}, + [1179] = {.lex_state = 686, .external_lex_state = 12}, + [1180] = {.lex_state = 60, .external_lex_state = 13}, + [1181] = {.lex_state = 29, .external_lex_state = 19}, + [1182] = {.lex_state = 686, .external_lex_state = 13}, + [1183] = {.lex_state = 54, .external_lex_state = 11}, + [1184] = {.lex_state = 32, .external_lex_state = 16}, + [1185] = {.lex_state = 54, .external_lex_state = 11}, + [1186] = {.lex_state = 106, .external_lex_state = 12}, + [1187] = {.lex_state = 60, .external_lex_state = 13}, + [1188] = {.lex_state = 60, .external_lex_state = 13}, + [1189] = {.lex_state = 45, .external_lex_state = 16}, + [1190] = {.lex_state = 170, .external_lex_state = 20}, + [1191] = {.lex_state = 30, .external_lex_state = 16}, + [1192] = {.lex_state = 60, .external_lex_state = 13}, + [1193] = {.lex_state = 42, .external_lex_state = 19}, + [1194] = {.lex_state = 54, .external_lex_state = 11}, + [1195] = {.lex_state = 60, .external_lex_state = 13}, [1196] = {.lex_state = 60, .external_lex_state = 13}, - [1197] = {.lex_state = 29, .external_lex_state = 19}, - [1198] = {.lex_state = 60, .external_lex_state = 20}, - [1199] = {.lex_state = 60, .external_lex_state = 13}, - [1200] = {.lex_state = 105, .external_lex_state = 12}, - [1201] = {.lex_state = 60, .external_lex_state = 13}, - [1202] = {.lex_state = 168, .external_lex_state = 20}, - [1203] = {.lex_state = 32, .external_lex_state = 16}, - [1204] = {.lex_state = 60, .external_lex_state = 13}, - [1205] = {.lex_state = 32, .external_lex_state = 16}, - [1206] = {.lex_state = 60, .external_lex_state = 13}, - [1207] = {.lex_state = 60, .external_lex_state = 20}, - [1208] = {.lex_state = 105, .external_lex_state = 12}, - [1209] = {.lex_state = 665, .external_lex_state = 13}, - [1210] = {.lex_state = 60, .external_lex_state = 13}, - [1211] = {.lex_state = 105, .external_lex_state = 12}, - [1212] = {.lex_state = 54, .external_lex_state = 11}, - [1213] = {.lex_state = 60, .external_lex_state = 20}, - [1214] = {.lex_state = 45, .external_lex_state = 16}, - [1215] = {.lex_state = 42, .external_lex_state = 19}, - [1216] = {.lex_state = 105, .external_lex_state = 12}, - [1217] = {.lex_state = 105, .external_lex_state = 12}, - [1218] = {.lex_state = 79, .external_lex_state = 12}, - [1219] = {.lex_state = 105, .external_lex_state = 12}, - [1220] = {.lex_state = 32, .external_lex_state = 16}, - [1221] = {.lex_state = 30, .external_lex_state = 16}, - [1222] = {.lex_state = 665, .external_lex_state = 12}, - [1223] = {.lex_state = 44, .external_lex_state = 19}, - [1224] = {.lex_state = 665, .external_lex_state = 12}, - [1225] = {.lex_state = 105, .external_lex_state = 12}, - [1226] = {.lex_state = 45, .external_lex_state = 16}, - [1227] = {.lex_state = 47, .external_lex_state = 16}, - [1228] = {.lex_state = 60, .external_lex_state = 20}, - [1229] = {.lex_state = 665, .external_lex_state = 12}, + [1197] = {.lex_state = 42, .external_lex_state = 19}, + [1198] = {.lex_state = 170, .external_lex_state = 20}, + [1199] = {.lex_state = 60, .external_lex_state = 20}, + [1200] = {.lex_state = 106, .external_lex_state = 12}, + [1201] = {.lex_state = 106, .external_lex_state = 12}, + [1202] = {.lex_state = 106, .external_lex_state = 12}, + [1203] = {.lex_state = 60, .external_lex_state = 20}, + [1204] = {.lex_state = 686, .external_lex_state = 13}, + [1205] = {.lex_state = 47, .external_lex_state = 16}, + [1206] = {.lex_state = 27, .external_lex_state = 19}, + [1207] = {.lex_state = 29, .external_lex_state = 19}, + [1208] = {.lex_state = 32, .external_lex_state = 16}, + [1209] = {.lex_state = 29, .external_lex_state = 19}, + [1210] = {.lex_state = 40, .external_lex_state = 19}, + [1211] = {.lex_state = 60, .external_lex_state = 13}, + [1212] = {.lex_state = 30, .external_lex_state = 16}, + [1213] = {.lex_state = 106, .external_lex_state = 12}, + [1214] = {.lex_state = 40, .external_lex_state = 19}, + [1215] = {.lex_state = 27, .external_lex_state = 19}, + [1216] = {.lex_state = 30, .external_lex_state = 16}, + [1217] = {.lex_state = 30, .external_lex_state = 16}, + [1218] = {.lex_state = 33, .external_lex_state = 19}, + [1219] = {.lex_state = 60, .external_lex_state = 13}, + [1220] = {.lex_state = 45, .external_lex_state = 16}, + [1221] = {.lex_state = 686, .external_lex_state = 12}, + [1222] = {.lex_state = 60, .external_lex_state = 20}, + [1223] = {.lex_state = 31, .external_lex_state = 19}, + [1224] = {.lex_state = 79, .external_lex_state = 12}, + [1225] = {.lex_state = 686, .external_lex_state = 12}, + [1226] = {.lex_state = 686, .external_lex_state = 12}, + [1227] = {.lex_state = 30, .external_lex_state = 16}, + [1228] = {.lex_state = 79, .external_lex_state = 12}, + [1229] = {.lex_state = 106, .external_lex_state = 12}, [1230] = {.lex_state = 31, .external_lex_state = 19}, - [1231] = {.lex_state = 30, .external_lex_state = 16}, - [1232] = {.lex_state = 79, .external_lex_state = 12}, - [1233] = {.lex_state = 45, .external_lex_state = 16}, - [1234] = {.lex_state = 105, .external_lex_state = 12}, - [1235] = {.lex_state = 30, .external_lex_state = 16}, + [1231] = {.lex_state = 44, .external_lex_state = 19}, + [1232] = {.lex_state = 45, .external_lex_state = 16}, + [1233] = {.lex_state = 32, .external_lex_state = 16}, + [1234] = {.lex_state = 79, .external_lex_state = 12}, + [1235] = {.lex_state = 47, .external_lex_state = 16}, [1236] = {.lex_state = 33, .external_lex_state = 19}, - [1237] = {.lex_state = 47, .external_lex_state = 16}, - [1238] = {.lex_state = 105, .external_lex_state = 12}, - [1239] = {.lex_state = 60, .external_lex_state = 13}, - [1240] = {.lex_state = 33, .external_lex_state = 19}, - [1241] = {.lex_state = 32, .external_lex_state = 16}, - [1242] = {.lex_state = 31, .external_lex_state = 19}, - [1243] = {.lex_state = 32, .external_lex_state = 16}, - [1244] = {.lex_state = 46, .external_lex_state = 19}, - [1245] = {.lex_state = 79, .external_lex_state = 12}, - [1246] = {.lex_state = 33, .external_lex_state = 19}, - [1247] = {.lex_state = 105, .external_lex_state = 12}, + [1237] = {.lex_state = 32, .external_lex_state = 16}, + [1238] = {.lex_state = 32, .external_lex_state = 16}, + [1239] = {.lex_state = 47, .external_lex_state = 16}, + [1240] = {.lex_state = 106, .external_lex_state = 12}, + [1241] = {.lex_state = 106, .external_lex_state = 12}, + [1242] = {.lex_state = 106, .external_lex_state = 12}, + [1243] = {.lex_state = 46, .external_lex_state = 19}, + [1244] = {.lex_state = 106, .external_lex_state = 12}, + [1245] = {.lex_state = 106, .external_lex_state = 12}, + [1246] = {.lex_state = 44, .external_lex_state = 19}, + [1247] = {.lex_state = 46, .external_lex_state = 19}, [1248] = {.lex_state = 60, .external_lex_state = 20}, - [1249] = {.lex_state = 23, .external_lex_state = 21}, - [1250] = {.lex_state = 44, .external_lex_state = 19}, - [1251] = {.lex_state = 60, .external_lex_state = 20}, - [1252] = {.lex_state = 665, .external_lex_state = 12}, + [1249] = {.lex_state = 106, .external_lex_state = 12}, + [1250] = {.lex_state = 33, .external_lex_state = 19}, + [1251] = {.lex_state = 46, .external_lex_state = 19}, + [1252] = {.lex_state = 106, .external_lex_state = 12}, [1253] = {.lex_state = 60, .external_lex_state = 20}, - [1254] = {.lex_state = 33, .external_lex_state = 19}, - [1255] = {.lex_state = 31, .external_lex_state = 19}, - [1256] = {.lex_state = 46, .external_lex_state = 19}, - [1257] = {.lex_state = 31, .external_lex_state = 19}, - [1258] = {.lex_state = 105, .external_lex_state = 12}, - [1259] = {.lex_state = 60, .external_lex_state = 13}, - [1260] = {.lex_state = 60, .external_lex_state = 20}, - [1261] = {.lex_state = 105, .external_lex_state = 12}, - [1262] = {.lex_state = 105, .external_lex_state = 12}, - [1263] = {.lex_state = 23, .external_lex_state = 22}, - [1264] = {.lex_state = 46, .external_lex_state = 19}, - [1265] = {.lex_state = 60, .external_lex_state = 13}, - [1266] = {.lex_state = 44, .external_lex_state = 19}, - [1267] = {.lex_state = 60, .external_lex_state = 20}, - [1268] = {.lex_state = 33, .external_lex_state = 19}, - [1269] = {.lex_state = 665, .external_lex_state = 12}, - [1270] = {.lex_state = 665, .external_lex_state = 12}, - [1271] = {.lex_state = 31, .external_lex_state = 19}, - [1272] = {.lex_state = 60, .external_lex_state = 13}, - [1273] = {.lex_state = 105, .external_lex_state = 12}, + [1254] = {.lex_state = 60, .external_lex_state = 20}, + [1255] = {.lex_state = 33, .external_lex_state = 19}, + [1256] = {.lex_state = 60, .external_lex_state = 13}, + [1257] = {.lex_state = 60, .external_lex_state = 13}, + [1258] = {.lex_state = 60, .external_lex_state = 20}, + [1259] = {.lex_state = 60, .external_lex_state = 20}, + [1260] = {.lex_state = 44, .external_lex_state = 19}, + [1261] = {.lex_state = 686, .external_lex_state = 12}, + [1262] = {.lex_state = 686, .external_lex_state = 12}, + [1263] = {.lex_state = 23, .external_lex_state = 21}, + [1264] = {.lex_state = 31, .external_lex_state = 19}, + [1265] = {.lex_state = 31, .external_lex_state = 19}, + [1266] = {.lex_state = 686, .external_lex_state = 12}, + [1267] = {.lex_state = 31, .external_lex_state = 19}, + [1268] = {.lex_state = 106, .external_lex_state = 12}, + [1269] = {.lex_state = 33, .external_lex_state = 19}, + [1270] = {.lex_state = 106, .external_lex_state = 12}, + [1271] = {.lex_state = 23, .external_lex_state = 22}, + [1272] = {.lex_state = 43, .external_lex_state = 16}, + [1273] = {.lex_state = 58, .external_lex_state = 11}, [1274] = {.lex_state = 60, .external_lex_state = 13}, - [1275] = {.lex_state = 119, .external_lex_state = 13}, - [1276] = {.lex_state = 244, .external_lex_state = 13}, - [1277] = {.lex_state = 105, .external_lex_state = 12}, - [1278] = {.lex_state = 43, .external_lex_state = 16}, - [1279] = {.lex_state = 60, .external_lex_state = 20}, - [1280] = {.lex_state = 105, .external_lex_state = 12}, - [1281] = {.lex_state = 60, .external_lex_state = 13}, - [1282] = {.lex_state = 60, .external_lex_state = 13}, + [1275] = {.lex_state = 60, .external_lex_state = 20}, + [1276] = {.lex_state = 120, .external_lex_state = 13}, + [1277] = {.lex_state = 256, .external_lex_state = 13}, + [1278] = {.lex_state = 106, .external_lex_state = 12}, + [1279] = {.lex_state = 120, .external_lex_state = 13}, + [1280] = {.lex_state = 106, .external_lex_state = 12}, + [1281] = {.lex_state = 106, .external_lex_state = 12}, + [1282] = {.lex_state = 106, .external_lex_state = 12}, [1283] = {.lex_state = 41, .external_lex_state = 16}, [1284] = {.lex_state = 60, .external_lex_state = 13}, [1285] = {.lex_state = 60, .external_lex_state = 13}, - [1286] = {.lex_state = 41, .external_lex_state = 16}, - [1287] = {.lex_state = 105, .external_lex_state = 12}, - [1288] = {.lex_state = 60, .external_lex_state = 20}, - [1289] = {.lex_state = 58, .external_lex_state = 11}, - [1290] = {.lex_state = 119, .external_lex_state = 13}, - [1291] = {.lex_state = 105, .external_lex_state = 12}, - [1292] = {.lex_state = 105, .external_lex_state = 12}, - [1293] = {.lex_state = 43, .external_lex_state = 16}, - [1294] = {.lex_state = 194, .external_lex_state = 12}, - [1295] = {.lex_state = 119, .external_lex_state = 13}, - [1296] = {.lex_state = 167, .external_lex_state = 12}, - [1297] = {.lex_state = 60, .external_lex_state = 20}, - [1298] = {.lex_state = 242, .external_lex_state = 12}, - [1299] = {.lex_state = 122, .external_lex_state = 12}, - [1300] = {.lex_state = 42, .external_lex_state = 19}, - [1301] = {.lex_state = 60, .external_lex_state = 20}, - [1302] = {.lex_state = 242, .external_lex_state = 12}, - [1303] = {.lex_state = 194, .external_lex_state = 12}, - [1304] = {.lex_state = 196, .external_lex_state = 13}, - [1305] = {.lex_state = 244, .external_lex_state = 13}, - [1306] = {.lex_state = 242, .external_lex_state = 12}, - [1307] = {.lex_state = 119, .external_lex_state = 13}, - [1308] = {.lex_state = 119, .external_lex_state = 13}, - [1309] = {.lex_state = 42, .external_lex_state = 19}, - [1310] = {.lex_state = 196, .external_lex_state = 13}, - [1311] = {.lex_state = 60, .external_lex_state = 20}, - [1312] = {.lex_state = 242, .external_lex_state = 12}, - [1313] = {.lex_state = 60, .external_lex_state = 20}, - [1314] = {.lex_state = 60, .external_lex_state = 20}, - [1315] = {.lex_state = 60, .external_lex_state = 20}, - [1316] = {.lex_state = 244, .external_lex_state = 13}, - [1317] = {.lex_state = 242, .external_lex_state = 12}, - [1318] = {.lex_state = 167, .external_lex_state = 13}, - [1319] = {.lex_state = 122, .external_lex_state = 12}, - [1320] = {.lex_state = 192, .external_lex_state = 12}, + [1286] = {.lex_state = 60, .external_lex_state = 13}, + [1287] = {.lex_state = 106, .external_lex_state = 12}, + [1288] = {.lex_state = 60, .external_lex_state = 13}, + [1289] = {.lex_state = 43, .external_lex_state = 16}, + [1290] = {.lex_state = 106, .external_lex_state = 12}, + [1291] = {.lex_state = 41, .external_lex_state = 16}, + [1292] = {.lex_state = 60, .external_lex_state = 20}, + [1293] = {.lex_state = 60, .external_lex_state = 13}, + [1294] = {.lex_state = 254, .external_lex_state = 12}, + [1295] = {.lex_state = 254, .external_lex_state = 12}, + [1296] = {.lex_state = 42, .external_lex_state = 19}, + [1297] = {.lex_state = 42, .external_lex_state = 19}, + [1298] = {.lex_state = 254, .external_lex_state = 12}, + [1299] = {.lex_state = 254, .external_lex_state = 12}, + [1300] = {.lex_state = 120, .external_lex_state = 13}, + [1301] = {.lex_state = 123, .external_lex_state = 12}, + [1302] = {.lex_state = 123, .external_lex_state = 12}, + [1303] = {.lex_state = 256, .external_lex_state = 13}, + [1304] = {.lex_state = 40, .external_lex_state = 19}, + [1305] = {.lex_state = 254, .external_lex_state = 12}, + [1306] = {.lex_state = 196, .external_lex_state = 12}, + [1307] = {.lex_state = 60, .external_lex_state = 20}, + [1308] = {.lex_state = 60, .external_lex_state = 20}, + [1309] = {.lex_state = 120, .external_lex_state = 13}, + [1310] = {.lex_state = 198, .external_lex_state = 13}, + [1311] = {.lex_state = 120, .external_lex_state = 13}, + [1312] = {.lex_state = 198, .external_lex_state = 13}, + [1313] = {.lex_state = 256, .external_lex_state = 13}, + [1314] = {.lex_state = 240, .external_lex_state = 13}, + [1315] = {.lex_state = 194, .external_lex_state = 12}, + [1316] = {.lex_state = 60, .external_lex_state = 20}, + [1317] = {.lex_state = 199, .external_lex_state = 12}, + [1318] = {.lex_state = 60, .external_lex_state = 20}, + [1319] = {.lex_state = 60, .external_lex_state = 20}, + [1320] = {.lex_state = 196, .external_lex_state = 12}, [1321] = {.lex_state = 40, .external_lex_state = 19}, - [1322] = {.lex_state = 40, .external_lex_state = 19}, - [1323] = {.lex_state = 242, .external_lex_state = 12}, - [1324] = {.lex_state = 192, .external_lex_state = 12}, - [1325] = {.lex_state = 45, .external_lex_state = 16}, - [1326] = {.lex_state = 122, .external_lex_state = 12}, - [1327] = {.lex_state = 195, .external_lex_state = 12}, - [1328] = {.lex_state = 195, .external_lex_state = 12}, - [1329] = {.lex_state = 192, .external_lex_state = 12}, - [1330] = {.lex_state = 665, .external_lex_state = 12}, - [1331] = {.lex_state = 122, .external_lex_state = 12}, - [1332] = {.lex_state = 47, .external_lex_state = 16}, - [1333] = {.lex_state = 47, .external_lex_state = 16}, - [1334] = {.lex_state = 122, .external_lex_state = 12}, - [1335] = {.lex_state = 665, .external_lex_state = 12}, - [1336] = {.lex_state = 45, .external_lex_state = 16}, - [1337] = {.lex_state = 120, .external_lex_state = 13}, - [1338] = {.lex_state = 245, .external_lex_state = 13}, - [1339] = {.lex_state = 120, .external_lex_state = 13}, - [1340] = {.lex_state = 665, .external_lex_state = 12}, - [1341] = {.lex_state = 124, .external_lex_state = 12}, - [1342] = {.lex_state = 196, .external_lex_state = 13}, - [1343] = {.lex_state = 128, .external_lex_state = 13}, - [1344] = {.lex_state = 44, .external_lex_state = 19}, - [1345] = {.lex_state = 44, .external_lex_state = 19}, - [1346] = {.lex_state = 140, .external_lex_state = 13}, - [1347] = {.lex_state = 128, .external_lex_state = 13}, - [1348] = {.lex_state = 140, .external_lex_state = 12}, - [1349] = {.lex_state = 140, .external_lex_state = 12}, - [1350] = {.lex_state = 140, .external_lex_state = 13}, - [1351] = {.lex_state = 128, .external_lex_state = 13}, - [1352] = {.lex_state = 123, .external_lex_state = 12}, - [1353] = {.lex_state = 140, .external_lex_state = 13}, - [1354] = {.lex_state = 194, .external_lex_state = 12}, - [1355] = {.lex_state = 126, .external_lex_state = 12}, - [1356] = {.lex_state = 120, .external_lex_state = 23}, - [1357] = {.lex_state = 126, .external_lex_state = 12}, - [1358] = {.lex_state = 121, .external_lex_state = 12}, - [1359] = {.lex_state = 120, .external_lex_state = 13}, - [1360] = {.lex_state = 245, .external_lex_state = 13}, - [1361] = {.lex_state = 665, .external_lex_state = 13}, - [1362] = {.lex_state = 140, .external_lex_state = 12}, - [1363] = {.lex_state = 140, .external_lex_state = 12}, - [1364] = {.lex_state = 665, .external_lex_state = 12}, + [1322] = {.lex_state = 60, .external_lex_state = 20}, + [1323] = {.lex_state = 254, .external_lex_state = 12}, + [1324] = {.lex_state = 47, .external_lex_state = 16}, + [1325] = {.lex_state = 203, .external_lex_state = 12}, + [1326] = {.lex_state = 47, .external_lex_state = 16}, + [1327] = {.lex_state = 203, .external_lex_state = 12}, + [1328] = {.lex_state = 686, .external_lex_state = 12}, + [1329] = {.lex_state = 200, .external_lex_state = 12}, + [1330] = {.lex_state = 278, .external_lex_state = 13}, + [1331] = {.lex_state = 278, .external_lex_state = 13}, + [1332] = {.lex_state = 278, .external_lex_state = 13}, + [1333] = {.lex_state = 45, .external_lex_state = 16}, + [1334] = {.lex_state = 45, .external_lex_state = 16}, + [1335] = {.lex_state = 278, .external_lex_state = 13}, + [1336] = {.lex_state = 278, .external_lex_state = 13}, + [1337] = {.lex_state = 686, .external_lex_state = 12}, + [1338] = {.lex_state = 194, .external_lex_state = 12}, + [1339] = {.lex_state = 686, .external_lex_state = 12}, + [1340] = {.lex_state = 123, .external_lex_state = 12}, + [1341] = {.lex_state = 123, .external_lex_state = 12}, + [1342] = {.lex_state = 194, .external_lex_state = 12}, + [1343] = {.lex_state = 121, .external_lex_state = 13}, + [1344] = {.lex_state = 203, .external_lex_state = 12}, + [1345] = {.lex_state = 203, .external_lex_state = 12}, + [1346] = {.lex_state = 203, .external_lex_state = 12}, + [1347] = {.lex_state = 197, .external_lex_state = 12}, + [1348] = {.lex_state = 257, .external_lex_state = 13}, + [1349] = {.lex_state = 123, .external_lex_state = 12}, + [1350] = {.lex_state = 197, .external_lex_state = 12}, + [1351] = {.lex_state = 121, .external_lex_state = 13}, + [1352] = {.lex_state = 125, .external_lex_state = 13}, + [1353] = {.lex_state = 122, .external_lex_state = 12}, + [1354] = {.lex_state = 253, .external_lex_state = 12}, + [1355] = {.lex_state = 131, .external_lex_state = 12}, + [1356] = {.lex_state = 127, .external_lex_state = 13}, + [1357] = {.lex_state = 46, .external_lex_state = 19}, + [1358] = {.lex_state = 129, .external_lex_state = 12}, + [1359] = {.lex_state = 129, .external_lex_state = 12}, + [1360] = {.lex_state = 46, .external_lex_state = 19}, + [1361] = {.lex_state = 204, .external_lex_state = 12}, + [1362] = {.lex_state = 121, .external_lex_state = 23}, + [1363] = {.lex_state = 686, .external_lex_state = 12}, + [1364] = {.lex_state = 686, .external_lex_state = 13}, [1365] = {.lex_state = 124, .external_lex_state = 12}, - [1366] = {.lex_state = 126, .external_lex_state = 12}, - [1367] = {.lex_state = 126, .external_lex_state = 12}, - [1368] = {.lex_state = 665, .external_lex_state = 13}, - [1369] = {.lex_state = 241, .external_lex_state = 12}, - [1370] = {.lex_state = 124, .external_lex_state = 12}, - [1371] = {.lex_state = 46, .external_lex_state = 19}, - [1372] = {.lex_state = 665, .external_lex_state = 12}, - [1373] = {.lex_state = 46, .external_lex_state = 19}, - [1374] = {.lex_state = 246, .external_lex_state = 12}, - [1375] = {.lex_state = 130, .external_lex_state = 13}, - [1376] = {.lex_state = 128, .external_lex_state = 13}, - [1377] = {.lex_state = 130, .external_lex_state = 13}, - [1378] = {.lex_state = 130, .external_lex_state = 13}, - [1379] = {.lex_state = 130, .external_lex_state = 13}, - [1380] = {.lex_state = 121, .external_lex_state = 12}, - [1381] = {.lex_state = 140, .external_lex_state = 12}, - [1382] = {.lex_state = 140, .external_lex_state = 12}, - [1383] = {.lex_state = 120, .external_lex_state = 13}, - [1384] = {.lex_state = 120, .external_lex_state = 13}, - [1385] = {.lex_state = 124, .external_lex_state = 12}, - [1386] = {.lex_state = 140, .external_lex_state = 12}, - [1387] = {.lex_state = 140, .external_lex_state = 12}, - [1388] = {.lex_state = 241, .external_lex_state = 12}, - [1389] = {.lex_state = 245, .external_lex_state = 13}, - [1390] = {.lex_state = 120, .external_lex_state = 23}, - [1391] = {.lex_state = 124, .external_lex_state = 12}, - [1392] = {.lex_state = 245, .external_lex_state = 23}, - [1393] = {.lex_state = 665, .external_lex_state = 13}, - [1394] = {.lex_state = 140, .external_lex_state = 12}, - [1395] = {.lex_state = 140, .external_lex_state = 12}, - [1396] = {.lex_state = 665, .external_lex_state = 12}, - [1397] = {.lex_state = 241, .external_lex_state = 12}, - [1398] = {.lex_state = 126, .external_lex_state = 12}, - [1399] = {.lex_state = 140, .external_lex_state = 13}, - [1400] = {.lex_state = 140, .external_lex_state = 13}, - [1401] = {.lex_state = 140, .external_lex_state = 13}, - [1402] = {.lex_state = 134, .external_lex_state = 12}, - [1403] = {.lex_state = 128, .external_lex_state = 13}, - [1404] = {.lex_state = 130, .external_lex_state = 13}, - [1405] = {.lex_state = 123, .external_lex_state = 12}, - [1406] = {.lex_state = 136, .external_lex_state = 13}, - [1407] = {.lex_state = 193, .external_lex_state = 12}, - [1408] = {.lex_state = 140, .external_lex_state = 13}, - [1409] = {.lex_state = 140, .external_lex_state = 13}, - [1410] = {.lex_state = 140, .external_lex_state = 13}, - [1411] = {.lex_state = 140, .external_lex_state = 13}, - [1412] = {.lex_state = 246, .external_lex_state = 12}, - [1413] = {.lex_state = 39, .external_lex_state = 12}, - [1414] = {.lex_state = 128, .external_lex_state = 12}, - [1415] = {.lex_state = 128, .external_lex_state = 12}, - [1416] = {.lex_state = 140, .external_lex_state = 13}, - [1417] = {.lex_state = 128, .external_lex_state = 12}, - [1418] = {.lex_state = 128, .external_lex_state = 12}, - [1419] = {.lex_state = 136, .external_lex_state = 12}, - [1420] = {.lex_state = 130, .external_lex_state = 12}, - [1421] = {.lex_state = 140, .external_lex_state = 13}, - [1422] = {.lex_state = 130, .external_lex_state = 12}, - [1423] = {.lex_state = 130, .external_lex_state = 12}, - [1424] = {.lex_state = 132, .external_lex_state = 13}, - [1425] = {.lex_state = 130, .external_lex_state = 12}, - [1426] = {.lex_state = 132, .external_lex_state = 13}, - [1427] = {.lex_state = 39, .external_lex_state = 12}, - [1428] = {.lex_state = 130, .external_lex_state = 12}, - [1429] = {.lex_state = 245, .external_lex_state = 23}, - [1430] = {.lex_state = 120, .external_lex_state = 23}, - [1431] = {.lex_state = 120, .external_lex_state = 23}, - [1432] = {.lex_state = 197, .external_lex_state = 12}, - [1433] = {.lex_state = 132, .external_lex_state = 13}, - [1434] = {.lex_state = 39, .external_lex_state = 12}, - [1435] = {.lex_state = 132, .external_lex_state = 13}, - [1436] = {.lex_state = 132, .external_lex_state = 13}, - [1437] = {.lex_state = 197, .external_lex_state = 12}, - [1438] = {.lex_state = 193, .external_lex_state = 12}, - [1439] = {.lex_state = 123, .external_lex_state = 12}, - [1440] = {.lex_state = 123, .external_lex_state = 12}, - [1441] = {.lex_state = 121, .external_lex_state = 12}, - [1442] = {.lex_state = 245, .external_lex_state = 23}, - [1443] = {.lex_state = 246, .external_lex_state = 12}, - [1444] = {.lex_state = 120, .external_lex_state = 23}, - [1445] = {.lex_state = 197, .external_lex_state = 12}, - [1446] = {.lex_state = 195, .external_lex_state = 12}, - [1447] = {.lex_state = 193, .external_lex_state = 12}, - [1448] = {.lex_state = 123, .external_lex_state = 12}, - [1449] = {.lex_state = 121, .external_lex_state = 12}, - [1450] = {.lex_state = 121, .external_lex_state = 12}, - [1451] = {.lex_state = 128, .external_lex_state = 12}, - [1452] = {.lex_state = 665, .external_lex_state = 13}, - [1453] = {.lex_state = 140, .external_lex_state = 12}, - [1454] = {.lex_state = 133, .external_lex_state = 12}, - [1455] = {.lex_state = 133, .external_lex_state = 12}, - [1456] = {.lex_state = 133, .external_lex_state = 12}, - [1457] = {.lex_state = 197, .external_lex_state = 12}, - [1458] = {.lex_state = 665, .external_lex_state = 12}, - [1459] = {.lex_state = 140, .external_lex_state = 12}, - [1460] = {.lex_state = 197, .external_lex_state = 12}, - [1461] = {.lex_state = 197, .external_lex_state = 12}, - [1462] = {.lex_state = 133, .external_lex_state = 12}, - [1463] = {.lex_state = 133, .external_lex_state = 12}, - [1464] = {.lex_state = 35, .external_lex_state = 24}, - [1465] = {.lex_state = 243, .external_lex_state = 12}, - [1466] = {.lex_state = 665, .external_lex_state = 13}, - [1467] = {.lex_state = 243, .external_lex_state = 12}, - [1468] = {.lex_state = 665, .external_lex_state = 13}, - [1469] = {.lex_state = 665, .external_lex_state = 13}, - [1470] = {.lex_state = 665, .external_lex_state = 12}, - [1471] = {.lex_state = 140, .external_lex_state = 12}, - [1472] = {.lex_state = 140, .external_lex_state = 13}, - [1473] = {.lex_state = 665, .external_lex_state = 12}, - [1474] = {.lex_state = 665, .external_lex_state = 12}, - [1475] = {.lex_state = 140, .external_lex_state = 12}, - [1476] = {.lex_state = 657, .external_lex_state = 13}, - [1477] = {.lex_state = 132, .external_lex_state = 12}, - [1478] = {.lex_state = 107, .external_lex_state = 25}, - [1479] = {.lex_state = 107, .external_lex_state = 25}, - [1480] = {.lex_state = 665, .external_lex_state = 12}, - [1481] = {.lex_state = 665, .external_lex_state = 12}, - [1482] = {.lex_state = 243, .external_lex_state = 12}, - [1483] = {.lex_state = 665, .external_lex_state = 13}, - [1484] = {.lex_state = 244, .external_lex_state = 13}, - [1485] = {.lex_state = 243, .external_lex_state = 12}, - [1486] = {.lex_state = 244, .external_lex_state = 13}, - [1487] = {.lex_state = 665, .external_lex_state = 13}, - [1488] = {.lex_state = 243, .external_lex_state = 12}, - [1489] = {.lex_state = 243, .external_lex_state = 12}, - [1490] = {.lex_state = 243, .external_lex_state = 12}, - [1491] = {.lex_state = 665, .external_lex_state = 13}, - [1492] = {.lex_state = 243, .external_lex_state = 12}, - [1493] = {.lex_state = 243, .external_lex_state = 12}, - [1494] = {.lex_state = 132, .external_lex_state = 12}, - [1495] = {.lex_state = 665, .external_lex_state = 12}, - [1496] = {.lex_state = 140, .external_lex_state = 12}, - [1497] = {.lex_state = 657, .external_lex_state = 13}, - [1498] = {.lex_state = 243, .external_lex_state = 12}, - [1499] = {.lex_state = 665, .external_lex_state = 12}, - [1500] = {.lex_state = 665, .external_lex_state = 12}, - [1501] = {.lex_state = 665, .external_lex_state = 12}, - [1502] = {.lex_state = 665, .external_lex_state = 12}, - [1503] = {.lex_state = 665, .external_lex_state = 12}, - [1504] = {.lex_state = 665, .external_lex_state = 12}, - [1505] = {.lex_state = 184, .external_lex_state = 12}, - [1506] = {.lex_state = 243, .external_lex_state = 12}, - [1507] = {.lex_state = 243, .external_lex_state = 12}, - [1508] = {.lex_state = 243, .external_lex_state = 12}, - [1509] = {.lex_state = 243, .external_lex_state = 12}, - [1510] = {.lex_state = 657, .external_lex_state = 13}, - [1511] = {.lex_state = 243, .external_lex_state = 12}, - [1512] = {.lex_state = 657, .external_lex_state = 12}, - [1513] = {.lex_state = 243, .external_lex_state = 12}, - [1514] = {.lex_state = 243, .external_lex_state = 12}, - [1515] = {.lex_state = 24, .external_lex_state = 16}, - [1516] = {.lex_state = 657, .external_lex_state = 12}, - [1517] = {.lex_state = 243, .external_lex_state = 12}, - [1518] = {.lex_state = 243, .external_lex_state = 12}, - [1519] = {.lex_state = 139, .external_lex_state = 12}, - [1520] = {.lex_state = 658, .external_lex_state = 13}, - [1521] = {.lex_state = 243, .external_lex_state = 12}, - [1522] = {.lex_state = 243, .external_lex_state = 12}, - [1523] = {.lex_state = 139, .external_lex_state = 12}, - [1524] = {.lex_state = 132, .external_lex_state = 12}, - [1525] = {.lex_state = 657, .external_lex_state = 12}, - [1526] = {.lex_state = 243, .external_lex_state = 12}, - [1527] = {.lex_state = 646, .external_lex_state = 18}, - [1528] = {.lex_state = 658, .external_lex_state = 12}, - [1529] = {.lex_state = 243, .external_lex_state = 12}, - [1530] = {.lex_state = 646, .external_lex_state = 18}, - [1531] = {.lex_state = 243, .external_lex_state = 12}, - [1532] = {.lex_state = 658, .external_lex_state = 12}, - [1533] = {.lex_state = 658, .external_lex_state = 12}, - [1534] = {.lex_state = 655, .external_lex_state = 12}, - [1535] = {.lex_state = 243, .external_lex_state = 12}, - [1536] = {.lex_state = 243, .external_lex_state = 12}, - [1537] = {.lex_state = 665, .external_lex_state = 13}, - [1538] = {.lex_state = 243, .external_lex_state = 12}, - [1539] = {.lex_state = 243, .external_lex_state = 12}, - [1540] = {.lex_state = 36, .external_lex_state = 26}, - [1541] = {.lex_state = 184, .external_lex_state = 12}, - [1542] = {.lex_state = 646, .external_lex_state = 18}, - [1543] = {.lex_state = 243, .external_lex_state = 12}, - [1544] = {.lex_state = 665, .external_lex_state = 13}, - [1545] = {.lex_state = 665, .external_lex_state = 13}, - [1546] = {.lex_state = 140, .external_lex_state = 12}, - [1547] = {.lex_state = 665, .external_lex_state = 13}, - [1548] = {.lex_state = 24, .external_lex_state = 16}, - [1549] = {.lex_state = 658, .external_lex_state = 13}, - [1550] = {.lex_state = 36, .external_lex_state = 26}, - [1551] = {.lex_state = 36, .external_lex_state = 26}, - [1552] = {.lex_state = 140, .external_lex_state = 13}, - [1553] = {.lex_state = 243, .external_lex_state = 12}, - [1554] = {.lex_state = 107, .external_lex_state = 25}, - [1555] = {.lex_state = 665, .external_lex_state = 13}, - [1556] = {.lex_state = 140, .external_lex_state = 12}, - [1557] = {.lex_state = 139, .external_lex_state = 12}, - [1558] = {.lex_state = 107, .external_lex_state = 25}, - [1559] = {.lex_state = 24, .external_lex_state = 16}, - [1560] = {.lex_state = 140, .external_lex_state = 12}, - [1561] = {.lex_state = 655, .external_lex_state = 12}, - [1562] = {.lex_state = 48, .external_lex_state = 27}, - [1563] = {.lex_state = 665, .external_lex_state = 13}, - [1564] = {.lex_state = 243, .external_lex_state = 12}, - [1565] = {.lex_state = 107, .external_lex_state = 25}, - [1566] = {.lex_state = 243, .external_lex_state = 12}, - [1567] = {.lex_state = 24, .external_lex_state = 16}, - [1568] = {.lex_state = 658, .external_lex_state = 13}, - [1569] = {.lex_state = 35, .external_lex_state = 24}, - [1570] = {.lex_state = 107, .external_lex_state = 25}, - [1571] = {.lex_state = 35, .external_lex_state = 24}, - [1572] = {.lex_state = 132, .external_lex_state = 12}, - [1573] = {.lex_state = 107, .external_lex_state = 25}, - [1574] = {.lex_state = 36, .external_lex_state = 26}, - [1575] = {.lex_state = 36, .external_lex_state = 26}, - [1576] = {.lex_state = 646, .external_lex_state = 17}, - [1577] = {.lex_state = 140, .external_lex_state = 12}, - [1578] = {.lex_state = 132, .external_lex_state = 12}, - [1579] = {.lex_state = 140, .external_lex_state = 12}, - [1580] = {.lex_state = 140, .external_lex_state = 13}, - [1581] = {.lex_state = 243, .external_lex_state = 12}, - [1582] = {.lex_state = 243, .external_lex_state = 12}, - [1583] = {.lex_state = 107, .external_lex_state = 25}, - [1584] = {.lex_state = 243, .external_lex_state = 12}, - [1585] = {.lex_state = 243, .external_lex_state = 12}, - [1586] = {.lex_state = 243, .external_lex_state = 12}, - [1587] = {.lex_state = 35, .external_lex_state = 24}, - [1588] = {.lex_state = 35, .external_lex_state = 24}, - [1589] = {.lex_state = 646, .external_lex_state = 17}, - [1590] = {.lex_state = 48, .external_lex_state = 28}, - [1591] = {.lex_state = 243, .external_lex_state = 12}, - [1592] = {.lex_state = 655, .external_lex_state = 12}, - [1593] = {.lex_state = 107, .external_lex_state = 25}, - [1594] = {.lex_state = 243, .external_lex_state = 12}, - [1595] = {.lex_state = 646, .external_lex_state = 17}, - [1596] = {.lex_state = 184, .external_lex_state = 12}, - [1597] = {.lex_state = 104, .external_lex_state = 12}, - [1598] = {.lex_state = 129, .external_lex_state = 13}, - [1599] = {.lex_state = 243, .external_lex_state = 12}, - [1600] = {.lex_state = 243, .external_lex_state = 12}, - [1601] = {.lex_state = 129, .external_lex_state = 13}, - [1602] = {.lex_state = 184, .external_lex_state = 12}, - [1603] = {.lex_state = 243, .external_lex_state = 12}, - [1604] = {.lex_state = 243, .external_lex_state = 12}, - [1605] = {.lex_state = 192, .external_lex_state = 12}, - [1606] = {.lex_state = 200, .external_lex_state = 12}, - [1607] = {.lex_state = 24, .external_lex_state = 19}, - [1608] = {.lex_state = 243, .external_lex_state = 12}, - [1609] = {.lex_state = 192, .external_lex_state = 12}, - [1610] = {.lex_state = 104, .external_lex_state = 12}, - [1611] = {.lex_state = 23, .external_lex_state = 18}, - [1612] = {.lex_state = 184, .external_lex_state = 12}, - [1613] = {.lex_state = 24, .external_lex_state = 19}, - [1614] = {.lex_state = 243, .external_lex_state = 12}, - [1615] = {.lex_state = 23, .external_lex_state = 18}, - [1616] = {.lex_state = 23, .external_lex_state = 17}, - [1617] = {.lex_state = 24, .external_lex_state = 16}, - [1618] = {.lex_state = 125, .external_lex_state = 12}, - [1619] = {.lex_state = 184, .external_lex_state = 12}, - [1620] = {.lex_state = 24, .external_lex_state = 16}, - [1621] = {.lex_state = 243, .external_lex_state = 12}, - [1622] = {.lex_state = 243, .external_lex_state = 12}, - [1623] = {.lex_state = 48, .external_lex_state = 27}, - [1624] = {.lex_state = 24, .external_lex_state = 16}, - [1625] = {.lex_state = 24, .external_lex_state = 16}, - [1626] = {.lex_state = 23, .external_lex_state = 18}, - [1627] = {.lex_state = 23, .external_lex_state = 17}, - [1628] = {.lex_state = 23, .external_lex_state = 29}, - [1629] = {.lex_state = 184, .external_lex_state = 12}, - [1630] = {.lex_state = 34, .external_lex_state = 24}, - [1631] = {.lex_state = 34, .external_lex_state = 24}, - [1632] = {.lex_state = 24, .external_lex_state = 16}, - [1633] = {.lex_state = 243, .external_lex_state = 12}, - [1634] = {.lex_state = 48, .external_lex_state = 28}, - [1635] = {.lex_state = 24, .external_lex_state = 19}, - [1636] = {.lex_state = 34, .external_lex_state = 24}, - [1637] = {.lex_state = 243, .external_lex_state = 12}, - [1638] = {.lex_state = 34, .external_lex_state = 24}, - [1639] = {.lex_state = 48, .external_lex_state = 28}, - [1640] = {.lex_state = 200, .external_lex_state = 12}, - [1641] = {.lex_state = 34, .external_lex_state = 24}, - [1642] = {.lex_state = 125, .external_lex_state = 12}, - [1643] = {.lex_state = 129, .external_lex_state = 13}, - [1644] = {.lex_state = 125, .external_lex_state = 12}, - [1645] = {.lex_state = 23, .external_lex_state = 29}, - [1646] = {.lex_state = 24, .external_lex_state = 16}, - [1647] = {.lex_state = 200, .external_lex_state = 12}, - [1648] = {.lex_state = 243, .external_lex_state = 12}, - [1649] = {.lex_state = 24, .external_lex_state = 19}, - [1650] = {.lex_state = 24, .external_lex_state = 16}, - [1651] = {.lex_state = 243, .external_lex_state = 12}, - [1652] = {.lex_state = 23, .external_lex_state = 17}, - [1653] = {.lex_state = 129, .external_lex_state = 13}, - [1654] = {.lex_state = 129, .external_lex_state = 13}, - [1655] = {.lex_state = 243, .external_lex_state = 12}, - [1656] = {.lex_state = 200, .external_lex_state = 12}, - [1657] = {.lex_state = 243, .external_lex_state = 12}, - [1658] = {.lex_state = 125, .external_lex_state = 12}, - [1659] = {.lex_state = 125, .external_lex_state = 12}, - [1660] = {.lex_state = 129, .external_lex_state = 12}, - [1661] = {.lex_state = 665, .external_lex_state = 13}, - [1662] = {.lex_state = 48, .external_lex_state = 28}, - [1663] = {.lex_state = 268, .external_lex_state = 12}, - [1664] = {.lex_state = 140, .external_lex_state = 12}, - [1665] = {.lex_state = 655, .external_lex_state = 12}, - [1666] = {.lex_state = 24, .external_lex_state = 19}, - [1667] = {.lex_state = 3, .external_lex_state = 13}, - [1668] = {.lex_state = 243, .external_lex_state = 12}, - [1669] = {.lex_state = 5, .external_lex_state = 13}, - [1670] = {.lex_state = 657, .external_lex_state = 13}, - [1671] = {.lex_state = 24, .external_lex_state = 19}, - [1672] = {.lex_state = 184, .external_lex_state = 12}, - [1673] = {.lex_state = 24, .external_lex_state = 19}, - [1674] = {.lex_state = 665, .external_lex_state = 13}, - [1675] = {.lex_state = 243, .external_lex_state = 12}, - [1676] = {.lex_state = 658, .external_lex_state = 12}, - [1677] = {.lex_state = 3, .external_lex_state = 12}, - [1678] = {.lex_state = 24, .external_lex_state = 16}, - [1679] = {.lex_state = 3, .external_lex_state = 12}, - [1680] = {.lex_state = 657, .external_lex_state = 12}, - [1681] = {.lex_state = 658, .external_lex_state = 12}, - [1682] = {.lex_state = 665, .external_lex_state = 12}, - [1683] = {.lex_state = 105, .external_lex_state = 12}, - [1684] = {.lex_state = 104, .external_lex_state = 12}, - [1685] = {.lex_state = 657, .external_lex_state = 12}, - [1686] = {.lex_state = 60, .external_lex_state = 13}, - [1687] = {.lex_state = 197, .external_lex_state = 12}, - [1688] = {.lex_state = 24, .external_lex_state = 19}, - [1689] = {.lex_state = 243, .external_lex_state = 12}, - [1690] = {.lex_state = 129, .external_lex_state = 12}, - [1691] = {.lex_state = 655, .external_lex_state = 12}, - [1692] = {.lex_state = 129, .external_lex_state = 12}, - [1693] = {.lex_state = 646, .external_lex_state = 18}, - [1694] = {.lex_state = 24, .external_lex_state = 16}, - [1695] = {.lex_state = 184, .external_lex_state = 12}, - [1696] = {.lex_state = 243, .external_lex_state = 12}, - [1697] = {.lex_state = 104, .external_lex_state = 12}, - [1698] = {.lex_state = 23, .external_lex_state = 12}, - [1699] = {.lex_state = 3, .external_lex_state = 12}, - [1700] = {.lex_state = 646, .external_lex_state = 17}, - [1701] = {.lex_state = 160, .external_lex_state = 12}, - [1702] = {.lex_state = 129, .external_lex_state = 12}, - [1703] = {.lex_state = 129, .external_lex_state = 12}, + [1366] = {.lex_state = 195, .external_lex_state = 12}, + [1367] = {.lex_state = 205, .external_lex_state = 12}, + [1368] = {.lex_state = 204, .external_lex_state = 12}, + [1369] = {.lex_state = 204, .external_lex_state = 12}, + [1370] = {.lex_state = 137, .external_lex_state = 13}, + [1371] = {.lex_state = 279, .external_lex_state = 13}, + [1372] = {.lex_state = 121, .external_lex_state = 13}, + [1373] = {.lex_state = 131, .external_lex_state = 12}, + [1374] = {.lex_state = 196, .external_lex_state = 12}, + [1375] = {.lex_state = 131, .external_lex_state = 12}, + [1376] = {.lex_state = 129, .external_lex_state = 12}, + [1377] = {.lex_state = 124, .external_lex_state = 12}, + [1378] = {.lex_state = 44, .external_lex_state = 19}, + [1379] = {.lex_state = 205, .external_lex_state = 12}, + [1380] = {.lex_state = 44, .external_lex_state = 19}, + [1381] = {.lex_state = 253, .external_lex_state = 12}, + [1382] = {.lex_state = 129, .external_lex_state = 12}, + [1383] = {.lex_state = 279, .external_lex_state = 13}, + [1384] = {.lex_state = 257, .external_lex_state = 23}, + [1385] = {.lex_state = 121, .external_lex_state = 23}, + [1386] = {.lex_state = 125, .external_lex_state = 13}, + [1387] = {.lex_state = 686, .external_lex_state = 12}, + [1388] = {.lex_state = 125, .external_lex_state = 13}, + [1389] = {.lex_state = 204, .external_lex_state = 12}, + [1390] = {.lex_state = 204, .external_lex_state = 12}, + [1391] = {.lex_state = 240, .external_lex_state = 12}, + [1392] = {.lex_state = 129, .external_lex_state = 12}, + [1393] = {.lex_state = 198, .external_lex_state = 13}, + [1394] = {.lex_state = 127, .external_lex_state = 13}, + [1395] = {.lex_state = 686, .external_lex_state = 12}, + [1396] = {.lex_state = 205, .external_lex_state = 12}, + [1397] = {.lex_state = 127, .external_lex_state = 13}, + [1398] = {.lex_state = 257, .external_lex_state = 13}, + [1399] = {.lex_state = 131, .external_lex_state = 12}, + [1400] = {.lex_state = 686, .external_lex_state = 13}, + [1401] = {.lex_state = 279, .external_lex_state = 13}, + [1402] = {.lex_state = 253, .external_lex_state = 12}, + [1403] = {.lex_state = 131, .external_lex_state = 12}, + [1404] = {.lex_state = 125, .external_lex_state = 13}, + [1405] = {.lex_state = 125, .external_lex_state = 13}, + [1406] = {.lex_state = 127, .external_lex_state = 13}, + [1407] = {.lex_state = 141, .external_lex_state = 12}, + [1408] = {.lex_state = 141, .external_lex_state = 12}, + [1409] = {.lex_state = 686, .external_lex_state = 13}, + [1410] = {.lex_state = 127, .external_lex_state = 13}, + [1411] = {.lex_state = 122, .external_lex_state = 12}, + [1412] = {.lex_state = 141, .external_lex_state = 12}, + [1413] = {.lex_state = 143, .external_lex_state = 13}, + [1414] = {.lex_state = 135, .external_lex_state = 12}, + [1415] = {.lex_state = 143, .external_lex_state = 13}, + [1416] = {.lex_state = 141, .external_lex_state = 12}, + [1417] = {.lex_state = 143, .external_lex_state = 13}, + [1418] = {.lex_state = 143, .external_lex_state = 13}, + [1419] = {.lex_state = 141, .external_lex_state = 12}, + [1420] = {.lex_state = 258, .external_lex_state = 12}, + [1421] = {.lex_state = 257, .external_lex_state = 13}, + [1422] = {.lex_state = 143, .external_lex_state = 13}, + [1423] = {.lex_state = 121, .external_lex_state = 13}, + [1424] = {.lex_state = 121, .external_lex_state = 13}, + [1425] = {.lex_state = 39, .external_lex_state = 12}, + [1426] = {.lex_state = 686, .external_lex_state = 13}, + [1427] = {.lex_state = 141, .external_lex_state = 12}, + [1428] = {.lex_state = 143, .external_lex_state = 13}, + [1429] = {.lex_state = 122, .external_lex_state = 12}, + [1430] = {.lex_state = 143, .external_lex_state = 13}, + [1431] = {.lex_state = 258, .external_lex_state = 12}, + [1432] = {.lex_state = 195, .external_lex_state = 12}, + [1433] = {.lex_state = 141, .external_lex_state = 12}, + [1434] = {.lex_state = 197, .external_lex_state = 12}, + [1435] = {.lex_state = 207, .external_lex_state = 12}, + [1436] = {.lex_state = 133, .external_lex_state = 13}, + [1437] = {.lex_state = 201, .external_lex_state = 12}, + [1438] = {.lex_state = 195, .external_lex_state = 12}, + [1439] = {.lex_state = 207, .external_lex_state = 12}, + [1440] = {.lex_state = 142, .external_lex_state = 12}, + [1441] = {.lex_state = 206, .external_lex_state = 12}, + [1442] = {.lex_state = 134, .external_lex_state = 12}, + [1443] = {.lex_state = 39, .external_lex_state = 12}, + [1444] = {.lex_state = 134, .external_lex_state = 12}, + [1445] = {.lex_state = 39, .external_lex_state = 12}, + [1446] = {.lex_state = 124, .external_lex_state = 12}, + [1447] = {.lex_state = 125, .external_lex_state = 12}, + [1448] = {.lex_state = 122, .external_lex_state = 12}, + [1449] = {.lex_state = 125, .external_lex_state = 12}, + [1450] = {.lex_state = 122, .external_lex_state = 12}, + [1451] = {.lex_state = 258, .external_lex_state = 12}, + [1452] = {.lex_state = 124, .external_lex_state = 12}, + [1453] = {.lex_state = 142, .external_lex_state = 12}, + [1454] = {.lex_state = 207, .external_lex_state = 12}, + [1455] = {.lex_state = 257, .external_lex_state = 23}, + [1456] = {.lex_state = 278, .external_lex_state = 12}, + [1457] = {.lex_state = 133, .external_lex_state = 13}, + [1458] = {.lex_state = 142, .external_lex_state = 12}, + [1459] = {.lex_state = 134, .external_lex_state = 12}, + [1460] = {.lex_state = 133, .external_lex_state = 13}, + [1461] = {.lex_state = 133, .external_lex_state = 13}, + [1462] = {.lex_state = 121, .external_lex_state = 23}, + [1463] = {.lex_state = 124, .external_lex_state = 12}, + [1464] = {.lex_state = 125, .external_lex_state = 12}, + [1465] = {.lex_state = 206, .external_lex_state = 12}, + [1466] = {.lex_state = 137, .external_lex_state = 12}, + [1467] = {.lex_state = 206, .external_lex_state = 12}, + [1468] = {.lex_state = 252, .external_lex_state = 13}, + [1469] = {.lex_state = 125, .external_lex_state = 12}, + [1470] = {.lex_state = 121, .external_lex_state = 23}, + [1471] = {.lex_state = 686, .external_lex_state = 12}, + [1472] = {.lex_state = 278, .external_lex_state = 12}, + [1473] = {.lex_state = 125, .external_lex_state = 12}, + [1474] = {.lex_state = 142, .external_lex_state = 12}, + [1475] = {.lex_state = 207, .external_lex_state = 12}, + [1476] = {.lex_state = 142, .external_lex_state = 12}, + [1477] = {.lex_state = 133, .external_lex_state = 13}, + [1478] = {.lex_state = 207, .external_lex_state = 12}, + [1479] = {.lex_state = 257, .external_lex_state = 23}, + [1480] = {.lex_state = 207, .external_lex_state = 12}, + [1481] = {.lex_state = 121, .external_lex_state = 23}, + [1482] = {.lex_state = 134, .external_lex_state = 12}, + [1483] = {.lex_state = 127, .external_lex_state = 12}, + [1484] = {.lex_state = 127, .external_lex_state = 12}, + [1485] = {.lex_state = 134, .external_lex_state = 12}, + [1486] = {.lex_state = 278, .external_lex_state = 12}, + [1487] = {.lex_state = 127, .external_lex_state = 12}, + [1488] = {.lex_state = 127, .external_lex_state = 12}, + [1489] = {.lex_state = 278, .external_lex_state = 12}, + [1490] = {.lex_state = 278, .external_lex_state = 12}, + [1491] = {.lex_state = 278, .external_lex_state = 12}, + [1492] = {.lex_state = 127, .external_lex_state = 12}, + [1493] = {.lex_state = 686, .external_lex_state = 13}, + [1494] = {.lex_state = 678, .external_lex_state = 13}, + [1495] = {.lex_state = 679, .external_lex_state = 12}, + [1496] = {.lex_state = 679, .external_lex_state = 12}, + [1497] = {.lex_state = 679, .external_lex_state = 12}, + [1498] = {.lex_state = 108, .external_lex_state = 24}, + [1499] = {.lex_state = 255, .external_lex_state = 12}, + [1500] = {.lex_state = 256, .external_lex_state = 13}, + [1501] = {.lex_state = 256, .external_lex_state = 13}, + [1502] = {.lex_state = 140, .external_lex_state = 12}, + [1503] = {.lex_state = 686, .external_lex_state = 12}, + [1504] = {.lex_state = 143, .external_lex_state = 12}, + [1505] = {.lex_state = 143, .external_lex_state = 12}, + [1506] = {.lex_state = 678, .external_lex_state = 13}, + [1507] = {.lex_state = 255, .external_lex_state = 12}, + [1508] = {.lex_state = 203, .external_lex_state = 12}, + [1509] = {.lex_state = 255, .external_lex_state = 12}, + [1510] = {.lex_state = 678, .external_lex_state = 13}, + [1511] = {.lex_state = 686, .external_lex_state = 13}, + [1512] = {.lex_state = 203, .external_lex_state = 12}, + [1513] = {.lex_state = 678, .external_lex_state = 12}, + [1514] = {.lex_state = 667, .external_lex_state = 17}, + [1515] = {.lex_state = 686, .external_lex_state = 13}, + [1516] = {.lex_state = 143, .external_lex_state = 12}, + [1517] = {.lex_state = 686, .external_lex_state = 13}, + [1518] = {.lex_state = 686, .external_lex_state = 13}, + [1519] = {.lex_state = 686, .external_lex_state = 13}, + [1520] = {.lex_state = 255, .external_lex_state = 12}, + [1521] = {.lex_state = 255, .external_lex_state = 12}, + [1522] = {.lex_state = 202, .external_lex_state = 12}, + [1523] = {.lex_state = 255, .external_lex_state = 12}, + [1524] = {.lex_state = 678, .external_lex_state = 12}, + [1525] = {.lex_state = 108, .external_lex_state = 24}, + [1526] = {.lex_state = 24, .external_lex_state = 16}, + [1527] = {.lex_state = 143, .external_lex_state = 12}, + [1528] = {.lex_state = 143, .external_lex_state = 12}, + [1529] = {.lex_state = 667, .external_lex_state = 18}, + [1530] = {.lex_state = 667, .external_lex_state = 17}, + [1531] = {.lex_state = 686, .external_lex_state = 13}, + [1532] = {.lex_state = 686, .external_lex_state = 13}, + [1533] = {.lex_state = 679, .external_lex_state = 13}, + [1534] = {.lex_state = 108, .external_lex_state = 24}, + [1535] = {.lex_state = 686, .external_lex_state = 13}, + [1536] = {.lex_state = 686, .external_lex_state = 13}, + [1537] = {.lex_state = 686, .external_lex_state = 12}, + [1538] = {.lex_state = 686, .external_lex_state = 13}, + [1539] = {.lex_state = 255, .external_lex_state = 12}, + [1540] = {.lex_state = 667, .external_lex_state = 18}, + [1541] = {.lex_state = 676, .external_lex_state = 12}, + [1542] = {.lex_state = 255, .external_lex_state = 12}, + [1543] = {.lex_state = 678, .external_lex_state = 12}, + [1544] = {.lex_state = 278, .external_lex_state = 13}, + [1545] = {.lex_state = 24, .external_lex_state = 16}, + [1546] = {.lex_state = 667, .external_lex_state = 18}, + [1547] = {.lex_state = 686, .external_lex_state = 13}, + [1548] = {.lex_state = 203, .external_lex_state = 12}, + [1549] = {.lex_state = 255, .external_lex_state = 12}, + [1550] = {.lex_state = 133, .external_lex_state = 12}, + [1551] = {.lex_state = 255, .external_lex_state = 12}, + [1552] = {.lex_state = 255, .external_lex_state = 12}, + [1553] = {.lex_state = 255, .external_lex_state = 12}, + [1554] = {.lex_state = 278, .external_lex_state = 13}, + [1555] = {.lex_state = 36, .external_lex_state = 25}, + [1556] = {.lex_state = 203, .external_lex_state = 12}, + [1557] = {.lex_state = 108, .external_lex_state = 24}, + [1558] = {.lex_state = 108, .external_lex_state = 24}, + [1559] = {.lex_state = 686, .external_lex_state = 12}, + [1560] = {.lex_state = 686, .external_lex_state = 12}, + [1561] = {.lex_state = 686, .external_lex_state = 12}, + [1562] = {.lex_state = 686, .external_lex_state = 12}, + [1563] = {.lex_state = 686, .external_lex_state = 12}, + [1564] = {.lex_state = 186, .external_lex_state = 12}, + [1565] = {.lex_state = 255, .external_lex_state = 12}, + [1566] = {.lex_state = 108, .external_lex_state = 24}, + [1567] = {.lex_state = 255, .external_lex_state = 12}, + [1568] = {.lex_state = 278, .external_lex_state = 13}, + [1569] = {.lex_state = 133, .external_lex_state = 12}, + [1570] = {.lex_state = 278, .external_lex_state = 12}, + [1571] = {.lex_state = 255, .external_lex_state = 12}, + [1572] = {.lex_state = 133, .external_lex_state = 12}, + [1573] = {.lex_state = 255, .external_lex_state = 12}, + [1574] = {.lex_state = 278, .external_lex_state = 13}, + [1575] = {.lex_state = 255, .external_lex_state = 12}, + [1576] = {.lex_state = 255, .external_lex_state = 12}, + [1577] = {.lex_state = 255, .external_lex_state = 12}, + [1578] = {.lex_state = 140, .external_lex_state = 12}, + [1579] = {.lex_state = 108, .external_lex_state = 24}, + [1580] = {.lex_state = 255, .external_lex_state = 12}, + [1581] = {.lex_state = 255, .external_lex_state = 12}, + [1582] = {.lex_state = 255, .external_lex_state = 12}, + [1583] = {.lex_state = 24, .external_lex_state = 16}, + [1584] = {.lex_state = 255, .external_lex_state = 12}, + [1585] = {.lex_state = 255, .external_lex_state = 12}, + [1586] = {.lex_state = 255, .external_lex_state = 12}, + [1587] = {.lex_state = 255, .external_lex_state = 12}, + [1588] = {.lex_state = 255, .external_lex_state = 12}, + [1589] = {.lex_state = 255, .external_lex_state = 12}, + [1590] = {.lex_state = 679, .external_lex_state = 13}, + [1591] = {.lex_state = 36, .external_lex_state = 25}, + [1592] = {.lex_state = 36, .external_lex_state = 25}, + [1593] = {.lex_state = 676, .external_lex_state = 12}, + [1594] = {.lex_state = 255, .external_lex_state = 12}, + [1595] = {.lex_state = 255, .external_lex_state = 12}, + [1596] = {.lex_state = 255, .external_lex_state = 12}, + [1597] = {.lex_state = 255, .external_lex_state = 12}, + [1598] = {.lex_state = 35, .external_lex_state = 26}, + [1599] = {.lex_state = 133, .external_lex_state = 12}, + [1600] = {.lex_state = 255, .external_lex_state = 12}, + [1601] = {.lex_state = 133, .external_lex_state = 12}, + [1602] = {.lex_state = 24, .external_lex_state = 16}, + [1603] = {.lex_state = 35, .external_lex_state = 26}, + [1604] = {.lex_state = 35, .external_lex_state = 26}, + [1605] = {.lex_state = 48, .external_lex_state = 27}, + [1606] = {.lex_state = 679, .external_lex_state = 13}, + [1607] = {.lex_state = 686, .external_lex_state = 12}, + [1608] = {.lex_state = 686, .external_lex_state = 12}, + [1609] = {.lex_state = 686, .external_lex_state = 12}, + [1610] = {.lex_state = 255, .external_lex_state = 12}, + [1611] = {.lex_state = 255, .external_lex_state = 12}, + [1612] = {.lex_state = 35, .external_lex_state = 26}, + [1613] = {.lex_state = 255, .external_lex_state = 12}, + [1614] = {.lex_state = 255, .external_lex_state = 12}, + [1615] = {.lex_state = 35, .external_lex_state = 26}, + [1616] = {.lex_state = 255, .external_lex_state = 12}, + [1617] = {.lex_state = 255, .external_lex_state = 12}, + [1618] = {.lex_state = 186, .external_lex_state = 12}, + [1619] = {.lex_state = 186, .external_lex_state = 12}, + [1620] = {.lex_state = 686, .external_lex_state = 12}, + [1621] = {.lex_state = 140, .external_lex_state = 12}, + [1622] = {.lex_state = 108, .external_lex_state = 24}, + [1623] = {.lex_state = 676, .external_lex_state = 12}, + [1624] = {.lex_state = 108, .external_lex_state = 24}, + [1625] = {.lex_state = 667, .external_lex_state = 17}, + [1626] = {.lex_state = 48, .external_lex_state = 28}, + [1627] = {.lex_state = 142, .external_lex_state = 12}, + [1628] = {.lex_state = 36, .external_lex_state = 25}, + [1629] = {.lex_state = 36, .external_lex_state = 25}, + [1630] = {.lex_state = 686, .external_lex_state = 12}, + [1631] = {.lex_state = 142, .external_lex_state = 12}, + [1632] = {.lex_state = 204, .external_lex_state = 12}, + [1633] = {.lex_state = 126, .external_lex_state = 13}, + [1634] = {.lex_state = 24, .external_lex_state = 19}, + [1635] = {.lex_state = 255, .external_lex_state = 12}, + [1636] = {.lex_state = 255, .external_lex_state = 12}, + [1637] = {.lex_state = 24, .external_lex_state = 16}, + [1638] = {.lex_state = 143, .external_lex_state = 12}, + [1639] = {.lex_state = 34, .external_lex_state = 26}, + [1640] = {.lex_state = 255, .external_lex_state = 12}, + [1641] = {.lex_state = 48, .external_lex_state = 27}, + [1642] = {.lex_state = 23, .external_lex_state = 29}, + [1643] = {.lex_state = 255, .external_lex_state = 12}, + [1644] = {.lex_state = 130, .external_lex_state = 12}, + [1645] = {.lex_state = 34, .external_lex_state = 26}, + [1646] = {.lex_state = 24, .external_lex_state = 19}, + [1647] = {.lex_state = 130, .external_lex_state = 12}, + [1648] = {.lex_state = 130, .external_lex_state = 12}, + [1649] = {.lex_state = 143, .external_lex_state = 12}, + [1650] = {.lex_state = 34, .external_lex_state = 26}, + [1651] = {.lex_state = 24, .external_lex_state = 19}, + [1652] = {.lex_state = 24, .external_lex_state = 19}, + [1653] = {.lex_state = 34, .external_lex_state = 26}, + [1654] = {.lex_state = 255, .external_lex_state = 12}, + [1655] = {.lex_state = 24, .external_lex_state = 16}, + [1656] = {.lex_state = 255, .external_lex_state = 12}, + [1657] = {.lex_state = 186, .external_lex_state = 12}, + [1658] = {.lex_state = 255, .external_lex_state = 12}, + [1659] = {.lex_state = 34, .external_lex_state = 26}, + [1660] = {.lex_state = 255, .external_lex_state = 12}, + [1661] = {.lex_state = 24, .external_lex_state = 16}, + [1662] = {.lex_state = 130, .external_lex_state = 12}, + [1663] = {.lex_state = 23, .external_lex_state = 18}, + [1664] = {.lex_state = 210, .external_lex_state = 12}, + [1665] = {.lex_state = 210, .external_lex_state = 12}, + [1666] = {.lex_state = 130, .external_lex_state = 12}, + [1667] = {.lex_state = 48, .external_lex_state = 28}, + [1668] = {.lex_state = 23, .external_lex_state = 29}, + [1669] = {.lex_state = 105, .external_lex_state = 12}, + [1670] = {.lex_state = 204, .external_lex_state = 12}, + [1671] = {.lex_state = 210, .external_lex_state = 12}, + [1672] = {.lex_state = 23, .external_lex_state = 17}, + [1673] = {.lex_state = 186, .external_lex_state = 12}, + [1674] = {.lex_state = 24, .external_lex_state = 16}, + [1675] = {.lex_state = 48, .external_lex_state = 27}, + [1676] = {.lex_state = 255, .external_lex_state = 12}, + [1677] = {.lex_state = 210, .external_lex_state = 12}, + [1678] = {.lex_state = 252, .external_lex_state = 12}, + [1679] = {.lex_state = 23, .external_lex_state = 18}, + [1680] = {.lex_state = 255, .external_lex_state = 12}, + [1681] = {.lex_state = 204, .external_lex_state = 12}, + [1682] = {.lex_state = 194, .external_lex_state = 12}, + [1683] = {.lex_state = 23, .external_lex_state = 17}, + [1684] = {.lex_state = 194, .external_lex_state = 12}, + [1685] = {.lex_state = 126, .external_lex_state = 13}, + [1686] = {.lex_state = 126, .external_lex_state = 13}, + [1687] = {.lex_state = 204, .external_lex_state = 12}, + [1688] = {.lex_state = 126, .external_lex_state = 13}, + [1689] = {.lex_state = 23, .external_lex_state = 17}, + [1690] = {.lex_state = 186, .external_lex_state = 12}, + [1691] = {.lex_state = 252, .external_lex_state = 12}, + [1692] = {.lex_state = 126, .external_lex_state = 13}, + [1693] = {.lex_state = 255, .external_lex_state = 12}, + [1694] = {.lex_state = 23, .external_lex_state = 18}, + [1695] = {.lex_state = 24, .external_lex_state = 16}, + [1696] = {.lex_state = 255, .external_lex_state = 12}, + [1697] = {.lex_state = 186, .external_lex_state = 12}, + [1698] = {.lex_state = 255, .external_lex_state = 12}, + [1699] = {.lex_state = 252, .external_lex_state = 12}, + [1700] = {.lex_state = 105, .external_lex_state = 12}, + [1701] = {.lex_state = 24, .external_lex_state = 16}, + [1702] = {.lex_state = 24, .external_lex_state = 16}, + [1703] = {.lex_state = 255, .external_lex_state = 12}, [1704] = {.lex_state = 3, .external_lex_state = 13}, - [1705] = {.lex_state = 160, .external_lex_state = 12}, - [1706] = {.lex_state = 160, .external_lex_state = 12}, - [1707] = {.lex_state = 24, .external_lex_state = 19}, - [1708] = {.lex_state = 3, .external_lex_state = 12}, - [1709] = {.lex_state = 243, .external_lex_state = 12}, - [1710] = {.lex_state = 243, .external_lex_state = 12}, - [1711] = {.lex_state = 646, .external_lex_state = 18}, - [1712] = {.lex_state = 658, .external_lex_state = 13}, - [1713] = {.lex_state = 243, .external_lex_state = 12}, - [1714] = {.lex_state = 243, .external_lex_state = 12}, - [1715] = {.lex_state = 24, .external_lex_state = 19}, - [1716] = {.lex_state = 658, .external_lex_state = 13}, - [1717] = {.lex_state = 160, .external_lex_state = 12}, - [1718] = {.lex_state = 24, .external_lex_state = 19}, - [1719] = {.lex_state = 3, .external_lex_state = 13}, - [1720] = {.lex_state = 24, .external_lex_state = 19}, + [1705] = {.lex_state = 678, .external_lex_state = 13}, + [1706] = {.lex_state = 23, .external_lex_state = 12}, + [1707] = {.lex_state = 24, .external_lex_state = 16}, + [1708] = {.lex_state = 255, .external_lex_state = 12}, + [1709] = {.lex_state = 24, .external_lex_state = 19}, + [1710] = {.lex_state = 255, .external_lex_state = 12}, + [1711] = {.lex_state = 4, .external_lex_state = 13}, + [1712] = {.lex_state = 284, .external_lex_state = 12}, + [1713] = {.lex_state = 105, .external_lex_state = 12}, + [1714] = {.lex_state = 24, .external_lex_state = 19}, + [1715] = {.lex_state = 678, .external_lex_state = 12}, + [1716] = {.lex_state = 105, .external_lex_state = 12}, + [1717] = {.lex_state = 23, .external_lex_state = 12}, + [1718] = {.lex_state = 24, .external_lex_state = 16}, + [1719] = {.lex_state = 6, .external_lex_state = 12}, + [1720] = {.lex_state = 254, .external_lex_state = 12}, [1721] = {.lex_state = 24, .external_lex_state = 19}, - [1722] = {.lex_state = 160, .external_lex_state = 12}, - [1723] = {.lex_state = 657, .external_lex_state = 13}, - [1724] = {.lex_state = 268, .external_lex_state = 12}, - [1725] = {.lex_state = 24, .external_lex_state = 19}, - [1726] = {.lex_state = 245, .external_lex_state = 13}, - [1727] = {.lex_state = 5, .external_lex_state = 12}, - [1728] = {.lex_state = 245, .external_lex_state = 13}, - [1729] = {.lex_state = 243, .external_lex_state = 12}, - [1730] = {.lex_state = 243, .external_lex_state = 12}, - [1731] = {.lex_state = 3, .external_lex_state = 13}, - [1732] = {.lex_state = 24, .external_lex_state = 16}, - [1733] = {.lex_state = 268, .external_lex_state = 12}, - [1734] = {.lex_state = 23, .external_lex_state = 12}, - [1735] = {.lex_state = 243, .external_lex_state = 12}, - [1736] = {.lex_state = 60, .external_lex_state = 13}, - [1737] = {.lex_state = 24, .external_lex_state = 16}, - [1738] = {.lex_state = 243, .external_lex_state = 12}, - [1739] = {.lex_state = 646, .external_lex_state = 17}, + [1722] = {.lex_state = 8, .external_lex_state = 12}, + [1723] = {.lex_state = 686, .external_lex_state = 12}, + [1724] = {.lex_state = 24, .external_lex_state = 19}, + [1725] = {.lex_state = 106, .external_lex_state = 12}, + [1726] = {.lex_state = 255, .external_lex_state = 12}, + [1727] = {.lex_state = 4, .external_lex_state = 13}, + [1728] = {.lex_state = 163, .external_lex_state = 12}, + [1729] = {.lex_state = 678, .external_lex_state = 12}, + [1730] = {.lex_state = 163, .external_lex_state = 12}, + [1731] = {.lex_state = 255, .external_lex_state = 12}, + [1732] = {.lex_state = 163, .external_lex_state = 12}, + [1733] = {.lex_state = 163, .external_lex_state = 12}, + [1734] = {.lex_state = 4, .external_lex_state = 13}, + [1735] = {.lex_state = 207, .external_lex_state = 12}, + [1736] = {.lex_state = 284, .external_lex_state = 12}, + [1737] = {.lex_state = 24, .external_lex_state = 19}, + [1738] = {.lex_state = 255, .external_lex_state = 12}, + [1739] = {.lex_state = 686, .external_lex_state = 13}, [1740] = {.lex_state = 24, .external_lex_state = 19}, - [1741] = {.lex_state = 665, .external_lex_state = 12}, - [1742] = {.lex_state = 665, .external_lex_state = 13}, - [1743] = {.lex_state = 243, .external_lex_state = 12}, - [1744] = {.lex_state = 242, .external_lex_state = 12}, - [1745] = {.lex_state = 243, .external_lex_state = 12}, - [1746] = {.lex_state = 7, .external_lex_state = 12}, - [1747] = {.lex_state = 665, .external_lex_state = 12}, - [1748] = {.lex_state = 8, .external_lex_state = 13}, - [1749] = {.lex_state = 105, .external_lex_state = 12}, - [1750] = {.lex_state = 176, .external_lex_state = 13}, - [1751] = {.lex_state = 165, .external_lex_state = 13}, - [1752] = {.lex_state = 246, .external_lex_state = 12}, - [1753] = {.lex_state = 246, .external_lex_state = 12}, - [1754] = {.lex_state = 38, .external_lex_state = 13}, - [1755] = {.lex_state = 38, .external_lex_state = 13}, - [1756] = {.lex_state = 245, .external_lex_state = 23}, - [1757] = {.lex_state = 245, .external_lex_state = 23}, - [1758] = {.lex_state = 3, .external_lex_state = 12}, - [1759] = {.lex_state = 165, .external_lex_state = 12}, - [1760] = {.lex_state = 665, .external_lex_state = 12}, - [1761] = {.lex_state = 135, .external_lex_state = 12}, - [1762] = {.lex_state = 135, .external_lex_state = 12}, - [1763] = {.lex_state = 137, .external_lex_state = 13}, - [1764] = {.lex_state = 137, .external_lex_state = 13}, - [1765] = {.lex_state = 665, .external_lex_state = 12}, - [1766] = {.lex_state = 665, .external_lex_state = 12}, - [1767] = {.lex_state = 193, .external_lex_state = 12}, - [1768] = {.lex_state = 193, .external_lex_state = 12}, - [1769] = {.lex_state = 24, .external_lex_state = 16}, - [1770] = {.lex_state = 24, .external_lex_state = 19}, - [1771] = {.lex_state = 49, .external_lex_state = 12}, - [1772] = {.lex_state = 24, .external_lex_state = 16}, - [1773] = {.lex_state = 135, .external_lex_state = 12}, - [1774] = {.lex_state = 24, .external_lex_state = 16}, - [1775] = {.lex_state = 37, .external_lex_state = 12}, - [1776] = {.lex_state = 24, .external_lex_state = 16}, - [1777] = {.lex_state = 105, .external_lex_state = 12}, - [1778] = {.lex_state = 38, .external_lex_state = 13}, - [1779] = {.lex_state = 79, .external_lex_state = 12}, - [1780] = {.lex_state = 176, .external_lex_state = 12}, - [1781] = {.lex_state = 79, .external_lex_state = 12}, - [1782] = {.lex_state = 24, .external_lex_state = 16}, - [1783] = {.lex_state = 24, .external_lex_state = 19}, - [1784] = {.lex_state = 24, .external_lex_state = 19}, - [1785] = {.lex_state = 37, .external_lex_state = 12}, - [1786] = {.lex_state = 665, .external_lex_state = 30}, - [1787] = {.lex_state = 105, .external_lex_state = 12}, - [1788] = {.lex_state = 665, .external_lex_state = 31}, - [1789] = {.lex_state = 49, .external_lex_state = 13}, - [1790] = {.lex_state = 24, .external_lex_state = 19}, - [1791] = {.lex_state = 37, .external_lex_state = 12}, - [1792] = {.lex_state = 24, .external_lex_state = 16}, - [1793] = {.lex_state = 24, .external_lex_state = 19}, - [1794] = {.lex_state = 79, .external_lex_state = 12}, - [1795] = {.lex_state = 24, .external_lex_state = 16}, - [1796] = {.lex_state = 7, .external_lex_state = 12}, - [1797] = {.lex_state = 8, .external_lex_state = 13}, - [1798] = {.lex_state = 24, .external_lex_state = 19}, - [1799] = {.lex_state = 200, .external_lex_state = 12}, - [1800] = {.lex_state = 24, .external_lex_state = 16}, - [1801] = {.lex_state = 135, .external_lex_state = 12}, - [1802] = {.lex_state = 137, .external_lex_state = 13}, - [1803] = {.lex_state = 137, .external_lex_state = 13}, - [1804] = {.lex_state = 9, .external_lex_state = 12}, - [1805] = {.lex_state = 3, .external_lex_state = 12}, - [1806] = {.lex_state = 209, .external_lex_state = 24}, - [1807] = {.lex_state = 3, .external_lex_state = 13}, - [1808] = {.lex_state = 23, .external_lex_state = 18}, - [1809] = {.lex_state = 171, .external_lex_state = 18}, - [1810] = {.lex_state = 184, .external_lex_state = 13}, - [1811] = {.lex_state = 171, .external_lex_state = 17}, - [1812] = {.lex_state = 3, .external_lex_state = 13}, - [1813] = {.lex_state = 3, .external_lex_state = 13}, - [1814] = {.lex_state = 249, .external_lex_state = 26}, - [1815] = {.lex_state = 249, .external_lex_state = 26}, - [1816] = {.lex_state = 184, .external_lex_state = 13}, - [1817] = {.lex_state = 25, .external_lex_state = 12}, - [1818] = {.lex_state = 60, .external_lex_state = 13}, - [1819] = {.lex_state = 242, .external_lex_state = 12}, - [1820] = {.lex_state = 665, .external_lex_state = 13}, - [1821] = {.lex_state = 3, .external_lex_state = 13}, - [1822] = {.lex_state = 3, .external_lex_state = 12}, - [1823] = {.lex_state = 131, .external_lex_state = 13}, - [1824] = {.lex_state = 131, .external_lex_state = 13}, - [1825] = {.lex_state = 184, .external_lex_state = 13}, - [1826] = {.lex_state = 24, .external_lex_state = 19}, - [1827] = {.lex_state = 137, .external_lex_state = 12}, - [1828] = {.lex_state = 184, .external_lex_state = 12}, - [1829] = {.lex_state = 665, .external_lex_state = 13}, - [1830] = {.lex_state = 38, .external_lex_state = 12}, - [1831] = {.lex_state = 184, .external_lex_state = 12}, - [1832] = {.lex_state = 184, .external_lex_state = 13}, - [1833] = {.lex_state = 137, .external_lex_state = 13}, - [1834] = {.lex_state = 665, .external_lex_state = 12}, - [1835] = {.lex_state = 38, .external_lex_state = 12}, - [1836] = {.lex_state = 24, .external_lex_state = 19}, - [1837] = {.lex_state = 105, .external_lex_state = 12}, - [1838] = {.lex_state = 49, .external_lex_state = 13}, - [1839] = {.lex_state = 184, .external_lex_state = 12}, + [1741] = {.lex_state = 255, .external_lex_state = 12}, + [1742] = {.lex_state = 257, .external_lex_state = 13}, + [1743] = {.lex_state = 678, .external_lex_state = 13}, + [1744] = {.lex_state = 4, .external_lex_state = 12}, + [1745] = {.lex_state = 257, .external_lex_state = 13}, + [1746] = {.lex_state = 278, .external_lex_state = 12}, + [1747] = {.lex_state = 24, .external_lex_state = 19}, + [1748] = {.lex_state = 255, .external_lex_state = 12}, + [1749] = {.lex_state = 278, .external_lex_state = 12}, + [1750] = {.lex_state = 163, .external_lex_state = 12}, + [1751] = {.lex_state = 4, .external_lex_state = 12}, + [1752] = {.lex_state = 686, .external_lex_state = 12}, + [1753] = {.lex_state = 255, .external_lex_state = 12}, + [1754] = {.lex_state = 255, .external_lex_state = 12}, + [1755] = {.lex_state = 679, .external_lex_state = 12}, + [1756] = {.lex_state = 679, .external_lex_state = 12}, + [1757] = {.lex_state = 24, .external_lex_state = 16}, + [1758] = {.lex_state = 4, .external_lex_state = 13}, + [1759] = {.lex_state = 60, .external_lex_state = 13}, + [1760] = {.lex_state = 6, .external_lex_state = 13}, + [1761] = {.lex_state = 24, .external_lex_state = 19}, + [1762] = {.lex_state = 126, .external_lex_state = 12}, + [1763] = {.lex_state = 126, .external_lex_state = 12}, + [1764] = {.lex_state = 4, .external_lex_state = 12}, + [1765] = {.lex_state = 4, .external_lex_state = 12}, + [1766] = {.lex_state = 24, .external_lex_state = 16}, + [1767] = {.lex_state = 126, .external_lex_state = 12}, + [1768] = {.lex_state = 126, .external_lex_state = 12}, + [1769] = {.lex_state = 126, .external_lex_state = 12}, + [1770] = {.lex_state = 667, .external_lex_state = 17}, + [1771] = {.lex_state = 106, .external_lex_state = 12}, + [1772] = {.lex_state = 255, .external_lex_state = 12}, + [1773] = {.lex_state = 686, .external_lex_state = 13}, + [1774] = {.lex_state = 186, .external_lex_state = 12}, + [1775] = {.lex_state = 679, .external_lex_state = 13}, + [1776] = {.lex_state = 667, .external_lex_state = 18}, + [1777] = {.lex_state = 676, .external_lex_state = 12}, + [1778] = {.lex_state = 24, .external_lex_state = 19}, + [1779] = {.lex_state = 686, .external_lex_state = 12}, + [1780] = {.lex_state = 676, .external_lex_state = 12}, + [1781] = {.lex_state = 24, .external_lex_state = 19}, + [1782] = {.lex_state = 255, .external_lex_state = 12}, + [1783] = {.lex_state = 284, .external_lex_state = 12}, + [1784] = {.lex_state = 186, .external_lex_state = 12}, + [1785] = {.lex_state = 24, .external_lex_state = 19}, + [1786] = {.lex_state = 686, .external_lex_state = 13}, + [1787] = {.lex_state = 667, .external_lex_state = 17}, + [1788] = {.lex_state = 667, .external_lex_state = 18}, + [1789] = {.lex_state = 679, .external_lex_state = 13}, + [1790] = {.lex_state = 278, .external_lex_state = 12}, + [1791] = {.lex_state = 48, .external_lex_state = 27}, + [1792] = {.lex_state = 60, .external_lex_state = 13}, + [1793] = {.lex_state = 255, .external_lex_state = 12}, + [1794] = {.lex_state = 255, .external_lex_state = 12}, + [1795] = {.lex_state = 255, .external_lex_state = 12}, + [1796] = {.lex_state = 24, .external_lex_state = 19}, + [1797] = {.lex_state = 79, .external_lex_state = 12}, + [1798] = {.lex_state = 4, .external_lex_state = 12}, + [1799] = {.lex_state = 9, .external_lex_state = 12}, + [1800] = {.lex_state = 24, .external_lex_state = 19}, + [1801] = {.lex_state = 37, .external_lex_state = 12}, + [1802] = {.lex_state = 24, .external_lex_state = 16}, + [1803] = {.lex_state = 24, .external_lex_state = 19}, + [1804] = {.lex_state = 24, .external_lex_state = 16}, + [1805] = {.lex_state = 24, .external_lex_state = 16}, + [1806] = {.lex_state = 49, .external_lex_state = 13}, + [1807] = {.lex_state = 138, .external_lex_state = 13}, + [1808] = {.lex_state = 38, .external_lex_state = 13}, + [1809] = {.lex_state = 168, .external_lex_state = 12}, + [1810] = {.lex_state = 686, .external_lex_state = 12}, + [1811] = {.lex_state = 686, .external_lex_state = 12}, + [1812] = {.lex_state = 686, .external_lex_state = 12}, + [1813] = {.lex_state = 258, .external_lex_state = 12}, + [1814] = {.lex_state = 258, .external_lex_state = 12}, + [1815] = {.lex_state = 136, .external_lex_state = 12}, + [1816] = {.lex_state = 178, .external_lex_state = 12}, + [1817] = {.lex_state = 136, .external_lex_state = 12}, + [1818] = {.lex_state = 195, .external_lex_state = 12}, + [1819] = {.lex_state = 195, .external_lex_state = 12}, + [1820] = {.lex_state = 24, .external_lex_state = 16}, + [1821] = {.lex_state = 210, .external_lex_state = 12}, + [1822] = {.lex_state = 138, .external_lex_state = 13}, + [1823] = {.lex_state = 257, .external_lex_state = 23}, + [1824] = {.lex_state = 257, .external_lex_state = 23}, + [1825] = {.lex_state = 136, .external_lex_state = 12}, + [1826] = {.lex_state = 79, .external_lex_state = 12}, + [1827] = {.lex_state = 38, .external_lex_state = 13}, + [1828] = {.lex_state = 168, .external_lex_state = 13}, + [1829] = {.lex_state = 3, .external_lex_state = 13}, + [1830] = {.lex_state = 686, .external_lex_state = 30}, + [1831] = {.lex_state = 178, .external_lex_state = 13}, + [1832] = {.lex_state = 24, .external_lex_state = 16}, + [1833] = {.lex_state = 38, .external_lex_state = 13}, + [1834] = {.lex_state = 24, .external_lex_state = 19}, + [1835] = {.lex_state = 138, .external_lex_state = 13}, + [1836] = {.lex_state = 138, .external_lex_state = 13}, + [1837] = {.lex_state = 106, .external_lex_state = 12}, + [1838] = {.lex_state = 8, .external_lex_state = 12}, + [1839] = {.lex_state = 24, .external_lex_state = 16}, [1840] = {.lex_state = 24, .external_lex_state = 19}, - [1841] = {.lex_state = 24, .external_lex_state = 19}, - [1842] = {.lex_state = 60, .external_lex_state = 13}, + [1841] = {.lex_state = 37, .external_lex_state = 12}, + [1842] = {.lex_state = 136, .external_lex_state = 12}, [1843] = {.lex_state = 24, .external_lex_state = 19}, - [1844] = {.lex_state = 49, .external_lex_state = 12}, - [1845] = {.lex_state = 665, .external_lex_state = 12}, - [1846] = {.lex_state = 137, .external_lex_state = 12}, - [1847] = {.lex_state = 131, .external_lex_state = 13}, - [1848] = {.lex_state = 25, .external_lex_state = 12}, - [1849] = {.lex_state = 665, .external_lex_state = 19}, - [1850] = {.lex_state = 25, .external_lex_state = 13}, - [1851] = {.lex_state = 184, .external_lex_state = 13}, - [1852] = {.lex_state = 9, .external_lex_state = 12}, - [1853] = {.lex_state = 184, .external_lex_state = 13}, - [1854] = {.lex_state = 3, .external_lex_state = 12}, - [1855] = {.lex_state = 50, .external_lex_state = 24}, - [1856] = {.lex_state = 23, .external_lex_state = 17}, - [1857] = {.lex_state = 184, .external_lex_state = 13}, - [1858] = {.lex_state = 60, .external_lex_state = 12}, - [1859] = {.lex_state = 665, .external_lex_state = 16}, - [1860] = {.lex_state = 60, .external_lex_state = 12}, - [1861] = {.lex_state = 135, .external_lex_state = 12}, - [1862] = {.lex_state = 209, .external_lex_state = 24}, - [1863] = {.lex_state = 160, .external_lex_state = 12}, - [1864] = {.lex_state = 24, .external_lex_state = 19}, - [1865] = {.lex_state = 135, .external_lex_state = 12}, - [1866] = {.lex_state = 137, .external_lex_state = 13}, - [1867] = {.lex_state = 249, .external_lex_state = 26}, - [1868] = {.lex_state = 184, .external_lex_state = 13}, - [1869] = {.lex_state = 209, .external_lex_state = 24}, - [1870] = {.lex_state = 49, .external_lex_state = 12}, - [1871] = {.lex_state = 209, .external_lex_state = 24}, - [1872] = {.lex_state = 184, .external_lex_state = 12}, - [1873] = {.lex_state = 105, .external_lex_state = 12}, - [1874] = {.lex_state = 665, .external_lex_state = 13}, - [1875] = {.lex_state = 25, .external_lex_state = 12}, - [1876] = {.lex_state = 135, .external_lex_state = 12}, - [1877] = {.lex_state = 665, .external_lex_state = 19}, - [1878] = {.lex_state = 665, .external_lex_state = 19}, - [1879] = {.lex_state = 665, .external_lex_state = 12}, - [1880] = {.lex_state = 160, .external_lex_state = 12}, - [1881] = {.lex_state = 665, .external_lex_state = 19}, - [1882] = {.lex_state = 665, .external_lex_state = 16}, - [1883] = {.lex_state = 665, .external_lex_state = 19}, - [1884] = {.lex_state = 242, .external_lex_state = 12}, - [1885] = {.lex_state = 127, .external_lex_state = 12}, - [1886] = {.lex_state = 127, .external_lex_state = 12}, - [1887] = {.lex_state = 665, .external_lex_state = 19}, - [1888] = {.lex_state = 60, .external_lex_state = 12}, - [1889] = {.lex_state = 665, .external_lex_state = 16}, - [1890] = {.lex_state = 135, .external_lex_state = 12}, - [1891] = {.lex_state = 25, .external_lex_state = 12}, - [1892] = {.lex_state = 184, .external_lex_state = 12}, - [1893] = {.lex_state = 137, .external_lex_state = 13}, - [1894] = {.lex_state = 665, .external_lex_state = 16}, - [1895] = {.lex_state = 52, .external_lex_state = 26}, - [1896] = {.lex_state = 127, .external_lex_state = 12}, - [1897] = {.lex_state = 24, .external_lex_state = 19}, + [1844] = {.lex_state = 24, .external_lex_state = 16}, + [1845] = {.lex_state = 686, .external_lex_state = 31}, + [1846] = {.lex_state = 24, .external_lex_state = 16}, + [1847] = {.lex_state = 79, .external_lex_state = 12}, + [1848] = {.lex_state = 49, .external_lex_state = 12}, + [1849] = {.lex_state = 106, .external_lex_state = 12}, + [1850] = {.lex_state = 37, .external_lex_state = 12}, + [1851] = {.lex_state = 219, .external_lex_state = 26}, + [1852] = {.lex_state = 686, .external_lex_state = 19}, + [1853] = {.lex_state = 24, .external_lex_state = 19}, + [1854] = {.lex_state = 106, .external_lex_state = 12}, + [1855] = {.lex_state = 128, .external_lex_state = 13}, + [1856] = {.lex_state = 186, .external_lex_state = 13}, + [1857] = {.lex_state = 138, .external_lex_state = 12}, + [1858] = {.lex_state = 52, .external_lex_state = 25}, + [1859] = {.lex_state = 686, .external_lex_state = 16}, + [1860] = {.lex_state = 136, .external_lex_state = 12}, + [1861] = {.lex_state = 24, .external_lex_state = 19}, + [1862] = {.lex_state = 686, .external_lex_state = 16}, + [1863] = {.lex_state = 60, .external_lex_state = 12}, + [1864] = {.lex_state = 128, .external_lex_state = 13}, + [1865] = {.lex_state = 186, .external_lex_state = 13}, + [1866] = {.lex_state = 4, .external_lex_state = 13}, + [1867] = {.lex_state = 25, .external_lex_state = 12}, + [1868] = {.lex_state = 686, .external_lex_state = 19}, + [1869] = {.lex_state = 686, .external_lex_state = 16}, + [1870] = {.lex_state = 686, .external_lex_state = 16}, + [1871] = {.lex_state = 136, .external_lex_state = 12}, + [1872] = {.lex_state = 4, .external_lex_state = 13}, + [1873] = {.lex_state = 686, .external_lex_state = 16}, + [1874] = {.lex_state = 4, .external_lex_state = 13}, + [1875] = {.lex_state = 4, .external_lex_state = 13}, + [1876] = {.lex_state = 50, .external_lex_state = 26}, + [1877] = {.lex_state = 186, .external_lex_state = 13}, + [1878] = {.lex_state = 136, .external_lex_state = 12}, + [1879] = {.lex_state = 186, .external_lex_state = 12}, + [1880] = {.lex_state = 24, .external_lex_state = 19}, + [1881] = {.lex_state = 24, .external_lex_state = 19}, + [1882] = {.lex_state = 219, .external_lex_state = 26}, + [1883] = {.lex_state = 23, .external_lex_state = 18}, + [1884] = {.lex_state = 24, .external_lex_state = 19}, + [1885] = {.lex_state = 49, .external_lex_state = 13}, + [1886] = {.lex_state = 686, .external_lex_state = 13}, + [1887] = {.lex_state = 106, .external_lex_state = 12}, + [1888] = {.lex_state = 686, .external_lex_state = 12}, + [1889] = {.lex_state = 686, .external_lex_state = 12}, + [1890] = {.lex_state = 136, .external_lex_state = 12}, + [1891] = {.lex_state = 686, .external_lex_state = 19}, + [1892] = {.lex_state = 254, .external_lex_state = 12}, + [1893] = {.lex_state = 686, .external_lex_state = 19}, + [1894] = {.lex_state = 132, .external_lex_state = 12}, + [1895] = {.lex_state = 686, .external_lex_state = 19}, + [1896] = {.lex_state = 24, .external_lex_state = 19}, + [1897] = {.lex_state = 219, .external_lex_state = 26}, [1898] = {.lex_state = 24, .external_lex_state = 19}, - [1899] = {.lex_state = 25, .external_lex_state = 12}, - [1900] = {.lex_state = 249, .external_lex_state = 26}, - [1901] = {.lex_state = 249, .external_lex_state = 26}, - [1902] = {.lex_state = 665, .external_lex_state = 12}, - [1903] = {.lex_state = 160, .external_lex_state = 12}, - [1904] = {.lex_state = 665, .external_lex_state = 16}, - [1905] = {.lex_state = 160, .external_lex_state = 12}, - [1906] = {.lex_state = 3, .external_lex_state = 12}, - [1907] = {.lex_state = 131, .external_lex_state = 13}, - [1908] = {.lex_state = 665, .external_lex_state = 16}, - [1909] = {.lex_state = 665, .external_lex_state = 13}, - [1910] = {.lex_state = 131, .external_lex_state = 13}, - [1911] = {.lex_state = 38, .external_lex_state = 12}, - [1912] = {.lex_state = 127, .external_lex_state = 12}, - [1913] = {.lex_state = 127, .external_lex_state = 12}, - [1914] = {.lex_state = 24, .external_lex_state = 19}, - [1915] = {.lex_state = 137, .external_lex_state = 13}, - [1916] = {.lex_state = 24, .external_lex_state = 19}, - [1917] = {.lex_state = 137, .external_lex_state = 12}, - [1918] = {.lex_state = 184, .external_lex_state = 13}, - [1919] = {.lex_state = 137, .external_lex_state = 12}, - [1920] = {.lex_state = 209, .external_lex_state = 24}, - [1921] = {.lex_state = 665, .external_lex_state = 12}, - [1922] = {.lex_state = 137, .external_lex_state = 13}, - [1923] = {.lex_state = 137, .external_lex_state = 12}, - [1924] = {.lex_state = 205, .external_lex_state = 12}, - [1925] = {.lex_state = 137, .external_lex_state = 12}, - [1926] = {.lex_state = 103, .external_lex_state = 26}, - [1927] = {.lex_state = 103, .external_lex_state = 26}, - [1928] = {.lex_state = 198, .external_lex_state = 24}, - [1929] = {.lex_state = 205, .external_lex_state = 12}, - [1930] = {.lex_state = 198, .external_lex_state = 24}, - [1931] = {.lex_state = 655, .external_lex_state = 13}, - [1932] = {.lex_state = 137, .external_lex_state = 12}, - [1933] = {.lex_state = 161, .external_lex_state = 12}, - [1934] = {.lex_state = 665, .external_lex_state = 12}, - [1935] = {.lex_state = 138, .external_lex_state = 12}, - [1936] = {.lex_state = 665, .external_lex_state = 12}, - [1937] = {.lex_state = 248, .external_lex_state = 26}, - [1938] = {.lex_state = 137, .external_lex_state = 12}, - [1939] = {.lex_state = 665, .external_lex_state = 13}, - [1940] = {.lex_state = 665, .external_lex_state = 12}, - [1941] = {.lex_state = 665, .external_lex_state = 13}, - [1942] = {.lex_state = 208, .external_lex_state = 24}, - [1943] = {.lex_state = 181, .external_lex_state = 13}, - [1944] = {.lex_state = 655, .external_lex_state = 13}, - [1945] = {.lex_state = 208, .external_lex_state = 24}, - [1946] = {.lex_state = 137, .external_lex_state = 12}, - [1947] = {.lex_state = 665, .external_lex_state = 13}, - [1948] = {.lex_state = 665, .external_lex_state = 13}, - [1949] = {.lex_state = 137, .external_lex_state = 12}, - [1950] = {.lex_state = 137, .external_lex_state = 12}, - [1951] = {.lex_state = 138, .external_lex_state = 12}, - [1952] = {.lex_state = 137, .external_lex_state = 12}, - [1953] = {.lex_state = 208, .external_lex_state = 24}, - [1954] = {.lex_state = 161, .external_lex_state = 12}, - [1955] = {.lex_state = 665, .external_lex_state = 12}, - [1956] = {.lex_state = 137, .external_lex_state = 12}, - [1957] = {.lex_state = 665, .external_lex_state = 13}, - [1958] = {.lex_state = 51, .external_lex_state = 24}, - [1959] = {.lex_state = 138, .external_lex_state = 12}, - [1960] = {.lex_state = 184, .external_lex_state = 13}, - [1961] = {.lex_state = 665, .external_lex_state = 12}, - [1962] = {.lex_state = 665, .external_lex_state = 13}, - [1963] = {.lex_state = 665, .external_lex_state = 13}, - [1964] = {.lex_state = 665, .external_lex_state = 13}, - [1965] = {.lex_state = 665, .external_lex_state = 12}, - [1966] = {.lex_state = 665, .external_lex_state = 13}, - [1967] = {.lex_state = 665, .external_lex_state = 12}, - [1968] = {.lex_state = 665, .external_lex_state = 12}, - [1969] = {.lex_state = 665, .external_lex_state = 12}, - [1970] = {.lex_state = 655, .external_lex_state = 13}, - [1971] = {.lex_state = 665, .external_lex_state = 12}, - [1972] = {.lex_state = 665, .external_lex_state = 12}, - [1973] = {.lex_state = 665, .external_lex_state = 13}, - [1974] = {.lex_state = 131, .external_lex_state = 12}, - [1975] = {.lex_state = 665, .external_lex_state = 13}, - [1976] = {.lex_state = 665, .external_lex_state = 19}, - [1977] = {.lex_state = 205, .external_lex_state = 12}, - [1978] = {.lex_state = 137, .external_lex_state = 12}, - [1979] = {.lex_state = 131, .external_lex_state = 12}, - [1980] = {.lex_state = 163, .external_lex_state = 13}, - [1981] = {.lex_state = 665, .external_lex_state = 12}, - [1982] = {.lex_state = 163, .external_lex_state = 13}, - [1983] = {.lex_state = 205, .external_lex_state = 12}, - [1984] = {.lex_state = 665, .external_lex_state = 13}, - [1985] = {.lex_state = 665, .external_lex_state = 12}, - [1986] = {.lex_state = 665, .external_lex_state = 12}, - [1987] = {.lex_state = 665, .external_lex_state = 13}, - [1988] = {.lex_state = 161, .external_lex_state = 12}, - [1989] = {.lex_state = 665, .external_lex_state = 13}, - [1990] = {.lex_state = 665, .external_lex_state = 13}, - [1991] = {.lex_state = 208, .external_lex_state = 24}, - [1992] = {.lex_state = 208, .external_lex_state = 24}, - [1993] = {.lex_state = 248, .external_lex_state = 26}, - [1994] = {.lex_state = 163, .external_lex_state = 13}, - [1995] = {.lex_state = 163, .external_lex_state = 13}, - [1996] = {.lex_state = 665, .external_lex_state = 12}, - [1997] = {.lex_state = 131, .external_lex_state = 12}, - [1998] = {.lex_state = 665, .external_lex_state = 16}, - [1999] = {.lex_state = 665, .external_lex_state = 13}, - [2000] = {.lex_state = 135, .external_lex_state = 12}, - [2001] = {.lex_state = 131, .external_lex_state = 12}, - [2002] = {.lex_state = 137, .external_lex_state = 12}, - [2003] = {.lex_state = 665, .external_lex_state = 12}, - [2004] = {.lex_state = 198, .external_lex_state = 24}, - [2005] = {.lex_state = 198, .external_lex_state = 24}, - [2006] = {.lex_state = 205, .external_lex_state = 12}, - [2007] = {.lex_state = 49, .external_lex_state = 12}, - [2008] = {.lex_state = 665, .external_lex_state = 19}, - [2009] = {.lex_state = 137, .external_lex_state = 12}, - [2010] = {.lex_state = 163, .external_lex_state = 13}, - [2011] = {.lex_state = 665, .external_lex_state = 12}, - [2012] = {.lex_state = 665, .external_lex_state = 12}, - [2013] = {.lex_state = 131, .external_lex_state = 12}, - [2014] = {.lex_state = 248, .external_lex_state = 26}, - [2015] = {.lex_state = 248, .external_lex_state = 26}, - [2016] = {.lex_state = 137, .external_lex_state = 12}, - [2017] = {.lex_state = 665, .external_lex_state = 13}, - [2018] = {.lex_state = 102, .external_lex_state = 24}, - [2019] = {.lex_state = 181, .external_lex_state = 12}, - [2020] = {.lex_state = 102, .external_lex_state = 24}, - [2021] = {.lex_state = 137, .external_lex_state = 12}, - [2022] = {.lex_state = 103, .external_lex_state = 24}, - [2023] = {.lex_state = 665, .external_lex_state = 19}, - [2024] = {.lex_state = 665, .external_lex_state = 12}, - [2025] = {.lex_state = 665, .external_lex_state = 12}, - [2026] = {.lex_state = 201, .external_lex_state = 24}, - [2027] = {.lex_state = 665, .external_lex_state = 12}, - [2028] = {.lex_state = 184, .external_lex_state = 13}, - [2029] = {.lex_state = 25, .external_lex_state = 12}, - [2030] = {.lex_state = 665, .external_lex_state = 12}, - [2031] = {.lex_state = 665, .external_lex_state = 12}, - [2032] = {.lex_state = 665, .external_lex_state = 12}, - [2033] = {.lex_state = 0, .external_lex_state = 32}, - [2034] = {.lex_state = 201, .external_lex_state = 24}, - [2035] = {.lex_state = 137, .external_lex_state = 12}, - [2036] = {.lex_state = 25, .external_lex_state = 12}, - [2037] = {.lex_state = 665, .external_lex_state = 12}, - [2038] = {.lex_state = 665, .external_lex_state = 12}, - [2039] = {.lex_state = 665, .external_lex_state = 13}, - [2040] = {.lex_state = 38, .external_lex_state = 12}, - [2041] = {.lex_state = 25, .external_lex_state = 12}, - [2042] = {.lex_state = 665, .external_lex_state = 16}, - [2043] = {.lex_state = 0, .external_lex_state = 32}, - [2044] = {.lex_state = 207, .external_lex_state = 12}, - [2045] = {.lex_state = 665, .external_lex_state = 13}, - [2046] = {.lex_state = 201, .external_lex_state = 24}, - [2047] = {.lex_state = 665, .external_lex_state = 19}, - [2048] = {.lex_state = 665, .external_lex_state = 12}, - [2049] = {.lex_state = 201, .external_lex_state = 24}, - [2050] = {.lex_state = 201, .external_lex_state = 24}, - [2051] = {.lex_state = 201, .external_lex_state = 24}, - [2052] = {.lex_state = 665, .external_lex_state = 13}, - [2053] = {.lex_state = 207, .external_lex_state = 12}, - [2054] = {.lex_state = 201, .external_lex_state = 24}, - [2055] = {.lex_state = 25, .external_lex_state = 12}, - [2056] = {.lex_state = 184, .external_lex_state = 13}, - [2057] = {.lex_state = 665, .external_lex_state = 12}, - [2058] = {.lex_state = 665, .external_lex_state = 16}, - [2059] = {.lex_state = 0, .external_lex_state = 33}, - [2060] = {.lex_state = 665, .external_lex_state = 12}, - [2061] = {.lex_state = 207, .external_lex_state = 12}, - [2062] = {.lex_state = 665, .external_lex_state = 12}, - [2063] = {.lex_state = 665, .external_lex_state = 12}, - [2064] = {.lex_state = 137, .external_lex_state = 12}, - [2065] = {.lex_state = 25, .external_lex_state = 12}, - [2066] = {.lex_state = 25, .external_lex_state = 12}, - [2067] = {.lex_state = 0, .external_lex_state = 33}, - [2068] = {.lex_state = 0, .external_lex_state = 32}, - [2069] = {.lex_state = 137, .external_lex_state = 12}, - [2070] = {.lex_state = 665, .external_lex_state = 19}, - [2071] = {.lex_state = 184, .external_lex_state = 13}, - [2072] = {.lex_state = 184, .external_lex_state = 13}, - [2073] = {.lex_state = 137, .external_lex_state = 12}, - [2074] = {.lex_state = 137, .external_lex_state = 12}, - [2075] = {.lex_state = 665, .external_lex_state = 19}, - [2076] = {.lex_state = 665, .external_lex_state = 12}, - [2077] = {.lex_state = 202, .external_lex_state = 26}, - [2078] = {.lex_state = 665, .external_lex_state = 12}, - [2079] = {.lex_state = 665, .external_lex_state = 12}, - [2080] = {.lex_state = 137, .external_lex_state = 12}, - [2081] = {.lex_state = 665, .external_lex_state = 12}, - [2082] = {.lex_state = 202, .external_lex_state = 26}, - [2083] = {.lex_state = 184, .external_lex_state = 13}, - [2084] = {.lex_state = 199, .external_lex_state = 24}, - [2085] = {.lex_state = 137, .external_lex_state = 12}, - [2086] = {.lex_state = 0, .external_lex_state = 33}, - [2087] = {.lex_state = 199, .external_lex_state = 24}, - [2088] = {.lex_state = 25, .external_lex_state = 12}, - [2089] = {.lex_state = 137, .external_lex_state = 12}, - [2090] = {.lex_state = 199, .external_lex_state = 24}, - [2091] = {.lex_state = 202, .external_lex_state = 26}, - [2092] = {.lex_state = 202, .external_lex_state = 26}, - [2093] = {.lex_state = 199, .external_lex_state = 24}, - [2094] = {.lex_state = 137, .external_lex_state = 12}, - [2095] = {.lex_state = 25, .external_lex_state = 12}, - [2096] = {.lex_state = 150, .external_lex_state = 13}, - [2097] = {.lex_state = 184, .external_lex_state = 13}, - [2098] = {.lex_state = 25, .external_lex_state = 12}, - [2099] = {.lex_state = 137, .external_lex_state = 12}, - [2100] = {.lex_state = 137, .external_lex_state = 12}, - [2101] = {.lex_state = 202, .external_lex_state = 26}, - [2102] = {.lex_state = 103, .external_lex_state = 24}, - [2103] = {.lex_state = 665, .external_lex_state = 13}, - [2104] = {.lex_state = 665, .external_lex_state = 12}, - [2105] = {.lex_state = 665, .external_lex_state = 13}, - [2106] = {.lex_state = 202, .external_lex_state = 26}, - [2107] = {.lex_state = 665, .external_lex_state = 12}, - [2108] = {.lex_state = 665, .external_lex_state = 13}, - [2109] = {.lex_state = 25, .external_lex_state = 12}, - [2110] = {.lex_state = 665, .external_lex_state = 12}, - [2111] = {.lex_state = 137, .external_lex_state = 12}, - [2112] = {.lex_state = 665, .external_lex_state = 13}, - [2113] = {.lex_state = 0, .external_lex_state = 33}, - [2114] = {.lex_state = 665, .external_lex_state = 13}, - [2115] = {.lex_state = 137, .external_lex_state = 12}, - [2116] = {.lex_state = 137, .external_lex_state = 12}, - [2117] = {.lex_state = 665, .external_lex_state = 13}, - [2118] = {.lex_state = 207, .external_lex_state = 12}, - [2119] = {.lex_state = 23, .external_lex_state = 17}, - [2120] = {.lex_state = 184, .external_lex_state = 13}, - [2121] = {.lex_state = 202, .external_lex_state = 26}, - [2122] = {.lex_state = 0, .external_lex_state = 32}, - [2123] = {.lex_state = 23, .external_lex_state = 18}, - [2124] = {.lex_state = 184, .external_lex_state = 13}, - [2125] = {.lex_state = 184, .external_lex_state = 13}, - [2126] = {.lex_state = 25, .external_lex_state = 12}, + [1899] = {.lex_state = 686, .external_lex_state = 19}, + [1900] = {.lex_state = 138, .external_lex_state = 13}, + [1901] = {.lex_state = 186, .external_lex_state = 13}, + [1902] = {.lex_state = 60, .external_lex_state = 12}, + [1903] = {.lex_state = 173, .external_lex_state = 18}, + [1904] = {.lex_state = 24, .external_lex_state = 19}, + [1905] = {.lex_state = 686, .external_lex_state = 12}, + [1906] = {.lex_state = 261, .external_lex_state = 25}, + [1907] = {.lex_state = 25, .external_lex_state = 12}, + [1908] = {.lex_state = 25, .external_lex_state = 12}, + [1909] = {.lex_state = 261, .external_lex_state = 25}, + [1910] = {.lex_state = 138, .external_lex_state = 13}, + [1911] = {.lex_state = 128, .external_lex_state = 13}, + [1912] = {.lex_state = 23, .external_lex_state = 17}, + [1913] = {.lex_state = 163, .external_lex_state = 12}, + [1914] = {.lex_state = 261, .external_lex_state = 25}, + [1915] = {.lex_state = 24, .external_lex_state = 19}, + [1916] = {.lex_state = 138, .external_lex_state = 12}, + [1917] = {.lex_state = 186, .external_lex_state = 12}, + [1918] = {.lex_state = 219, .external_lex_state = 26}, + [1919] = {.lex_state = 60, .external_lex_state = 12}, + [1920] = {.lex_state = 25, .external_lex_state = 13}, + [1921] = {.lex_state = 686, .external_lex_state = 13}, + [1922] = {.lex_state = 38, .external_lex_state = 12}, + [1923] = {.lex_state = 132, .external_lex_state = 12}, + [1924] = {.lex_state = 138, .external_lex_state = 12}, + [1925] = {.lex_state = 186, .external_lex_state = 13}, + [1926] = {.lex_state = 186, .external_lex_state = 13}, + [1927] = {.lex_state = 686, .external_lex_state = 13}, + [1928] = {.lex_state = 186, .external_lex_state = 12}, + [1929] = {.lex_state = 138, .external_lex_state = 12}, + [1930] = {.lex_state = 163, .external_lex_state = 12}, + [1931] = {.lex_state = 4, .external_lex_state = 12}, + [1932] = {.lex_state = 163, .external_lex_state = 12}, + [1933] = {.lex_state = 163, .external_lex_state = 12}, + [1934] = {.lex_state = 186, .external_lex_state = 13}, + [1935] = {.lex_state = 219, .external_lex_state = 26}, + [1936] = {.lex_state = 49, .external_lex_state = 12}, + [1937] = {.lex_state = 128, .external_lex_state = 13}, + [1938] = {.lex_state = 9, .external_lex_state = 12}, + [1939] = {.lex_state = 132, .external_lex_state = 12}, + [1940] = {.lex_state = 686, .external_lex_state = 12}, + [1941] = {.lex_state = 254, .external_lex_state = 12}, + [1942] = {.lex_state = 38, .external_lex_state = 12}, + [1943] = {.lex_state = 128, .external_lex_state = 13}, + [1944] = {.lex_state = 138, .external_lex_state = 13}, + [1945] = {.lex_state = 38, .external_lex_state = 12}, + [1946] = {.lex_state = 186, .external_lex_state = 12}, + [1947] = {.lex_state = 186, .external_lex_state = 13}, + [1948] = {.lex_state = 25, .external_lex_state = 12}, + [1949] = {.lex_state = 261, .external_lex_state = 25}, + [1950] = {.lex_state = 186, .external_lex_state = 13}, + [1951] = {.lex_state = 49, .external_lex_state = 12}, + [1952] = {.lex_state = 173, .external_lex_state = 17}, + [1953] = {.lex_state = 132, .external_lex_state = 12}, + [1954] = {.lex_state = 132, .external_lex_state = 12}, + [1955] = {.lex_state = 686, .external_lex_state = 13}, + [1956] = {.lex_state = 138, .external_lex_state = 13}, + [1957] = {.lex_state = 25, .external_lex_state = 12}, + [1958] = {.lex_state = 186, .external_lex_state = 12}, + [1959] = {.lex_state = 686, .external_lex_state = 16}, + [1960] = {.lex_state = 60, .external_lex_state = 13}, + [1961] = {.lex_state = 4, .external_lex_state = 12}, + [1962] = {.lex_state = 4, .external_lex_state = 12}, + [1963] = {.lex_state = 261, .external_lex_state = 25}, + [1964] = {.lex_state = 4, .external_lex_state = 12}, + [1965] = {.lex_state = 24, .external_lex_state = 19}, + [1966] = {.lex_state = 60, .external_lex_state = 13}, + [1967] = {.lex_state = 260, .external_lex_state = 25}, + [1968] = {.lex_state = 686, .external_lex_state = 13}, + [1969] = {.lex_state = 686, .external_lex_state = 12}, + [1970] = {.lex_state = 686, .external_lex_state = 13}, + [1971] = {.lex_state = 686, .external_lex_state = 12}, + [1972] = {.lex_state = 686, .external_lex_state = 12}, + [1973] = {.lex_state = 218, .external_lex_state = 26}, + [1974] = {.lex_state = 676, .external_lex_state = 13}, + [1975] = {.lex_state = 686, .external_lex_state = 13}, + [1976] = {.lex_state = 686, .external_lex_state = 12}, + [1977] = {.lex_state = 215, .external_lex_state = 12}, + [1978] = {.lex_state = 686, .external_lex_state = 12}, + [1979] = {.lex_state = 686, .external_lex_state = 12}, + [1980] = {.lex_state = 218, .external_lex_state = 26}, + [1981] = {.lex_state = 138, .external_lex_state = 12}, + [1982] = {.lex_state = 183, .external_lex_state = 12}, + [1983] = {.lex_state = 215, .external_lex_state = 12}, + [1984] = {.lex_state = 686, .external_lex_state = 12}, + [1985] = {.lex_state = 166, .external_lex_state = 13}, + [1986] = {.lex_state = 208, .external_lex_state = 26}, + [1987] = {.lex_state = 686, .external_lex_state = 13}, + [1988] = {.lex_state = 166, .external_lex_state = 13}, + [1989] = {.lex_state = 128, .external_lex_state = 12}, + [1990] = {.lex_state = 686, .external_lex_state = 12}, + [1991] = {.lex_state = 260, .external_lex_state = 25}, + [1992] = {.lex_state = 215, .external_lex_state = 12}, + [1993] = {.lex_state = 686, .external_lex_state = 13}, + [1994] = {.lex_state = 208, .external_lex_state = 26}, + [1995] = {.lex_state = 686, .external_lex_state = 13}, + [1996] = {.lex_state = 686, .external_lex_state = 13}, + [1997] = {.lex_state = 686, .external_lex_state = 12}, + [1998] = {.lex_state = 218, .external_lex_state = 26}, + [1999] = {.lex_state = 676, .external_lex_state = 13}, + [2000] = {.lex_state = 676, .external_lex_state = 13}, + [2001] = {.lex_state = 260, .external_lex_state = 25}, + [2002] = {.lex_state = 215, .external_lex_state = 12}, + [2003] = {.lex_state = 686, .external_lex_state = 13}, + [2004] = {.lex_state = 138, .external_lex_state = 12}, + [2005] = {.lex_state = 686, .external_lex_state = 13}, + [2006] = {.lex_state = 215, .external_lex_state = 12}, + [2007] = {.lex_state = 686, .external_lex_state = 12}, + [2008] = {.lex_state = 218, .external_lex_state = 26}, + [2009] = {.lex_state = 166, .external_lex_state = 13}, + [2010] = {.lex_state = 49, .external_lex_state = 12}, + [2011] = {.lex_state = 686, .external_lex_state = 12}, + [2012] = {.lex_state = 260, .external_lex_state = 25}, + [2013] = {.lex_state = 686, .external_lex_state = 12}, + [2014] = {.lex_state = 138, .external_lex_state = 12}, + [2015] = {.lex_state = 136, .external_lex_state = 12}, + [2016] = {.lex_state = 104, .external_lex_state = 25}, + [2017] = {.lex_state = 104, .external_lex_state = 25}, + [2018] = {.lex_state = 686, .external_lex_state = 12}, + [2019] = {.lex_state = 686, .external_lex_state = 13}, + [2020] = {.lex_state = 138, .external_lex_state = 12}, + [2021] = {.lex_state = 138, .external_lex_state = 12}, + [2022] = {.lex_state = 139, .external_lex_state = 12}, + [2023] = {.lex_state = 686, .external_lex_state = 12}, + [2024] = {.lex_state = 686, .external_lex_state = 12}, + [2025] = {.lex_state = 686, .external_lex_state = 12}, + [2026] = {.lex_state = 686, .external_lex_state = 13}, + [2027] = {.lex_state = 128, .external_lex_state = 12}, + [2028] = {.lex_state = 166, .external_lex_state = 13}, + [2029] = {.lex_state = 138, .external_lex_state = 13}, + [2030] = {.lex_state = 138, .external_lex_state = 12}, + [2031] = {.lex_state = 138, .external_lex_state = 12}, + [2032] = {.lex_state = 186, .external_lex_state = 13}, + [2033] = {.lex_state = 166, .external_lex_state = 13}, + [2034] = {.lex_state = 686, .external_lex_state = 16}, + [2035] = {.lex_state = 138, .external_lex_state = 12}, + [2036] = {.lex_state = 686, .external_lex_state = 13}, + [2037] = {.lex_state = 686, .external_lex_state = 12}, + [2038] = {.lex_state = 164, .external_lex_state = 12}, + [2039] = {.lex_state = 138, .external_lex_state = 12}, + [2040] = {.lex_state = 686, .external_lex_state = 12}, + [2041] = {.lex_state = 139, .external_lex_state = 12}, + [2042] = {.lex_state = 164, .external_lex_state = 12}, + [2043] = {.lex_state = 138, .external_lex_state = 12}, + [2044] = {.lex_state = 183, .external_lex_state = 13}, + [2045] = {.lex_state = 218, .external_lex_state = 26}, + [2046] = {.lex_state = 686, .external_lex_state = 12}, + [2047] = {.lex_state = 103, .external_lex_state = 26}, + [2048] = {.lex_state = 138, .external_lex_state = 12}, + [2049] = {.lex_state = 686, .external_lex_state = 19}, + [2050] = {.lex_state = 686, .external_lex_state = 13}, + [2051] = {.lex_state = 103, .external_lex_state = 26}, + [2052] = {.lex_state = 686, .external_lex_state = 13}, + [2053] = {.lex_state = 138, .external_lex_state = 12}, + [2054] = {.lex_state = 139, .external_lex_state = 12}, + [2055] = {.lex_state = 128, .external_lex_state = 12}, + [2056] = {.lex_state = 51, .external_lex_state = 26}, + [2057] = {.lex_state = 686, .external_lex_state = 13}, + [2058] = {.lex_state = 208, .external_lex_state = 26}, + [2059] = {.lex_state = 208, .external_lex_state = 26}, + [2060] = {.lex_state = 686, .external_lex_state = 19}, + [2061] = {.lex_state = 128, .external_lex_state = 12}, + [2062] = {.lex_state = 138, .external_lex_state = 12}, + [2063] = {.lex_state = 128, .external_lex_state = 12}, + [2064] = {.lex_state = 686, .external_lex_state = 13}, + [2065] = {.lex_state = 164, .external_lex_state = 12}, + [2066] = {.lex_state = 686, .external_lex_state = 13}, + [2067] = {.lex_state = 686, .external_lex_state = 19}, + [2068] = {.lex_state = 686, .external_lex_state = 16}, + [2069] = {.lex_state = 25, .external_lex_state = 12}, + [2070] = {.lex_state = 211, .external_lex_state = 26}, + [2071] = {.lex_state = 686, .external_lex_state = 12}, + [2072] = {.lex_state = 686, .external_lex_state = 13}, + [2073] = {.lex_state = 186, .external_lex_state = 13}, + [2074] = {.lex_state = 686, .external_lex_state = 13}, + [2075] = {.lex_state = 686, .external_lex_state = 19}, + [2076] = {.lex_state = 686, .external_lex_state = 13}, + [2077] = {.lex_state = 686, .external_lex_state = 12}, + [2078] = {.lex_state = 686, .external_lex_state = 12}, + [2079] = {.lex_state = 0, .external_lex_state = 32}, + [2080] = {.lex_state = 686, .external_lex_state = 12}, + [2081] = {.lex_state = 686, .external_lex_state = 12}, + [2082] = {.lex_state = 23, .external_lex_state = 18}, + [2083] = {.lex_state = 686, .external_lex_state = 13}, + [2084] = {.lex_state = 686, .external_lex_state = 13}, + [2085] = {.lex_state = 138, .external_lex_state = 12}, + [2086] = {.lex_state = 186, .external_lex_state = 13}, + [2087] = {.lex_state = 0, .external_lex_state = 32}, + [2088] = {.lex_state = 686, .external_lex_state = 12}, + [2089] = {.lex_state = 138, .external_lex_state = 12}, + [2090] = {.lex_state = 209, .external_lex_state = 26}, + [2091] = {.lex_state = 0, .external_lex_state = 33}, + [2092] = {.lex_state = 209, .external_lex_state = 26}, + [2093] = {.lex_state = 0, .external_lex_state = 32}, + [2094] = {.lex_state = 686, .external_lex_state = 19}, + [2095] = {.lex_state = 0, .external_lex_state = 33}, + [2096] = {.lex_state = 25, .external_lex_state = 12}, + [2097] = {.lex_state = 686, .external_lex_state = 13}, + [2098] = {.lex_state = 686, .external_lex_state = 12}, + [2099] = {.lex_state = 217, .external_lex_state = 12}, + [2100] = {.lex_state = 217, .external_lex_state = 12}, + [2101] = {.lex_state = 686, .external_lex_state = 13}, + [2102] = {.lex_state = 104, .external_lex_state = 26}, + [2103] = {.lex_state = 686, .external_lex_state = 16}, + [2104] = {.lex_state = 686, .external_lex_state = 12}, + [2105] = {.lex_state = 686, .external_lex_state = 12}, + [2106] = {.lex_state = 686, .external_lex_state = 12}, + [2107] = {.lex_state = 686, .external_lex_state = 12}, + [2108] = {.lex_state = 186, .external_lex_state = 13}, + [2109] = {.lex_state = 138, .external_lex_state = 12}, + [2110] = {.lex_state = 104, .external_lex_state = 26}, + [2111] = {.lex_state = 138, .external_lex_state = 12}, + [2112] = {.lex_state = 25, .external_lex_state = 12}, + [2113] = {.lex_state = 186, .external_lex_state = 13}, + [2114] = {.lex_state = 186, .external_lex_state = 13}, + [2115] = {.lex_state = 25, .external_lex_state = 12}, + [2116] = {.lex_state = 0, .external_lex_state = 32}, + [2117] = {.lex_state = 686, .external_lex_state = 13}, + [2118] = {.lex_state = 25, .external_lex_state = 12}, + [2119] = {.lex_state = 138, .external_lex_state = 12}, + [2120] = {.lex_state = 186, .external_lex_state = 13}, + [2121] = {.lex_state = 686, .external_lex_state = 16}, + [2122] = {.lex_state = 138, .external_lex_state = 12}, + [2123] = {.lex_state = 686, .external_lex_state = 19}, + [2124] = {.lex_state = 25, .external_lex_state = 12}, + [2125] = {.lex_state = 686, .external_lex_state = 12}, + [2126] = {.lex_state = 686, .external_lex_state = 12}, [2127] = {.lex_state = 25, .external_lex_state = 12}, - [2128] = {.lex_state = 137, .external_lex_state = 12}, - [2129] = {.lex_state = 665, .external_lex_state = 16}, - [2130] = {.lex_state = 207, .external_lex_state = 12}, - [2131] = {.lex_state = 0, .external_lex_state = 33}, - [2132] = {.lex_state = 665, .external_lex_state = 13}, - [2133] = {.lex_state = 659, .external_lex_state = 12}, - [2134] = {.lex_state = 665, .external_lex_state = 12}, - [2135] = {.lex_state = 665, .external_lex_state = 12}, - [2136] = {.lex_state = 665, .external_lex_state = 12}, - [2137] = {.lex_state = 198, .external_lex_state = 24}, - [2138] = {.lex_state = 25, .external_lex_state = 12}, - [2139] = {.lex_state = 205, .external_lex_state = 12}, - [2140] = {.lex_state = 184, .external_lex_state = 34}, - [2141] = {.lex_state = 184, .external_lex_state = 34}, - [2142] = {.lex_state = 665, .external_lex_state = 12}, - [2143] = {.lex_state = 665, .external_lex_state = 12}, - [2144] = {.lex_state = 205, .external_lex_state = 12}, - [2145] = {.lex_state = 665, .external_lex_state = 12}, - [2146] = {.lex_state = 665, .external_lex_state = 12}, - [2147] = {.lex_state = 184, .external_lex_state = 34}, - [2148] = {.lex_state = 665, .external_lex_state = 13}, - [2149] = {.lex_state = 665, .external_lex_state = 12}, - [2150] = {.lex_state = 665, .external_lex_state = 12}, - [2151] = {.lex_state = 665, .external_lex_state = 12}, - [2152] = {.lex_state = 665, .external_lex_state = 12}, - [2153] = {.lex_state = 665, .external_lex_state = 12}, - [2154] = {.lex_state = 665, .external_lex_state = 12}, - [2155] = {.lex_state = 665, .external_lex_state = 13}, - [2156] = {.lex_state = 665, .external_lex_state = 12}, - [2157] = {.lex_state = 665, .external_lex_state = 12}, - [2158] = {.lex_state = 665, .external_lex_state = 12}, - [2159] = {.lex_state = 665, .external_lex_state = 12}, - [2160] = {.lex_state = 665, .external_lex_state = 13}, - [2161] = {.lex_state = 665, .external_lex_state = 12}, - [2162] = {.lex_state = 665, .external_lex_state = 12}, - [2163] = {.lex_state = 665, .external_lex_state = 12}, - [2164] = {.lex_state = 665, .external_lex_state = 13}, - [2165] = {.lex_state = 163, .external_lex_state = 13}, - [2166] = {.lex_state = 665, .external_lex_state = 12}, - [2167] = {.lex_state = 665, .external_lex_state = 12}, - [2168] = {.lex_state = 202, .external_lex_state = 24}, - [2169] = {.lex_state = 202, .external_lex_state = 24}, - [2170] = {.lex_state = 202, .external_lex_state = 24}, - [2171] = {.lex_state = 202, .external_lex_state = 24}, - [2172] = {.lex_state = 659, .external_lex_state = 12}, - [2173] = {.lex_state = 202, .external_lex_state = 24}, - [2174] = {.lex_state = 202, .external_lex_state = 24}, - [2175] = {.lex_state = 163, .external_lex_state = 13}, - [2176] = {.lex_state = 118, .external_lex_state = 13}, - [2177] = {.lex_state = 25, .external_lex_state = 12}, - [2178] = {.lex_state = 248, .external_lex_state = 26}, - [2179] = {.lex_state = 665, .external_lex_state = 12}, - [2180] = {.lex_state = 184, .external_lex_state = 13}, - [2181] = {.lex_state = 163, .external_lex_state = 13}, - [2182] = {.lex_state = 202, .external_lex_state = 24}, - [2183] = {.lex_state = 184, .external_lex_state = 12}, - [2184] = {.lex_state = 118, .external_lex_state = 12}, - [2185] = {.lex_state = 665, .external_lex_state = 12}, - [2186] = {.lex_state = 118, .external_lex_state = 13}, - [2187] = {.lex_state = 659, .external_lex_state = 12}, - [2188] = {.lex_state = 665, .external_lex_state = 13}, - [2189] = {.lex_state = 665, .external_lex_state = 13}, - [2190] = {.lex_state = 665, .external_lex_state = 13}, - [2191] = {.lex_state = 665, .external_lex_state = 13}, - [2192] = {.lex_state = 137, .external_lex_state = 12}, - [2193] = {.lex_state = 205, .external_lex_state = 12}, - [2194] = {.lex_state = 665, .external_lex_state = 13}, - [2195] = {.lex_state = 665, .external_lex_state = 13}, - [2196] = {.lex_state = 665, .external_lex_state = 13}, - [2197] = {.lex_state = 665, .external_lex_state = 13}, - [2198] = {.lex_state = 665, .external_lex_state = 13}, - [2199] = {.lex_state = 118, .external_lex_state = 12}, - [2200] = {.lex_state = 665, .external_lex_state = 12}, - [2201] = {.lex_state = 25, .external_lex_state = 12}, - [2202] = {.lex_state = 665, .external_lex_state = 13}, - [2203] = {.lex_state = 665, .external_lex_state = 13}, - [2204] = {.lex_state = 184, .external_lex_state = 34}, - [2205] = {.lex_state = 137, .external_lex_state = 12}, - [2206] = {.lex_state = 0, .external_lex_state = 32}, - [2207] = {.lex_state = 665, .external_lex_state = 13}, - [2208] = {.lex_state = 665, .external_lex_state = 13}, - [2209] = {.lex_state = 665, .external_lex_state = 13}, - [2210] = {.lex_state = 655, .external_lex_state = 13}, - [2211] = {.lex_state = 184, .external_lex_state = 34}, - [2212] = {.lex_state = 665, .external_lex_state = 13}, - [2213] = {.lex_state = 665, .external_lex_state = 13}, - [2214] = {.lex_state = 665, .external_lex_state = 13}, - [2215] = {.lex_state = 665, .external_lex_state = 12}, - [2216] = {.lex_state = 665, .external_lex_state = 12}, - [2217] = {.lex_state = 665, .external_lex_state = 13}, - [2218] = {.lex_state = 163, .external_lex_state = 13}, - [2219] = {.lex_state = 665, .external_lex_state = 13}, - [2220] = {.lex_state = 205, .external_lex_state = 12}, - [2221] = {.lex_state = 655, .external_lex_state = 13}, - [2222] = {.lex_state = 665, .external_lex_state = 12}, - [2223] = {.lex_state = 247, .external_lex_state = 12}, - [2224] = {.lex_state = 25, .external_lex_state = 12}, - [2225] = {.lex_state = 25, .external_lex_state = 12}, - [2226] = {.lex_state = 247, .external_lex_state = 12}, - [2227] = {.lex_state = 477, .external_lex_state = 29}, - [2228] = {.lex_state = 141, .external_lex_state = 12}, - [2229] = {.lex_state = 665, .external_lex_state = 13}, - [2230] = {.lex_state = 11, .external_lex_state = 13}, - [2231] = {.lex_state = 247, .external_lex_state = 12}, - [2232] = {.lex_state = 2, .external_lex_state = 13}, - [2233] = {.lex_state = 25, .external_lex_state = 12}, - [2234] = {.lex_state = 3, .external_lex_state = 12}, - [2235] = {.lex_state = 24, .external_lex_state = 12}, - [2236] = {.lex_state = 202, .external_lex_state = 26}, - [2237] = {.lex_state = 247, .external_lex_state = 12}, - [2238] = {.lex_state = 25, .external_lex_state = 12}, - [2239] = {.lex_state = 2, .external_lex_state = 13}, - [2240] = {.lex_state = 60, .external_lex_state = 13}, - [2241] = {.lex_state = 20, .external_lex_state = 12}, - [2242] = {.lex_state = 207, .external_lex_state = 12}, - [2243] = {.lex_state = 60, .external_lex_state = 13}, - [2244] = {.lex_state = 184, .external_lex_state = 12}, - [2245] = {.lex_state = 2, .external_lex_state = 13}, - [2246] = {.lex_state = 25, .external_lex_state = 12}, - [2247] = {.lex_state = 665, .external_lex_state = 13}, - [2248] = {.lex_state = 24, .external_lex_state = 12}, - [2249] = {.lex_state = 25, .external_lex_state = 12}, - [2250] = {.lex_state = 25, .external_lex_state = 12}, - [2251] = {.lex_state = 207, .external_lex_state = 12}, - [2252] = {.lex_state = 3, .external_lex_state = 12}, - [2253] = {.lex_state = 3, .external_lex_state = 12}, - [2254] = {.lex_state = 25, .external_lex_state = 12}, - [2255] = {.lex_state = 25, .external_lex_state = 12}, - [2256] = {.lex_state = 25, .external_lex_state = 12}, - [2257] = {.lex_state = 25, .external_lex_state = 12}, - [2258] = {.lex_state = 13, .external_lex_state = 12}, - [2259] = {.lex_state = 247, .external_lex_state = 12}, - [2260] = {.lex_state = 665, .external_lex_state = 13}, - [2261] = {.lex_state = 665, .external_lex_state = 12}, - [2262] = {.lex_state = 25, .external_lex_state = 12}, - [2263] = {.lex_state = 477, .external_lex_state = 29}, - [2264] = {.lex_state = 141, .external_lex_state = 12}, - [2265] = {.lex_state = 247, .external_lex_state = 12}, - [2266] = {.lex_state = 477, .external_lex_state = 29}, - [2267] = {.lex_state = 25, .external_lex_state = 12}, - [2268] = {.lex_state = 141, .external_lex_state = 12}, - [2269] = {.lex_state = 25, .external_lex_state = 12}, - [2270] = {.lex_state = 477, .external_lex_state = 29}, - [2271] = {.lex_state = 247, .external_lex_state = 12}, - [2272] = {.lex_state = 141, .external_lex_state = 12}, - [2273] = {.lex_state = 247, .external_lex_state = 12}, - [2274] = {.lex_state = 20, .external_lex_state = 12}, - [2275] = {.lex_state = 665, .external_lex_state = 12}, - [2276] = {.lex_state = 247, .external_lex_state = 12}, + [2128] = {.lex_state = 186, .external_lex_state = 13}, + [2129] = {.lex_state = 211, .external_lex_state = 26}, + [2130] = {.lex_state = 211, .external_lex_state = 26}, + [2131] = {.lex_state = 186, .external_lex_state = 13}, + [2132] = {.lex_state = 217, .external_lex_state = 12}, + [2133] = {.lex_state = 686, .external_lex_state = 12}, + [2134] = {.lex_state = 686, .external_lex_state = 12}, + [2135] = {.lex_state = 211, .external_lex_state = 26}, + [2136] = {.lex_state = 211, .external_lex_state = 26}, + [2137] = {.lex_state = 686, .external_lex_state = 12}, + [2138] = {.lex_state = 217, .external_lex_state = 12}, + [2139] = {.lex_state = 686, .external_lex_state = 12}, + [2140] = {.lex_state = 686, .external_lex_state = 13}, + [2141] = {.lex_state = 212, .external_lex_state = 25}, + [2142] = {.lex_state = 212, .external_lex_state = 25}, + [2143] = {.lex_state = 212, .external_lex_state = 25}, + [2144] = {.lex_state = 212, .external_lex_state = 25}, + [2145] = {.lex_state = 217, .external_lex_state = 12}, + [2146] = {.lex_state = 138, .external_lex_state = 12}, + [2147] = {.lex_state = 153, .external_lex_state = 13}, + [2148] = {.lex_state = 209, .external_lex_state = 26}, + [2149] = {.lex_state = 686, .external_lex_state = 12}, + [2150] = {.lex_state = 209, .external_lex_state = 26}, + [2151] = {.lex_state = 212, .external_lex_state = 25}, + [2152] = {.lex_state = 23, .external_lex_state = 17}, + [2153] = {.lex_state = 211, .external_lex_state = 26}, + [2154] = {.lex_state = 686, .external_lex_state = 12}, + [2155] = {.lex_state = 211, .external_lex_state = 26}, + [2156] = {.lex_state = 138, .external_lex_state = 12}, + [2157] = {.lex_state = 25, .external_lex_state = 12}, + [2158] = {.lex_state = 25, .external_lex_state = 12}, + [2159] = {.lex_state = 686, .external_lex_state = 12}, + [2160] = {.lex_state = 138, .external_lex_state = 12}, + [2161] = {.lex_state = 138, .external_lex_state = 12}, + [2162] = {.lex_state = 25, .external_lex_state = 12}, + [2163] = {.lex_state = 138, .external_lex_state = 12}, + [2164] = {.lex_state = 138, .external_lex_state = 12}, + [2165] = {.lex_state = 138, .external_lex_state = 12}, + [2166] = {.lex_state = 186, .external_lex_state = 13}, + [2167] = {.lex_state = 38, .external_lex_state = 12}, + [2168] = {.lex_state = 25, .external_lex_state = 12}, + [2169] = {.lex_state = 138, .external_lex_state = 12}, + [2170] = {.lex_state = 25, .external_lex_state = 12}, + [2171] = {.lex_state = 0, .external_lex_state = 33}, + [2172] = {.lex_state = 0, .external_lex_state = 33}, + [2173] = {.lex_state = 138, .external_lex_state = 12}, + [2174] = {.lex_state = 138, .external_lex_state = 12}, + [2175] = {.lex_state = 212, .external_lex_state = 25}, + [2176] = {.lex_state = 212, .external_lex_state = 25}, + [2177] = {.lex_state = 686, .external_lex_state = 12}, + [2178] = {.lex_state = 215, .external_lex_state = 12}, + [2179] = {.lex_state = 186, .external_lex_state = 12}, + [2180] = {.lex_state = 119, .external_lex_state = 12}, + [2181] = {.lex_state = 215, .external_lex_state = 12}, + [2182] = {.lex_state = 676, .external_lex_state = 13}, + [2183] = {.lex_state = 676, .external_lex_state = 13}, + [2184] = {.lex_state = 686, .external_lex_state = 12}, + [2185] = {.lex_state = 138, .external_lex_state = 12}, + [2186] = {.lex_state = 215, .external_lex_state = 12}, + [2187] = {.lex_state = 25, .external_lex_state = 12}, + [2188] = {.lex_state = 686, .external_lex_state = 13}, + [2189] = {.lex_state = 680, .external_lex_state = 12}, + [2190] = {.lex_state = 686, .external_lex_state = 13}, + [2191] = {.lex_state = 25, .external_lex_state = 12}, + [2192] = {.lex_state = 166, .external_lex_state = 13}, + [2193] = {.lex_state = 686, .external_lex_state = 13}, + [2194] = {.lex_state = 686, .external_lex_state = 13}, + [2195] = {.lex_state = 686, .external_lex_state = 13}, + [2196] = {.lex_state = 686, .external_lex_state = 13}, + [2197] = {.lex_state = 686, .external_lex_state = 13}, + [2198] = {.lex_state = 686, .external_lex_state = 13}, + [2199] = {.lex_state = 686, .external_lex_state = 13}, + [2200] = {.lex_state = 686, .external_lex_state = 13}, + [2201] = {.lex_state = 680, .external_lex_state = 12}, + [2202] = {.lex_state = 25, .external_lex_state = 12}, + [2203] = {.lex_state = 186, .external_lex_state = 34}, + [2204] = {.lex_state = 166, .external_lex_state = 13}, + [2205] = {.lex_state = 686, .external_lex_state = 13}, + [2206] = {.lex_state = 686, .external_lex_state = 13}, + [2207] = {.lex_state = 212, .external_lex_state = 26}, + [2208] = {.lex_state = 212, .external_lex_state = 26}, + [2209] = {.lex_state = 212, .external_lex_state = 26}, + [2210] = {.lex_state = 686, .external_lex_state = 13}, + [2211] = {.lex_state = 186, .external_lex_state = 34}, + [2212] = {.lex_state = 212, .external_lex_state = 26}, + [2213] = {.lex_state = 212, .external_lex_state = 26}, + [2214] = {.lex_state = 212, .external_lex_state = 26}, + [2215] = {.lex_state = 686, .external_lex_state = 13}, + [2216] = {.lex_state = 212, .external_lex_state = 26}, + [2217] = {.lex_state = 686, .external_lex_state = 13}, + [2218] = {.lex_state = 0, .external_lex_state = 33}, + [2219] = {.lex_state = 686, .external_lex_state = 12}, + [2220] = {.lex_state = 686, .external_lex_state = 12}, + [2221] = {.lex_state = 686, .external_lex_state = 13}, + [2222] = {.lex_state = 186, .external_lex_state = 34}, + [2223] = {.lex_state = 186, .external_lex_state = 13}, + [2224] = {.lex_state = 686, .external_lex_state = 12}, + [2225] = {.lex_state = 686, .external_lex_state = 12}, + [2226] = {.lex_state = 686, .external_lex_state = 12}, + [2227] = {.lex_state = 686, .external_lex_state = 12}, + [2228] = {.lex_state = 119, .external_lex_state = 13}, + [2229] = {.lex_state = 686, .external_lex_state = 13}, + [2230] = {.lex_state = 686, .external_lex_state = 13}, + [2231] = {.lex_state = 686, .external_lex_state = 12}, + [2232] = {.lex_state = 686, .external_lex_state = 12}, + [2233] = {.lex_state = 686, .external_lex_state = 12}, + [2234] = {.lex_state = 686, .external_lex_state = 12}, + [2235] = {.lex_state = 686, .external_lex_state = 12}, + [2236] = {.lex_state = 686, .external_lex_state = 12}, + [2237] = {.lex_state = 138, .external_lex_state = 12}, + [2238] = {.lex_state = 166, .external_lex_state = 13}, + [2239] = {.lex_state = 186, .external_lex_state = 34}, + [2240] = {.lex_state = 680, .external_lex_state = 12}, + [2241] = {.lex_state = 686, .external_lex_state = 13}, + [2242] = {.lex_state = 166, .external_lex_state = 13}, + [2243] = {.lex_state = 0, .external_lex_state = 32}, + [2244] = {.lex_state = 119, .external_lex_state = 13}, + [2245] = {.lex_state = 686, .external_lex_state = 12}, + [2246] = {.lex_state = 686, .external_lex_state = 12}, + [2247] = {.lex_state = 215, .external_lex_state = 12}, + [2248] = {.lex_state = 686, .external_lex_state = 12}, + [2249] = {.lex_state = 686, .external_lex_state = 12}, + [2250] = {.lex_state = 686, .external_lex_state = 12}, + [2251] = {.lex_state = 686, .external_lex_state = 12}, + [2252] = {.lex_state = 686, .external_lex_state = 12}, + [2253] = {.lex_state = 686, .external_lex_state = 12}, + [2254] = {.lex_state = 186, .external_lex_state = 34}, + [2255] = {.lex_state = 686, .external_lex_state = 12}, + [2256] = {.lex_state = 260, .external_lex_state = 25}, + [2257] = {.lex_state = 686, .external_lex_state = 12}, + [2258] = {.lex_state = 686, .external_lex_state = 13}, + [2259] = {.lex_state = 686, .external_lex_state = 12}, + [2260] = {.lex_state = 686, .external_lex_state = 12}, + [2261] = {.lex_state = 686, .external_lex_state = 12}, + [2262] = {.lex_state = 686, .external_lex_state = 13}, + [2263] = {.lex_state = 208, .external_lex_state = 26}, + [2264] = {.lex_state = 119, .external_lex_state = 12}, + [2265] = {.lex_state = 686, .external_lex_state = 13}, + [2266] = {.lex_state = 686, .external_lex_state = 12}, + [2267] = {.lex_state = 686, .external_lex_state = 13}, + [2268] = {.lex_state = 686, .external_lex_state = 13}, + [2269] = {.lex_state = 144, .external_lex_state = 12}, + [2270] = {.lex_state = 2, .external_lex_state = 13}, + [2271] = {.lex_state = 25, .external_lex_state = 12}, + [2272] = {.lex_state = 686, .external_lex_state = 13}, + [2273] = {.lex_state = 259, .external_lex_state = 12}, + [2274] = {.lex_state = 60, .external_lex_state = 13}, + [2275] = {.lex_state = 686, .external_lex_state = 13}, + [2276] = {.lex_state = 25, .external_lex_state = 12}, [2277] = {.lex_state = 25, .external_lex_state = 12}, - [2278] = {.lex_state = 25, .external_lex_state = 12}, - [2279] = {.lex_state = 477, .external_lex_state = 29}, - [2280] = {.lex_state = 66, .external_lex_state = 13}, - [2281] = {.lex_state = 665, .external_lex_state = 13}, - [2282] = {.lex_state = 66, .external_lex_state = 13}, - [2283] = {.lex_state = 141, .external_lex_state = 12}, - [2284] = {.lex_state = 247, .external_lex_state = 12}, - [2285] = {.lex_state = 247, .external_lex_state = 12}, - [2286] = {.lex_state = 184, .external_lex_state = 12}, - [2287] = {.lex_state = 665, .external_lex_state = 12}, - [2288] = {.lex_state = 247, .external_lex_state = 12}, - [2289] = {.lex_state = 25, .external_lex_state = 12}, - [2290] = {.lex_state = 25, .external_lex_state = 12}, - [2291] = {.lex_state = 201, .external_lex_state = 24}, - [2292] = {.lex_state = 201, .external_lex_state = 24}, - [2293] = {.lex_state = 74, .external_lex_state = 12}, + [2278] = {.lex_state = 259, .external_lex_state = 12}, + [2279] = {.lex_state = 2, .external_lex_state = 13}, + [2280] = {.lex_state = 259, .external_lex_state = 12}, + [2281] = {.lex_state = 2, .external_lex_state = 13}, + [2282] = {.lex_state = 60, .external_lex_state = 13}, + [2283] = {.lex_state = 259, .external_lex_state = 12}, + [2284] = {.lex_state = 2, .external_lex_state = 13}, + [2285] = {.lex_state = 259, .external_lex_state = 12}, + [2286] = {.lex_state = 259, .external_lex_state = 12}, + [2287] = {.lex_state = 259, .external_lex_state = 12}, + [2288] = {.lex_state = 259, .external_lex_state = 12}, + [2289] = {.lex_state = 259, .external_lex_state = 12}, + [2290] = {.lex_state = 259, .external_lex_state = 12}, + [2291] = {.lex_state = 498, .external_lex_state = 29}, + [2292] = {.lex_state = 144, .external_lex_state = 12}, + [2293] = {.lex_state = 259, .external_lex_state = 12}, [2294] = {.lex_state = 25, .external_lex_state = 12}, - [2295] = {.lex_state = 25, .external_lex_state = 12}, - [2296] = {.lex_state = 665, .external_lex_state = 23}, - [2297] = {.lex_state = 247, .external_lex_state = 12}, - [2298] = {.lex_state = 141, .external_lex_state = 12}, - [2299] = {.lex_state = 477, .external_lex_state = 29}, - [2300] = {.lex_state = 247, .external_lex_state = 12}, - [2301] = {.lex_state = 25, .external_lex_state = 12}, - [2302] = {.lex_state = 25, .external_lex_state = 12}, - [2303] = {.lex_state = 25, .external_lex_state = 12}, - [2304] = {.lex_state = 20, .external_lex_state = 12}, - [2305] = {.lex_state = 477, .external_lex_state = 29}, - [2306] = {.lex_state = 202, .external_lex_state = 26}, - [2307] = {.lex_state = 207, .external_lex_state = 12}, - [2308] = {.lex_state = 665, .external_lex_state = 12}, - [2309] = {.lex_state = 665, .external_lex_state = 12}, - [2310] = {.lex_state = 247, .external_lex_state = 12}, - [2311] = {.lex_state = 24, .external_lex_state = 12}, - [2312] = {.lex_state = 665, .external_lex_state = 23}, - [2313] = {.lex_state = 25, .external_lex_state = 12}, - [2314] = {.lex_state = 25, .external_lex_state = 12}, - [2315] = {.lex_state = 665, .external_lex_state = 12}, - [2316] = {.lex_state = 477, .external_lex_state = 29}, - [2317] = {.lex_state = 247, .external_lex_state = 12}, - [2318] = {.lex_state = 199, .external_lex_state = 24}, - [2319] = {.lex_state = 665, .external_lex_state = 12}, - [2320] = {.lex_state = 3, .external_lex_state = 12}, - [2321] = {.lex_state = 247, .external_lex_state = 12}, - [2322] = {.lex_state = 60, .external_lex_state = 13}, - [2323] = {.lex_state = 3, .external_lex_state = 12}, - [2324] = {.lex_state = 25, .external_lex_state = 12}, - [2325] = {.lex_state = 184, .external_lex_state = 13}, - [2326] = {.lex_state = 665, .external_lex_state = 12}, - [2327] = {.lex_state = 182, .external_lex_state = 13}, - [2328] = {.lex_state = 141, .external_lex_state = 12}, - [2329] = {.lex_state = 665, .external_lex_state = 12}, - [2330] = {.lex_state = 14, .external_lex_state = 13}, - [2331] = {.lex_state = 247, .external_lex_state = 12}, - [2332] = {.lex_state = 247, .external_lex_state = 12}, - [2333] = {.lex_state = 2, .external_lex_state = 13}, - [2334] = {.lex_state = 2, .external_lex_state = 13}, - [2335] = {.lex_state = 184, .external_lex_state = 13}, - [2336] = {.lex_state = 247, .external_lex_state = 12}, - [2337] = {.lex_state = 207, .external_lex_state = 12}, - [2338] = {.lex_state = 25, .external_lex_state = 12}, - [2339] = {.lex_state = 25, .external_lex_state = 12}, - [2340] = {.lex_state = 184, .external_lex_state = 12}, - [2341] = {.lex_state = 247, .external_lex_state = 12}, - [2342] = {.lex_state = 247, .external_lex_state = 12}, - [2343] = {.lex_state = 15, .external_lex_state = 12}, - [2344] = {.lex_state = 182, .external_lex_state = 12}, - [2345] = {.lex_state = 665, .external_lex_state = 13}, - [2346] = {.lex_state = 184, .external_lex_state = 12}, - [2347] = {.lex_state = 25, .external_lex_state = 12}, - [2348] = {.lex_state = 247, .external_lex_state = 12}, - [2349] = {.lex_state = 247, .external_lex_state = 12}, - [2350] = {.lex_state = 665, .external_lex_state = 12}, - [2351] = {.lex_state = 247, .external_lex_state = 12}, - [2352] = {.lex_state = 247, .external_lex_state = 12}, - [2353] = {.lex_state = 247, .external_lex_state = 12}, - [2354] = {.lex_state = 247, .external_lex_state = 12}, - [2355] = {.lex_state = 74, .external_lex_state = 12}, - [2356] = {.lex_state = 247, .external_lex_state = 12}, - [2357] = {.lex_state = 665, .external_lex_state = 12}, - [2358] = {.lex_state = 665, .external_lex_state = 13}, - [2359] = {.lex_state = 665, .external_lex_state = 12}, - [2360] = {.lex_state = 118, .external_lex_state = 12}, - [2361] = {.lex_state = 0, .external_lex_state = 13}, - [2362] = {.lex_state = 665, .external_lex_state = 12}, - [2363] = {.lex_state = 0, .external_lex_state = 13}, - [2364] = {.lex_state = 141, .external_lex_state = 12}, - [2365] = {.lex_state = 141, .external_lex_state = 12}, - [2366] = {.lex_state = 0, .external_lex_state = 13}, - [2367] = {.lex_state = 665, .external_lex_state = 12}, - [2368] = {.lex_state = 0, .external_lex_state = 13}, - [2369] = {.lex_state = 665, .external_lex_state = 12}, - [2370] = {.lex_state = 665, .external_lex_state = 12}, - [2371] = {.lex_state = 665, .external_lex_state = 12}, - [2372] = {.lex_state = 665, .external_lex_state = 12}, - [2373] = {.lex_state = 665, .external_lex_state = 12}, - [2374] = {.lex_state = 665, .external_lex_state = 12}, - [2375] = {.lex_state = 477, .external_lex_state = 12}, - [2376] = {.lex_state = 665, .external_lex_state = 12}, - [2377] = {.lex_state = 477, .external_lex_state = 12}, - [2378] = {.lex_state = 477, .external_lex_state = 12}, - [2379] = {.lex_state = 21, .external_lex_state = 35}, - [2380] = {.lex_state = 203, .external_lex_state = 12}, - [2381] = {.lex_state = 203, .external_lex_state = 12}, - [2382] = {.lex_state = 203, .external_lex_state = 12}, - [2383] = {.lex_state = 203, .external_lex_state = 12}, - [2384] = {.lex_state = 665, .external_lex_state = 23}, - [2385] = {.lex_state = 665, .external_lex_state = 12}, - [2386] = {.lex_state = 665, .external_lex_state = 12}, - [2387] = {.lex_state = 184, .external_lex_state = 34}, - [2388] = {.lex_state = 142, .external_lex_state = 12}, - [2389] = {.lex_state = 665, .external_lex_state = 12}, - [2390] = {.lex_state = 665, .external_lex_state = 12}, - [2391] = {.lex_state = 233, .external_lex_state = 12}, - [2392] = {.lex_state = 665, .external_lex_state = 12}, - [2393] = {.lex_state = 21, .external_lex_state = 35}, - [2394] = {.lex_state = 118, .external_lex_state = 13}, - [2395] = {.lex_state = 665, .external_lex_state = 12}, - [2396] = {.lex_state = 74, .external_lex_state = 12}, - [2397] = {.lex_state = 3, .external_lex_state = 12}, - [2398] = {.lex_state = 665, .external_lex_state = 12}, - [2399] = {.lex_state = 3, .external_lex_state = 12}, - [2400] = {.lex_state = 74, .external_lex_state = 12}, - [2401] = {.lex_state = 665, .external_lex_state = 12}, - [2402] = {.lex_state = 665, .external_lex_state = 12}, - [2403] = {.lex_state = 118, .external_lex_state = 12}, - [2404] = {.lex_state = 141, .external_lex_state = 12}, - [2405] = {.lex_state = 665, .external_lex_state = 12}, - [2406] = {.lex_state = 665, .external_lex_state = 12}, - [2407] = {.lex_state = 665, .external_lex_state = 23}, - [2408] = {.lex_state = 665, .external_lex_state = 12}, - [2409] = {.lex_state = 665, .external_lex_state = 12}, - [2410] = {.lex_state = 665, .external_lex_state = 12}, - [2411] = {.lex_state = 141, .external_lex_state = 12}, - [2412] = {.lex_state = 21, .external_lex_state = 35}, - [2413] = {.lex_state = 665, .external_lex_state = 12}, - [2414] = {.lex_state = 21, .external_lex_state = 35}, - [2415] = {.lex_state = 665, .external_lex_state = 12}, - [2416] = {.lex_state = 665, .external_lex_state = 12}, - [2417] = {.lex_state = 11, .external_lex_state = 12}, - [2418] = {.lex_state = 184, .external_lex_state = 12}, - [2419] = {.lex_state = 477, .external_lex_state = 12}, - [2420] = {.lex_state = 477, .external_lex_state = 12}, - [2421] = {.lex_state = 665, .external_lex_state = 12}, - [2422] = {.lex_state = 665, .external_lex_state = 12}, - [2423] = {.lex_state = 665, .external_lex_state = 23}, - [2424] = {.lex_state = 665, .external_lex_state = 12}, - [2425] = {.lex_state = 665, .external_lex_state = 12}, - [2426] = {.lex_state = 118, .external_lex_state = 12}, - [2427] = {.lex_state = 665, .external_lex_state = 12}, - [2428] = {.lex_state = 665, .external_lex_state = 12}, - [2429] = {.lex_state = 665, .external_lex_state = 12}, - [2430] = {.lex_state = 665, .external_lex_state = 12}, - [2431] = {.lex_state = 477, .external_lex_state = 12}, - [2432] = {.lex_state = 184, .external_lex_state = 12}, - [2433] = {.lex_state = 202, .external_lex_state = 24}, - [2434] = {.lex_state = 665, .external_lex_state = 12}, - [2435] = {.lex_state = 247, .external_lex_state = 12}, - [2436] = {.lex_state = 477, .external_lex_state = 12}, - [2437] = {.lex_state = 665, .external_lex_state = 12}, - [2438] = {.lex_state = 202, .external_lex_state = 24}, - [2439] = {.lex_state = 16, .external_lex_state = 12}, - [2440] = {.lex_state = 141, .external_lex_state = 12}, - [2441] = {.lex_state = 665, .external_lex_state = 12}, - [2442] = {.lex_state = 665, .external_lex_state = 12}, - [2443] = {.lex_state = 477, .external_lex_state = 12}, + [2295] = {.lex_state = 686, .external_lex_state = 12}, + [2296] = {.lex_state = 259, .external_lex_state = 12}, + [2297] = {.lex_state = 25, .external_lex_state = 12}, + [2298] = {.lex_state = 259, .external_lex_state = 12}, + [2299] = {.lex_state = 25, .external_lex_state = 12}, + [2300] = {.lex_state = 259, .external_lex_state = 12}, + [2301] = {.lex_state = 259, .external_lex_state = 12}, + [2302] = {.lex_state = 24, .external_lex_state = 12}, + [2303] = {.lex_state = 66, .external_lex_state = 13}, + [2304] = {.lex_state = 4, .external_lex_state = 12}, + [2305] = {.lex_state = 25, .external_lex_state = 12}, + [2306] = {.lex_state = 259, .external_lex_state = 12}, + [2307] = {.lex_state = 259, .external_lex_state = 12}, + [2308] = {.lex_state = 20, .external_lex_state = 12}, + [2309] = {.lex_state = 25, .external_lex_state = 12}, + [2310] = {.lex_state = 25, .external_lex_state = 12}, + [2311] = {.lex_state = 186, .external_lex_state = 12}, + [2312] = {.lex_state = 259, .external_lex_state = 12}, + [2313] = {.lex_state = 259, .external_lex_state = 12}, + [2314] = {.lex_state = 259, .external_lex_state = 12}, + [2315] = {.lex_state = 212, .external_lex_state = 25}, + [2316] = {.lex_state = 212, .external_lex_state = 25}, + [2317] = {.lex_state = 11, .external_lex_state = 13}, + [2318] = {.lex_state = 20, .external_lex_state = 12}, + [2319] = {.lex_state = 259, .external_lex_state = 12}, + [2320] = {.lex_state = 259, .external_lex_state = 12}, + [2321] = {.lex_state = 259, .external_lex_state = 12}, + [2322] = {.lex_state = 144, .external_lex_state = 12}, + [2323] = {.lex_state = 498, .external_lex_state = 29}, + [2324] = {.lex_state = 686, .external_lex_state = 12}, + [2325] = {.lex_state = 25, .external_lex_state = 12}, + [2326] = {.lex_state = 498, .external_lex_state = 29}, + [2327] = {.lex_state = 25, .external_lex_state = 12}, + [2328] = {.lex_state = 686, .external_lex_state = 13}, + [2329] = {.lex_state = 25, .external_lex_state = 12}, + [2330] = {.lex_state = 25, .external_lex_state = 12}, + [2331] = {.lex_state = 25, .external_lex_state = 12}, + [2332] = {.lex_state = 25, .external_lex_state = 12}, + [2333] = {.lex_state = 25, .external_lex_state = 12}, + [2334] = {.lex_state = 25, .external_lex_state = 12}, + [2335] = {.lex_state = 60, .external_lex_state = 13}, + [2336] = {.lex_state = 498, .external_lex_state = 29}, + [2337] = {.lex_state = 2, .external_lex_state = 13}, + [2338] = {.lex_state = 24, .external_lex_state = 12}, + [2339] = {.lex_state = 4, .external_lex_state = 12}, + [2340] = {.lex_state = 4, .external_lex_state = 12}, + [2341] = {.lex_state = 25, .external_lex_state = 12}, + [2342] = {.lex_state = 498, .external_lex_state = 29}, + [2343] = {.lex_state = 13, .external_lex_state = 12}, + [2344] = {.lex_state = 186, .external_lex_state = 13}, + [2345] = {.lex_state = 14, .external_lex_state = 13}, + [2346] = {.lex_state = 184, .external_lex_state = 13}, + [2347] = {.lex_state = 144, .external_lex_state = 12}, + [2348] = {.lex_state = 186, .external_lex_state = 13}, + [2349] = {.lex_state = 25, .external_lex_state = 12}, + [2350] = {.lex_state = 66, .external_lex_state = 13}, + [2351] = {.lex_state = 20, .external_lex_state = 12}, + [2352] = {.lex_state = 259, .external_lex_state = 12}, + [2353] = {.lex_state = 686, .external_lex_state = 13}, + [2354] = {.lex_state = 259, .external_lex_state = 12}, + [2355] = {.lex_state = 259, .external_lex_state = 12}, + [2356] = {.lex_state = 686, .external_lex_state = 12}, + [2357] = {.lex_state = 686, .external_lex_state = 12}, + [2358] = {.lex_state = 686, .external_lex_state = 23}, + [2359] = {.lex_state = 686, .external_lex_state = 13}, + [2360] = {.lex_state = 15, .external_lex_state = 12}, + [2361] = {.lex_state = 74, .external_lex_state = 12}, + [2362] = {.lex_state = 25, .external_lex_state = 12}, + [2363] = {.lex_state = 217, .external_lex_state = 12}, + [2364] = {.lex_state = 259, .external_lex_state = 12}, + [2365] = {.lex_state = 25, .external_lex_state = 12}, + [2366] = {.lex_state = 686, .external_lex_state = 12}, + [2367] = {.lex_state = 686, .external_lex_state = 12}, + [2368] = {.lex_state = 144, .external_lex_state = 12}, + [2369] = {.lex_state = 25, .external_lex_state = 12}, + [2370] = {.lex_state = 211, .external_lex_state = 26}, + [2371] = {.lex_state = 211, .external_lex_state = 26}, + [2372] = {.lex_state = 498, .external_lex_state = 29}, + [2373] = {.lex_state = 25, .external_lex_state = 12}, + [2374] = {.lex_state = 686, .external_lex_state = 23}, + [2375] = {.lex_state = 186, .external_lex_state = 12}, + [2376] = {.lex_state = 686, .external_lex_state = 12}, + [2377] = {.lex_state = 25, .external_lex_state = 12}, + [2378] = {.lex_state = 209, .external_lex_state = 26}, + [2379] = {.lex_state = 25, .external_lex_state = 12}, + [2380] = {.lex_state = 259, .external_lex_state = 12}, + [2381] = {.lex_state = 217, .external_lex_state = 12}, + [2382] = {.lex_state = 686, .external_lex_state = 12}, + [2383] = {.lex_state = 498, .external_lex_state = 29}, + [2384] = {.lex_state = 686, .external_lex_state = 12}, + [2385] = {.lex_state = 144, .external_lex_state = 12}, + [2386] = {.lex_state = 25, .external_lex_state = 12}, + [2387] = {.lex_state = 144, .external_lex_state = 12}, + [2388] = {.lex_state = 498, .external_lex_state = 29}, + [2389] = {.lex_state = 25, .external_lex_state = 12}, + [2390] = {.lex_state = 686, .external_lex_state = 12}, + [2391] = {.lex_state = 259, .external_lex_state = 12}, + [2392] = {.lex_state = 25, .external_lex_state = 12}, + [2393] = {.lex_state = 74, .external_lex_state = 12}, + [2394] = {.lex_state = 217, .external_lex_state = 12}, + [2395] = {.lex_state = 186, .external_lex_state = 12}, + [2396] = {.lex_state = 24, .external_lex_state = 12}, + [2397] = {.lex_state = 4, .external_lex_state = 12}, + [2398] = {.lex_state = 4, .external_lex_state = 12}, + [2399] = {.lex_state = 25, .external_lex_state = 12}, + [2400] = {.lex_state = 184, .external_lex_state = 12}, + [2401] = {.lex_state = 217, .external_lex_state = 12}, + [2402] = {.lex_state = 186, .external_lex_state = 12}, + [2403] = {.lex_state = 19, .external_lex_state = 12}, + [2404] = {.lex_state = 686, .external_lex_state = 12}, + [2405] = {.lex_state = 0, .external_lex_state = 13}, + [2406] = {.lex_state = 686, .external_lex_state = 12}, + [2407] = {.lex_state = 0, .external_lex_state = 13}, + [2408] = {.lex_state = 686, .external_lex_state = 12}, + [2409] = {.lex_state = 686, .external_lex_state = 12}, + [2410] = {.lex_state = 686, .external_lex_state = 12}, + [2411] = {.lex_state = 498, .external_lex_state = 12}, + [2412] = {.lex_state = 686, .external_lex_state = 12}, + [2413] = {.lex_state = 686, .external_lex_state = 12}, + [2414] = {.lex_state = 686, .external_lex_state = 12}, + [2415] = {.lex_state = 0, .external_lex_state = 13}, + [2416] = {.lex_state = 686, .external_lex_state = 12}, + [2417] = {.lex_state = 0, .external_lex_state = 13}, + [2418] = {.lex_state = 144, .external_lex_state = 12}, + [2419] = {.lex_state = 686, .external_lex_state = 23}, + [2420] = {.lex_state = 686, .external_lex_state = 23}, + [2421] = {.lex_state = 11, .external_lex_state = 12}, + [2422] = {.lex_state = 119, .external_lex_state = 12}, + [2423] = {.lex_state = 686, .external_lex_state = 12}, + [2424] = {.lex_state = 119, .external_lex_state = 12}, + [2425] = {.lex_state = 686, .external_lex_state = 12}, + [2426] = {.lex_state = 686, .external_lex_state = 12}, + [2427] = {.lex_state = 144, .external_lex_state = 12}, + [2428] = {.lex_state = 213, .external_lex_state = 12}, + [2429] = {.lex_state = 213, .external_lex_state = 12}, + [2430] = {.lex_state = 213, .external_lex_state = 12}, + [2431] = {.lex_state = 213, .external_lex_state = 12}, + [2432] = {.lex_state = 686, .external_lex_state = 12}, + [2433] = {.lex_state = 212, .external_lex_state = 26}, + [2434] = {.lex_state = 686, .external_lex_state = 12}, + [2435] = {.lex_state = 686, .external_lex_state = 12}, + [2436] = {.lex_state = 144, .external_lex_state = 12}, + [2437] = {.lex_state = 686, .external_lex_state = 12}, + [2438] = {.lex_state = 244, .external_lex_state = 12}, + [2439] = {.lex_state = 213, .external_lex_state = 12}, + [2440] = {.lex_state = 213, .external_lex_state = 12}, + [2441] = {.lex_state = 144, .external_lex_state = 12}, + [2442] = {.lex_state = 213, .external_lex_state = 12}, + [2443] = {.lex_state = 686, .external_lex_state = 12}, [2444] = {.lex_state = 0, .external_lex_state = 13}, - [2445] = {.lex_state = 141, .external_lex_state = 12}, - [2446] = {.lex_state = 665, .external_lex_state = 12}, - [2447] = {.lex_state = 665, .external_lex_state = 12}, - [2448] = {.lex_state = 665, .external_lex_state = 12}, - [2449] = {.lex_state = 665, .external_lex_state = 12}, - [2450] = {.lex_state = 477, .external_lex_state = 12}, - [2451] = {.lex_state = 141, .external_lex_state = 12}, - [2452] = {.lex_state = 142, .external_lex_state = 12}, - [2453] = {.lex_state = 0, .external_lex_state = 13}, - [2454] = {.lex_state = 21, .external_lex_state = 35}, - [2455] = {.lex_state = 665, .external_lex_state = 12}, - [2456] = {.lex_state = 19, .external_lex_state = 12}, - [2457] = {.lex_state = 21, .external_lex_state = 35}, - [2458] = {.lex_state = 21, .external_lex_state = 35}, - [2459] = {.lex_state = 665, .external_lex_state = 12}, - [2460] = {.lex_state = 665, .external_lex_state = 12}, - [2461] = {.lex_state = 477, .external_lex_state = 12}, - [2462] = {.lex_state = 477, .external_lex_state = 12}, - [2463] = {.lex_state = 21, .external_lex_state = 35}, - [2464] = {.lex_state = 665, .external_lex_state = 12}, - [2465] = {.lex_state = 21, .external_lex_state = 35}, - [2466] = {.lex_state = 665, .external_lex_state = 12}, - [2467] = {.lex_state = 0, .external_lex_state = 13}, - [2468] = {.lex_state = 142, .external_lex_state = 12}, - [2469] = {.lex_state = 665, .external_lex_state = 12}, - [2470] = {.lex_state = 665, .external_lex_state = 12}, - [2471] = {.lex_state = 21, .external_lex_state = 35}, - [2472] = {.lex_state = 665, .external_lex_state = 12}, - [2473] = {.lex_state = 0, .external_lex_state = 13}, - [2474] = {.lex_state = 665, .external_lex_state = 12}, - [2475] = {.lex_state = 141, .external_lex_state = 12}, - [2476] = {.lex_state = 665, .external_lex_state = 12}, - [2477] = {.lex_state = 141, .external_lex_state = 12}, - [2478] = {.lex_state = 665, .external_lex_state = 12}, - [2479] = {.lex_state = 3, .external_lex_state = 12}, - [2480] = {.lex_state = 118, .external_lex_state = 12}, - [2481] = {.lex_state = 3, .external_lex_state = 12}, - [2482] = {.lex_state = 3, .external_lex_state = 12}, - [2483] = {.lex_state = 118, .external_lex_state = 12}, - [2484] = {.lex_state = 665, .external_lex_state = 12}, - [2485] = {.lex_state = 3, .external_lex_state = 12}, - [2486] = {.lex_state = 665, .external_lex_state = 12}, - [2487] = {.lex_state = 665, .external_lex_state = 12}, - [2488] = {.lex_state = 665, .external_lex_state = 12}, - [2489] = {.lex_state = 141, .external_lex_state = 12}, - [2490] = {.lex_state = 665, .external_lex_state = 12}, - [2491] = {.lex_state = 665, .external_lex_state = 12}, - [2492] = {.lex_state = 118, .external_lex_state = 12}, - [2493] = {.lex_state = 665, .external_lex_state = 12}, - [2494] = {.lex_state = 118, .external_lex_state = 12}, - [2495] = {.lex_state = 233, .external_lex_state = 12}, - [2496] = {.lex_state = 0, .external_lex_state = 13}, - [2497] = {.lex_state = 665, .external_lex_state = 12}, - [2498] = {.lex_state = 2, .external_lex_state = 13}, - [2499] = {.lex_state = 2, .external_lex_state = 13}, - [2500] = {.lex_state = 665, .external_lex_state = 12}, - [2501] = {.lex_state = 21, .external_lex_state = 35}, - [2502] = {.lex_state = 141, .external_lex_state = 12}, - [2503] = {.lex_state = 118, .external_lex_state = 12}, - [2504] = {.lex_state = 21, .external_lex_state = 35}, + [2445] = {.lex_state = 686, .external_lex_state = 12}, + [2446] = {.lex_state = 686, .external_lex_state = 12}, + [2447] = {.lex_state = 212, .external_lex_state = 26}, + [2448] = {.lex_state = 16, .external_lex_state = 12}, + [2449] = {.lex_state = 0, .external_lex_state = 13}, + [2450] = {.lex_state = 686, .external_lex_state = 12}, + [2451] = {.lex_state = 186, .external_lex_state = 34}, + [2452] = {.lex_state = 498, .external_lex_state = 12}, + [2453] = {.lex_state = 686, .external_lex_state = 12}, + [2454] = {.lex_state = 186, .external_lex_state = 12}, + [2455] = {.lex_state = 686, .external_lex_state = 12}, + [2456] = {.lex_state = 686, .external_lex_state = 12}, + [2457] = {.lex_state = 213, .external_lex_state = 12}, + [2458] = {.lex_state = 686, .external_lex_state = 12}, + [2459] = {.lex_state = 144, .external_lex_state = 12}, + [2460] = {.lex_state = 686, .external_lex_state = 12}, + [2461] = {.lex_state = 21, .external_lex_state = 35}, + [2462] = {.lex_state = 686, .external_lex_state = 12}, + [2463] = {.lex_state = 686, .external_lex_state = 12}, + [2464] = {.lex_state = 119, .external_lex_state = 12}, + [2465] = {.lex_state = 145, .external_lex_state = 12}, + [2466] = {.lex_state = 498, .external_lex_state = 12}, + [2467] = {.lex_state = 498, .external_lex_state = 12}, + [2468] = {.lex_state = 686, .external_lex_state = 12}, + [2469] = {.lex_state = 244, .external_lex_state = 12}, + [2470] = {.lex_state = 119, .external_lex_state = 12}, + [2471] = {.lex_state = 686, .external_lex_state = 12}, + [2472] = {.lex_state = 686, .external_lex_state = 12}, + [2473] = {.lex_state = 686, .external_lex_state = 12}, + [2474] = {.lex_state = 144, .external_lex_state = 12}, + [2475] = {.lex_state = 498, .external_lex_state = 12}, + [2476] = {.lex_state = 686, .external_lex_state = 12}, + [2477] = {.lex_state = 144, .external_lex_state = 12}, + [2478] = {.lex_state = 686, .external_lex_state = 12}, + [2479] = {.lex_state = 19, .external_lex_state = 12}, + [2480] = {.lex_state = 686, .external_lex_state = 12}, + [2481] = {.lex_state = 262, .external_lex_state = 12}, + [2482] = {.lex_state = 119, .external_lex_state = 12}, + [2483] = {.lex_state = 686, .external_lex_state = 12}, + [2484] = {.lex_state = 119, .external_lex_state = 12}, + [2485] = {.lex_state = 498, .external_lex_state = 12}, + [2486] = {.lex_state = 686, .external_lex_state = 12}, + [2487] = {.lex_state = 686, .external_lex_state = 13}, + [2488] = {.lex_state = 21, .external_lex_state = 35}, + [2489] = {.lex_state = 686, .external_lex_state = 12}, + [2490] = {.lex_state = 498, .external_lex_state = 12}, + [2491] = {.lex_state = 0, .external_lex_state = 13}, + [2492] = {.lex_state = 119, .external_lex_state = 12}, + [2493] = {.lex_state = 2, .external_lex_state = 13}, + [2494] = {.lex_state = 2, .external_lex_state = 13}, + [2495] = {.lex_state = 686, .external_lex_state = 12}, + [2496] = {.lex_state = 686, .external_lex_state = 12}, + [2497] = {.lex_state = 60, .external_lex_state = 13}, + [2498] = {.lex_state = 686, .external_lex_state = 12}, + [2499] = {.lex_state = 144, .external_lex_state = 12}, + [2500] = {.lex_state = 2, .external_lex_state = 13}, + [2501] = {.lex_state = 119, .external_lex_state = 13}, + [2502] = {.lex_state = 686, .external_lex_state = 12}, + [2503] = {.lex_state = 686, .external_lex_state = 12}, + [2504] = {.lex_state = 119, .external_lex_state = 12}, [2505] = {.lex_state = 21, .external_lex_state = 35}, - [2506] = {.lex_state = 21, .external_lex_state = 35}, - [2507] = {.lex_state = 184, .external_lex_state = 12}, - [2508] = {.lex_state = 60, .external_lex_state = 13}, - [2509] = {.lex_state = 665, .external_lex_state = 12}, - [2510] = {.lex_state = 184, .external_lex_state = 12}, - [2511] = {.lex_state = 659, .external_lex_state = 12}, - [2512] = {.lex_state = 141, .external_lex_state = 12}, - [2513] = {.lex_state = 665, .external_lex_state = 12}, - [2514] = {.lex_state = 203, .external_lex_state = 12}, - [2515] = {.lex_state = 203, .external_lex_state = 12}, - [2516] = {.lex_state = 19, .external_lex_state = 12}, - [2517] = {.lex_state = 665, .external_lex_state = 12}, + [2506] = {.lex_state = 144, .external_lex_state = 12}, + [2507] = {.lex_state = 686, .external_lex_state = 12}, + [2508] = {.lex_state = 686, .external_lex_state = 12}, + [2509] = {.lex_state = 0, .external_lex_state = 13}, + [2510] = {.lex_state = 0, .external_lex_state = 13}, + [2511] = {.lex_state = 186, .external_lex_state = 12}, + [2512] = {.lex_state = 686, .external_lex_state = 12}, + [2513] = {.lex_state = 498, .external_lex_state = 12}, + [2514] = {.lex_state = 686, .external_lex_state = 12}, + [2515] = {.lex_state = 680, .external_lex_state = 12}, + [2516] = {.lex_state = 259, .external_lex_state = 12}, + [2517] = {.lex_state = 686, .external_lex_state = 23}, [2518] = {.lex_state = 21, .external_lex_state = 35}, - [2519] = {.lex_state = 21, .external_lex_state = 35}, - [2520] = {.lex_state = 203, .external_lex_state = 12}, - [2521] = {.lex_state = 665, .external_lex_state = 12}, - [2522] = {.lex_state = 141, .external_lex_state = 12}, - [2523] = {.lex_state = 118, .external_lex_state = 13}, - [2524] = {.lex_state = 0, .external_lex_state = 13}, - [2525] = {.lex_state = 659, .external_lex_state = 12}, - [2526] = {.lex_state = 665, .external_lex_state = 12}, - [2527] = {.lex_state = 24, .external_lex_state = 12}, - [2528] = {.lex_state = 477, .external_lex_state = 12}, - [2529] = {.lex_state = 3, .external_lex_state = 12}, - [2530] = {.lex_state = 21, .external_lex_state = 35}, - [2531] = {.lex_state = 3, .external_lex_state = 12}, - [2532] = {.lex_state = 665, .external_lex_state = 12}, - [2533] = {.lex_state = 203, .external_lex_state = 12}, - [2534] = {.lex_state = 118, .external_lex_state = 12}, - [2535] = {.lex_state = 665, .external_lex_state = 12}, - [2536] = {.lex_state = 665, .external_lex_state = 12}, - [2537] = {.lex_state = 665, .external_lex_state = 12}, - [2538] = {.lex_state = 665, .external_lex_state = 12}, - [2539] = {.lex_state = 0, .external_lex_state = 13}, - [2540] = {.lex_state = 2, .external_lex_state = 13}, - [2541] = {.lex_state = 665, .external_lex_state = 12}, - [2542] = {.lex_state = 665, .external_lex_state = 12}, - [2543] = {.lex_state = 141, .external_lex_state = 12}, - [2544] = {.lex_state = 0, .external_lex_state = 13}, - [2545] = {.lex_state = 665, .external_lex_state = 12}, - [2546] = {.lex_state = 118, .external_lex_state = 12}, - [2547] = {.lex_state = 665, .external_lex_state = 12}, - [2548] = {.lex_state = 118, .external_lex_state = 12}, - [2549] = {.lex_state = 665, .external_lex_state = 12}, - [2550] = {.lex_state = 665, .external_lex_state = 12}, - [2551] = {.lex_state = 665, .external_lex_state = 12}, - [2552] = {.lex_state = 0, .external_lex_state = 13}, - [2553] = {.lex_state = 665, .external_lex_state = 12}, - [2554] = {.lex_state = 665, .external_lex_state = 12}, - [2555] = {.lex_state = 665, .external_lex_state = 12}, - [2556] = {.lex_state = 0, .external_lex_state = 13}, - [2557] = {.lex_state = 19, .external_lex_state = 12}, - [2558] = {.lex_state = 665, .external_lex_state = 12}, - [2559] = {.lex_state = 665, .external_lex_state = 12}, - [2560] = {.lex_state = 0, .external_lex_state = 13}, - [2561] = {.lex_state = 665, .external_lex_state = 12}, - [2562] = {.lex_state = 665, .external_lex_state = 12}, - [2563] = {.lex_state = 665, .external_lex_state = 23}, - [2564] = {.lex_state = 665, .external_lex_state = 12}, - [2565] = {.lex_state = 665, .external_lex_state = 20}, - [2566] = {.lex_state = 381, .external_lex_state = 12}, - [2567] = {.lex_state = 665, .external_lex_state = 12}, - [2568] = {.lex_state = 118, .external_lex_state = 12}, - [2569] = {.lex_state = 665, .external_lex_state = 12}, - [2570] = {.lex_state = 665, .external_lex_state = 12}, - [2571] = {.lex_state = 665, .external_lex_state = 12}, - [2572] = {.lex_state = 665, .external_lex_state = 12}, - [2573] = {.lex_state = 665, .external_lex_state = 12}, - [2574] = {.lex_state = 0, .external_lex_state = 13}, - [2575] = {.lex_state = 665, .external_lex_state = 12}, - [2576] = {.lex_state = 665, .external_lex_state = 12}, - [2577] = {.lex_state = 665, .external_lex_state = 12}, - [2578] = {.lex_state = 665, .external_lex_state = 12}, - [2579] = {.lex_state = 3, .external_lex_state = 12}, - [2580] = {.lex_state = 665, .external_lex_state = 12}, - [2581] = {.lex_state = 665, .external_lex_state = 12}, - [2582] = {.lex_state = 665, .external_lex_state = 12}, - [2583] = {.lex_state = 665, .external_lex_state = 12}, - [2584] = {.lex_state = 66, .external_lex_state = 12}, - [2585] = {.lex_state = 665, .external_lex_state = 12}, - [2586] = {.lex_state = 0, .external_lex_state = 20}, - [2587] = {.lex_state = 665, .external_lex_state = 12}, - [2588] = {.lex_state = 0, .external_lex_state = 13}, - [2589] = {.lex_state = 0, .external_lex_state = 13}, - [2590] = {.lex_state = 0, .external_lex_state = 13}, - [2591] = {.lex_state = 665, .external_lex_state = 12}, - [2592] = {.lex_state = 665, .external_lex_state = 12}, - [2593] = {.lex_state = 665, .external_lex_state = 12}, - [2594] = {.lex_state = 665, .external_lex_state = 12}, - [2595] = {.lex_state = 0, .external_lex_state = 13}, - [2596] = {.lex_state = 0, .external_lex_state = 13}, - [2597] = {.lex_state = 665, .external_lex_state = 12}, - [2598] = {.lex_state = 665, .external_lex_state = 12}, - [2599] = {.lex_state = 665, .external_lex_state = 12}, - [2600] = {.lex_state = 665, .external_lex_state = 12}, - [2601] = {.lex_state = 665, .external_lex_state = 12}, - [2602] = {.lex_state = 0, .external_lex_state = 13}, - [2603] = {.lex_state = 665, .external_lex_state = 12}, + [2519] = {.lex_state = 686, .external_lex_state = 12}, + [2520] = {.lex_state = 24, .external_lex_state = 12}, + [2521] = {.lex_state = 686, .external_lex_state = 12}, + [2522] = {.lex_state = 119, .external_lex_state = 12}, + [2523] = {.lex_state = 21, .external_lex_state = 35}, + [2524] = {.lex_state = 262, .external_lex_state = 12}, + [2525] = {.lex_state = 4, .external_lex_state = 12}, + [2526] = {.lex_state = 4, .external_lex_state = 12}, + [2527] = {.lex_state = 145, .external_lex_state = 12}, + [2528] = {.lex_state = 686, .external_lex_state = 12}, + [2529] = {.lex_state = 21, .external_lex_state = 35}, + [2530] = {.lex_state = 262, .external_lex_state = 12}, + [2531] = {.lex_state = 686, .external_lex_state = 12}, + [2532] = {.lex_state = 686, .external_lex_state = 12}, + [2533] = {.lex_state = 74, .external_lex_state = 12}, + [2534] = {.lex_state = 686, .external_lex_state = 12}, + [2535] = {.lex_state = 686, .external_lex_state = 12}, + [2536] = {.lex_state = 144, .external_lex_state = 12}, + [2537] = {.lex_state = 686, .external_lex_state = 12}, + [2538] = {.lex_state = 0, .external_lex_state = 13}, + [2539] = {.lex_state = 686, .external_lex_state = 12}, + [2540] = {.lex_state = 686, .external_lex_state = 12}, + [2541] = {.lex_state = 144, .external_lex_state = 12}, + [2542] = {.lex_state = 4, .external_lex_state = 12}, + [2543] = {.lex_state = 686, .external_lex_state = 12}, + [2544] = {.lex_state = 144, .external_lex_state = 12}, + [2545] = {.lex_state = 4, .external_lex_state = 12}, + [2546] = {.lex_state = 74, .external_lex_state = 12}, + [2547] = {.lex_state = 686, .external_lex_state = 12}, + [2548] = {.lex_state = 686, .external_lex_state = 12}, + [2549] = {.lex_state = 686, .external_lex_state = 12}, + [2550] = {.lex_state = 686, .external_lex_state = 12}, + [2551] = {.lex_state = 21, .external_lex_state = 35}, + [2552] = {.lex_state = 498, .external_lex_state = 12}, + [2553] = {.lex_state = 686, .external_lex_state = 12}, + [2554] = {.lex_state = 686, .external_lex_state = 12}, + [2555] = {.lex_state = 686, .external_lex_state = 12}, + [2556] = {.lex_state = 686, .external_lex_state = 12}, + [2557] = {.lex_state = 145, .external_lex_state = 12}, + [2558] = {.lex_state = 144, .external_lex_state = 12}, + [2559] = {.lex_state = 686, .external_lex_state = 12}, + [2560] = {.lex_state = 686, .external_lex_state = 12}, + [2561] = {.lex_state = 262, .external_lex_state = 12}, + [2562] = {.lex_state = 686, .external_lex_state = 12}, + [2563] = {.lex_state = 686, .external_lex_state = 12}, + [2564] = {.lex_state = 186, .external_lex_state = 12}, + [2565] = {.lex_state = 686, .external_lex_state = 12}, + [2566] = {.lex_state = 498, .external_lex_state = 12}, + [2567] = {.lex_state = 686, .external_lex_state = 12}, + [2568] = {.lex_state = 680, .external_lex_state = 12}, + [2569] = {.lex_state = 21, .external_lex_state = 35}, + [2570] = {.lex_state = 21, .external_lex_state = 35}, + [2571] = {.lex_state = 119, .external_lex_state = 13}, + [2572] = {.lex_state = 186, .external_lex_state = 12}, + [2573] = {.lex_state = 686, .external_lex_state = 12}, + [2574] = {.lex_state = 21, .external_lex_state = 35}, + [2575] = {.lex_state = 262, .external_lex_state = 12}, + [2576] = {.lex_state = 0, .external_lex_state = 13}, + [2577] = {.lex_state = 21, .external_lex_state = 35}, + [2578] = {.lex_state = 119, .external_lex_state = 12}, + [2579] = {.lex_state = 4, .external_lex_state = 12}, + [2580] = {.lex_state = 262, .external_lex_state = 12}, + [2581] = {.lex_state = 686, .external_lex_state = 12}, + [2582] = {.lex_state = 4, .external_lex_state = 12}, + [2583] = {.lex_state = 119, .external_lex_state = 12}, + [2584] = {.lex_state = 686, .external_lex_state = 12}, + [2585] = {.lex_state = 498, .external_lex_state = 12}, + [2586] = {.lex_state = 21, .external_lex_state = 35}, + [2587] = {.lex_state = 498, .external_lex_state = 12}, + [2588] = {.lex_state = 21, .external_lex_state = 35}, + [2589] = {.lex_state = 144, .external_lex_state = 12}, + [2590] = {.lex_state = 686, .external_lex_state = 12}, + [2591] = {.lex_state = 21, .external_lex_state = 35}, + [2592] = {.lex_state = 21, .external_lex_state = 35}, + [2593] = {.lex_state = 4, .external_lex_state = 12}, + [2594] = {.lex_state = 262, .external_lex_state = 12}, + [2595] = {.lex_state = 21, .external_lex_state = 35}, + [2596] = {.lex_state = 686, .external_lex_state = 12}, + [2597] = {.lex_state = 4, .external_lex_state = 12}, + [2598] = {.lex_state = 21, .external_lex_state = 35}, + [2599] = {.lex_state = 686, .external_lex_state = 12}, + [2600] = {.lex_state = 0, .external_lex_state = 13}, + [2601] = {.lex_state = 0, .external_lex_state = 13}, + [2602] = {.lex_state = 686, .external_lex_state = 12}, + [2603] = {.lex_state = 119, .external_lex_state = 12}, [2604] = {.lex_state = 0, .external_lex_state = 13}, - [2605] = {.lex_state = 665, .external_lex_state = 12}, - [2606] = {.lex_state = 665, .external_lex_state = 12}, - [2607] = {.lex_state = 0, .external_lex_state = 13}, + [2605] = {.lex_state = 686, .external_lex_state = 12}, + [2606] = {.lex_state = 119, .external_lex_state = 12}, + [2607] = {.lex_state = 686, .external_lex_state = 12}, [2608] = {.lex_state = 0, .external_lex_state = 13}, - [2609] = {.lex_state = 665, .external_lex_state = 12}, - [2610] = {.lex_state = 19, .external_lex_state = 12}, - [2611] = {.lex_state = 665, .external_lex_state = 12}, - [2612] = {.lex_state = 665, .external_lex_state = 20}, - [2613] = {.lex_state = 0, .external_lex_state = 13}, - [2614] = {.lex_state = 665, .external_lex_state = 12}, - [2615] = {.lex_state = 3, .external_lex_state = 12}, - [2616] = {.lex_state = 665, .external_lex_state = 12}, + [2609] = {.lex_state = 686, .external_lex_state = 12}, + [2610] = {.lex_state = 0, .external_lex_state = 13}, + [2611] = {.lex_state = 0, .external_lex_state = 13}, + [2612] = {.lex_state = 0, .external_lex_state = 13}, + [2613] = {.lex_state = 686, .external_lex_state = 12}, + [2614] = {.lex_state = 0, .external_lex_state = 13}, + [2615] = {.lex_state = 0, .external_lex_state = 13}, + [2616] = {.lex_state = 686, .external_lex_state = 12}, [2617] = {.lex_state = 0, .external_lex_state = 13}, - [2618] = {.lex_state = 665, .external_lex_state = 12}, + [2618] = {.lex_state = 0, .external_lex_state = 13}, [2619] = {.lex_state = 0, .external_lex_state = 13}, - [2620] = {.lex_state = 665, .external_lex_state = 12}, - [2621] = {.lex_state = 665, .external_lex_state = 20}, - [2622] = {.lex_state = 665, .external_lex_state = 12}, + [2620] = {.lex_state = 0, .external_lex_state = 13}, + [2621] = {.lex_state = 0, .external_lex_state = 13}, + [2622] = {.lex_state = 0, .external_lex_state = 13}, [2623] = {.lex_state = 0, .external_lex_state = 13}, [2624] = {.lex_state = 0, .external_lex_state = 13}, - [2625] = {.lex_state = 665, .external_lex_state = 12}, - [2626] = {.lex_state = 665, .external_lex_state = 12}, - [2627] = {.lex_state = 665, .external_lex_state = 12}, - [2628] = {.lex_state = 665, .external_lex_state = 12}, - [2629] = {.lex_state = 665, .external_lex_state = 12}, + [2625] = {.lex_state = 0, .external_lex_state = 13}, + [2626] = {.lex_state = 0, .external_lex_state = 13}, + [2627] = {.lex_state = 144, .external_lex_state = 12}, + [2628] = {.lex_state = 0, .external_lex_state = 13}, + [2629] = {.lex_state = 119, .external_lex_state = 12}, [2630] = {.lex_state = 0, .external_lex_state = 13}, - [2631] = {.lex_state = 665, .external_lex_state = 12}, + [2631] = {.lex_state = 0, .external_lex_state = 13}, [2632] = {.lex_state = 0, .external_lex_state = 13}, [2633] = {.lex_state = 0, .external_lex_state = 13}, [2634] = {.lex_state = 0, .external_lex_state = 13}, - [2635] = {.lex_state = 665, .external_lex_state = 12}, - [2636] = {.lex_state = 665, .external_lex_state = 12}, - [2637] = {.lex_state = 0, .external_lex_state = 13}, - [2638] = {.lex_state = 0, .external_lex_state = 19}, - [2639] = {.lex_state = 665, .external_lex_state = 12}, - [2640] = {.lex_state = 665, .external_lex_state = 12}, - [2641] = {.lex_state = 665, .external_lex_state = 12}, - [2642] = {.lex_state = 0, .external_lex_state = 19}, - [2643] = {.lex_state = 19, .external_lex_state = 12}, - [2644] = {.lex_state = 665, .external_lex_state = 12}, - [2645] = {.lex_state = 665, .external_lex_state = 12}, - [2646] = {.lex_state = 665, .external_lex_state = 12}, - [2647] = {.lex_state = 665, .external_lex_state = 12}, + [2635] = {.lex_state = 0, .external_lex_state = 13}, + [2636] = {.lex_state = 0, .external_lex_state = 13}, + [2637] = {.lex_state = 119, .external_lex_state = 12}, + [2638] = {.lex_state = 686, .external_lex_state = 12}, + [2639] = {.lex_state = 686, .external_lex_state = 12}, + [2640] = {.lex_state = 66, .external_lex_state = 12}, + [2641] = {.lex_state = 535, .external_lex_state = 12}, + [2642] = {.lex_state = 0, .external_lex_state = 20}, + [2643] = {.lex_state = 0, .external_lex_state = 13}, + [2644] = {.lex_state = 0, .external_lex_state = 13}, + [2645] = {.lex_state = 0, .external_lex_state = 13}, + [2646] = {.lex_state = 686, .external_lex_state = 12}, + [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 = 665, .external_lex_state = 12}, - [2652] = {.lex_state = 665, .external_lex_state = 12}, - [2653] = {.lex_state = 665, .external_lex_state = 12}, - [2654] = {.lex_state = 665, .external_lex_state = 12}, - [2655] = {.lex_state = 665, .external_lex_state = 12}, - [2656] = {.lex_state = 0, .external_lex_state = 13}, - [2657] = {.lex_state = 665, .external_lex_state = 12}, - [2658] = {.lex_state = 665, .external_lex_state = 12}, - [2659] = {.lex_state = 665, .external_lex_state = 12}, - [2660] = {.lex_state = 665, .external_lex_state = 12}, - [2661] = {.lex_state = 665, .external_lex_state = 12}, - [2662] = {.lex_state = 665, .external_lex_state = 12}, - [2663] = {.lex_state = 665, .external_lex_state = 12}, - [2664] = {.lex_state = 665, .external_lex_state = 12}, - [2665] = {.lex_state = 665, .external_lex_state = 12}, - [2666] = {.lex_state = 665, .external_lex_state = 12}, - [2667] = {.lex_state = 641, .external_lex_state = 12}, - [2668] = {.lex_state = 665, .external_lex_state = 12}, - [2669] = {.lex_state = 665, .external_lex_state = 12}, - [2670] = {.lex_state = 665, .external_lex_state = 12}, - [2671] = {.lex_state = 0, .external_lex_state = 13}, - [2672] = {.lex_state = 0, .external_lex_state = 13}, + [2651] = {.lex_state = 0, .external_lex_state = 13}, + [2652] = {.lex_state = 0, .external_lex_state = 13}, + [2653] = {.lex_state = 0, .external_lex_state = 13}, + [2654] = {.lex_state = 686, .external_lex_state = 12}, + [2655] = {.lex_state = 0, .external_lex_state = 13}, + [2656] = {.lex_state = 686, .external_lex_state = 12}, + [2657] = {.lex_state = 0, .external_lex_state = 13}, + [2658] = {.lex_state = 686, .external_lex_state = 12}, + [2659] = {.lex_state = 0, .external_lex_state = 20}, + [2660] = {.lex_state = 686, .external_lex_state = 12}, + [2661] = {.lex_state = 686, .external_lex_state = 12}, + [2662] = {.lex_state = 0, .external_lex_state = 13}, + [2663] = {.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 = 0, .external_lex_state = 13}, + [2667] = {.lex_state = 0, .external_lex_state = 13}, + [2668] = {.lex_state = 686, .external_lex_state = 12}, + [2669] = {.lex_state = 0, .external_lex_state = 13}, + [2670] = {.lex_state = 686, .external_lex_state = 12}, + [2671] = {.lex_state = 686, .external_lex_state = 12}, + [2672] = {.lex_state = 686, .external_lex_state = 12}, [2673] = {.lex_state = 0, .external_lex_state = 13}, - [2674] = {.lex_state = 665, .external_lex_state = 12}, - [2675] = {.lex_state = 0, .external_lex_state = 13}, + [2674] = {.lex_state = 686, .external_lex_state = 12}, + [2675] = {.lex_state = 686, .external_lex_state = 12}, [2676] = {.lex_state = 0, .external_lex_state = 13}, - [2677] = {.lex_state = 665, .external_lex_state = 12}, - [2678] = {.lex_state = 0, .external_lex_state = 36}, + [2677] = {.lex_state = 0, .external_lex_state = 13}, + [2678] = {.lex_state = 686, .external_lex_state = 12}, [2679] = {.lex_state = 0, .external_lex_state = 13}, - [2680] = {.lex_state = 665, .external_lex_state = 12}, - [2681] = {.lex_state = 0, .external_lex_state = 13}, - [2682] = {.lex_state = 665, .external_lex_state = 12}, + [2680] = {.lex_state = 0, .external_lex_state = 13}, + [2681] = {.lex_state = 0, .external_lex_state = 36}, + [2682] = {.lex_state = 400, .external_lex_state = 12}, [2683] = {.lex_state = 0, .external_lex_state = 13}, - [2684] = {.lex_state = 665, .external_lex_state = 12}, - [2685] = {.lex_state = 665, .external_lex_state = 12}, - [2686] = {.lex_state = 665, .external_lex_state = 12}, - [2687] = {.lex_state = 665, .external_lex_state = 12}, + [2684] = {.lex_state = 0, .external_lex_state = 13}, + [2685] = {.lex_state = 0, .external_lex_state = 13}, + [2686] = {.lex_state = 0, .external_lex_state = 19}, + [2687] = {.lex_state = 0, .external_lex_state = 13}, [2688] = {.lex_state = 0, .external_lex_state = 13}, [2689] = {.lex_state = 0, .external_lex_state = 13}, - [2690] = {.lex_state = 19, .external_lex_state = 12}, - [2691] = {.lex_state = 665, .external_lex_state = 12}, + [2690] = {.lex_state = 686, .external_lex_state = 12}, + [2691] = {.lex_state = 0, .external_lex_state = 13}, [2692] = {.lex_state = 0, .external_lex_state = 13}, [2693] = {.lex_state = 0, .external_lex_state = 13}, - [2694] = {.lex_state = 0, .external_lex_state = 13}, - [2695] = {.lex_state = 665, .external_lex_state = 12}, + [2694] = {.lex_state = 686, .external_lex_state = 12}, + [2695] = {.lex_state = 686, .external_lex_state = 12}, [2696] = {.lex_state = 0, .external_lex_state = 13}, - [2697] = {.lex_state = 665, .external_lex_state = 12}, + [2697] = {.lex_state = 0, .external_lex_state = 13}, [2698] = {.lex_state = 0, .external_lex_state = 13}, - [2699] = {.lex_state = 665, .external_lex_state = 12}, + [2699] = {.lex_state = 0, .external_lex_state = 13}, [2700] = {.lex_state = 0, .external_lex_state = 13}, - [2701] = {.lex_state = 665, .external_lex_state = 12}, - [2702] = {.lex_state = 0, .external_lex_state = 13}, - [2703] = {.lex_state = 19, .external_lex_state = 12}, - [2704] = {.lex_state = 665, .external_lex_state = 12}, - [2705] = {.lex_state = 66, .external_lex_state = 12}, - [2706] = {.lex_state = 665, .external_lex_state = 12}, - [2707] = {.lex_state = 665, .external_lex_state = 12}, - [2708] = {.lex_state = 0, .external_lex_state = 13}, - [2709] = {.lex_state = 665, .external_lex_state = 12}, + [2701] = {.lex_state = 686, .external_lex_state = 12}, + [2702] = {.lex_state = 686, .external_lex_state = 12}, + [2703] = {.lex_state = 686, .external_lex_state = 12}, + [2704] = {.lex_state = 19, .external_lex_state = 12}, + [2705] = {.lex_state = 0, .external_lex_state = 13}, + [2706] = {.lex_state = 0, .external_lex_state = 19}, + [2707] = {.lex_state = 0, .external_lex_state = 13}, + [2708] = {.lex_state = 686, .external_lex_state = 12}, + [2709] = {.lex_state = 0, .external_lex_state = 13}, [2710] = {.lex_state = 0, .external_lex_state = 13}, - [2711] = {.lex_state = 0, .external_lex_state = 13}, - [2712] = {.lex_state = 665, .external_lex_state = 12}, + [2711] = {.lex_state = 686, .external_lex_state = 12}, + [2712] = {.lex_state = 0, .external_lex_state = 13}, [2713] = {.lex_state = 0, .external_lex_state = 13}, - [2714] = {.lex_state = 0, .external_lex_state = 13}, - [2715] = {.lex_state = 665, .external_lex_state = 12}, - [2716] = {.lex_state = 0, .external_lex_state = 13}, - [2717] = {.lex_state = 0, .external_lex_state = 13}, - [2718] = {.lex_state = 0, .external_lex_state = 37}, - [2719] = {.lex_state = 0, .external_lex_state = 13}, - [2720] = {.lex_state = 21, .external_lex_state = 35}, - [2721] = {.lex_state = 142, .external_lex_state = 12}, - [2722] = {.lex_state = 381, .external_lex_state = 12}, - [2723] = {.lex_state = 665, .external_lex_state = 12}, - [2724] = {.lex_state = 665, .external_lex_state = 12}, - [2725] = {.lex_state = 665, .external_lex_state = 12}, + [2714] = {.lex_state = 66, .external_lex_state = 12}, + [2715] = {.lex_state = 0, .external_lex_state = 20}, + [2716] = {.lex_state = 686, .external_lex_state = 12}, + [2717] = {.lex_state = 0, .external_lex_state = 20}, + [2718] = {.lex_state = 0, .external_lex_state = 13}, + [2719] = {.lex_state = 686, .external_lex_state = 12}, + [2720] = {.lex_state = 686, .external_lex_state = 12}, + [2721] = {.lex_state = 0, .external_lex_state = 13}, + [2722] = {.lex_state = 686, .external_lex_state = 12}, + [2723] = {.lex_state = 686, .external_lex_state = 20}, + [2724] = {.lex_state = 686, .external_lex_state = 12}, + [2725] = {.lex_state = 686, .external_lex_state = 12}, [2726] = {.lex_state = 0, .external_lex_state = 13}, - [2727] = {.lex_state = 665, .external_lex_state = 12}, - [2728] = {.lex_state = 665, .external_lex_state = 12}, - [2729] = {.lex_state = 665, .external_lex_state = 12}, - [2730] = {.lex_state = 665, .external_lex_state = 12}, - [2731] = {.lex_state = 665, .external_lex_state = 12}, - [2732] = {.lex_state = 665, .external_lex_state = 12}, - [2733] = {.lex_state = 0, .external_lex_state = 13}, - [2734] = {.lex_state = 665, .external_lex_state = 12}, - [2735] = {.lex_state = 665, .external_lex_state = 12}, - [2736] = {.lex_state = 665, .external_lex_state = 12}, - [2737] = {.lex_state = 665, .external_lex_state = 12}, - [2738] = {.lex_state = 665, .external_lex_state = 12}, - [2739] = {.lex_state = 665, .external_lex_state = 12}, - [2740] = {.lex_state = 665, .external_lex_state = 12}, - [2741] = {.lex_state = 665, .external_lex_state = 12}, - [2742] = {.lex_state = 0, .external_lex_state = 13}, + [2727] = {.lex_state = 686, .external_lex_state = 12}, + [2728] = {.lex_state = 0, .external_lex_state = 13}, + [2729] = {.lex_state = 686, .external_lex_state = 12}, + [2730] = {.lex_state = 0, .external_lex_state = 37}, + [2731] = {.lex_state = 686, .external_lex_state = 12}, + [2732] = {.lex_state = 0, .external_lex_state = 13}, + [2733] = {.lex_state = 686, .external_lex_state = 12}, + [2734] = {.lex_state = 686, .external_lex_state = 12}, + [2735] = {.lex_state = 686, .external_lex_state = 12}, + [2736] = {.lex_state = 686, .external_lex_state = 12}, + [2737] = {.lex_state = 686, .external_lex_state = 12}, + [2738] = {.lex_state = 0, .external_lex_state = 13}, + [2739] = {.lex_state = 0, .external_lex_state = 13}, + [2740] = {.lex_state = 686, .external_lex_state = 12}, + [2741] = {.lex_state = 686, .external_lex_state = 12}, + [2742] = {.lex_state = 686, .external_lex_state = 12}, [2743] = {.lex_state = 0, .external_lex_state = 13}, - [2744] = {.lex_state = 0, .external_lex_state = 37}, + [2744] = {.lex_state = 686, .external_lex_state = 12}, [2745] = {.lex_state = 0, .external_lex_state = 13}, [2746] = {.lex_state = 0, .external_lex_state = 13}, - [2747] = {.lex_state = 665, .external_lex_state = 12}, - [2748] = {.lex_state = 0, .external_lex_state = 37}, - [2749] = {.lex_state = 0, .external_lex_state = 13}, - [2750] = {.lex_state = 514, .external_lex_state = 12}, + [2747] = {.lex_state = 686, .external_lex_state = 12}, + [2748] = {.lex_state = 0, .external_lex_state = 13}, + [2749] = {.lex_state = 19, .external_lex_state = 12}, + [2750] = {.lex_state = 0, .external_lex_state = 13}, [2751] = {.lex_state = 0, .external_lex_state = 13}, - [2752] = {.lex_state = 665, .external_lex_state = 12}, - [2753] = {.lex_state = 665, .external_lex_state = 12}, - [2754] = {.lex_state = 665, .external_lex_state = 12}, - [2755] = {.lex_state = 665, .external_lex_state = 12}, - [2756] = {.lex_state = 665, .external_lex_state = 12}, - [2757] = {.lex_state = 0, .external_lex_state = 13}, - [2758] = {.lex_state = 665, .external_lex_state = 12}, + [2752] = {.lex_state = 0, .external_lex_state = 36}, + [2753] = {.lex_state = 0, .external_lex_state = 13}, + [2754] = {.lex_state = 0, .external_lex_state = 13}, + [2755] = {.lex_state = 66, .external_lex_state = 12}, + [2756] = {.lex_state = 0, .external_lex_state = 13}, + [2757] = {.lex_state = 686, .external_lex_state = 12}, + [2758] = {.lex_state = 0, .external_lex_state = 13}, [2759] = {.lex_state = 0, .external_lex_state = 13}, - [2760] = {.lex_state = 665, .external_lex_state = 12}, - [2761] = {.lex_state = 665, .external_lex_state = 12}, - [2762] = {.lex_state = 0, .external_lex_state = 13}, - [2763] = {.lex_state = 665, .external_lex_state = 12}, - [2764] = {.lex_state = 665, .external_lex_state = 12}, - [2765] = {.lex_state = 665, .external_lex_state = 12}, - [2766] = {.lex_state = 665, .external_lex_state = 12}, - [2767] = {.lex_state = 381, .external_lex_state = 12}, - [2768] = {.lex_state = 665, .external_lex_state = 12}, - [2769] = {.lex_state = 66, .external_lex_state = 12}, - [2770] = {.lex_state = 0, .external_lex_state = 36}, - [2771] = {.lex_state = 665, .external_lex_state = 12}, - [2772] = {.lex_state = 665, .external_lex_state = 12}, - [2773] = {.lex_state = 118, .external_lex_state = 12}, - [2774] = {.lex_state = 665, .external_lex_state = 12}, - [2775] = {.lex_state = 665, .external_lex_state = 12}, - [2776] = {.lex_state = 0, .external_lex_state = 13}, - [2777] = {.lex_state = 665, .external_lex_state = 12}, - [2778] = {.lex_state = 118, .external_lex_state = 12}, - [2779] = {.lex_state = 0, .external_lex_state = 13}, + [2760] = {.lex_state = 0, .external_lex_state = 13}, + [2761] = {.lex_state = 0, .external_lex_state = 13}, + [2762] = {.lex_state = 686, .external_lex_state = 12}, + [2763] = {.lex_state = 4, .external_lex_state = 12}, + [2764] = {.lex_state = 686, .external_lex_state = 23}, + [2765] = {.lex_state = 662, .external_lex_state = 12}, + [2766] = {.lex_state = 686, .external_lex_state = 12}, + [2767] = {.lex_state = 0, .external_lex_state = 13}, + [2768] = {.lex_state = 686, .external_lex_state = 12}, + [2769] = {.lex_state = 686, .external_lex_state = 12}, + [2770] = {.lex_state = 686, .external_lex_state = 12}, + [2771] = {.lex_state = 0, .external_lex_state = 36}, + [2772] = {.lex_state = 0, .external_lex_state = 13}, + [2773] = {.lex_state = 0, .external_lex_state = 13}, + [2774] = {.lex_state = 0, .external_lex_state = 13}, + [2775] = {.lex_state = 0, .external_lex_state = 13}, + [2776] = {.lex_state = 686, .external_lex_state = 12}, + [2777] = {.lex_state = 0, .external_lex_state = 13}, + [2778] = {.lex_state = 0, .external_lex_state = 13}, + [2779] = {.lex_state = 400, .external_lex_state = 12}, [2780] = {.lex_state = 0, .external_lex_state = 13}, - [2781] = {.lex_state = 0, .external_lex_state = 13}, - [2782] = {.lex_state = 0, .external_lex_state = 13}, + [2781] = {.lex_state = 686, .external_lex_state = 12}, + [2782] = {.lex_state = 686, .external_lex_state = 12}, [2783] = {.lex_state = 0, .external_lex_state = 13}, - [2784] = {.lex_state = 0, .external_lex_state = 13}, + [2784] = {.lex_state = 0, .external_lex_state = 37}, [2785] = {.lex_state = 0, .external_lex_state = 13}, - [2786] = {.lex_state = 0, .external_lex_state = 13}, + [2786] = {.lex_state = 686, .external_lex_state = 12}, [2787] = {.lex_state = 0, .external_lex_state = 13}, - [2788] = {.lex_state = 665, .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}, + [2790] = {.lex_state = 686, .external_lex_state = 12}, [2791] = {.lex_state = 0, .external_lex_state = 13}, - [2792] = {.lex_state = 0, .external_lex_state = 13}, - [2793] = {.lex_state = 665, .external_lex_state = 12}, + [2792] = {.lex_state = 119, .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 = 665, .external_lex_state = 12}, + [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 = 665, .external_lex_state = 12}, - [2801] = {.lex_state = 0, .external_lex_state = 13}, - [2802] = {.lex_state = 665, .external_lex_state = 12}, - [2803] = {.lex_state = 665, .external_lex_state = 12}, + [2800] = {.lex_state = 0, .external_lex_state = 13}, + [2801] = {.lex_state = 119, .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 = 665, .external_lex_state = 12}, - [2806] = {.lex_state = 0, .external_lex_state = 13}, - [2807] = {.lex_state = 665, .external_lex_state = 12}, - [2808] = {.lex_state = 665, .external_lex_state = 12}, - [2809] = {.lex_state = 665, .external_lex_state = 12}, - [2810] = {.lex_state = 0, .external_lex_state = 13}, - [2811] = {.lex_state = 0, .external_lex_state = 13}, - [2812] = {.lex_state = 0, .external_lex_state = 13}, - [2813] = {.lex_state = 0, .external_lex_state = 19}, - [2814] = {.lex_state = 665, .external_lex_state = 12}, - [2815] = {.lex_state = 665, .external_lex_state = 12}, - [2816] = {.lex_state = 665, .external_lex_state = 12}, - [2817] = {.lex_state = 0, .external_lex_state = 13}, - [2818] = {.lex_state = 19, .external_lex_state = 12}, - [2819] = {.lex_state = 665, .external_lex_state = 12}, - [2820] = {.lex_state = 0, .external_lex_state = 13}, - [2821] = {.lex_state = 665, .external_lex_state = 12}, + [2805] = {.lex_state = 686, .external_lex_state = 12}, + [2806] = {.lex_state = 686, .external_lex_state = 12}, + [2807] = {.lex_state = 686, .external_lex_state = 12}, + [2808] = {.lex_state = 686, .external_lex_state = 12}, + [2809] = {.lex_state = 686, .external_lex_state = 12}, + [2810] = {.lex_state = 686, .external_lex_state = 12}, + [2811] = {.lex_state = 686, .external_lex_state = 12}, + [2812] = {.lex_state = 686, .external_lex_state = 12}, + [2813] = {.lex_state = 686, .external_lex_state = 12}, + [2814] = {.lex_state = 0, .external_lex_state = 13}, + [2815] = {.lex_state = 686, .external_lex_state = 12}, + [2816] = {.lex_state = 686, .external_lex_state = 12}, + [2817] = {.lex_state = 686, .external_lex_state = 12}, + [2818] = {.lex_state = 686, .external_lex_state = 20}, + [2819] = {.lex_state = 4, .external_lex_state = 12}, + [2820] = {.lex_state = 66, .external_lex_state = 12}, + [2821] = {.lex_state = 535, .external_lex_state = 12}, [2822] = {.lex_state = 0, .external_lex_state = 13}, - [2823] = {.lex_state = 665, .external_lex_state = 12}, - [2824] = {.lex_state = 0, .external_lex_state = 13}, - [2825] = {.lex_state = 0, .external_lex_state = 13}, + [2823] = {.lex_state = 686, .external_lex_state = 12}, + [2824] = {.lex_state = 686, .external_lex_state = 12}, + [2825] = {.lex_state = 686, .external_lex_state = 12}, [2826] = {.lex_state = 0, .external_lex_state = 13}, - [2827] = {.lex_state = 0, .external_lex_state = 13}, - [2828] = {.lex_state = 0, .external_lex_state = 13}, - [2829] = {.lex_state = 0, .external_lex_state = 13}, - [2830] = {.lex_state = 514, .external_lex_state = 12}, - [2831] = {.lex_state = 0, .external_lex_state = 37}, - [2832] = {.lex_state = 0, .external_lex_state = 13}, - [2833] = {.lex_state = 0, .external_lex_state = 13}, - [2834] = {.lex_state = 0, .external_lex_state = 13}, + [2827] = {.lex_state = 686, .external_lex_state = 12}, + [2828] = {.lex_state = 686, .external_lex_state = 12}, + [2829] = {.lex_state = 686, .external_lex_state = 12}, + [2830] = {.lex_state = 686, .external_lex_state = 12}, + [2831] = {.lex_state = 0, .external_lex_state = 13}, + [2832] = {.lex_state = 686, .external_lex_state = 12}, + [2833] = {.lex_state = 686, .external_lex_state = 12}, + [2834] = {.lex_state = 686, .external_lex_state = 12}, [2835] = {.lex_state = 0, .external_lex_state = 13}, - [2836] = {.lex_state = 0, .external_lex_state = 13}, - [2837] = {.lex_state = 665, .external_lex_state = 12}, - [2838] = {.lex_state = 0, .external_lex_state = 13}, - [2839] = {.lex_state = 0, .external_lex_state = 13}, - [2840] = {.lex_state = 0, .external_lex_state = 13}, + [2836] = {.lex_state = 686, .external_lex_state = 12}, + [2837] = {.lex_state = 0, .external_lex_state = 13}, + [2838] = {.lex_state = 686, .external_lex_state = 12}, + [2839] = {.lex_state = 686, .external_lex_state = 12}, + [2840] = {.lex_state = 686, .external_lex_state = 12}, [2841] = {.lex_state = 0, .external_lex_state = 13}, [2842] = {.lex_state = 0, .external_lex_state = 13}, - [2843] = {.lex_state = 665, .external_lex_state = 12}, - [2844] = {.lex_state = 0, .external_lex_state = 13}, - [2845] = {.lex_state = 0, .external_lex_state = 20}, - [2846] = {.lex_state = 0, .external_lex_state = 13}, - [2847] = {.lex_state = 0, .external_lex_state = 13}, + [2843] = {.lex_state = 686, .external_lex_state = 12}, + [2844] = {.lex_state = 0, .external_lex_state = 19}, + [2845] = {.lex_state = 0, .external_lex_state = 13}, + [2846] = {.lex_state = 686, .external_lex_state = 12}, + [2847] = {.lex_state = 19, .external_lex_state = 12}, [2848] = {.lex_state = 0, .external_lex_state = 13}, - [2849] = {.lex_state = 0, .external_lex_state = 13}, - [2850] = {.lex_state = 0, .external_lex_state = 13}, - [2851] = {.lex_state = 0, .external_lex_state = 13}, + [2849] = {.lex_state = 686, .external_lex_state = 12}, + [2850] = {.lex_state = 686, .external_lex_state = 12}, + [2851] = {.lex_state = 686, .external_lex_state = 12}, [2852] = {.lex_state = 0, .external_lex_state = 13}, [2853] = {.lex_state = 0, .external_lex_state = 13}, [2854] = {.lex_state = 0, .external_lex_state = 13}, - [2855] = {.lex_state = 0, .external_lex_state = 13}, + [2855] = {.lex_state = 686, .external_lex_state = 12}, [2856] = {.lex_state = 0, .external_lex_state = 13}, - [2857] = {.lex_state = 0, .external_lex_state = 13}, + [2857] = {.lex_state = 400, .external_lex_state = 12}, [2858] = {.lex_state = 0, .external_lex_state = 13}, - [2859] = {.lex_state = 0, .external_lex_state = 13}, - [2860] = {.lex_state = 0, .external_lex_state = 13}, - [2861] = {.lex_state = 0, .external_lex_state = 13}, - [2862] = {.lex_state = 0, .external_lex_state = 13}, - [2863] = {.lex_state = 118, .external_lex_state = 12}, + [2859] = {.lex_state = 686, .external_lex_state = 20}, + [2860] = {.lex_state = 686, .external_lex_state = 12}, + [2861] = {.lex_state = 686, .external_lex_state = 12}, + [2862] = {.lex_state = 686, .external_lex_state = 12}, + [2863] = {.lex_state = 686, .external_lex_state = 12}, [2864] = {.lex_state = 0, .external_lex_state = 13}, - [2865] = {.lex_state = 0, .external_lex_state = 20}, - [2866] = {.lex_state = 0, .external_lex_state = 13}, - [2867] = {.lex_state = 0, .external_lex_state = 13}, - [2868] = {.lex_state = 0, .external_lex_state = 20}, - [2869] = {.lex_state = 0, .external_lex_state = 13}, - [2870] = {.lex_state = 66, .external_lex_state = 12}, - [2871] = {.lex_state = 0, .external_lex_state = 13}, - [2872] = {.lex_state = 0, .external_lex_state = 13}, + [2865] = {.lex_state = 686, .external_lex_state = 12}, + [2866] = {.lex_state = 686, .external_lex_state = 12}, + [2867] = {.lex_state = 686, .external_lex_state = 12}, + [2868] = {.lex_state = 686, .external_lex_state = 12}, + [2869] = {.lex_state = 686, .external_lex_state = 12}, + [2870] = {.lex_state = 686, .external_lex_state = 12}, + [2871] = {.lex_state = 686, .external_lex_state = 12}, + [2872] = {.lex_state = 686, .external_lex_state = 12}, [2873] = {.lex_state = 0, .external_lex_state = 13}, - [2874] = {.lex_state = 0, .external_lex_state = 13}, - [2875] = {.lex_state = 0, .external_lex_state = 13}, + [2874] = {.lex_state = 686, .external_lex_state = 12}, + [2875] = {.lex_state = 686, .external_lex_state = 12}, [2876] = {.lex_state = 0, .external_lex_state = 13}, - [2877] = {.lex_state = 0, .external_lex_state = 13}, + [2877] = {.lex_state = 686, .external_lex_state = 12}, [2878] = {.lex_state = 0, .external_lex_state = 13}, - [2879] = {.lex_state = 0, .external_lex_state = 13}, - [2880] = {.lex_state = 665, .external_lex_state = 12}, - [2881] = {.lex_state = 0, .external_lex_state = 13}, - [2882] = {.lex_state = 0, .external_lex_state = 13}, - [2883] = {.lex_state = 0, .external_lex_state = 13}, - [2884] = {.lex_state = 0, .external_lex_state = 13}, - [2885] = {.lex_state = 141, .external_lex_state = 12}, - [2886] = {.lex_state = 0, .external_lex_state = 13}, - [2887] = {.lex_state = 0, .external_lex_state = 13}, - [2888] = {.lex_state = 665, .external_lex_state = 12}, - [2889] = {.lex_state = 0, .external_lex_state = 13}, + [2879] = {.lex_state = 686, .external_lex_state = 12}, + [2880] = {.lex_state = 0, .external_lex_state = 13}, + [2881] = {.lex_state = 686, .external_lex_state = 12}, + [2882] = {.lex_state = 686, .external_lex_state = 12}, + [2883] = {.lex_state = 145, .external_lex_state = 12}, + [2884] = {.lex_state = 686, .external_lex_state = 12}, + [2885] = {.lex_state = 686, .external_lex_state = 12}, + [2886] = {.lex_state = 21, .external_lex_state = 35}, + [2887] = {.lex_state = 686, .external_lex_state = 12}, + [2888] = {.lex_state = 0, .external_lex_state = 13}, + [2889] = {.lex_state = 686, .external_lex_state = 12}, [2890] = {.lex_state = 0, .external_lex_state = 13}, - [2891] = {.lex_state = 0, .external_lex_state = 13}, - [2892] = {.lex_state = 0, .external_lex_state = 13}, - [2893] = {.lex_state = 515, .external_lex_state = 12}, - [2894] = {.lex_state = 0, .external_lex_state = 38}, - [2895] = {.lex_state = 665, .external_lex_state = 12}, - [2896] = {.lex_state = 515, .external_lex_state = 12}, - [2897] = {.lex_state = 516, .external_lex_state = 12}, - [2898] = {.lex_state = 23, .external_lex_state = 12}, - [2899] = {.lex_state = 0, .external_lex_state = 12}, - [2900] = {.lex_state = 665, .external_lex_state = 12}, - [2901] = {.lex_state = 665, .external_lex_state = 12}, - [2902] = {.lex_state = 665, .external_lex_state = 12}, - [2903] = {.lex_state = 118, .external_lex_state = 12}, - [2904] = {.lex_state = 118, .external_lex_state = 12}, - [2905] = {.lex_state = 17, .external_lex_state = 12}, - [2906] = {.lex_state = 665, .external_lex_state = 12}, - [2907] = {.lex_state = 665, .external_lex_state = 12}, - [2908] = {.lex_state = 24, .external_lex_state = 12}, - [2909] = {.lex_state = 118, .external_lex_state = 12}, - [2910] = {.lex_state = 105, .external_lex_state = 12}, - [2911] = {.lex_state = 105, .external_lex_state = 12}, - [2912] = {.lex_state = 665, .external_lex_state = 12}, - [2913] = {.lex_state = 118, .external_lex_state = 12}, - [2914] = {.lex_state = 665, .external_lex_state = 12}, - [2915] = {.lex_state = 665, .external_lex_state = 12}, - [2916] = {.lex_state = 665, .external_lex_state = 12}, - [2917] = {.lex_state = 118, .external_lex_state = 12}, - [2918] = {.lex_state = 0, .external_lex_state = 20}, - [2919] = {.lex_state = 23, .external_lex_state = 12}, - [2920] = {.lex_state = 665, .external_lex_state = 12}, - [2921] = {.lex_state = 105, .external_lex_state = 12}, - [2922] = {.lex_state = 105, .external_lex_state = 12}, - [2923] = {.lex_state = 665, .external_lex_state = 12}, - [2924] = {.lex_state = 665, .external_lex_state = 12}, - [2925] = {.lex_state = 24, .external_lex_state = 12}, - [2926] = {.lex_state = 105, .external_lex_state = 12}, - [2927] = {.lex_state = 118, .external_lex_state = 12}, - [2928] = {.lex_state = 515, .external_lex_state = 12}, - [2929] = {.lex_state = 665, .external_lex_state = 12}, - [2930] = {.lex_state = 17, .external_lex_state = 12}, - [2931] = {.lex_state = 665, .external_lex_state = 12}, - [2932] = {.lex_state = 105, .external_lex_state = 12}, - [2933] = {.lex_state = 118, .external_lex_state = 12}, - [2934] = {.lex_state = 105, .external_lex_state = 12}, - [2935] = {.lex_state = 118, .external_lex_state = 12}, - [2936] = {.lex_state = 17, .external_lex_state = 12}, - [2937] = {.lex_state = 665, .external_lex_state = 12}, - [2938] = {.lex_state = 0, .external_lex_state = 23}, - [2939] = {.lex_state = 665, .external_lex_state = 12}, - [2940] = {.lex_state = 516, .external_lex_state = 12}, - [2941] = {.lex_state = 515, .external_lex_state = 12}, - [2942] = {.lex_state = 515, .external_lex_state = 12}, - [2943] = {.lex_state = 515, .external_lex_state = 12}, - [2944] = {.lex_state = 515, .external_lex_state = 12}, - [2945] = {.lex_state = 516, .external_lex_state = 12}, - [2946] = {.lex_state = 661, .external_lex_state = 12}, - [2947] = {.lex_state = 515, .external_lex_state = 12}, - [2948] = {.lex_state = 665, .external_lex_state = 12}, - [2949] = {.lex_state = 0, .external_lex_state = 12}, - [2950] = {.lex_state = 118, .external_lex_state = 12}, - [2951] = {.lex_state = 665, .external_lex_state = 12}, - [2952] = {.lex_state = 105, .external_lex_state = 12}, - [2953] = {.lex_state = 118, .external_lex_state = 12}, - [2954] = {.lex_state = 516, .external_lex_state = 12}, - [2955] = {.lex_state = 515, .external_lex_state = 12}, - [2956] = {.lex_state = 515, .external_lex_state = 12}, - [2957] = {.lex_state = 118, .external_lex_state = 12}, - [2958] = {.lex_state = 665, .external_lex_state = 12}, - [2959] = {.lex_state = 0, .external_lex_state = 39}, - [2960] = {.lex_state = 17, .external_lex_state = 12}, - [2961] = {.lex_state = 665, .external_lex_state = 12}, - [2962] = {.lex_state = 665, .external_lex_state = 12}, - [2963] = {.lex_state = 105, .external_lex_state = 12}, - [2964] = {.lex_state = 0, .external_lex_state = 38}, - [2965] = {.lex_state = 516, .external_lex_state = 12}, - [2966] = {.lex_state = 515, .external_lex_state = 12}, - [2967] = {.lex_state = 515, .external_lex_state = 12}, - [2968] = {.lex_state = 0, .external_lex_state = 38}, - [2969] = {.lex_state = 517, .external_lex_state = 12}, - [2970] = {.lex_state = 105, .external_lex_state = 12}, - [2971] = {.lex_state = 665, .external_lex_state = 12}, - [2972] = {.lex_state = 516, .external_lex_state = 12}, - [2973] = {.lex_state = 515, .external_lex_state = 12}, - [2974] = {.lex_state = 515, .external_lex_state = 12}, - [2975] = {.lex_state = 105, .external_lex_state = 12}, - [2976] = {.lex_state = 665, .external_lex_state = 12}, - [2977] = {.lex_state = 665, .external_lex_state = 12}, - [2978] = {.lex_state = 665, .external_lex_state = 12}, - [2979] = {.lex_state = 665, .external_lex_state = 12}, - [2980] = {.lex_state = 515, .external_lex_state = 12}, - [2981] = {.lex_state = 515, .external_lex_state = 12}, - [2982] = {.lex_state = 23, .external_lex_state = 12}, - [2983] = {.lex_state = 665, .external_lex_state = 12}, - [2984] = {.lex_state = 665, .external_lex_state = 12}, - [2985] = {.lex_state = 665, .external_lex_state = 12}, - [2986] = {.lex_state = 665, .external_lex_state = 12}, - [2987] = {.lex_state = 515, .external_lex_state = 12}, - [2988] = {.lex_state = 515, .external_lex_state = 12}, - [2989] = {.lex_state = 515, .external_lex_state = 12}, - [2990] = {.lex_state = 665, .external_lex_state = 12}, - [2991] = {.lex_state = 665, .external_lex_state = 12}, - [2992] = {.lex_state = 665, .external_lex_state = 12}, - [2993] = {.lex_state = 665, .external_lex_state = 12}, - [2994] = {.lex_state = 515, .external_lex_state = 12}, - [2995] = {.lex_state = 515, .external_lex_state = 12}, - [2996] = {.lex_state = 665, .external_lex_state = 12}, - [2997] = {.lex_state = 665, .external_lex_state = 12}, - [2998] = {.lex_state = 665, .external_lex_state = 12}, - [2999] = {.lex_state = 665, .external_lex_state = 12}, - [3000] = {.lex_state = 105, .external_lex_state = 12}, - [3001] = {.lex_state = 515, .external_lex_state = 12}, - [3002] = {.lex_state = 515, .external_lex_state = 12}, - [3003] = {.lex_state = 515, .external_lex_state = 12}, - [3004] = {.lex_state = 515, .external_lex_state = 12}, - [3005] = {.lex_state = 516, .external_lex_state = 12}, - [3006] = {.lex_state = 105, .external_lex_state = 12}, - [3007] = {.lex_state = 515, .external_lex_state = 12}, - [3008] = {.lex_state = 105, .external_lex_state = 12}, - [3009] = {.lex_state = 105, .external_lex_state = 12}, - [3010] = {.lex_state = 515, .external_lex_state = 12}, - [3011] = {.lex_state = 105, .external_lex_state = 12}, - [3012] = {.lex_state = 105, .external_lex_state = 12}, - [3013] = {.lex_state = 105, .external_lex_state = 12}, - [3014] = {.lex_state = 105, .external_lex_state = 12}, - [3015] = {.lex_state = 105, .external_lex_state = 12}, - [3016] = {.lex_state = 105, .external_lex_state = 12}, - [3017] = {.lex_state = 118, .external_lex_state = 12}, - [3018] = {.lex_state = 142, .external_lex_state = 12}, - [3019] = {.lex_state = 118, .external_lex_state = 12}, - [3020] = {.lex_state = 118, .external_lex_state = 12}, - [3021] = {.lex_state = 105, .external_lex_state = 12}, - [3022] = {.lex_state = 118, .external_lex_state = 12}, - [3023] = {.lex_state = 105, .external_lex_state = 12}, - [3024] = {.lex_state = 118, .external_lex_state = 12}, - [3025] = {.lex_state = 118, .external_lex_state = 12}, - [3026] = {.lex_state = 118, .external_lex_state = 12}, - [3027] = {.lex_state = 105, .external_lex_state = 12}, - [3028] = {.lex_state = 17, .external_lex_state = 12}, - [3029] = {.lex_state = 118, .external_lex_state = 12}, - [3030] = {.lex_state = 0, .external_lex_state = 23}, - [3031] = {.lex_state = 0, .external_lex_state = 23}, - [3032] = {.lex_state = 105, .external_lex_state = 12}, - [3033] = {.lex_state = 81, .external_lex_state = 12}, - [3034] = {.lex_state = 0, .external_lex_state = 39}, - [3035] = {.lex_state = 105, .external_lex_state = 12}, - [3036] = {.lex_state = 105, .external_lex_state = 12}, - [3037] = {.lex_state = 118, .external_lex_state = 12}, - [3038] = {.lex_state = 118, .external_lex_state = 12}, - [3039] = {.lex_state = 105, .external_lex_state = 12}, - [3040] = {.lex_state = 105, .external_lex_state = 12}, - [3041] = {.lex_state = 105, .external_lex_state = 12}, - [3042] = {.lex_state = 105, .external_lex_state = 12}, - [3043] = {.lex_state = 105, .external_lex_state = 12}, - [3044] = {.lex_state = 105, .external_lex_state = 12}, - [3045] = {.lex_state = 105, .external_lex_state = 12}, - [3046] = {.lex_state = 118, .external_lex_state = 12}, - [3047] = {.lex_state = 105, .external_lex_state = 12}, - [3048] = {.lex_state = 665, .external_lex_state = 12}, - [3049] = {.lex_state = 105, .external_lex_state = 12}, - [3050] = {.lex_state = 105, .external_lex_state = 12}, - [3051] = {.lex_state = 105, .external_lex_state = 12}, - [3052] = {.lex_state = 105, .external_lex_state = 12}, - [3053] = {.lex_state = 105, .external_lex_state = 12}, - [3054] = {.lex_state = 105, .external_lex_state = 12}, - [3055] = {.lex_state = 105, .external_lex_state = 12}, - [3056] = {.lex_state = 105, .external_lex_state = 12}, - [3057] = {.lex_state = 105, .external_lex_state = 12}, - [3058] = {.lex_state = 105, .external_lex_state = 12}, - [3059] = {.lex_state = 105, .external_lex_state = 12}, - [3060] = {.lex_state = 105, .external_lex_state = 12}, - [3061] = {.lex_state = 105, .external_lex_state = 12}, - [3062] = {.lex_state = 105, .external_lex_state = 12}, - [3063] = {.lex_state = 105, .external_lex_state = 12}, - [3064] = {.lex_state = 105, .external_lex_state = 12}, - [3065] = {.lex_state = 105, .external_lex_state = 12}, - [3066] = {.lex_state = 105, .external_lex_state = 12}, - [3067] = {.lex_state = 105, .external_lex_state = 12}, - [3068] = {.lex_state = 105, .external_lex_state = 12}, - [3069] = {.lex_state = 105, .external_lex_state = 12}, - [3070] = {.lex_state = 665, .external_lex_state = 12}, - [3071] = {.lex_state = 0, .external_lex_state = 12}, - [3072] = {.lex_state = 66, .external_lex_state = 12}, - [3073] = {.lex_state = 142, .external_lex_state = 12}, - [3074] = {.lex_state = 118, .external_lex_state = 12}, - [3075] = {.lex_state = 661, .external_lex_state = 12}, - [3076] = {.lex_state = 105, .external_lex_state = 12}, - [3077] = {.lex_state = 105, .external_lex_state = 12}, - [3078] = {.lex_state = 118, .external_lex_state = 12}, - [3079] = {.lex_state = 0, .external_lex_state = 12}, - [3080] = {.lex_state = 665, .external_lex_state = 12}, - [3081] = {.lex_state = 118, .external_lex_state = 12}, - [3082] = {.lex_state = 665, .external_lex_state = 12}, - [3083] = {.lex_state = 663, .external_lex_state = 12}, - [3084] = {.lex_state = 142, .external_lex_state = 12}, - [3085] = {.lex_state = 20, .external_lex_state = 12}, - [3086] = {.lex_state = 665, .external_lex_state = 12}, - [3087] = {.lex_state = 665, .external_lex_state = 12}, - [3088] = {.lex_state = 663, .external_lex_state = 12}, - [3089] = {.lex_state = 665, .external_lex_state = 12}, - [3090] = {.lex_state = 665, .external_lex_state = 12}, - [3091] = {.lex_state = 665, .external_lex_state = 12}, - [3092] = {.lex_state = 665, .external_lex_state = 12}, - [3093] = {.lex_state = 142, .external_lex_state = 12}, - [3094] = {.lex_state = 515, .external_lex_state = 12}, - [3095] = {.lex_state = 515, .external_lex_state = 12}, - [3096] = {.lex_state = 516, .external_lex_state = 12}, - [3097] = {.lex_state = 0, .external_lex_state = 39}, - [3098] = {.lex_state = 0, .external_lex_state = 39}, - [3099] = {.lex_state = 0, .external_lex_state = 38}, - [3100] = {.lex_state = 118, .external_lex_state = 12}, - [3101] = {.lex_state = 665, .external_lex_state = 12}, - [3102] = {.lex_state = 118, .external_lex_state = 12}, - [3103] = {.lex_state = 665, .external_lex_state = 12}, - [3104] = {.lex_state = 515, .external_lex_state = 12}, - [3105] = {.lex_state = 105, .external_lex_state = 12}, - [3106] = {.lex_state = 118, .external_lex_state = 12}, - [3107] = {.lex_state = 20, .external_lex_state = 12}, - [3108] = {.lex_state = 105, .external_lex_state = 12}, - [3109] = {.lex_state = 515, .external_lex_state = 12}, - [3110] = {.lex_state = 24, .external_lex_state = 12}, - [3111] = {.lex_state = 105, .external_lex_state = 12}, - [3112] = {.lex_state = 105, .external_lex_state = 12}, - [3113] = {.lex_state = 105, .external_lex_state = 12}, - [3114] = {.lex_state = 105, .external_lex_state = 12}, - [3115] = {.lex_state = 105, .external_lex_state = 12}, - [3116] = {.lex_state = 17, .external_lex_state = 12}, - [3117] = {.lex_state = 0, .external_lex_state = 23}, - [3118] = {.lex_state = 105, .external_lex_state = 12}, - [3119] = {.lex_state = 118, .external_lex_state = 12}, - [3120] = {.lex_state = 105, .external_lex_state = 12}, - [3121] = {.lex_state = 118, .external_lex_state = 12}, - [3122] = {.lex_state = 118, .external_lex_state = 12}, - [3123] = {.lex_state = 515, .external_lex_state = 12}, - [3124] = {.lex_state = 142, .external_lex_state = 12}, - [3125] = {.lex_state = 0, .external_lex_state = 40}, - [3126] = {.lex_state = 105, .external_lex_state = 12}, - [3127] = {.lex_state = 105, .external_lex_state = 12}, - [3128] = {.lex_state = 0, .external_lex_state = 23}, - [3129] = {.lex_state = 105, .external_lex_state = 12}, - [3130] = {.lex_state = 665, .external_lex_state = 12}, - [3131] = {.lex_state = 105, .external_lex_state = 12}, - [3132] = {.lex_state = 517, .external_lex_state = 12}, - [3133] = {.lex_state = 105, .external_lex_state = 12}, - [3134] = {.lex_state = 105, .external_lex_state = 12}, - [3135] = {.lex_state = 105, .external_lex_state = 12}, - [3136] = {.lex_state = 665, .external_lex_state = 12}, - [3137] = {.lex_state = 20, .external_lex_state = 12}, - [3138] = {.lex_state = 663, .external_lex_state = 12}, - [3139] = {.lex_state = 665, .external_lex_state = 12}, - [3140] = {.lex_state = 142, .external_lex_state = 12}, - [3141] = {.lex_state = 105, .external_lex_state = 12}, - [3142] = {.lex_state = 105, .external_lex_state = 12}, - [3143] = {.lex_state = 105, .external_lex_state = 12}, - [3144] = {.lex_state = 665, .external_lex_state = 12}, - [3145] = {.lex_state = 515, .external_lex_state = 12}, - [3146] = {.lex_state = 20, .external_lex_state = 12}, - [3147] = {.lex_state = 142, .external_lex_state = 12}, - [3148] = {.lex_state = 105, .external_lex_state = 12}, - [3149] = {.lex_state = 105, .external_lex_state = 12}, - [3150] = {.lex_state = 515, .external_lex_state = 12}, - [3151] = {.lex_state = 105, .external_lex_state = 12}, - [3152] = {.lex_state = 105, .external_lex_state = 12}, - [3153] = {.lex_state = 105, .external_lex_state = 12}, - [3154] = {.lex_state = 665, .external_lex_state = 12}, - [3155] = {.lex_state = 118, .external_lex_state = 12}, - [3156] = {.lex_state = 516, .external_lex_state = 12}, - [3157] = {.lex_state = 0, .external_lex_state = 23}, - [3158] = {.lex_state = 0, .external_lex_state = 12}, - [3159] = {.lex_state = 515, .external_lex_state = 12}, - [3160] = {.lex_state = 105, .external_lex_state = 12}, - [3161] = {.lex_state = 118, .external_lex_state = 12}, - [3162] = {.lex_state = 515, .external_lex_state = 12}, - [3163] = {.lex_state = 665, .external_lex_state = 12}, - [3164] = {.lex_state = 142, .external_lex_state = 12}, - [3165] = {.lex_state = 142, .external_lex_state = 12}, - [3166] = {.lex_state = 665, .external_lex_state = 12}, - [3167] = {.lex_state = 515, .external_lex_state = 12}, - [3168] = {.lex_state = 665, .external_lex_state = 12}, - [3169] = {.lex_state = 517, .external_lex_state = 12}, - [3170] = {.lex_state = 665, .external_lex_state = 12}, - [3171] = {.lex_state = 665, .external_lex_state = 12}, - [3172] = {.lex_state = 665, .external_lex_state = 12}, - [3173] = {.lex_state = 665, .external_lex_state = 12}, - [3174] = {.lex_state = 515, .external_lex_state = 12}, - [3175] = {.lex_state = 515, .external_lex_state = 12}, - [3176] = {.lex_state = 516, .external_lex_state = 12}, - [3177] = {.lex_state = 105, .external_lex_state = 12}, - [3178] = {.lex_state = 0, .external_lex_state = 39}, - [3179] = {.lex_state = 142, .external_lex_state = 12}, - [3180] = {.lex_state = 142, .external_lex_state = 12}, - [3181] = {.lex_state = 517, .external_lex_state = 12}, - [3182] = {.lex_state = 142, .external_lex_state = 12}, - [3183] = {.lex_state = 663, .external_lex_state = 12}, - [3184] = {.lex_state = 665, .external_lex_state = 12}, - [3185] = {.lex_state = 118, .external_lex_state = 12}, - [3186] = {.lex_state = 665, .external_lex_state = 12}, - [3187] = {.lex_state = 515, .external_lex_state = 12}, - [3188] = {.lex_state = 118, .external_lex_state = 12}, - [3189] = {.lex_state = 118, .external_lex_state = 12}, - [3190] = {.lex_state = 105, .external_lex_state = 12}, - [3191] = {.lex_state = 118, .external_lex_state = 12}, - [3192] = {.lex_state = 0, .external_lex_state = 40}, - [3193] = {.lex_state = 118, .external_lex_state = 12}, - [3194] = {.lex_state = 0, .external_lex_state = 23}, - [3195] = {.lex_state = 665, .external_lex_state = 12}, - [3196] = {.lex_state = 20, .external_lex_state = 12}, - [3197] = {.lex_state = 665, .external_lex_state = 12}, - [3198] = {.lex_state = 118, .external_lex_state = 12}, + [2891] = {.lex_state = 686, .external_lex_state = 12}, + [2892] = {.lex_state = 686, .external_lex_state = 12}, + [2893] = {.lex_state = 686, .external_lex_state = 12}, + [2894] = {.lex_state = 686, .external_lex_state = 12}, + [2895] = {.lex_state = 686, .external_lex_state = 12}, + [2896] = {.lex_state = 686, .external_lex_state = 12}, + [2897] = {.lex_state = 686, .external_lex_state = 12}, + [2898] = {.lex_state = 686, .external_lex_state = 12}, + [2899] = {.lex_state = 0, .external_lex_state = 13}, + [2900] = {.lex_state = 0, .external_lex_state = 36}, + [2901] = {.lex_state = 0, .external_lex_state = 13}, + [2902] = {.lex_state = 686, .external_lex_state = 12}, + [2903] = {.lex_state = 686, .external_lex_state = 12}, + [2904] = {.lex_state = 686, .external_lex_state = 12}, + [2905] = {.lex_state = 686, .external_lex_state = 12}, + [2906] = {.lex_state = 0, .external_lex_state = 13}, + [2907] = {.lex_state = 0, .external_lex_state = 13}, + [2908] = {.lex_state = 686, .external_lex_state = 12}, + [2909] = {.lex_state = 686, .external_lex_state = 12}, + [2910] = {.lex_state = 0, .external_lex_state = 13}, + [2911] = {.lex_state = 686, .external_lex_state = 12}, + [2912] = {.lex_state = 686, .external_lex_state = 12}, + [2913] = {.lex_state = 686, .external_lex_state = 12}, + [2914] = {.lex_state = 686, .external_lex_state = 12}, + [2915] = {.lex_state = 0, .external_lex_state = 13}, + [2916] = {.lex_state = 686, .external_lex_state = 12}, + [2917] = {.lex_state = 0, .external_lex_state = 13}, + [2918] = {.lex_state = 0, .external_lex_state = 13}, + [2919] = {.lex_state = 686, .external_lex_state = 12}, + [2920] = {.lex_state = 0, .external_lex_state = 13}, + [2921] = {.lex_state = 686, .external_lex_state = 12}, + [2922] = {.lex_state = 19, .external_lex_state = 12}, + [2923] = {.lex_state = 686, .external_lex_state = 12}, + [2924] = {.lex_state = 0, .external_lex_state = 13}, + [2925] = {.lex_state = 686, .external_lex_state = 12}, + [2926] = {.lex_state = 19, .external_lex_state = 12}, + [2927] = {.lex_state = 686, .external_lex_state = 12}, + [2928] = {.lex_state = 686, .external_lex_state = 12}, + [2929] = {.lex_state = 686, .external_lex_state = 12}, + [2930] = {.lex_state = 686, .external_lex_state = 12}, + [2931] = {.lex_state = 686, .external_lex_state = 12}, + [2932] = {.lex_state = 686, .external_lex_state = 12}, + [2933] = {.lex_state = 686, .external_lex_state = 12}, + [2934] = {.lex_state = 686, .external_lex_state = 12}, + [2935] = {.lex_state = 686, .external_lex_state = 12}, + [2936] = {.lex_state = 686, .external_lex_state = 12}, + [2937] = {.lex_state = 686, .external_lex_state = 12}, + [2938] = {.lex_state = 686, .external_lex_state = 12}, + [2939] = {.lex_state = 686, .external_lex_state = 12}, + [2940] = {.lex_state = 686, .external_lex_state = 12}, + [2941] = {.lex_state = 686, .external_lex_state = 12}, + [2942] = {.lex_state = 686, .external_lex_state = 12}, + [2943] = {.lex_state = 686, .external_lex_state = 12}, + [2944] = {.lex_state = 0, .external_lex_state = 13}, + [2945] = {.lex_state = 686, .external_lex_state = 12}, + [2946] = {.lex_state = 686, .external_lex_state = 12}, + [2947] = {.lex_state = 19, .external_lex_state = 12}, + [2948] = {.lex_state = 0, .external_lex_state = 23}, + [2949] = {.lex_state = 686, .external_lex_state = 12}, + [2950] = {.lex_state = 106, .external_lex_state = 12}, + [2951] = {.lex_state = 686, .external_lex_state = 12}, + [2952] = {.lex_state = 536, .external_lex_state = 12}, + [2953] = {.lex_state = 686, .external_lex_state = 12}, + [2954] = {.lex_state = 537, .external_lex_state = 12}, + [2955] = {.lex_state = 537, .external_lex_state = 12}, + [2956] = {.lex_state = 119, .external_lex_state = 12}, + [2957] = {.lex_state = 686, .external_lex_state = 12}, + [2958] = {.lex_state = 686, .external_lex_state = 12}, + [2959] = {.lex_state = 17, .external_lex_state = 12}, + [2960] = {.lex_state = 119, .external_lex_state = 12}, + [2961] = {.lex_state = 119, .external_lex_state = 12}, + [2962] = {.lex_state = 20, .external_lex_state = 12}, + [2963] = {.lex_state = 106, .external_lex_state = 12}, + [2964] = {.lex_state = 106, .external_lex_state = 12}, + [2965] = {.lex_state = 686, .external_lex_state = 12}, + [2966] = {.lex_state = 0, .external_lex_state = 38}, + [2967] = {.lex_state = 0, .external_lex_state = 39}, + [2968] = {.lex_state = 686, .external_lex_state = 12}, + [2969] = {.lex_state = 686, .external_lex_state = 12}, + [2970] = {.lex_state = 537, .external_lex_state = 12}, + [2971] = {.lex_state = 686, .external_lex_state = 12}, + [2972] = {.lex_state = 106, .external_lex_state = 12}, + [2973] = {.lex_state = 106, .external_lex_state = 12}, + [2974] = {.lex_state = 0, .external_lex_state = 39}, + [2975] = {.lex_state = 686, .external_lex_state = 12}, + [2976] = {.lex_state = 686, .external_lex_state = 12}, + [2977] = {.lex_state = 686, .external_lex_state = 12}, + [2978] = {.lex_state = 537, .external_lex_state = 12}, + [2979] = {.lex_state = 537, .external_lex_state = 12}, + [2980] = {.lex_state = 536, .external_lex_state = 12}, + [2981] = {.lex_state = 17, .external_lex_state = 12}, + [2982] = {.lex_state = 119, .external_lex_state = 12}, + [2983] = {.lex_state = 106, .external_lex_state = 12}, + [2984] = {.lex_state = 119, .external_lex_state = 12}, + [2985] = {.lex_state = 119, .external_lex_state = 12}, + [2986] = {.lex_state = 119, .external_lex_state = 12}, + [2987] = {.lex_state = 145, .external_lex_state = 12}, + [2988] = {.lex_state = 17, .external_lex_state = 12}, + [2989] = {.lex_state = 145, .external_lex_state = 12}, + [2990] = {.lex_state = 686, .external_lex_state = 12}, + [2991] = {.lex_state = 536, .external_lex_state = 12}, + [2992] = {.lex_state = 537, .external_lex_state = 12}, + [2993] = {.lex_state = 537, .external_lex_state = 12}, + [2994] = {.lex_state = 686, .external_lex_state = 12}, + [2995] = {.lex_state = 106, .external_lex_state = 12}, + [2996] = {.lex_state = 106, .external_lex_state = 12}, + [2997] = {.lex_state = 686, .external_lex_state = 12}, + [2998] = {.lex_state = 684, .external_lex_state = 12}, + [2999] = {.lex_state = 686, .external_lex_state = 12}, + [3000] = {.lex_state = 119, .external_lex_state = 12}, + [3001] = {.lex_state = 106, .external_lex_state = 12}, + [3002] = {.lex_state = 686, .external_lex_state = 12}, + [3003] = {.lex_state = 106, .external_lex_state = 12}, + [3004] = {.lex_state = 17, .external_lex_state = 12}, + [3005] = {.lex_state = 119, .external_lex_state = 12}, + [3006] = {.lex_state = 106, .external_lex_state = 12}, + [3007] = {.lex_state = 119, .external_lex_state = 12}, + [3008] = {.lex_state = 686, .external_lex_state = 12}, + [3009] = {.lex_state = 536, .external_lex_state = 12}, + [3010] = {.lex_state = 537, .external_lex_state = 12}, + [3011] = {.lex_state = 537, .external_lex_state = 12}, + [3012] = {.lex_state = 686, .external_lex_state = 12}, + [3013] = {.lex_state = 106, .external_lex_state = 12}, + [3014] = {.lex_state = 106, .external_lex_state = 12}, + [3015] = {.lex_state = 106, .external_lex_state = 12}, + [3016] = {.lex_state = 686, .external_lex_state = 12}, + [3017] = {.lex_state = 686, .external_lex_state = 12}, + [3018] = {.lex_state = 106, .external_lex_state = 12}, + [3019] = {.lex_state = 17, .external_lex_state = 12}, + [3020] = {.lex_state = 119, .external_lex_state = 12}, + [3021] = {.lex_state = 106, .external_lex_state = 12}, + [3022] = {.lex_state = 119, .external_lex_state = 12}, + [3023] = {.lex_state = 686, .external_lex_state = 12}, + [3024] = {.lex_state = 536, .external_lex_state = 12}, + [3025] = {.lex_state = 537, .external_lex_state = 12}, + [3026] = {.lex_state = 537, .external_lex_state = 12}, + [3027] = {.lex_state = 106, .external_lex_state = 12}, + [3028] = {.lex_state = 0, .external_lex_state = 23}, + [3029] = {.lex_state = 106, .external_lex_state = 12}, + [3030] = {.lex_state = 686, .external_lex_state = 12}, + [3031] = {.lex_state = 686, .external_lex_state = 12}, + [3032] = {.lex_state = 106, .external_lex_state = 12}, + [3033] = {.lex_state = 537, .external_lex_state = 12}, + [3034] = {.lex_state = 537, .external_lex_state = 12}, + [3035] = {.lex_state = 537, .external_lex_state = 12}, + [3036] = {.lex_state = 537, .external_lex_state = 12}, + [3037] = {.lex_state = 536, .external_lex_state = 12}, + [3038] = {.lex_state = 686, .external_lex_state = 12}, + [3039] = {.lex_state = 24, .external_lex_state = 12}, + [3040] = {.lex_state = 106, .external_lex_state = 12}, + [3041] = {.lex_state = 537, .external_lex_state = 12}, + [3042] = {.lex_state = 537, .external_lex_state = 12}, + [3043] = {.lex_state = 106, .external_lex_state = 12}, + [3044] = {.lex_state = 119, .external_lex_state = 12}, + [3045] = {.lex_state = 106, .external_lex_state = 12}, + [3046] = {.lex_state = 686, .external_lex_state = 12}, + [3047] = {.lex_state = 17, .external_lex_state = 12}, + [3048] = {.lex_state = 537, .external_lex_state = 12}, + [3049] = {.lex_state = 537, .external_lex_state = 12}, + [3050] = {.lex_state = 0, .external_lex_state = 23}, + [3051] = {.lex_state = 0, .external_lex_state = 23}, + [3052] = {.lex_state = 106, .external_lex_state = 12}, + [3053] = {.lex_state = 686, .external_lex_state = 12}, + [3054] = {.lex_state = 106, .external_lex_state = 12}, + [3055] = {.lex_state = 537, .external_lex_state = 12}, + [3056] = {.lex_state = 537, .external_lex_state = 12}, + [3057] = {.lex_state = 0, .external_lex_state = 38}, + [3058] = {.lex_state = 686, .external_lex_state = 12}, + [3059] = {.lex_state = 106, .external_lex_state = 12}, + [3060] = {.lex_state = 686, .external_lex_state = 12}, + [3061] = {.lex_state = 119, .external_lex_state = 12}, + [3062] = {.lex_state = 537, .external_lex_state = 12}, + [3063] = {.lex_state = 106, .external_lex_state = 12}, + [3064] = {.lex_state = 686, .external_lex_state = 12}, + [3065] = {.lex_state = 537, .external_lex_state = 12}, + [3066] = {.lex_state = 106, .external_lex_state = 12}, + [3067] = {.lex_state = 119, .external_lex_state = 12}, + [3068] = {.lex_state = 537, .external_lex_state = 12}, + [3069] = {.lex_state = 106, .external_lex_state = 12}, + [3070] = {.lex_state = 686, .external_lex_state = 12}, + [3071] = {.lex_state = 537, .external_lex_state = 12}, + [3072] = {.lex_state = 119, .external_lex_state = 12}, + [3073] = {.lex_state = 106, .external_lex_state = 12}, + [3074] = {.lex_state = 106, .external_lex_state = 12}, + [3075] = {.lex_state = 106, .external_lex_state = 12}, + [3076] = {.lex_state = 686, .external_lex_state = 12}, + [3077] = {.lex_state = 686, .external_lex_state = 12}, + [3078] = {.lex_state = 106, .external_lex_state = 12}, + [3079] = {.lex_state = 119, .external_lex_state = 12}, + [3080] = {.lex_state = 106, .external_lex_state = 12}, + [3081] = {.lex_state = 119, .external_lex_state = 12}, + [3082] = {.lex_state = 686, .external_lex_state = 12}, + [3083] = {.lex_state = 106, .external_lex_state = 12}, + [3084] = {.lex_state = 686, .external_lex_state = 12}, + [3085] = {.lex_state = 119, .external_lex_state = 12}, + [3086] = {.lex_state = 119, .external_lex_state = 12}, + [3087] = {.lex_state = 119, .external_lex_state = 12}, + [3088] = {.lex_state = 119, .external_lex_state = 12}, + [3089] = {.lex_state = 106, .external_lex_state = 12}, + [3090] = {.lex_state = 106, .external_lex_state = 12}, + [3091] = {.lex_state = 106, .external_lex_state = 12}, + [3092] = {.lex_state = 106, .external_lex_state = 12}, + [3093] = {.lex_state = 106, .external_lex_state = 12}, + [3094] = {.lex_state = 106, .external_lex_state = 12}, + [3095] = {.lex_state = 106, .external_lex_state = 12}, + [3096] = {.lex_state = 686, .external_lex_state = 12}, + [3097] = {.lex_state = 119, .external_lex_state = 12}, + [3098] = {.lex_state = 106, .external_lex_state = 12}, + [3099] = {.lex_state = 119, .external_lex_state = 12}, + [3100] = {.lex_state = 106, .external_lex_state = 12}, + [3101] = {.lex_state = 106, .external_lex_state = 12}, + [3102] = {.lex_state = 106, .external_lex_state = 12}, + [3103] = {.lex_state = 106, .external_lex_state = 12}, + [3104] = {.lex_state = 106, .external_lex_state = 12}, + [3105] = {.lex_state = 106, .external_lex_state = 12}, + [3106] = {.lex_state = 537, .external_lex_state = 12}, + [3107] = {.lex_state = 119, .external_lex_state = 12}, + [3108] = {.lex_state = 106, .external_lex_state = 12}, + [3109] = {.lex_state = 537, .external_lex_state = 12}, + [3110] = {.lex_state = 106, .external_lex_state = 12}, + [3111] = {.lex_state = 106, .external_lex_state = 12}, + [3112] = {.lex_state = 106, .external_lex_state = 12}, + [3113] = {.lex_state = 106, .external_lex_state = 12}, + [3114] = {.lex_state = 537, .external_lex_state = 12}, + [3115] = {.lex_state = 686, .external_lex_state = 12}, + [3116] = {.lex_state = 536, .external_lex_state = 12}, + [3117] = {.lex_state = 684, .external_lex_state = 12}, + [3118] = {.lex_state = 106, .external_lex_state = 12}, + [3119] = {.lex_state = 106, .external_lex_state = 12}, + [3120] = {.lex_state = 145, .external_lex_state = 12}, + [3121] = {.lex_state = 106, .external_lex_state = 12}, + [3122] = {.lex_state = 106, .external_lex_state = 12}, + [3123] = {.lex_state = 106, .external_lex_state = 12}, + [3124] = {.lex_state = 106, .external_lex_state = 12}, + [3125] = {.lex_state = 106, .external_lex_state = 12}, + [3126] = {.lex_state = 106, .external_lex_state = 12}, + [3127] = {.lex_state = 106, .external_lex_state = 12}, + [3128] = {.lex_state = 106, .external_lex_state = 12}, + [3129] = {.lex_state = 106, .external_lex_state = 12}, + [3130] = {.lex_state = 106, .external_lex_state = 12}, + [3131] = {.lex_state = 119, .external_lex_state = 12}, + [3132] = {.lex_state = 145, .external_lex_state = 12}, + [3133] = {.lex_state = 0, .external_lex_state = 12}, + [3134] = {.lex_state = 119, .external_lex_state = 12}, + [3135] = {.lex_state = 20, .external_lex_state = 12}, + [3136] = {.lex_state = 66, .external_lex_state = 12}, + [3137] = {.lex_state = 682, .external_lex_state = 12}, + [3138] = {.lex_state = 106, .external_lex_state = 12}, + [3139] = {.lex_state = 106, .external_lex_state = 12}, + [3140] = {.lex_state = 119, .external_lex_state = 12}, + [3141] = {.lex_state = 0, .external_lex_state = 12}, + [3142] = {.lex_state = 537, .external_lex_state = 12}, + [3143] = {.lex_state = 81, .external_lex_state = 12}, + [3144] = {.lex_state = 106, .external_lex_state = 12}, + [3145] = {.lex_state = 17, .external_lex_state = 12}, + [3146] = {.lex_state = 537, .external_lex_state = 12}, + [3147] = {.lex_state = 106, .external_lex_state = 12}, + [3148] = {.lex_state = 106, .external_lex_state = 12}, + [3149] = {.lex_state = 0, .external_lex_state = 23}, + [3150] = {.lex_state = 0, .external_lex_state = 39}, + [3151] = {.lex_state = 23, .external_lex_state = 12}, + [3152] = {.lex_state = 106, .external_lex_state = 12}, + [3153] = {.lex_state = 106, .external_lex_state = 12}, + [3154] = {.lex_state = 106, .external_lex_state = 12}, + [3155] = {.lex_state = 684, .external_lex_state = 12}, + [3156] = {.lex_state = 686, .external_lex_state = 12}, + [3157] = {.lex_state = 686, .external_lex_state = 12}, + [3158] = {.lex_state = 686, .external_lex_state = 12}, + [3159] = {.lex_state = 145, .external_lex_state = 12}, + [3160] = {.lex_state = 686, .external_lex_state = 12}, + [3161] = {.lex_state = 119, .external_lex_state = 12}, + [3162] = {.lex_state = 686, .external_lex_state = 12}, + [3163] = {.lex_state = 686, .external_lex_state = 12}, + [3164] = {.lex_state = 686, .external_lex_state = 12}, + [3165] = {.lex_state = 0, .external_lex_state = 23}, + [3166] = {.lex_state = 538, .external_lex_state = 12}, + [3167] = {.lex_state = 119, .external_lex_state = 12}, + [3168] = {.lex_state = 106, .external_lex_state = 12}, + [3169] = {.lex_state = 119, .external_lex_state = 12}, + [3170] = {.lex_state = 537, .external_lex_state = 12}, + [3171] = {.lex_state = 106, .external_lex_state = 12}, + [3172] = {.lex_state = 0, .external_lex_state = 38}, + [3173] = {.lex_state = 537, .external_lex_state = 12}, + [3174] = {.lex_state = 106, .external_lex_state = 12}, + [3175] = {.lex_state = 686, .external_lex_state = 12}, + [3176] = {.lex_state = 106, .external_lex_state = 12}, + [3177] = {.lex_state = 106, .external_lex_state = 12}, + [3178] = {.lex_state = 106, .external_lex_state = 12}, + [3179] = {.lex_state = 106, .external_lex_state = 12}, + [3180] = {.lex_state = 145, .external_lex_state = 12}, + [3181] = {.lex_state = 145, .external_lex_state = 12}, + [3182] = {.lex_state = 106, .external_lex_state = 12}, + [3183] = {.lex_state = 119, .external_lex_state = 12}, + [3184] = {.lex_state = 0, .external_lex_state = 39}, + [3185] = {.lex_state = 686, .external_lex_state = 12}, + [3186] = {.lex_state = 686, .external_lex_state = 12}, + [3187] = {.lex_state = 106, .external_lex_state = 12}, + [3188] = {.lex_state = 686, .external_lex_state = 12}, + [3189] = {.lex_state = 0, .external_lex_state = 12}, + [3190] = {.lex_state = 537, .external_lex_state = 12}, + [3191] = {.lex_state = 537, .external_lex_state = 12}, + [3192] = {.lex_state = 536, .external_lex_state = 12}, + [3193] = {.lex_state = 106, .external_lex_state = 12}, + [3194] = {.lex_state = 145, .external_lex_state = 12}, + [3195] = {.lex_state = 106, .external_lex_state = 12}, + [3196] = {.lex_state = 682, .external_lex_state = 12}, + [3197] = {.lex_state = 0, .external_lex_state = 23}, + [3198] = {.lex_state = 17, .external_lex_state = 12}, [3199] = {.lex_state = 0, .external_lex_state = 20}, - [3200] = {.lex_state = 105, .external_lex_state = 12}, - [3201] = {.lex_state = 0, .external_lex_state = 23}, - [3202] = {.lex_state = 0, .external_lex_state = 38}, - [3203] = {.lex_state = 118, .external_lex_state = 12}, - [3204] = {.lex_state = 0, .external_lex_state = 39}, - [3205] = {.lex_state = 118, .external_lex_state = 12}, - [3206] = {.lex_state = 0, .external_lex_state = 39}, - [3207] = {.lex_state = 118, .external_lex_state = 12}, - [3208] = {.lex_state = 142, .external_lex_state = 12}, - [3209] = {.lex_state = 665, .external_lex_state = 12}, - [3210] = {.lex_state = 663, .external_lex_state = 12}, - [3211] = {.lex_state = 118, .external_lex_state = 12}, - [3212] = {.lex_state = 118, .external_lex_state = 12}, - [3213] = {.lex_state = 105, .external_lex_state = 12}, - [3214] = {.lex_state = 118, .external_lex_state = 12}, - [3215] = {.lex_state = 24, .external_lex_state = 12}, - [3216] = {.lex_state = 105, .external_lex_state = 12}, - [3217] = {.lex_state = 665, .external_lex_state = 12}, - [3218] = {.lex_state = 105, .external_lex_state = 12}, - [3219] = {.lex_state = 0, .external_lex_state = 38}, - [3220] = {.lex_state = 105, .external_lex_state = 12}, - [3221] = {.lex_state = 118, .external_lex_state = 12}, - [3222] = {.lex_state = 81, .external_lex_state = 12}, - [3223] = {.lex_state = 0, .external_lex_state = 23}, - [3224] = {.lex_state = 118, .external_lex_state = 12}, - [3225] = {.lex_state = 665, .external_lex_state = 12}, - [3226] = {.lex_state = 105, .external_lex_state = 12}, - [3227] = {.lex_state = 665, .external_lex_state = 12}, - [3228] = {.lex_state = 105, .external_lex_state = 12}, - [3229] = {.lex_state = 118, .external_lex_state = 12}, - [3230] = {.lex_state = 0, .external_lex_state = 20}, - [3231] = {.lex_state = 665, .external_lex_state = 12}, - [3232] = {.lex_state = 24, .external_lex_state = 12}, - [3233] = {.lex_state = 118, .external_lex_state = 12}, - [3234] = {.lex_state = 105, .external_lex_state = 12}, - [3235] = {.lex_state = 105, .external_lex_state = 12}, - [3236] = {.lex_state = 17, .external_lex_state = 12}, - [3237] = {.lex_state = 0, .external_lex_state = 23}, - [3238] = {.lex_state = 0, .external_lex_state = 39}, - [3239] = {.lex_state = 0, .external_lex_state = 38}, - [3240] = {.lex_state = 0, .external_lex_state = 38}, - [3241] = {.lex_state = 118, .external_lex_state = 12}, - [3242] = {.lex_state = 515, .external_lex_state = 12}, - [3243] = {.lex_state = 20, .external_lex_state = 12}, - [3244] = {.lex_state = 105, .external_lex_state = 12}, + [3200] = {.lex_state = 106, .external_lex_state = 12}, + [3201] = {.lex_state = 537, .external_lex_state = 12}, + [3202] = {.lex_state = 106, .external_lex_state = 12}, + [3203] = {.lex_state = 106, .external_lex_state = 12}, + [3204] = {.lex_state = 119, .external_lex_state = 12}, + [3205] = {.lex_state = 106, .external_lex_state = 12}, + [3206] = {.lex_state = 81, .external_lex_state = 12}, + [3207] = {.lex_state = 686, .external_lex_state = 12}, + [3208] = {.lex_state = 119, .external_lex_state = 12}, + [3209] = {.lex_state = 686, .external_lex_state = 12}, + [3210] = {.lex_state = 119, .external_lex_state = 12}, + [3211] = {.lex_state = 24, .external_lex_state = 12}, + [3212] = {.lex_state = 536, .external_lex_state = 12}, + [3213] = {.lex_state = 686, .external_lex_state = 12}, + [3214] = {.lex_state = 0, .external_lex_state = 38}, + [3215] = {.lex_state = 106, .external_lex_state = 12}, + [3216] = {.lex_state = 686, .external_lex_state = 12}, + [3217] = {.lex_state = 119, .external_lex_state = 12}, + [3218] = {.lex_state = 119, .external_lex_state = 12}, + [3219] = {.lex_state = 686, .external_lex_state = 12}, + [3220] = {.lex_state = 686, .external_lex_state = 12}, + [3221] = {.lex_state = 119, .external_lex_state = 12}, + [3222] = {.lex_state = 686, .external_lex_state = 12}, + [3223] = {.lex_state = 81, .external_lex_state = 12}, + [3224] = {.lex_state = 106, .external_lex_state = 12}, + [3225] = {.lex_state = 686, .external_lex_state = 12}, + [3226] = {.lex_state = 23, .external_lex_state = 12}, + [3227] = {.lex_state = 17, .external_lex_state = 12}, + [3228] = {.lex_state = 0, .external_lex_state = 23}, + [3229] = {.lex_state = 0, .external_lex_state = 39}, + [3230] = {.lex_state = 106, .external_lex_state = 12}, + [3231] = {.lex_state = 0, .external_lex_state = 38}, + [3232] = {.lex_state = 0, .external_lex_state = 38}, + [3233] = {.lex_state = 119, .external_lex_state = 12}, + [3234] = {.lex_state = 106, .external_lex_state = 12}, + [3235] = {.lex_state = 119, .external_lex_state = 12}, + [3236] = {.lex_state = 119, .external_lex_state = 12}, + [3237] = {.lex_state = 0, .external_lex_state = 38}, + [3238] = {.lex_state = 0, .external_lex_state = 12}, + [3239] = {.lex_state = 537, .external_lex_state = 12}, + [3240] = {.lex_state = 20, .external_lex_state = 12}, + [3241] = {.lex_state = 119, .external_lex_state = 12}, + [3242] = {.lex_state = 106, .external_lex_state = 12}, + [3243] = {.lex_state = 686, .external_lex_state = 12}, + [3244] = {.lex_state = 106, .external_lex_state = 12}, + [3245] = {.lex_state = 106, .external_lex_state = 12}, + [3246] = {.lex_state = 106, .external_lex_state = 12}, + [3247] = {.lex_state = 0, .external_lex_state = 23}, + [3248] = {.lex_state = 119, .external_lex_state = 12}, + [3249] = {.lex_state = 24, .external_lex_state = 12}, + [3250] = {.lex_state = 686, .external_lex_state = 12}, + [3251] = {.lex_state = 106, .external_lex_state = 12}, + [3252] = {.lex_state = 24, .external_lex_state = 12}, + [3253] = {.lex_state = 537, .external_lex_state = 12}, + [3254] = {.lex_state = 106, .external_lex_state = 12}, + [3255] = {.lex_state = 119, .external_lex_state = 12}, + [3256] = {.lex_state = 106, .external_lex_state = 12}, + [3257] = {.lex_state = 145, .external_lex_state = 12}, + [3258] = {.lex_state = 119, .external_lex_state = 12}, + [3259] = {.lex_state = 119, .external_lex_state = 12}, + [3260] = {.lex_state = 684, .external_lex_state = 12}, + [3261] = {.lex_state = 686, .external_lex_state = 12}, + [3262] = {.lex_state = 145, .external_lex_state = 12}, + [3263] = {.lex_state = 686, .external_lex_state = 12}, + [3264] = {.lex_state = 119, .external_lex_state = 12}, + [3265] = {.lex_state = 0, .external_lex_state = 20}, + [3266] = {.lex_state = 0, .external_lex_state = 39}, + [3267] = {.lex_state = 0, .external_lex_state = 39}, + [3268] = {.lex_state = 0, .external_lex_state = 38}, + [3269] = {.lex_state = 119, .external_lex_state = 12}, + [3270] = {.lex_state = 686, .external_lex_state = 12}, + [3271] = {.lex_state = 20, .external_lex_state = 12}, + [3272] = {.lex_state = 23, .external_lex_state = 12}, + [3273] = {.lex_state = 20, .external_lex_state = 12}, + [3274] = {.lex_state = 686, .external_lex_state = 12}, + [3275] = {.lex_state = 686, .external_lex_state = 12}, + [3276] = {.lex_state = 0, .external_lex_state = 23}, + [3277] = {.lex_state = 119, .external_lex_state = 12}, + [3278] = {.lex_state = 119, .external_lex_state = 12}, + [3279] = {.lex_state = 119, .external_lex_state = 12}, + [3280] = {.lex_state = 119, .external_lex_state = 12}, + [3281] = {.lex_state = 537, .external_lex_state = 12}, + [3282] = {.lex_state = 0, .external_lex_state = 12}, + [3283] = {.lex_state = 686, .external_lex_state = 12}, + [3284] = {.lex_state = 684, .external_lex_state = 12}, + [3285] = {.lex_state = 145, .external_lex_state = 12}, + [3286] = {.lex_state = 538, .external_lex_state = 12}, + [3287] = {.lex_state = 686, .external_lex_state = 12}, + [3288] = {.lex_state = 145, .external_lex_state = 12}, + [3289] = {.lex_state = 0, .external_lex_state = 39}, + [3290] = {.lex_state = 686, .external_lex_state = 12}, + [3291] = {.lex_state = 686, .external_lex_state = 12}, + [3292] = {.lex_state = 686, .external_lex_state = 12}, + [3293] = {.lex_state = 686, .external_lex_state = 12}, + [3294] = {.lex_state = 538, .external_lex_state = 12}, + [3295] = {.lex_state = 537, .external_lex_state = 12}, + [3296] = {.lex_state = 0, .external_lex_state = 20}, + [3297] = {.lex_state = 0, .external_lex_state = 40}, + [3298] = {.lex_state = 119, .external_lex_state = 12}, + [3299] = {.lex_state = 686, .external_lex_state = 12}, + [3300] = {.lex_state = 537, .external_lex_state = 12}, + [3301] = {.lex_state = 536, .external_lex_state = 12}, + [3302] = {.lex_state = 686, .external_lex_state = 12}, + [3303] = {.lex_state = 119, .external_lex_state = 12}, + [3304] = {.lex_state = 119, .external_lex_state = 12}, + [3305] = {.lex_state = 537, .external_lex_state = 12}, + [3306] = {.lex_state = 145, .external_lex_state = 12}, + [3307] = {.lex_state = 20, .external_lex_state = 12}, + [3308] = {.lex_state = 538, .external_lex_state = 12}, + [3309] = {.lex_state = 686, .external_lex_state = 12}, + [3310] = {.lex_state = 0, .external_lex_state = 40}, }; enum { @@ -26093,14 +25342,14 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__source] = true, }, [17] = { - [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, [ts_external_token__scope_dict] = true, - [ts_external_token_comment] = true, }, [18] = { + [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, [ts_external_token__scope_dict] = true, + [ts_external_token_comment] = true, }, [19] = { [ts_external_token__line_continuation] = true, @@ -26112,44 +25361,44 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__separator_first] = true, }, [21] = { + [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, [ts_external_token__scope_dict] = true, [ts_external_token_scope] = true, + [ts_external_token_comment] = true, }, [22] = { - [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, [ts_external_token__scope_dict] = true, [ts_external_token_scope] = true, - [ts_external_token_comment] = true, }, [23] = { [ts_external_token__line_continuation] = true, [ts_external_token__separator] = true, }, [24] = { - [ts_external_token__line_continuation] = true, - [ts_external_token_string_literal] = true, - }, - [25] = { [ts_external_token__no] = true, [ts_external_token__inv] = true, [ts_external_token__line_continuation] = true, }, - [26] = { + [25] = { [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, [ts_external_token_string_literal] = true, [ts_external_token_comment] = true, }, + [26] = { + [ts_external_token__line_continuation] = true, + [ts_external_token_string_literal] = true, + }, [27] = { - [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, - [ts_external_token_comment] = true, [ts_external_token__default] = true, }, [28] = { + [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, + [ts_external_token_comment] = true, [ts_external_token__default] = true, }, [29] = { @@ -26157,15 +25406,15 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_scope] = true, }, [30] = { - [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, - [ts_external_token_comment] = true, [ts_external_token__normal] = true, [ts_external_token__source] = true, [ts_external_token__wincmd] = true, }, [31] = { + [ts_external_token__newline_or_pipe] = true, [ts_external_token__line_continuation] = true, + [ts_external_token_comment] = true, [ts_external_token__normal] = true, [ts_external_token__source] = true, [ts_external_token__wincmd] = true, @@ -26192,11 +25441,11 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { }, [36] = { [ts_external_token__line_continuation] = true, - [ts_external_token__script_heredoc_marker] = true, + [ts_external_token_comment] = true, }, [37] = { [ts_external_token__line_continuation] = true, - [ts_external_token_comment] = true, + [ts_external_token__script_heredoc_marker] = true, }, [38] = { [ts_external_token__line_continuation] = true, @@ -26341,6 +25590,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_re] = ACTIONS(1), [anon_sym_lc] = ACTIONS(1), [aux_sym__syn_pattern_offset_token2] = ACTIONS(1), + [aux_sym__syn_keyword_identifier_token1] = ACTIONS(1), + [aux_sym__syn_keyword_identifier_token2] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_keyword] = ACTIONS(1), [anon_sym_region] = ACTIONS(1), [anon_sym_cluster] = ACTIONS(1), @@ -26363,8 +25616,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1), [anon_sym_GT2] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_LBRACK2] = ACTIONS(1), + [anon_sym_RBRACK2] = ACTIONS(1), [aux_sym_filename_token1] = ACTIONS(1), [aux_sym_filename_token2] = ACTIONS(1), [aux_sym_filename_token3] = ACTIONS(1), @@ -26466,68 +25719,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(1), }, [1] = { - [sym_script_file] = STATE(3158), - [sym__cmd_separator] = STATE(262), - [aux_sym__separated_statements] = STATE(31), - [sym__statement] = STATE(2467), - [sym_unknown_builtin_statement] = STATE(2467), - [sym_return_statement] = STATE(2467), - [sym_break_statement] = STATE(2467), - [sym_continue_statement] = STATE(2467), - [sym_normal_statement] = STATE(2467), - [sym_setfiletype_statement] = STATE(2467), - [sym_options_statement] = STATE(2467), - [sym_startinsert_statement] = STATE(2467), - [sym_stopinsert_statement] = STATE(2467), - [sym_scriptencoding_statement] = STATE(2467), - [sym_comclear_statement] = STATE(2467), - [sym_delcommand_statement] = STATE(2467), - [sym_runtime_statement] = STATE(2467), - [sym_wincmd_statement] = STATE(2467), - [sym_source_statement] = STATE(2467), - [sym_global_statement] = STATE(2467), - [sym_filetype_statement] = STATE(2467), - [sym_colorscheme_statement] = STATE(2467), - [sym_lua_statement] = STATE(2467), - [sym_ruby_statement] = STATE(2467), - [sym_python_statement] = STATE(2467), - [sym_perl_statement] = STATE(2467), - [sym_for_loop] = STATE(2467), - [sym_while_loop] = STATE(2467), - [sym_if_statement] = STATE(2467), - [sym_try_statement] = STATE(2467), - [sym_throw_statement] = STATE(2467), - [sym_autocmd_statement] = STATE(2467), - [sym_augroup_statement] = STATE(2467), - [sym_bang_filter_statement] = STATE(2467), - [sym_let_statement] = STATE(2467), - [sym_const_statement] = STATE(2467), - [sym_set_statement] = STATE(2467), - [sym_setlocal_statement] = STATE(2467), - [sym_unlet_statement] = STATE(2467), - [sym_call_statement] = STATE(2467), - [sym_echo_statement] = STATE(2467), - [sym_echon_statement] = STATE(2467), - [sym_echohl_statement] = STATE(2467), - [sym_echomsg_statement] = STATE(2467), - [sym_echoerr_statement] = STATE(2467), - [sym_execute_statement] = STATE(2467), - [sym_silent_statement] = STATE(2467), - [sym_user_command] = STATE(2467), - [sym_function_definition] = STATE(2467), - [sym_range_statement] = STATE(2467), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2467), - [sym_map_statement] = STATE(2467), - [sym_highlight_statement] = STATE(2467), - [sym_syntax_statement] = STATE(2467), - [sym_sign_statement] = STATE(2467), + [sym_script_file] = STATE(3282), + [sym__cmd_separator] = STATE(255), + [aux_sym__separated_statements] = STATE(33), + [sym__statement] = STATE(2510), + [sym_unknown_builtin_statement] = STATE(2510), + [sym_return_statement] = STATE(2510), + [sym_break_statement] = STATE(2510), + [sym_continue_statement] = STATE(2510), + [sym_normal_statement] = STATE(2510), + [sym_setfiletype_statement] = STATE(2510), + [sym_options_statement] = STATE(2510), + [sym_startinsert_statement] = STATE(2510), + [sym_stopinsert_statement] = STATE(2510), + [sym_scriptencoding_statement] = STATE(2510), + [sym_comclear_statement] = STATE(2510), + [sym_delcommand_statement] = STATE(2510), + [sym_runtime_statement] = STATE(2510), + [sym_wincmd_statement] = STATE(2510), + [sym_source_statement] = STATE(2510), + [sym_global_statement] = STATE(2510), + [sym_filetype_statement] = STATE(2510), + [sym_colorscheme_statement] = STATE(2510), + [sym_lua_statement] = STATE(2510), + [sym_ruby_statement] = STATE(2510), + [sym_python_statement] = STATE(2510), + [sym_perl_statement] = STATE(2510), + [sym_for_loop] = STATE(2510), + [sym_while_loop] = STATE(2510), + [sym_if_statement] = STATE(2510), + [sym_try_statement] = STATE(2510), + [sym_throw_statement] = STATE(2510), + [sym_autocmd_statement] = STATE(2510), + [sym_augroup_statement] = STATE(2510), + [sym_bang_filter_statement] = STATE(2510), + [sym_let_statement] = STATE(2510), + [sym_const_statement] = STATE(2510), + [sym_set_statement] = STATE(2510), + [sym_setlocal_statement] = STATE(2510), + [sym_unlet_statement] = STATE(2510), + [sym_call_statement] = STATE(2510), + [sym_echo_statement] = STATE(2510), + [sym_echon_statement] = STATE(2510), + [sym_echohl_statement] = STATE(2510), + [sym_echomsg_statement] = STATE(2510), + [sym_echoerr_statement] = STATE(2510), + [sym_execute_statement] = STATE(2510), + [sym_silent_statement] = STATE(2510), + [sym_user_command] = STATE(2510), + [sym_function_definition] = STATE(2510), + [sym_range_statement] = STATE(2510), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2510), + [sym_map_statement] = STATE(2510), + [sym_highlight_statement] = STATE(2510), + [sym_syntax_statement] = STATE(2510), + [sym_sign_statement] = STATE(2510), [aux_sym__statement_repeat1] = STATE(141), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(7), @@ -26616,67 +25869,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [2] = { - [sym__cmd_separator] = STATE(245), - [aux_sym__separated_statements] = STATE(16), - [sym__statement] = STATE(2453), - [sym_unknown_builtin_statement] = STATE(2453), - [sym_return_statement] = STATE(2453), - [sym_break_statement] = STATE(2453), - [sym_continue_statement] = STATE(2453), - [sym_normal_statement] = STATE(2453), - [sym_setfiletype_statement] = STATE(2453), - [sym_options_statement] = STATE(2453), - [sym_startinsert_statement] = STATE(2453), - [sym_stopinsert_statement] = STATE(2453), - [sym_scriptencoding_statement] = STATE(2453), - [sym_comclear_statement] = STATE(2453), - [sym_delcommand_statement] = STATE(2453), - [sym_runtime_statement] = STATE(2453), - [sym_wincmd_statement] = STATE(2453), - [sym_source_statement] = STATE(2453), - [sym_global_statement] = STATE(2453), - [sym_filetype_statement] = STATE(2453), - [sym_colorscheme_statement] = STATE(2453), - [sym_lua_statement] = STATE(2453), - [sym_ruby_statement] = STATE(2453), - [sym_python_statement] = STATE(2453), - [sym_perl_statement] = STATE(2453), - [sym_for_loop] = STATE(2453), - [sym_while_loop] = STATE(2453), - [sym_if_statement] = STATE(2453), - [sym_try_statement] = STATE(2453), - [sym_throw_statement] = STATE(2453), - [sym_autocmd_statement] = STATE(2453), - [sym_augroup_statement] = STATE(2453), - [sym_bang_filter_statement] = STATE(2453), - [sym_let_statement] = STATE(2453), - [sym_const_statement] = STATE(2453), - [sym_set_statement] = STATE(2453), - [sym_setlocal_statement] = STATE(2453), - [sym_unlet_statement] = STATE(2453), - [sym_call_statement] = STATE(2453), - [sym_echo_statement] = STATE(2453), - [sym_echon_statement] = STATE(2453), - [sym_echohl_statement] = STATE(2453), - [sym_echomsg_statement] = STATE(2453), - [sym_echoerr_statement] = STATE(2453), - [sym_execute_statement] = STATE(2453), - [sym_silent_statement] = STATE(2453), - [sym_user_command] = STATE(2453), - [sym_function_definition] = STATE(2453), - [sym_range_statement] = STATE(2453), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2453), - [sym_map_statement] = STATE(2453), - [sym_highlight_statement] = STATE(2453), - [sym_syntax_statement] = STATE(2453), - [sym_sign_statement] = STATE(2453), + [sym__cmd_separator] = STATE(248), + [aux_sym__separated_statements] = STATE(17), + [sym__statement] = STATE(2407), + [sym_unknown_builtin_statement] = STATE(2407), + [sym_return_statement] = STATE(2407), + [sym_break_statement] = STATE(2407), + [sym_continue_statement] = STATE(2407), + [sym_normal_statement] = STATE(2407), + [sym_setfiletype_statement] = STATE(2407), + [sym_options_statement] = STATE(2407), + [sym_startinsert_statement] = STATE(2407), + [sym_stopinsert_statement] = STATE(2407), + [sym_scriptencoding_statement] = STATE(2407), + [sym_comclear_statement] = STATE(2407), + [sym_delcommand_statement] = STATE(2407), + [sym_runtime_statement] = STATE(2407), + [sym_wincmd_statement] = STATE(2407), + [sym_source_statement] = STATE(2407), + [sym_global_statement] = STATE(2407), + [sym_filetype_statement] = STATE(2407), + [sym_colorscheme_statement] = STATE(2407), + [sym_lua_statement] = STATE(2407), + [sym_ruby_statement] = STATE(2407), + [sym_python_statement] = STATE(2407), + [sym_perl_statement] = STATE(2407), + [sym_for_loop] = STATE(2407), + [sym_while_loop] = STATE(2407), + [sym_if_statement] = STATE(2407), + [sym_try_statement] = STATE(2407), + [sym_throw_statement] = STATE(2407), + [sym_autocmd_statement] = STATE(2407), + [sym_augroup_statement] = STATE(2407), + [sym_bang_filter_statement] = STATE(2407), + [sym_let_statement] = STATE(2407), + [sym_const_statement] = STATE(2407), + [sym_set_statement] = STATE(2407), + [sym_setlocal_statement] = STATE(2407), + [sym_unlet_statement] = STATE(2407), + [sym_call_statement] = STATE(2407), + [sym_echo_statement] = STATE(2407), + [sym_echon_statement] = STATE(2407), + [sym_echohl_statement] = STATE(2407), + [sym_echomsg_statement] = STATE(2407), + [sym_echoerr_statement] = STATE(2407), + [sym_execute_statement] = STATE(2407), + [sym_silent_statement] = STATE(2407), + [sym_user_command] = STATE(2407), + [sym_function_definition] = STATE(2407), + [sym_range_statement] = STATE(2407), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2407), + [sym_map_statement] = STATE(2407), + [sym_highlight_statement] = STATE(2407), + [sym_syntax_statement] = STATE(2407), + [sym_sign_statement] = STATE(2407), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(129), @@ -26708,7 +25961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(159), [anon_sym_BANG_TILDE] = ACTIONS(159), [sym_integer_literal] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK2] = ACTIONS(161), [sym_register] = ACTIONS(29), [sym__newline_or_pipe] = ACTIONS(163), [sym__line_continuation] = ACTIONS(3), @@ -26785,67 +26038,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [3] = { - [sym__cmd_separator] = STATE(250), - [aux_sym__separated_statements] = STATE(22), - [sym__statement] = STATE(2363), - [sym_unknown_builtin_statement] = STATE(2363), - [sym_return_statement] = STATE(2363), - [sym_break_statement] = STATE(2363), - [sym_continue_statement] = STATE(2363), - [sym_normal_statement] = STATE(2363), - [sym_setfiletype_statement] = STATE(2363), - [sym_options_statement] = STATE(2363), - [sym_startinsert_statement] = STATE(2363), - [sym_stopinsert_statement] = STATE(2363), - [sym_scriptencoding_statement] = STATE(2363), - [sym_comclear_statement] = STATE(2363), - [sym_delcommand_statement] = STATE(2363), - [sym_runtime_statement] = STATE(2363), - [sym_wincmd_statement] = STATE(2363), - [sym_source_statement] = STATE(2363), - [sym_global_statement] = STATE(2363), - [sym_filetype_statement] = STATE(2363), - [sym_colorscheme_statement] = STATE(2363), - [sym_lua_statement] = STATE(2363), - [sym_ruby_statement] = STATE(2363), - [sym_python_statement] = STATE(2363), - [sym_perl_statement] = STATE(2363), - [sym_for_loop] = STATE(2363), - [sym_while_loop] = STATE(2363), - [sym_if_statement] = STATE(2363), - [sym_try_statement] = STATE(2363), - [sym_throw_statement] = STATE(2363), - [sym_autocmd_statement] = STATE(2363), - [sym_augroup_statement] = STATE(2363), - [sym_bang_filter_statement] = STATE(2363), - [sym_let_statement] = STATE(2363), - [sym_const_statement] = STATE(2363), - [sym_set_statement] = STATE(2363), - [sym_setlocal_statement] = STATE(2363), - [sym_unlet_statement] = STATE(2363), - [sym_call_statement] = STATE(2363), - [sym_echo_statement] = STATE(2363), - [sym_echon_statement] = STATE(2363), - [sym_echohl_statement] = STATE(2363), - [sym_echomsg_statement] = STATE(2363), - [sym_echoerr_statement] = STATE(2363), - [sym_execute_statement] = STATE(2363), - [sym_silent_statement] = STATE(2363), - [sym_user_command] = STATE(2363), - [sym_function_definition] = STATE(2363), - [sym_range_statement] = STATE(2363), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2363), - [sym_map_statement] = STATE(2363), - [sym_highlight_statement] = STATE(2363), - [sym_syntax_statement] = STATE(2363), - [sym_sign_statement] = STATE(2363), + [sym__cmd_separator] = STATE(260), + [aux_sym__separated_statements] = STATE(26), + [sym__statement] = STATE(2538), + [sym_unknown_builtin_statement] = STATE(2538), + [sym_return_statement] = STATE(2538), + [sym_break_statement] = STATE(2538), + [sym_continue_statement] = STATE(2538), + [sym_normal_statement] = STATE(2538), + [sym_setfiletype_statement] = STATE(2538), + [sym_options_statement] = STATE(2538), + [sym_startinsert_statement] = STATE(2538), + [sym_stopinsert_statement] = STATE(2538), + [sym_scriptencoding_statement] = STATE(2538), + [sym_comclear_statement] = STATE(2538), + [sym_delcommand_statement] = STATE(2538), + [sym_runtime_statement] = STATE(2538), + [sym_wincmd_statement] = STATE(2538), + [sym_source_statement] = STATE(2538), + [sym_global_statement] = STATE(2538), + [sym_filetype_statement] = STATE(2538), + [sym_colorscheme_statement] = STATE(2538), + [sym_lua_statement] = STATE(2538), + [sym_ruby_statement] = STATE(2538), + [sym_python_statement] = STATE(2538), + [sym_perl_statement] = STATE(2538), + [sym_for_loop] = STATE(2538), + [sym_while_loop] = STATE(2538), + [sym_if_statement] = STATE(2538), + [sym_try_statement] = STATE(2538), + [sym_throw_statement] = STATE(2538), + [sym_autocmd_statement] = STATE(2538), + [sym_augroup_statement] = STATE(2538), + [sym_bang_filter_statement] = STATE(2538), + [sym_let_statement] = STATE(2538), + [sym_const_statement] = STATE(2538), + [sym_set_statement] = STATE(2538), + [sym_setlocal_statement] = STATE(2538), + [sym_unlet_statement] = STATE(2538), + [sym_call_statement] = STATE(2538), + [sym_echo_statement] = STATE(2538), + [sym_echon_statement] = STATE(2538), + [sym_echohl_statement] = STATE(2538), + [sym_echomsg_statement] = STATE(2538), + [sym_echoerr_statement] = STATE(2538), + [sym_execute_statement] = STATE(2538), + [sym_silent_statement] = STATE(2538), + [sym_user_command] = STATE(2538), + [sym_function_definition] = STATE(2538), + [sym_range_statement] = STATE(2538), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2538), + [sym_map_statement] = STATE(2538), + [sym_highlight_statement] = STATE(2538), + [sym_syntax_statement] = STATE(2538), + [sym_sign_statement] = STATE(2538), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(167), @@ -26877,7 +26130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(197), [anon_sym_BANG_TILDE] = ACTIONS(197), [sym_integer_literal] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_LBRACK2] = ACTIONS(199), [sym_register] = ACTIONS(29), [sym__newline_or_pipe] = ACTIONS(201), [sym__line_continuation] = ACTIONS(3), @@ -26952,67 +26205,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [4] = { - [sym__cmd_separator] = STATE(250), - [aux_sym__separated_statements] = STATE(43), - [sym__statement] = STATE(2363), - [sym_unknown_builtin_statement] = STATE(2363), - [sym_return_statement] = STATE(2363), - [sym_break_statement] = STATE(2363), - [sym_continue_statement] = STATE(2363), - [sym_normal_statement] = STATE(2363), - [sym_setfiletype_statement] = STATE(2363), - [sym_options_statement] = STATE(2363), - [sym_startinsert_statement] = STATE(2363), - [sym_stopinsert_statement] = STATE(2363), - [sym_scriptencoding_statement] = STATE(2363), - [sym_comclear_statement] = STATE(2363), - [sym_delcommand_statement] = STATE(2363), - [sym_runtime_statement] = STATE(2363), - [sym_wincmd_statement] = STATE(2363), - [sym_source_statement] = STATE(2363), - [sym_global_statement] = STATE(2363), - [sym_filetype_statement] = STATE(2363), - [sym_colorscheme_statement] = STATE(2363), - [sym_lua_statement] = STATE(2363), - [sym_ruby_statement] = STATE(2363), - [sym_python_statement] = STATE(2363), - [sym_perl_statement] = STATE(2363), - [sym_for_loop] = STATE(2363), - [sym_while_loop] = STATE(2363), - [sym_if_statement] = STATE(2363), - [sym_try_statement] = STATE(2363), - [sym_throw_statement] = STATE(2363), - [sym_autocmd_statement] = STATE(2363), - [sym_augroup_statement] = STATE(2363), - [sym_bang_filter_statement] = STATE(2363), - [sym_let_statement] = STATE(2363), - [sym_const_statement] = STATE(2363), - [sym_set_statement] = STATE(2363), - [sym_setlocal_statement] = STATE(2363), - [sym_unlet_statement] = STATE(2363), - [sym_call_statement] = STATE(2363), - [sym_echo_statement] = STATE(2363), - [sym_echon_statement] = STATE(2363), - [sym_echohl_statement] = STATE(2363), - [sym_echomsg_statement] = STATE(2363), - [sym_echoerr_statement] = STATE(2363), - [sym_execute_statement] = STATE(2363), - [sym_silent_statement] = STATE(2363), - [sym_user_command] = STATE(2363), - [sym_function_definition] = STATE(2363), - [sym_range_statement] = STATE(2363), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2363), - [sym_map_statement] = STATE(2363), - [sym_highlight_statement] = STATE(2363), - [sym_syntax_statement] = STATE(2363), - [sym_sign_statement] = STATE(2363), + [sym__cmd_separator] = STATE(260), + [aux_sym__separated_statements] = STATE(38), + [sym__statement] = STATE(2538), + [sym_unknown_builtin_statement] = STATE(2538), + [sym_return_statement] = STATE(2538), + [sym_break_statement] = STATE(2538), + [sym_continue_statement] = STATE(2538), + [sym_normal_statement] = STATE(2538), + [sym_setfiletype_statement] = STATE(2538), + [sym_options_statement] = STATE(2538), + [sym_startinsert_statement] = STATE(2538), + [sym_stopinsert_statement] = STATE(2538), + [sym_scriptencoding_statement] = STATE(2538), + [sym_comclear_statement] = STATE(2538), + [sym_delcommand_statement] = STATE(2538), + [sym_runtime_statement] = STATE(2538), + [sym_wincmd_statement] = STATE(2538), + [sym_source_statement] = STATE(2538), + [sym_global_statement] = STATE(2538), + [sym_filetype_statement] = STATE(2538), + [sym_colorscheme_statement] = STATE(2538), + [sym_lua_statement] = STATE(2538), + [sym_ruby_statement] = STATE(2538), + [sym_python_statement] = STATE(2538), + [sym_perl_statement] = STATE(2538), + [sym_for_loop] = STATE(2538), + [sym_while_loop] = STATE(2538), + [sym_if_statement] = STATE(2538), + [sym_try_statement] = STATE(2538), + [sym_throw_statement] = STATE(2538), + [sym_autocmd_statement] = STATE(2538), + [sym_augroup_statement] = STATE(2538), + [sym_bang_filter_statement] = STATE(2538), + [sym_let_statement] = STATE(2538), + [sym_const_statement] = STATE(2538), + [sym_set_statement] = STATE(2538), + [sym_setlocal_statement] = STATE(2538), + [sym_unlet_statement] = STATE(2538), + [sym_call_statement] = STATE(2538), + [sym_echo_statement] = STATE(2538), + [sym_echon_statement] = STATE(2538), + [sym_echohl_statement] = STATE(2538), + [sym_echomsg_statement] = STATE(2538), + [sym_echoerr_statement] = STATE(2538), + [sym_execute_statement] = STATE(2538), + [sym_silent_statement] = STATE(2538), + [sym_user_command] = STATE(2538), + [sym_function_definition] = STATE(2538), + [sym_range_statement] = STATE(2538), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2538), + [sym_map_statement] = STATE(2538), + [sym_highlight_statement] = STATE(2538), + [sym_syntax_statement] = STATE(2538), + [sym_sign_statement] = STATE(2538), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [anon_sym_DOT] = ACTIONS(167), @@ -27044,7 +26297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(197), [anon_sym_BANG_TILDE] = ACTIONS(197), [sym_integer_literal] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_LBRACK2] = ACTIONS(199), [sym_register] = ACTIONS(29), [sym__newline_or_pipe] = ACTIONS(201), [sym__line_continuation] = ACTIONS(3), @@ -27120,70 +26373,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5] = { [sym__cmd_separator] = STATE(248), - [aux_sym__separated_statements] = STATE(11), - [sym__statement] = STATE(2366), - [sym_unknown_builtin_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_break_statement] = STATE(2366), - [sym_continue_statement] = STATE(2366), - [sym_normal_statement] = STATE(2366), - [sym_setfiletype_statement] = STATE(2366), - [sym_options_statement] = STATE(2366), - [sym_startinsert_statement] = STATE(2366), - [sym_stopinsert_statement] = STATE(2366), - [sym_scriptencoding_statement] = STATE(2366), - [sym_comclear_statement] = STATE(2366), - [sym_delcommand_statement] = STATE(2366), - [sym_runtime_statement] = STATE(2366), - [sym_wincmd_statement] = STATE(2366), - [sym_source_statement] = STATE(2366), - [sym_global_statement] = STATE(2366), - [sym_filetype_statement] = STATE(2366), - [sym_colorscheme_statement] = STATE(2366), - [sym_lua_statement] = STATE(2366), - [sym_ruby_statement] = STATE(2366), - [sym_python_statement] = STATE(2366), - [sym_perl_statement] = STATE(2366), - [sym_for_loop] = STATE(2366), - [sym_while_loop] = STATE(2366), - [sym_if_statement] = STATE(2366), - [sym_try_statement] = STATE(2366), - [sym_catch_statement] = STATE(2113), - [sym_finally_statement] = STATE(3034), - [sym_throw_statement] = STATE(2366), - [sym_autocmd_statement] = STATE(2366), - [sym_augroup_statement] = STATE(2366), - [sym_bang_filter_statement] = STATE(2366), - [sym_let_statement] = STATE(2366), - [sym_const_statement] = STATE(2366), - [sym_set_statement] = STATE(2366), - [sym_setlocal_statement] = STATE(2366), - [sym_unlet_statement] = STATE(2366), - [sym_call_statement] = STATE(2366), - [sym_echo_statement] = STATE(2366), - [sym_echon_statement] = STATE(2366), - [sym_echohl_statement] = STATE(2366), - [sym_echomsg_statement] = STATE(2366), - [sym_echoerr_statement] = STATE(2366), - [sym_execute_statement] = STATE(2366), - [sym_silent_statement] = STATE(2366), - [sym_user_command] = STATE(2366), - [sym_function_definition] = STATE(2366), - [sym_range_statement] = STATE(2366), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2366), - [sym_map_statement] = STATE(2366), - [sym_highlight_statement] = STATE(2366), - [sym_syntax_statement] = STATE(2366), - [sym_sign_statement] = STATE(2366), + [aux_sym__separated_statements] = STATE(18), + [sym__statement] = STATE(2407), + [sym_unknown_builtin_statement] = STATE(2407), + [sym_return_statement] = STATE(2407), + [sym_break_statement] = STATE(2407), + [sym_continue_statement] = STATE(2407), + [sym_normal_statement] = STATE(2407), + [sym_setfiletype_statement] = STATE(2407), + [sym_options_statement] = STATE(2407), + [sym_startinsert_statement] = STATE(2407), + [sym_stopinsert_statement] = STATE(2407), + [sym_scriptencoding_statement] = STATE(2407), + [sym_comclear_statement] = STATE(2407), + [sym_delcommand_statement] = STATE(2407), + [sym_runtime_statement] = STATE(2407), + [sym_wincmd_statement] = STATE(2407), + [sym_source_statement] = STATE(2407), + [sym_global_statement] = STATE(2407), + [sym_filetype_statement] = STATE(2407), + [sym_colorscheme_statement] = STATE(2407), + [sym_lua_statement] = STATE(2407), + [sym_ruby_statement] = STATE(2407), + [sym_python_statement] = STATE(2407), + [sym_perl_statement] = STATE(2407), + [sym_for_loop] = STATE(2407), + [sym_while_loop] = STATE(2407), + [sym_if_statement] = STATE(2407), + [sym_elseif_statement] = STATE(2087), + [sym_else_statement] = STATE(3172), + [sym_try_statement] = STATE(2407), + [sym_throw_statement] = STATE(2407), + [sym_autocmd_statement] = STATE(2407), + [sym_augroup_statement] = STATE(2407), + [sym_bang_filter_statement] = STATE(2407), + [sym_let_statement] = STATE(2407), + [sym_const_statement] = STATE(2407), + [sym_set_statement] = STATE(2407), + [sym_setlocal_statement] = STATE(2407), + [sym_unlet_statement] = STATE(2407), + [sym_call_statement] = STATE(2407), + [sym_echo_statement] = STATE(2407), + [sym_echon_statement] = STATE(2407), + [sym_echohl_statement] = STATE(2407), + [sym_echomsg_statement] = STATE(2407), + [sym_echoerr_statement] = STATE(2407), + [sym_execute_statement] = STATE(2407), + [sym_silent_statement] = STATE(2407), + [sym_user_command] = STATE(2407), + [sym_function_definition] = STATE(2407), + [sym_range_statement] = STATE(2407), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2407), + [sym_map_statement] = STATE(2407), + [sym_highlight_statement] = STATE(2407), + [sym_syntax_statement] = STATE(2407), + [sym_sign_statement] = STATE(2407), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_try_statement_repeat1] = STATE(2113), + [aux_sym_if_statement_repeat1] = STATE(2087), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(11), @@ -27198,17 +26451,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(207), + [sym__newline_or_pipe] = ACTIONS(163), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(207), + [sym_comment] = ACTIONS(163), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), + [sym__elseif] = ACTIONS(207), + [sym__else] = ACTIONS(209), + [sym__endif] = ACTIONS(211), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(209), - [sym__finally] = ACTIONS(211), - [sym__endtry] = ACTIONS(213), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -27274,70 +26527,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [6] = { [sym__cmd_separator] = STATE(248), - [aux_sym__separated_statements] = STATE(17), - [sym__statement] = STATE(2366), - [sym_unknown_builtin_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_break_statement] = STATE(2366), - [sym_continue_statement] = STATE(2366), - [sym_normal_statement] = STATE(2366), - [sym_setfiletype_statement] = STATE(2366), - [sym_options_statement] = STATE(2366), - [sym_startinsert_statement] = STATE(2366), - [sym_stopinsert_statement] = STATE(2366), - [sym_scriptencoding_statement] = STATE(2366), - [sym_comclear_statement] = STATE(2366), - [sym_delcommand_statement] = STATE(2366), - [sym_runtime_statement] = STATE(2366), - [sym_wincmd_statement] = STATE(2366), - [sym_source_statement] = STATE(2366), - [sym_global_statement] = STATE(2366), - [sym_filetype_statement] = STATE(2366), - [sym_colorscheme_statement] = STATE(2366), - [sym_lua_statement] = STATE(2366), - [sym_ruby_statement] = STATE(2366), - [sym_python_statement] = STATE(2366), - [sym_perl_statement] = STATE(2366), - [sym_for_loop] = STATE(2366), - [sym_while_loop] = STATE(2366), - [sym_if_statement] = STATE(2366), - [sym_try_statement] = STATE(2366), - [sym_catch_statement] = STATE(2067), - [sym_finally_statement] = STATE(3204), - [sym_throw_statement] = STATE(2366), - [sym_autocmd_statement] = STATE(2366), - [sym_augroup_statement] = STATE(2366), - [sym_bang_filter_statement] = STATE(2366), - [sym_let_statement] = STATE(2366), - [sym_const_statement] = STATE(2366), - [sym_set_statement] = STATE(2366), - [sym_setlocal_statement] = STATE(2366), - [sym_unlet_statement] = STATE(2366), - [sym_call_statement] = STATE(2366), - [sym_echo_statement] = STATE(2366), - [sym_echon_statement] = STATE(2366), - [sym_echohl_statement] = STATE(2366), - [sym_echomsg_statement] = STATE(2366), - [sym_echoerr_statement] = STATE(2366), - [sym_execute_statement] = STATE(2366), - [sym_silent_statement] = STATE(2366), - [sym_user_command] = STATE(2366), - [sym_function_definition] = STATE(2366), - [sym_range_statement] = STATE(2366), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2366), - [sym_map_statement] = STATE(2366), - [sym_highlight_statement] = STATE(2366), - [sym_syntax_statement] = STATE(2366), - [sym_sign_statement] = STATE(2366), + [aux_sym__separated_statements] = STATE(5), + [sym__statement] = STATE(2407), + [sym_unknown_builtin_statement] = STATE(2407), + [sym_return_statement] = STATE(2407), + [sym_break_statement] = STATE(2407), + [sym_continue_statement] = STATE(2407), + [sym_normal_statement] = STATE(2407), + [sym_setfiletype_statement] = STATE(2407), + [sym_options_statement] = STATE(2407), + [sym_startinsert_statement] = STATE(2407), + [sym_stopinsert_statement] = STATE(2407), + [sym_scriptencoding_statement] = STATE(2407), + [sym_comclear_statement] = STATE(2407), + [sym_delcommand_statement] = STATE(2407), + [sym_runtime_statement] = STATE(2407), + [sym_wincmd_statement] = STATE(2407), + [sym_source_statement] = STATE(2407), + [sym_global_statement] = STATE(2407), + [sym_filetype_statement] = STATE(2407), + [sym_colorscheme_statement] = STATE(2407), + [sym_lua_statement] = STATE(2407), + [sym_ruby_statement] = STATE(2407), + [sym_python_statement] = STATE(2407), + [sym_perl_statement] = STATE(2407), + [sym_for_loop] = STATE(2407), + [sym_while_loop] = STATE(2407), + [sym_if_statement] = STATE(2407), + [sym_elseif_statement] = STATE(2079), + [sym_else_statement] = STATE(2966), + [sym_try_statement] = STATE(2407), + [sym_throw_statement] = STATE(2407), + [sym_autocmd_statement] = STATE(2407), + [sym_augroup_statement] = STATE(2407), + [sym_bang_filter_statement] = STATE(2407), + [sym_let_statement] = STATE(2407), + [sym_const_statement] = STATE(2407), + [sym_set_statement] = STATE(2407), + [sym_setlocal_statement] = STATE(2407), + [sym_unlet_statement] = STATE(2407), + [sym_call_statement] = STATE(2407), + [sym_echo_statement] = STATE(2407), + [sym_echon_statement] = STATE(2407), + [sym_echohl_statement] = STATE(2407), + [sym_echomsg_statement] = STATE(2407), + [sym_echoerr_statement] = STATE(2407), + [sym_execute_statement] = STATE(2407), + [sym_silent_statement] = STATE(2407), + [sym_user_command] = STATE(2407), + [sym_function_definition] = STATE(2407), + [sym_range_statement] = STATE(2407), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2407), + [sym_map_statement] = STATE(2407), + [sym_highlight_statement] = STATE(2407), + [sym_syntax_statement] = STATE(2407), + [sym_sign_statement] = STATE(2407), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_try_statement_repeat1] = STATE(2067), + [aux_sym_if_statement_repeat1] = STATE(2079), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(11), @@ -27352,17 +26605,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(207), + [sym__newline_or_pipe] = ACTIONS(163), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(207), + [sym_comment] = ACTIONS(163), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), + [sym__elseif] = ACTIONS(207), + [sym__else] = ACTIONS(209), + [sym__endif] = ACTIONS(213), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(209), - [sym__finally] = ACTIONS(211), - [sym__endtry] = ACTIONS(215), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -27427,71 +26680,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [7] = { - [sym__cmd_separator] = STATE(245), - [aux_sym__separated_statements] = STATE(8), - [sym__statement] = STATE(2453), - [sym_unknown_builtin_statement] = STATE(2453), - [sym_return_statement] = STATE(2453), - [sym_break_statement] = STATE(2453), - [sym_continue_statement] = STATE(2453), - [sym_normal_statement] = STATE(2453), - [sym_setfiletype_statement] = STATE(2453), - [sym_options_statement] = STATE(2453), - [sym_startinsert_statement] = STATE(2453), - [sym_stopinsert_statement] = STATE(2453), - [sym_scriptencoding_statement] = STATE(2453), - [sym_comclear_statement] = STATE(2453), - [sym_delcommand_statement] = STATE(2453), - [sym_runtime_statement] = STATE(2453), - [sym_wincmd_statement] = STATE(2453), - [sym_source_statement] = STATE(2453), - [sym_global_statement] = STATE(2453), - [sym_filetype_statement] = STATE(2453), - [sym_colorscheme_statement] = STATE(2453), - [sym_lua_statement] = STATE(2453), - [sym_ruby_statement] = STATE(2453), - [sym_python_statement] = STATE(2453), - [sym_perl_statement] = STATE(2453), - [sym_for_loop] = STATE(2453), - [sym_while_loop] = STATE(2453), - [sym_if_statement] = STATE(2453), - [sym_elseif_statement] = STATE(2068), - [sym_else_statement] = STATE(3202), - [sym_try_statement] = STATE(2453), - [sym_throw_statement] = STATE(2453), - [sym_autocmd_statement] = STATE(2453), - [sym_augroup_statement] = STATE(2453), - [sym_bang_filter_statement] = STATE(2453), - [sym_let_statement] = STATE(2453), - [sym_const_statement] = STATE(2453), - [sym_set_statement] = STATE(2453), - [sym_setlocal_statement] = STATE(2453), - [sym_unlet_statement] = STATE(2453), - [sym_call_statement] = STATE(2453), - [sym_echo_statement] = STATE(2453), - [sym_echon_statement] = STATE(2453), - [sym_echohl_statement] = STATE(2453), - [sym_echomsg_statement] = STATE(2453), - [sym_echoerr_statement] = STATE(2453), - [sym_execute_statement] = STATE(2453), - [sym_silent_statement] = STATE(2453), - [sym_user_command] = STATE(2453), - [sym_function_definition] = STATE(2453), - [sym_range_statement] = STATE(2453), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2453), - [sym_map_statement] = STATE(2453), - [sym_highlight_statement] = STATE(2453), - [sym_syntax_statement] = STATE(2453), - [sym_sign_statement] = STATE(2453), + [sym__cmd_separator] = STATE(246), + [aux_sym__separated_statements] = STATE(19), + [sym__statement] = STATE(2449), + [sym_unknown_builtin_statement] = STATE(2449), + [sym_return_statement] = STATE(2449), + [sym_break_statement] = STATE(2449), + [sym_continue_statement] = STATE(2449), + [sym_normal_statement] = STATE(2449), + [sym_setfiletype_statement] = STATE(2449), + [sym_options_statement] = STATE(2449), + [sym_startinsert_statement] = STATE(2449), + [sym_stopinsert_statement] = STATE(2449), + [sym_scriptencoding_statement] = STATE(2449), + [sym_comclear_statement] = STATE(2449), + [sym_delcommand_statement] = STATE(2449), + [sym_runtime_statement] = STATE(2449), + [sym_wincmd_statement] = STATE(2449), + [sym_source_statement] = STATE(2449), + [sym_global_statement] = STATE(2449), + [sym_filetype_statement] = STATE(2449), + [sym_colorscheme_statement] = STATE(2449), + [sym_lua_statement] = STATE(2449), + [sym_ruby_statement] = STATE(2449), + [sym_python_statement] = STATE(2449), + [sym_perl_statement] = STATE(2449), + [sym_for_loop] = STATE(2449), + [sym_while_loop] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_try_statement] = STATE(2449), + [sym_catch_statement] = STATE(2095), + [sym_finally_statement] = STATE(2967), + [sym_throw_statement] = STATE(2449), + [sym_autocmd_statement] = STATE(2449), + [sym_augroup_statement] = STATE(2449), + [sym_bang_filter_statement] = STATE(2449), + [sym_let_statement] = STATE(2449), + [sym_const_statement] = STATE(2449), + [sym_set_statement] = STATE(2449), + [sym_setlocal_statement] = STATE(2449), + [sym_unlet_statement] = STATE(2449), + [sym_call_statement] = STATE(2449), + [sym_echo_statement] = STATE(2449), + [sym_echon_statement] = STATE(2449), + [sym_echohl_statement] = STATE(2449), + [sym_echomsg_statement] = STATE(2449), + [sym_echoerr_statement] = STATE(2449), + [sym_execute_statement] = STATE(2449), + [sym_silent_statement] = STATE(2449), + [sym_user_command] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_range_statement] = STATE(2449), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2449), + [sym_map_statement] = STATE(2449), + [sym_highlight_statement] = STATE(2449), + [sym_syntax_statement] = STATE(2449), + [sym_sign_statement] = STATE(2449), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_if_statement_repeat1] = STATE(2068), + [aux_sym_try_statement_repeat1] = STATE(2095), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(11), @@ -27506,17 +26759,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(163), + [sym__newline_or_pipe] = ACTIONS(215), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(163), + [sym_comment] = ACTIONS(215), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__elseif] = ACTIONS(217), - [sym__else] = ACTIONS(219), - [sym__endif] = ACTIONS(221), [sym__try] = ACTIONS(41), + [sym__catch] = ACTIONS(217), + [sym__finally] = ACTIONS(219), + [sym__endtry] = ACTIONS(221), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -27581,71 +26834,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [8] = { - [sym__cmd_separator] = STATE(245), - [aux_sym__separated_statements] = STATE(14), - [sym__statement] = STATE(2453), - [sym_unknown_builtin_statement] = STATE(2453), - [sym_return_statement] = STATE(2453), - [sym_break_statement] = STATE(2453), - [sym_continue_statement] = STATE(2453), - [sym_normal_statement] = STATE(2453), - [sym_setfiletype_statement] = STATE(2453), - [sym_options_statement] = STATE(2453), - [sym_startinsert_statement] = STATE(2453), - [sym_stopinsert_statement] = STATE(2453), - [sym_scriptencoding_statement] = STATE(2453), - [sym_comclear_statement] = STATE(2453), - [sym_delcommand_statement] = STATE(2453), - [sym_runtime_statement] = STATE(2453), - [sym_wincmd_statement] = STATE(2453), - [sym_source_statement] = STATE(2453), - [sym_global_statement] = STATE(2453), - [sym_filetype_statement] = STATE(2453), - [sym_colorscheme_statement] = STATE(2453), - [sym_lua_statement] = STATE(2453), - [sym_ruby_statement] = STATE(2453), - [sym_python_statement] = STATE(2453), - [sym_perl_statement] = STATE(2453), - [sym_for_loop] = STATE(2453), - [sym_while_loop] = STATE(2453), - [sym_if_statement] = STATE(2453), - [sym_elseif_statement] = STATE(2122), - [sym_else_statement] = STATE(3240), - [sym_try_statement] = STATE(2453), - [sym_throw_statement] = STATE(2453), - [sym_autocmd_statement] = STATE(2453), - [sym_augroup_statement] = STATE(2453), - [sym_bang_filter_statement] = STATE(2453), - [sym_let_statement] = STATE(2453), - [sym_const_statement] = STATE(2453), - [sym_set_statement] = STATE(2453), - [sym_setlocal_statement] = STATE(2453), - [sym_unlet_statement] = STATE(2453), - [sym_call_statement] = STATE(2453), - [sym_echo_statement] = STATE(2453), - [sym_echon_statement] = STATE(2453), - [sym_echohl_statement] = STATE(2453), - [sym_echomsg_statement] = STATE(2453), - [sym_echoerr_statement] = STATE(2453), - [sym_execute_statement] = STATE(2453), - [sym_silent_statement] = STATE(2453), - [sym_user_command] = STATE(2453), - [sym_function_definition] = STATE(2453), - [sym_range_statement] = STATE(2453), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2453), - [sym_map_statement] = STATE(2453), - [sym_highlight_statement] = STATE(2453), - [sym_syntax_statement] = STATE(2453), - [sym_sign_statement] = STATE(2453), + [sym__cmd_separator] = STATE(246), + [aux_sym__separated_statements] = STATE(11), + [sym__statement] = STATE(2449), + [sym_unknown_builtin_statement] = STATE(2449), + [sym_return_statement] = STATE(2449), + [sym_break_statement] = STATE(2449), + [sym_continue_statement] = STATE(2449), + [sym_normal_statement] = STATE(2449), + [sym_setfiletype_statement] = STATE(2449), + [sym_options_statement] = STATE(2449), + [sym_startinsert_statement] = STATE(2449), + [sym_stopinsert_statement] = STATE(2449), + [sym_scriptencoding_statement] = STATE(2449), + [sym_comclear_statement] = STATE(2449), + [sym_delcommand_statement] = STATE(2449), + [sym_runtime_statement] = STATE(2449), + [sym_wincmd_statement] = STATE(2449), + [sym_source_statement] = STATE(2449), + [sym_global_statement] = STATE(2449), + [sym_filetype_statement] = STATE(2449), + [sym_colorscheme_statement] = STATE(2449), + [sym_lua_statement] = STATE(2449), + [sym_ruby_statement] = STATE(2449), + [sym_python_statement] = STATE(2449), + [sym_perl_statement] = STATE(2449), + [sym_for_loop] = STATE(2449), + [sym_while_loop] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_try_statement] = STATE(2449), + [sym_catch_statement] = STATE(2171), + [sym_finally_statement] = STATE(3289), + [sym_throw_statement] = STATE(2449), + [sym_autocmd_statement] = STATE(2449), + [sym_augroup_statement] = STATE(2449), + [sym_bang_filter_statement] = STATE(2449), + [sym_let_statement] = STATE(2449), + [sym_const_statement] = STATE(2449), + [sym_set_statement] = STATE(2449), + [sym_setlocal_statement] = STATE(2449), + [sym_unlet_statement] = STATE(2449), + [sym_call_statement] = STATE(2449), + [sym_echo_statement] = STATE(2449), + [sym_echon_statement] = STATE(2449), + [sym_echohl_statement] = STATE(2449), + [sym_echomsg_statement] = STATE(2449), + [sym_echoerr_statement] = STATE(2449), + [sym_execute_statement] = STATE(2449), + [sym_silent_statement] = STATE(2449), + [sym_user_command] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_range_statement] = STATE(2449), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2449), + [sym_map_statement] = STATE(2449), + [sym_highlight_statement] = STATE(2449), + [sym_syntax_statement] = STATE(2449), + [sym_sign_statement] = STATE(2449), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_if_statement_repeat1] = STATE(2122), + [aux_sym_try_statement_repeat1] = STATE(2171), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(11), @@ -27660,17 +26913,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(163), + [sym__newline_or_pipe] = ACTIONS(215), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(163), + [sym_comment] = ACTIONS(215), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__elseif] = ACTIONS(217), - [sym__else] = ACTIONS(219), - [sym__endif] = ACTIONS(223), [sym__try] = ACTIONS(41), + [sym__catch] = ACTIONS(217), + [sym__finally] = ACTIONS(219), + [sym__endtry] = ACTIONS(223), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -27735,71 +26988,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [9] = { - [sym__cmd_separator] = STATE(245), - [aux_sym__separated_statements] = STATE(12), - [sym__statement] = STATE(2453), - [sym_unknown_builtin_statement] = STATE(2453), - [sym_return_statement] = STATE(2453), - [sym_break_statement] = STATE(2453), - [sym_continue_statement] = STATE(2453), - [sym_normal_statement] = STATE(2453), - [sym_setfiletype_statement] = STATE(2453), - [sym_options_statement] = STATE(2453), - [sym_startinsert_statement] = STATE(2453), - [sym_stopinsert_statement] = STATE(2453), - [sym_scriptencoding_statement] = STATE(2453), - [sym_comclear_statement] = STATE(2453), - [sym_delcommand_statement] = STATE(2453), - [sym_runtime_statement] = STATE(2453), - [sym_wincmd_statement] = STATE(2453), - [sym_source_statement] = STATE(2453), - [sym_global_statement] = STATE(2453), - [sym_filetype_statement] = STATE(2453), - [sym_colorscheme_statement] = STATE(2453), - [sym_lua_statement] = STATE(2453), - [sym_ruby_statement] = STATE(2453), - [sym_python_statement] = STATE(2453), - [sym_perl_statement] = STATE(2453), - [sym_for_loop] = STATE(2453), - [sym_while_loop] = STATE(2453), - [sym_if_statement] = STATE(2453), - [sym_elseif_statement] = STATE(2033), - [sym_else_statement] = STATE(3099), - [sym_try_statement] = STATE(2453), - [sym_throw_statement] = STATE(2453), - [sym_autocmd_statement] = STATE(2453), - [sym_augroup_statement] = STATE(2453), - [sym_bang_filter_statement] = STATE(2453), - [sym_let_statement] = STATE(2453), - [sym_const_statement] = STATE(2453), - [sym_set_statement] = STATE(2453), - [sym_setlocal_statement] = STATE(2453), - [sym_unlet_statement] = STATE(2453), - [sym_call_statement] = STATE(2453), - [sym_echo_statement] = STATE(2453), - [sym_echon_statement] = STATE(2453), - [sym_echohl_statement] = STATE(2453), - [sym_echomsg_statement] = STATE(2453), - [sym_echoerr_statement] = STATE(2453), - [sym_execute_statement] = STATE(2453), - [sym_silent_statement] = STATE(2453), - [sym_user_command] = STATE(2453), - [sym_function_definition] = STATE(2453), - [sym_range_statement] = STATE(2453), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2453), - [sym_map_statement] = STATE(2453), - [sym_highlight_statement] = STATE(2453), - [sym_syntax_statement] = STATE(2453), - [sym_sign_statement] = STATE(2453), + [sym__cmd_separator] = STATE(246), + [aux_sym__separated_statements] = STATE(7), + [sym__statement] = STATE(2449), + [sym_unknown_builtin_statement] = STATE(2449), + [sym_return_statement] = STATE(2449), + [sym_break_statement] = STATE(2449), + [sym_continue_statement] = STATE(2449), + [sym_normal_statement] = STATE(2449), + [sym_setfiletype_statement] = STATE(2449), + [sym_options_statement] = STATE(2449), + [sym_startinsert_statement] = STATE(2449), + [sym_stopinsert_statement] = STATE(2449), + [sym_scriptencoding_statement] = STATE(2449), + [sym_comclear_statement] = STATE(2449), + [sym_delcommand_statement] = STATE(2449), + [sym_runtime_statement] = STATE(2449), + [sym_wincmd_statement] = STATE(2449), + [sym_source_statement] = STATE(2449), + [sym_global_statement] = STATE(2449), + [sym_filetype_statement] = STATE(2449), + [sym_colorscheme_statement] = STATE(2449), + [sym_lua_statement] = STATE(2449), + [sym_ruby_statement] = STATE(2449), + [sym_python_statement] = STATE(2449), + [sym_perl_statement] = STATE(2449), + [sym_for_loop] = STATE(2449), + [sym_while_loop] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_try_statement] = STATE(2449), + [sym_catch_statement] = STATE(2172), + [sym_finally_statement] = STATE(3150), + [sym_throw_statement] = STATE(2449), + [sym_autocmd_statement] = STATE(2449), + [sym_augroup_statement] = STATE(2449), + [sym_bang_filter_statement] = STATE(2449), + [sym_let_statement] = STATE(2449), + [sym_const_statement] = STATE(2449), + [sym_set_statement] = STATE(2449), + [sym_setlocal_statement] = STATE(2449), + [sym_unlet_statement] = STATE(2449), + [sym_call_statement] = STATE(2449), + [sym_echo_statement] = STATE(2449), + [sym_echon_statement] = STATE(2449), + [sym_echohl_statement] = STATE(2449), + [sym_echomsg_statement] = STATE(2449), + [sym_echoerr_statement] = STATE(2449), + [sym_execute_statement] = STATE(2449), + [sym_silent_statement] = STATE(2449), + [sym_user_command] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_range_statement] = STATE(2449), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2449), + [sym_map_statement] = STATE(2449), + [sym_highlight_statement] = STATE(2449), + [sym_syntax_statement] = STATE(2449), + [sym_sign_statement] = STATE(2449), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_if_statement_repeat1] = STATE(2033), + [aux_sym_try_statement_repeat1] = STATE(2172), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(11), @@ -27814,17 +27067,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(163), + [sym__newline_or_pipe] = ACTIONS(215), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(163), + [sym_comment] = ACTIONS(215), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__elseif] = ACTIONS(217), - [sym__else] = ACTIONS(219), - [sym__endif] = ACTIONS(225), [sym__try] = ACTIONS(41), + [sym__catch] = ACTIONS(217), + [sym__finally] = ACTIONS(219), + [sym__endtry] = ACTIONS(225), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -27890,70 +27143,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [10] = { [sym__cmd_separator] = STATE(248), - [aux_sym__separated_statements] = STATE(6), - [sym__statement] = STATE(2366), - [sym_unknown_builtin_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_break_statement] = STATE(2366), - [sym_continue_statement] = STATE(2366), - [sym_normal_statement] = STATE(2366), - [sym_setfiletype_statement] = STATE(2366), - [sym_options_statement] = STATE(2366), - [sym_startinsert_statement] = STATE(2366), - [sym_stopinsert_statement] = STATE(2366), - [sym_scriptencoding_statement] = STATE(2366), - [sym_comclear_statement] = STATE(2366), - [sym_delcommand_statement] = STATE(2366), - [sym_runtime_statement] = STATE(2366), - [sym_wincmd_statement] = STATE(2366), - [sym_source_statement] = STATE(2366), - [sym_global_statement] = STATE(2366), - [sym_filetype_statement] = STATE(2366), - [sym_colorscheme_statement] = STATE(2366), - [sym_lua_statement] = STATE(2366), - [sym_ruby_statement] = STATE(2366), - [sym_python_statement] = STATE(2366), - [sym_perl_statement] = STATE(2366), - [sym_for_loop] = STATE(2366), - [sym_while_loop] = STATE(2366), - [sym_if_statement] = STATE(2366), - [sym_try_statement] = STATE(2366), - [sym_catch_statement] = STATE(2059), - [sym_finally_statement] = STATE(3178), - [sym_throw_statement] = STATE(2366), - [sym_autocmd_statement] = STATE(2366), - [sym_augroup_statement] = STATE(2366), - [sym_bang_filter_statement] = STATE(2366), - [sym_let_statement] = STATE(2366), - [sym_const_statement] = STATE(2366), - [sym_set_statement] = STATE(2366), - [sym_setlocal_statement] = STATE(2366), - [sym_unlet_statement] = STATE(2366), - [sym_call_statement] = STATE(2366), - [sym_echo_statement] = STATE(2366), - [sym_echon_statement] = STATE(2366), - [sym_echohl_statement] = STATE(2366), - [sym_echomsg_statement] = STATE(2366), - [sym_echoerr_statement] = STATE(2366), - [sym_execute_statement] = STATE(2366), - [sym_silent_statement] = STATE(2366), - [sym_user_command] = STATE(2366), - [sym_function_definition] = STATE(2366), - [sym_range_statement] = STATE(2366), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2366), - [sym_map_statement] = STATE(2366), - [sym_highlight_statement] = STATE(2366), - [sym_syntax_statement] = STATE(2366), - [sym_sign_statement] = STATE(2366), + [aux_sym__separated_statements] = STATE(12), + [sym__statement] = STATE(2407), + [sym_unknown_builtin_statement] = STATE(2407), + [sym_return_statement] = STATE(2407), + [sym_break_statement] = STATE(2407), + [sym_continue_statement] = STATE(2407), + [sym_normal_statement] = STATE(2407), + [sym_setfiletype_statement] = STATE(2407), + [sym_options_statement] = STATE(2407), + [sym_startinsert_statement] = STATE(2407), + [sym_stopinsert_statement] = STATE(2407), + [sym_scriptencoding_statement] = STATE(2407), + [sym_comclear_statement] = STATE(2407), + [sym_delcommand_statement] = STATE(2407), + [sym_runtime_statement] = STATE(2407), + [sym_wincmd_statement] = STATE(2407), + [sym_source_statement] = STATE(2407), + [sym_global_statement] = STATE(2407), + [sym_filetype_statement] = STATE(2407), + [sym_colorscheme_statement] = STATE(2407), + [sym_lua_statement] = STATE(2407), + [sym_ruby_statement] = STATE(2407), + [sym_python_statement] = STATE(2407), + [sym_perl_statement] = STATE(2407), + [sym_for_loop] = STATE(2407), + [sym_while_loop] = STATE(2407), + [sym_if_statement] = STATE(2407), + [sym_elseif_statement] = STATE(2116), + [sym_else_statement] = STATE(3268), + [sym_try_statement] = STATE(2407), + [sym_throw_statement] = STATE(2407), + [sym_autocmd_statement] = STATE(2407), + [sym_augroup_statement] = STATE(2407), + [sym_bang_filter_statement] = STATE(2407), + [sym_let_statement] = STATE(2407), + [sym_const_statement] = STATE(2407), + [sym_set_statement] = STATE(2407), + [sym_setlocal_statement] = STATE(2407), + [sym_unlet_statement] = STATE(2407), + [sym_call_statement] = STATE(2407), + [sym_echo_statement] = STATE(2407), + [sym_echon_statement] = STATE(2407), + [sym_echohl_statement] = STATE(2407), + [sym_echomsg_statement] = STATE(2407), + [sym_echoerr_statement] = STATE(2407), + [sym_execute_statement] = STATE(2407), + [sym_silent_statement] = STATE(2407), + [sym_user_command] = STATE(2407), + [sym_function_definition] = STATE(2407), + [sym_range_statement] = STATE(2407), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2407), + [sym_map_statement] = STATE(2407), + [sym_highlight_statement] = STATE(2407), + [sym_syntax_statement] = STATE(2407), + [sym_sign_statement] = STATE(2407), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_try_statement_repeat1] = STATE(2059), + [aux_sym_if_statement_repeat1] = STATE(2116), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(11), @@ -27968,17 +27221,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(207), + [sym__newline_or_pipe] = ACTIONS(163), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(207), + [sym_comment] = ACTIONS(163), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), + [sym__elseif] = ACTIONS(207), + [sym__else] = ACTIONS(209), + [sym__endif] = ACTIONS(227), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(209), - [sym__finally] = ACTIONS(211), - [sym__endtry] = ACTIONS(227), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -28043,71 +27296,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [11] = { - [sym__cmd_separator] = STATE(248), - [aux_sym__separated_statements] = STATE(17), - [sym__statement] = STATE(2366), - [sym_unknown_builtin_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_break_statement] = STATE(2366), - [sym_continue_statement] = STATE(2366), - [sym_normal_statement] = STATE(2366), - [sym_setfiletype_statement] = STATE(2366), - [sym_options_statement] = STATE(2366), - [sym_startinsert_statement] = STATE(2366), - [sym_stopinsert_statement] = STATE(2366), - [sym_scriptencoding_statement] = STATE(2366), - [sym_comclear_statement] = STATE(2366), - [sym_delcommand_statement] = STATE(2366), - [sym_runtime_statement] = STATE(2366), - [sym_wincmd_statement] = STATE(2366), - [sym_source_statement] = STATE(2366), - [sym_global_statement] = STATE(2366), - [sym_filetype_statement] = STATE(2366), - [sym_colorscheme_statement] = STATE(2366), - [sym_lua_statement] = STATE(2366), - [sym_ruby_statement] = STATE(2366), - [sym_python_statement] = STATE(2366), - [sym_perl_statement] = STATE(2366), - [sym_for_loop] = STATE(2366), - [sym_while_loop] = STATE(2366), - [sym_if_statement] = STATE(2366), - [sym_try_statement] = STATE(2366), - [sym_catch_statement] = STATE(2086), - [sym_finally_statement] = STATE(3098), - [sym_throw_statement] = STATE(2366), - [sym_autocmd_statement] = STATE(2366), - [sym_augroup_statement] = STATE(2366), - [sym_bang_filter_statement] = STATE(2366), - [sym_let_statement] = STATE(2366), - [sym_const_statement] = STATE(2366), - [sym_set_statement] = STATE(2366), - [sym_setlocal_statement] = STATE(2366), - [sym_unlet_statement] = STATE(2366), - [sym_call_statement] = STATE(2366), - [sym_echo_statement] = STATE(2366), - [sym_echon_statement] = STATE(2366), - [sym_echohl_statement] = STATE(2366), - [sym_echomsg_statement] = STATE(2366), - [sym_echoerr_statement] = STATE(2366), - [sym_execute_statement] = STATE(2366), - [sym_silent_statement] = STATE(2366), - [sym_user_command] = STATE(2366), - [sym_function_definition] = STATE(2366), - [sym_range_statement] = STATE(2366), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2366), - [sym_map_statement] = STATE(2366), - [sym_highlight_statement] = STATE(2366), - [sym_syntax_statement] = STATE(2366), - [sym_sign_statement] = STATE(2366), + [sym__cmd_separator] = STATE(246), + [aux_sym__separated_statements] = STATE(19), + [sym__statement] = STATE(2449), + [sym_unknown_builtin_statement] = STATE(2449), + [sym_return_statement] = STATE(2449), + [sym_break_statement] = STATE(2449), + [sym_continue_statement] = STATE(2449), + [sym_normal_statement] = STATE(2449), + [sym_setfiletype_statement] = STATE(2449), + [sym_options_statement] = STATE(2449), + [sym_startinsert_statement] = STATE(2449), + [sym_stopinsert_statement] = STATE(2449), + [sym_scriptencoding_statement] = STATE(2449), + [sym_comclear_statement] = STATE(2449), + [sym_delcommand_statement] = STATE(2449), + [sym_runtime_statement] = STATE(2449), + [sym_wincmd_statement] = STATE(2449), + [sym_source_statement] = STATE(2449), + [sym_global_statement] = STATE(2449), + [sym_filetype_statement] = STATE(2449), + [sym_colorscheme_statement] = STATE(2449), + [sym_lua_statement] = STATE(2449), + [sym_ruby_statement] = STATE(2449), + [sym_python_statement] = STATE(2449), + [sym_perl_statement] = STATE(2449), + [sym_for_loop] = STATE(2449), + [sym_while_loop] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_try_statement] = STATE(2449), + [sym_catch_statement] = STATE(2091), + [sym_finally_statement] = STATE(3267), + [sym_throw_statement] = STATE(2449), + [sym_autocmd_statement] = STATE(2449), + [sym_augroup_statement] = STATE(2449), + [sym_bang_filter_statement] = STATE(2449), + [sym_let_statement] = STATE(2449), + [sym_const_statement] = STATE(2449), + [sym_set_statement] = STATE(2449), + [sym_setlocal_statement] = STATE(2449), + [sym_unlet_statement] = STATE(2449), + [sym_call_statement] = STATE(2449), + [sym_echo_statement] = STATE(2449), + [sym_echon_statement] = STATE(2449), + [sym_echohl_statement] = STATE(2449), + [sym_echomsg_statement] = STATE(2449), + [sym_echoerr_statement] = STATE(2449), + [sym_execute_statement] = STATE(2449), + [sym_silent_statement] = STATE(2449), + [sym_user_command] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_range_statement] = STATE(2449), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2449), + [sym_map_statement] = STATE(2449), + [sym_highlight_statement] = STATE(2449), + [sym_syntax_statement] = STATE(2449), + [sym_sign_statement] = STATE(2449), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_try_statement_repeat1] = STATE(2086), + [aux_sym_try_statement_repeat1] = STATE(2091), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(11), @@ -28122,16 +27375,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(207), + [sym__newline_or_pipe] = ACTIONS(215), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(207), + [sym_comment] = ACTIONS(215), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(209), - [sym__finally] = ACTIONS(211), + [sym__catch] = ACTIONS(217), + [sym__finally] = ACTIONS(219), [sym__endtry] = ACTIONS(229), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), @@ -28197,71 +27450,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [12] = { - [sym__cmd_separator] = STATE(245), - [aux_sym__separated_statements] = STATE(14), - [sym__statement] = STATE(2453), - [sym_unknown_builtin_statement] = STATE(2453), - [sym_return_statement] = STATE(2453), - [sym_break_statement] = STATE(2453), - [sym_continue_statement] = STATE(2453), - [sym_normal_statement] = STATE(2453), - [sym_setfiletype_statement] = STATE(2453), - [sym_options_statement] = STATE(2453), - [sym_startinsert_statement] = STATE(2453), - [sym_stopinsert_statement] = STATE(2453), - [sym_scriptencoding_statement] = STATE(2453), - [sym_comclear_statement] = STATE(2453), - [sym_delcommand_statement] = STATE(2453), - [sym_runtime_statement] = STATE(2453), - [sym_wincmd_statement] = STATE(2453), - [sym_source_statement] = STATE(2453), - [sym_global_statement] = STATE(2453), - [sym_filetype_statement] = STATE(2453), - [sym_colorscheme_statement] = STATE(2453), - [sym_lua_statement] = STATE(2453), - [sym_ruby_statement] = STATE(2453), - [sym_python_statement] = STATE(2453), - [sym_perl_statement] = STATE(2453), - [sym_for_loop] = STATE(2453), - [sym_while_loop] = STATE(2453), - [sym_if_statement] = STATE(2453), - [sym_elseif_statement] = STATE(2043), - [sym_else_statement] = STATE(2968), - [sym_try_statement] = STATE(2453), - [sym_throw_statement] = STATE(2453), - [sym_autocmd_statement] = STATE(2453), - [sym_augroup_statement] = STATE(2453), - [sym_bang_filter_statement] = STATE(2453), - [sym_let_statement] = STATE(2453), - [sym_const_statement] = STATE(2453), - [sym_set_statement] = STATE(2453), - [sym_setlocal_statement] = STATE(2453), - [sym_unlet_statement] = STATE(2453), - [sym_call_statement] = STATE(2453), - [sym_echo_statement] = STATE(2453), - [sym_echon_statement] = STATE(2453), - [sym_echohl_statement] = STATE(2453), - [sym_echomsg_statement] = STATE(2453), - [sym_echoerr_statement] = STATE(2453), - [sym_execute_statement] = STATE(2453), - [sym_silent_statement] = STATE(2453), - [sym_user_command] = STATE(2453), - [sym_function_definition] = STATE(2453), - [sym_range_statement] = STATE(2453), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2453), - [sym_map_statement] = STATE(2453), - [sym_highlight_statement] = STATE(2453), - [sym_syntax_statement] = STATE(2453), - [sym_sign_statement] = STATE(2453), + [sym__cmd_separator] = STATE(248), + [aux_sym__separated_statements] = STATE(18), + [sym__statement] = STATE(2407), + [sym_unknown_builtin_statement] = STATE(2407), + [sym_return_statement] = STATE(2407), + [sym_break_statement] = STATE(2407), + [sym_continue_statement] = STATE(2407), + [sym_normal_statement] = STATE(2407), + [sym_setfiletype_statement] = STATE(2407), + [sym_options_statement] = STATE(2407), + [sym_startinsert_statement] = STATE(2407), + [sym_stopinsert_statement] = STATE(2407), + [sym_scriptencoding_statement] = STATE(2407), + [sym_comclear_statement] = STATE(2407), + [sym_delcommand_statement] = STATE(2407), + [sym_runtime_statement] = STATE(2407), + [sym_wincmd_statement] = STATE(2407), + [sym_source_statement] = STATE(2407), + [sym_global_statement] = STATE(2407), + [sym_filetype_statement] = STATE(2407), + [sym_colorscheme_statement] = STATE(2407), + [sym_lua_statement] = STATE(2407), + [sym_ruby_statement] = STATE(2407), + [sym_python_statement] = STATE(2407), + [sym_perl_statement] = STATE(2407), + [sym_for_loop] = STATE(2407), + [sym_while_loop] = STATE(2407), + [sym_if_statement] = STATE(2407), + [sym_elseif_statement] = STATE(2093), + [sym_else_statement] = STATE(3232), + [sym_try_statement] = STATE(2407), + [sym_throw_statement] = STATE(2407), + [sym_autocmd_statement] = STATE(2407), + [sym_augroup_statement] = STATE(2407), + [sym_bang_filter_statement] = STATE(2407), + [sym_let_statement] = STATE(2407), + [sym_const_statement] = STATE(2407), + [sym_set_statement] = STATE(2407), + [sym_setlocal_statement] = STATE(2407), + [sym_unlet_statement] = STATE(2407), + [sym_call_statement] = STATE(2407), + [sym_echo_statement] = STATE(2407), + [sym_echon_statement] = STATE(2407), + [sym_echohl_statement] = STATE(2407), + [sym_echomsg_statement] = STATE(2407), + [sym_echoerr_statement] = STATE(2407), + [sym_execute_statement] = STATE(2407), + [sym_silent_statement] = STATE(2407), + [sym_user_command] = STATE(2407), + [sym_function_definition] = STATE(2407), + [sym_range_statement] = STATE(2407), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2407), + [sym_map_statement] = STATE(2407), + [sym_highlight_statement] = STATE(2407), + [sym_syntax_statement] = STATE(2407), + [sym_sign_statement] = STATE(2407), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_if_statement_repeat1] = STATE(2043), + [aux_sym_if_statement_repeat1] = STATE(2093), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(11), @@ -28283,8 +27536,8 @@ 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(217), - [sym__else] = ACTIONS(219), + [sym__elseif] = ACTIONS(207), + [sym__else] = ACTIONS(209), [sym__endif] = ACTIONS(231), [sym__try] = ACTIONS(41), [sym__const] = ACTIONS(43), @@ -28351,67 +27604,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [13] = { - [sym__cmd_separator] = STATE(248), - [aux_sym__separated_statements] = STATE(19), - [sym__statement] = STATE(2366), - [sym_unknown_builtin_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_break_statement] = STATE(2366), - [sym_continue_statement] = STATE(2366), - [sym_normal_statement] = STATE(2366), - [sym_setfiletype_statement] = STATE(2366), - [sym_options_statement] = STATE(2366), - [sym_startinsert_statement] = STATE(2366), - [sym_stopinsert_statement] = STATE(2366), - [sym_scriptencoding_statement] = STATE(2366), - [sym_comclear_statement] = STATE(2366), - [sym_delcommand_statement] = STATE(2366), - [sym_runtime_statement] = STATE(2366), - [sym_wincmd_statement] = STATE(2366), - [sym_source_statement] = STATE(2366), - [sym_global_statement] = STATE(2366), - [sym_filetype_statement] = STATE(2366), - [sym_colorscheme_statement] = STATE(2366), - [sym_lua_statement] = STATE(2366), - [sym_ruby_statement] = STATE(2366), - [sym_python_statement] = STATE(2366), - [sym_perl_statement] = STATE(2366), - [sym_for_loop] = STATE(2366), - [sym_while_loop] = STATE(2366), - [sym_if_statement] = STATE(2366), - [sym_try_statement] = STATE(2366), - [sym_throw_statement] = STATE(2366), - [sym_autocmd_statement] = STATE(2366), - [sym_augroup_statement] = STATE(2366), - [sym_bang_filter_statement] = STATE(2366), - [sym_let_statement] = STATE(2366), - [sym_const_statement] = STATE(2366), - [sym_set_statement] = STATE(2366), - [sym_setlocal_statement] = STATE(2366), - [sym_unlet_statement] = STATE(2366), - [sym_call_statement] = STATE(2366), - [sym_echo_statement] = STATE(2366), - [sym_echon_statement] = STATE(2366), - [sym_echohl_statement] = STATE(2366), - [sym_echomsg_statement] = STATE(2366), - [sym_echoerr_statement] = STATE(2366), - [sym_execute_statement] = STATE(2366), - [sym_silent_statement] = STATE(2366), - [sym_user_command] = STATE(2366), - [sym_function_definition] = STATE(2366), - [sym_range_statement] = STATE(2366), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2366), - [sym_map_statement] = STATE(2366), - [sym_highlight_statement] = STATE(2366), - [sym_syntax_statement] = STATE(2366), - [sym_sign_statement] = STATE(2366), + [sym__cmd_separator] = STATE(246), + [aux_sym__separated_statements] = STATE(14), + [sym__statement] = STATE(2449), + [sym_unknown_builtin_statement] = STATE(2449), + [sym_return_statement] = STATE(2449), + [sym_break_statement] = STATE(2449), + [sym_continue_statement] = STATE(2449), + [sym_normal_statement] = STATE(2449), + [sym_setfiletype_statement] = STATE(2449), + [sym_options_statement] = STATE(2449), + [sym_startinsert_statement] = STATE(2449), + [sym_stopinsert_statement] = STATE(2449), + [sym_scriptencoding_statement] = STATE(2449), + [sym_comclear_statement] = STATE(2449), + [sym_delcommand_statement] = STATE(2449), + [sym_runtime_statement] = STATE(2449), + [sym_wincmd_statement] = STATE(2449), + [sym_source_statement] = STATE(2449), + [sym_global_statement] = STATE(2449), + [sym_filetype_statement] = STATE(2449), + [sym_colorscheme_statement] = STATE(2449), + [sym_lua_statement] = STATE(2449), + [sym_ruby_statement] = STATE(2449), + [sym_python_statement] = STATE(2449), + [sym_perl_statement] = STATE(2449), + [sym_for_loop] = STATE(2449), + [sym_while_loop] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_try_statement] = STATE(2449), + [sym_throw_statement] = STATE(2449), + [sym_autocmd_statement] = STATE(2449), + [sym_augroup_statement] = STATE(2449), + [sym_bang_filter_statement] = STATE(2449), + [sym_let_statement] = STATE(2449), + [sym_const_statement] = STATE(2449), + [sym_set_statement] = STATE(2449), + [sym_setlocal_statement] = STATE(2449), + [sym_unlet_statement] = STATE(2449), + [sym_call_statement] = STATE(2449), + [sym_echo_statement] = STATE(2449), + [sym_echon_statement] = STATE(2449), + [sym_echohl_statement] = STATE(2449), + [sym_echomsg_statement] = STATE(2449), + [sym_echoerr_statement] = STATE(2449), + [sym_execute_statement] = STATE(2449), + [sym_silent_statement] = STATE(2449), + [sym_user_command] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_range_statement] = STATE(2449), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2449), + [sym_map_statement] = STATE(2449), + [sym_highlight_statement] = STATE(2449), + [sym_syntax_statement] = STATE(2449), + [sym_sign_statement] = STATE(2449), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -28427,9 +27680,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(207), + [sym__newline_or_pipe] = ACTIONS(215), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(207), + [sym_comment] = ACTIONS(215), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), @@ -28502,218 +27755,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [14] = { - [sym__cmd_separator] = STATE(245), - [aux_sym__separated_statements] = STATE(14), - [sym__statement] = STATE(2453), - [sym_unknown_builtin_statement] = STATE(2453), - [sym_return_statement] = STATE(2453), - [sym_break_statement] = STATE(2453), - [sym_continue_statement] = STATE(2453), - [sym_normal_statement] = STATE(2453), - [sym_setfiletype_statement] = STATE(2453), - [sym_options_statement] = STATE(2453), - [sym_startinsert_statement] = STATE(2453), - [sym_stopinsert_statement] = STATE(2453), - [sym_scriptencoding_statement] = STATE(2453), - [sym_comclear_statement] = STATE(2453), - [sym_delcommand_statement] = STATE(2453), - [sym_runtime_statement] = STATE(2453), - [sym_wincmd_statement] = STATE(2453), - [sym_source_statement] = STATE(2453), - [sym_global_statement] = STATE(2453), - [sym_filetype_statement] = STATE(2453), - [sym_colorscheme_statement] = STATE(2453), - [sym_lua_statement] = STATE(2453), - [sym_ruby_statement] = STATE(2453), - [sym_python_statement] = STATE(2453), - [sym_perl_statement] = STATE(2453), - [sym_for_loop] = STATE(2453), - [sym_while_loop] = STATE(2453), - [sym_if_statement] = STATE(2453), - [sym_try_statement] = STATE(2453), - [sym_throw_statement] = STATE(2453), - [sym_autocmd_statement] = STATE(2453), - [sym_augroup_statement] = STATE(2453), - [sym_bang_filter_statement] = STATE(2453), - [sym_let_statement] = STATE(2453), - [sym_const_statement] = STATE(2453), - [sym_set_statement] = STATE(2453), - [sym_setlocal_statement] = STATE(2453), - [sym_unlet_statement] = STATE(2453), - [sym_call_statement] = STATE(2453), - [sym_echo_statement] = STATE(2453), - [sym_echon_statement] = STATE(2453), - [sym_echohl_statement] = STATE(2453), - [sym_echomsg_statement] = STATE(2453), - [sym_echoerr_statement] = STATE(2453), - [sym_execute_statement] = STATE(2453), - [sym_silent_statement] = STATE(2453), - [sym_user_command] = STATE(2453), - [sym_function_definition] = STATE(2453), - [sym_range_statement] = STATE(2453), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2453), - [sym_map_statement] = STATE(2453), - [sym_highlight_statement] = STATE(2453), - [sym_syntax_statement] = STATE(2453), - [sym_sign_statement] = STATE(2453), + [sym__cmd_separator] = STATE(246), + [aux_sym__separated_statements] = STATE(19), + [sym__statement] = STATE(2449), + [sym_unknown_builtin_statement] = STATE(2449), + [sym_return_statement] = STATE(2449), + [sym_break_statement] = STATE(2449), + [sym_continue_statement] = STATE(2449), + [sym_normal_statement] = STATE(2449), + [sym_setfiletype_statement] = STATE(2449), + [sym_options_statement] = STATE(2449), + [sym_startinsert_statement] = STATE(2449), + [sym_stopinsert_statement] = STATE(2449), + [sym_scriptencoding_statement] = STATE(2449), + [sym_comclear_statement] = STATE(2449), + [sym_delcommand_statement] = STATE(2449), + [sym_runtime_statement] = STATE(2449), + [sym_wincmd_statement] = STATE(2449), + [sym_source_statement] = STATE(2449), + [sym_global_statement] = STATE(2449), + [sym_filetype_statement] = STATE(2449), + [sym_colorscheme_statement] = STATE(2449), + [sym_lua_statement] = STATE(2449), + [sym_ruby_statement] = STATE(2449), + [sym_python_statement] = STATE(2449), + [sym_perl_statement] = STATE(2449), + [sym_for_loop] = STATE(2449), + [sym_while_loop] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_try_statement] = STATE(2449), + [sym_throw_statement] = STATE(2449), + [sym_autocmd_statement] = STATE(2449), + [sym_augroup_statement] = STATE(2449), + [sym_bang_filter_statement] = STATE(2449), + [sym_let_statement] = STATE(2449), + [sym_const_statement] = STATE(2449), + [sym_set_statement] = STATE(2449), + [sym_setlocal_statement] = STATE(2449), + [sym_unlet_statement] = STATE(2449), + [sym_call_statement] = STATE(2449), + [sym_echo_statement] = STATE(2449), + [sym_echon_statement] = STATE(2449), + [sym_echohl_statement] = STATE(2449), + [sym_echomsg_statement] = STATE(2449), + [sym_echoerr_statement] = STATE(2449), + [sym_execute_statement] = STATE(2449), + [sym_silent_statement] = STATE(2449), + [sym_user_command] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_range_statement] = STATE(2449), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2449), + [sym_map_statement] = STATE(2449), + [sym_highlight_statement] = STATE(2449), + [sym_syntax_statement] = STATE(2449), + [sym_sign_statement] = STATE(2449), [aux_sym__statement_repeat1] = STATE(141), - [anon_sym_COLON] = ACTIONS(235), - [sym_command_name] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(241), - [sym_mark] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_DOT2] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(259), - [anon_sym_BSLASH_SLASH] = ACTIONS(262), - [anon_sym_BSLASH_QMARK] = ACTIONS(262), - [anon_sym_BSLASH_AMP] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [sym_register] = ACTIONS(268), - [sym__newline_or_pipe] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(7), + [sym_command_name] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(11), + [sym_mark] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_DOT2] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DOLLAR] = ACTIONS(23), + [anon_sym_BSLASH_SLASH] = ACTIONS(25), + [anon_sym_BSLASH_QMARK] = ACTIONS(25), + [anon_sym_BSLASH_AMP] = ACTIONS(25), + [sym_integer_literal] = ACTIONS(27), + [sym_register] = ACTIONS(29), + [sym__newline_or_pipe] = ACTIONS(215), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(271), - [sym__function] = ACTIONS(274), - [sym__for] = ACTIONS(277), - [sym__while] = ACTIONS(280), - [sym__if] = ACTIONS(283), - [sym__elseif] = ACTIONS(286), - [sym__else] = ACTIONS(286), - [sym__endif] = ACTIONS(286), - [sym__try] = ACTIONS(288), - [sym__const] = ACTIONS(291), - [sym__normal] = ACTIONS(294), - [sym__return] = ACTIONS(297), - [sym__perl] = ACTIONS(300), - [sym__lua] = ACTIONS(303), - [sym__ruby] = ACTIONS(306), - [sym__python] = ACTIONS(309), - [sym__throw] = ACTIONS(312), - [sym__execute] = ACTIONS(315), - [sym__autocmd] = ACTIONS(318), - [sym__silent] = ACTIONS(321), - [sym__echo] = ACTIONS(324), - [sym__echon] = ACTIONS(327), - [sym__echohl] = ACTIONS(330), - [sym__echomsg] = ACTIONS(333), - [sym__echoerr] = ACTIONS(336), - [sym__map] = ACTIONS(339), - [sym__nmap] = ACTIONS(339), - [sym__vmap] = ACTIONS(339), - [sym__xmap] = ACTIONS(339), - [sym__smap] = ACTIONS(339), - [sym__omap] = ACTIONS(339), - [sym__imap] = ACTIONS(339), - [sym__lmap] = ACTIONS(339), - [sym__cmap] = ACTIONS(339), - [sym__tmap] = ACTIONS(339), - [sym__noremap] = ACTIONS(339), - [sym__vnoremap] = ACTIONS(339), - [sym__nnoremap] = ACTIONS(339), - [sym__xnoremap] = ACTIONS(339), - [sym__snoremap] = ACTIONS(339), - [sym__onoremap] = ACTIONS(339), - [sym__inoremap] = ACTIONS(339), - [sym__lnoremap] = ACTIONS(339), - [sym__cnoremap] = ACTIONS(339), - [sym__tnoremap] = ACTIONS(339), - [sym__augroup] = ACTIONS(342), - [sym__highlight] = ACTIONS(345), - [sym__syntax] = ACTIONS(348), - [sym__set] = ACTIONS(351), - [sym__setlocal] = ACTIONS(354), - [sym__setfiletype] = ACTIONS(357), - [sym__browse] = ACTIONS(360), - [sym__options] = ACTIONS(363), - [sym__startinsert] = ACTIONS(366), - [sym__stopinsert] = ACTIONS(369), - [sym__scriptencoding] = ACTIONS(372), - [sym__source] = ACTIONS(375), - [sym__global] = ACTIONS(378), - [sym__colorscheme] = ACTIONS(381), - [sym__comclear] = ACTIONS(384), - [sym__delcommand] = ACTIONS(387), - [sym__runtime] = ACTIONS(390), - [sym__wincmd] = ACTIONS(393), - [sym__sign] = ACTIONS(396), - [sym__filetype] = ACTIONS(399), - [sym__let] = ACTIONS(402), - [sym__unlet] = ACTIONS(405), - [sym__call] = ACTIONS(408), - [sym__break] = ACTIONS(411), - [sym__continue] = ACTIONS(414), - [sym_unknown_command_name] = ACTIONS(417), + [sym_comment] = ACTIONS(215), + [sym__function] = ACTIONS(33), + [sym__for] = ACTIONS(35), + [sym__while] = ACTIONS(37), + [sym__if] = ACTIONS(39), + [sym__try] = ACTIONS(41), + [sym__catch] = ACTIONS(235), + [sym__finally] = ACTIONS(235), + [sym__endtry] = ACTIONS(235), + [sym__const] = ACTIONS(43), + [sym__normal] = ACTIONS(45), + [sym__return] = ACTIONS(47), + [sym__perl] = ACTIONS(49), + [sym__lua] = ACTIONS(51), + [sym__ruby] = ACTIONS(53), + [sym__python] = ACTIONS(55), + [sym__throw] = ACTIONS(57), + [sym__execute] = ACTIONS(59), + [sym__autocmd] = ACTIONS(61), + [sym__silent] = ACTIONS(63), + [sym__echo] = ACTIONS(65), + [sym__echon] = ACTIONS(67), + [sym__echohl] = ACTIONS(69), + [sym__echomsg] = ACTIONS(71), + [sym__echoerr] = ACTIONS(73), + [sym__map] = ACTIONS(75), + [sym__nmap] = ACTIONS(75), + [sym__vmap] = ACTIONS(75), + [sym__xmap] = ACTIONS(75), + [sym__smap] = ACTIONS(75), + [sym__omap] = ACTIONS(75), + [sym__imap] = ACTIONS(75), + [sym__lmap] = ACTIONS(75), + [sym__cmap] = ACTIONS(75), + [sym__tmap] = ACTIONS(75), + [sym__noremap] = ACTIONS(75), + [sym__vnoremap] = ACTIONS(75), + [sym__nnoremap] = ACTIONS(75), + [sym__xnoremap] = ACTIONS(75), + [sym__snoremap] = ACTIONS(75), + [sym__onoremap] = ACTIONS(75), + [sym__inoremap] = ACTIONS(75), + [sym__lnoremap] = ACTIONS(75), + [sym__cnoremap] = ACTIONS(75), + [sym__tnoremap] = ACTIONS(75), + [sym__augroup] = ACTIONS(77), + [sym__highlight] = ACTIONS(79), + [sym__syntax] = ACTIONS(81), + [sym__set] = ACTIONS(83), + [sym__setlocal] = ACTIONS(85), + [sym__setfiletype] = ACTIONS(87), + [sym__browse] = ACTIONS(89), + [sym__options] = ACTIONS(91), + [sym__startinsert] = ACTIONS(93), + [sym__stopinsert] = ACTIONS(95), + [sym__scriptencoding] = ACTIONS(97), + [sym__source] = ACTIONS(99), + [sym__global] = ACTIONS(101), + [sym__colorscheme] = ACTIONS(103), + [sym__comclear] = ACTIONS(105), + [sym__delcommand] = ACTIONS(107), + [sym__runtime] = ACTIONS(109), + [sym__wincmd] = ACTIONS(111), + [sym__sign] = ACTIONS(113), + [sym__filetype] = ACTIONS(115), + [sym__let] = ACTIONS(117), + [sym__unlet] = ACTIONS(119), + [sym__call] = ACTIONS(121), + [sym__break] = ACTIONS(123), + [sym__continue] = ACTIONS(125), + [sym_unknown_command_name] = ACTIONS(127), }, [15] = { - [sym__cmd_separator] = STATE(248), - [aux_sym__separated_statements] = STATE(17), - [sym__statement] = STATE(2366), - [sym_unknown_builtin_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_break_statement] = STATE(2366), - [sym_continue_statement] = STATE(2366), - [sym_normal_statement] = STATE(2366), - [sym_setfiletype_statement] = STATE(2366), - [sym_options_statement] = STATE(2366), - [sym_startinsert_statement] = STATE(2366), - [sym_stopinsert_statement] = STATE(2366), - [sym_scriptencoding_statement] = STATE(2366), - [sym_comclear_statement] = STATE(2366), - [sym_delcommand_statement] = STATE(2366), - [sym_runtime_statement] = STATE(2366), - [sym_wincmd_statement] = STATE(2366), - [sym_source_statement] = STATE(2366), - [sym_global_statement] = STATE(2366), - [sym_filetype_statement] = STATE(2366), - [sym_colorscheme_statement] = STATE(2366), - [sym_lua_statement] = STATE(2366), - [sym_ruby_statement] = STATE(2366), - [sym_python_statement] = STATE(2366), - [sym_perl_statement] = STATE(2366), - [sym_for_loop] = STATE(2366), - [sym_while_loop] = STATE(2366), - [sym_if_statement] = STATE(2366), - [sym_try_statement] = STATE(2366), - [sym_throw_statement] = STATE(2366), - [sym_autocmd_statement] = STATE(2366), - [sym_augroup_statement] = STATE(2366), - [sym_bang_filter_statement] = STATE(2366), - [sym_let_statement] = STATE(2366), - [sym_const_statement] = STATE(2366), - [sym_set_statement] = STATE(2366), - [sym_setlocal_statement] = STATE(2366), - [sym_unlet_statement] = STATE(2366), - [sym_call_statement] = STATE(2366), - [sym_echo_statement] = STATE(2366), - [sym_echon_statement] = STATE(2366), - [sym_echohl_statement] = STATE(2366), - [sym_echomsg_statement] = STATE(2366), - [sym_echoerr_statement] = STATE(2366), - [sym_execute_statement] = STATE(2366), - [sym_silent_statement] = STATE(2366), - [sym_user_command] = STATE(2366), - [sym_function_definition] = STATE(2366), - [sym_range_statement] = STATE(2366), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2366), - [sym_map_statement] = STATE(2366), - [sym_highlight_statement] = STATE(2366), - [sym_syntax_statement] = STATE(2366), - [sym_sign_statement] = STATE(2366), + [sym__cmd_separator] = STATE(246), + [aux_sym__separated_statements] = STATE(16), + [sym__statement] = STATE(2449), + [sym_unknown_builtin_statement] = STATE(2449), + [sym_return_statement] = STATE(2449), + [sym_break_statement] = STATE(2449), + [sym_continue_statement] = STATE(2449), + [sym_normal_statement] = STATE(2449), + [sym_setfiletype_statement] = STATE(2449), + [sym_options_statement] = STATE(2449), + [sym_startinsert_statement] = STATE(2449), + [sym_stopinsert_statement] = STATE(2449), + [sym_scriptencoding_statement] = STATE(2449), + [sym_comclear_statement] = STATE(2449), + [sym_delcommand_statement] = STATE(2449), + [sym_runtime_statement] = STATE(2449), + [sym_wincmd_statement] = STATE(2449), + [sym_source_statement] = STATE(2449), + [sym_global_statement] = STATE(2449), + [sym_filetype_statement] = STATE(2449), + [sym_colorscheme_statement] = STATE(2449), + [sym_lua_statement] = STATE(2449), + [sym_ruby_statement] = STATE(2449), + [sym_python_statement] = STATE(2449), + [sym_perl_statement] = STATE(2449), + [sym_for_loop] = STATE(2449), + [sym_while_loop] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_try_statement] = STATE(2449), + [sym_throw_statement] = STATE(2449), + [sym_autocmd_statement] = STATE(2449), + [sym_augroup_statement] = STATE(2449), + [sym_bang_filter_statement] = STATE(2449), + [sym_let_statement] = STATE(2449), + [sym_const_statement] = STATE(2449), + [sym_set_statement] = STATE(2449), + [sym_setlocal_statement] = STATE(2449), + [sym_unlet_statement] = STATE(2449), + [sym_call_statement] = STATE(2449), + [sym_echo_statement] = STATE(2449), + [sym_echon_statement] = STATE(2449), + [sym_echohl_statement] = STATE(2449), + [sym_echomsg_statement] = STATE(2449), + [sym_echoerr_statement] = STATE(2449), + [sym_execute_statement] = STATE(2449), + [sym_silent_statement] = STATE(2449), + [sym_user_command] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_range_statement] = STATE(2449), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2449), + [sym_map_statement] = STATE(2449), + [sym_highlight_statement] = STATE(2449), + [sym_syntax_statement] = STATE(2449), + [sym_sign_statement] = STATE(2449), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -28729,17 +27982,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(207), + [sym__newline_or_pipe] = ACTIONS(215), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(207), + [sym_comment] = ACTIONS(215), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(420), - [sym__finally] = ACTIONS(420), - [sym__endtry] = ACTIONS(420), + [sym__catch] = ACTIONS(237), + [sym__finally] = ACTIONS(237), + [sym__endtry] = ACTIONS(237), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -28804,67 +28057,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [16] = { - [sym__cmd_separator] = STATE(245), - [aux_sym__separated_statements] = STATE(14), - [sym__statement] = STATE(2453), - [sym_unknown_builtin_statement] = STATE(2453), - [sym_return_statement] = STATE(2453), - [sym_break_statement] = STATE(2453), - [sym_continue_statement] = STATE(2453), - [sym_normal_statement] = STATE(2453), - [sym_setfiletype_statement] = STATE(2453), - [sym_options_statement] = STATE(2453), - [sym_startinsert_statement] = STATE(2453), - [sym_stopinsert_statement] = STATE(2453), - [sym_scriptencoding_statement] = STATE(2453), - [sym_comclear_statement] = STATE(2453), - [sym_delcommand_statement] = STATE(2453), - [sym_runtime_statement] = STATE(2453), - [sym_wincmd_statement] = STATE(2453), - [sym_source_statement] = STATE(2453), - [sym_global_statement] = STATE(2453), - [sym_filetype_statement] = STATE(2453), - [sym_colorscheme_statement] = STATE(2453), - [sym_lua_statement] = STATE(2453), - [sym_ruby_statement] = STATE(2453), - [sym_python_statement] = STATE(2453), - [sym_perl_statement] = STATE(2453), - [sym_for_loop] = STATE(2453), - [sym_while_loop] = STATE(2453), - [sym_if_statement] = STATE(2453), - [sym_try_statement] = STATE(2453), - [sym_throw_statement] = STATE(2453), - [sym_autocmd_statement] = STATE(2453), - [sym_augroup_statement] = STATE(2453), - [sym_bang_filter_statement] = STATE(2453), - [sym_let_statement] = STATE(2453), - [sym_const_statement] = STATE(2453), - [sym_set_statement] = STATE(2453), - [sym_setlocal_statement] = STATE(2453), - [sym_unlet_statement] = STATE(2453), - [sym_call_statement] = STATE(2453), - [sym_echo_statement] = STATE(2453), - [sym_echon_statement] = STATE(2453), - [sym_echohl_statement] = STATE(2453), - [sym_echomsg_statement] = STATE(2453), - [sym_echoerr_statement] = STATE(2453), - [sym_execute_statement] = STATE(2453), - [sym_silent_statement] = STATE(2453), - [sym_user_command] = STATE(2453), - [sym_function_definition] = STATE(2453), - [sym_range_statement] = STATE(2453), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2453), - [sym_map_statement] = STATE(2453), - [sym_highlight_statement] = STATE(2453), - [sym_syntax_statement] = STATE(2453), - [sym_sign_statement] = STATE(2453), + [sym__cmd_separator] = STATE(246), + [aux_sym__separated_statements] = STATE(19), + [sym__statement] = STATE(2449), + [sym_unknown_builtin_statement] = STATE(2449), + [sym_return_statement] = STATE(2449), + [sym_break_statement] = STATE(2449), + [sym_continue_statement] = STATE(2449), + [sym_normal_statement] = STATE(2449), + [sym_setfiletype_statement] = STATE(2449), + [sym_options_statement] = STATE(2449), + [sym_startinsert_statement] = STATE(2449), + [sym_stopinsert_statement] = STATE(2449), + [sym_scriptencoding_statement] = STATE(2449), + [sym_comclear_statement] = STATE(2449), + [sym_delcommand_statement] = STATE(2449), + [sym_runtime_statement] = STATE(2449), + [sym_wincmd_statement] = STATE(2449), + [sym_source_statement] = STATE(2449), + [sym_global_statement] = STATE(2449), + [sym_filetype_statement] = STATE(2449), + [sym_colorscheme_statement] = STATE(2449), + [sym_lua_statement] = STATE(2449), + [sym_ruby_statement] = STATE(2449), + [sym_python_statement] = STATE(2449), + [sym_perl_statement] = STATE(2449), + [sym_for_loop] = STATE(2449), + [sym_while_loop] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_try_statement] = STATE(2449), + [sym_throw_statement] = STATE(2449), + [sym_autocmd_statement] = STATE(2449), + [sym_augroup_statement] = STATE(2449), + [sym_bang_filter_statement] = STATE(2449), + [sym_let_statement] = STATE(2449), + [sym_const_statement] = STATE(2449), + [sym_set_statement] = STATE(2449), + [sym_setlocal_statement] = STATE(2449), + [sym_unlet_statement] = STATE(2449), + [sym_call_statement] = STATE(2449), + [sym_echo_statement] = STATE(2449), + [sym_echon_statement] = STATE(2449), + [sym_echohl_statement] = STATE(2449), + [sym_echomsg_statement] = STATE(2449), + [sym_echoerr_statement] = STATE(2449), + [sym_execute_statement] = STATE(2449), + [sym_silent_statement] = STATE(2449), + [sym_user_command] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_range_statement] = STATE(2449), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2449), + [sym_map_statement] = STATE(2449), + [sym_highlight_statement] = STATE(2449), + [sym_syntax_statement] = STATE(2449), + [sym_sign_statement] = STATE(2449), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -28880,17 +28133,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(163), + [sym__newline_or_pipe] = ACTIONS(215), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(163), + [sym_comment] = ACTIONS(215), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__elseif] = ACTIONS(422), - [sym__else] = ACTIONS(422), - [sym__endif] = ACTIONS(422), [sym__try] = ACTIONS(41), + [sym__catch] = ACTIONS(239), + [sym__finally] = ACTIONS(239), + [sym__endtry] = ACTIONS(239), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -28956,217 +28209,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [17] = { [sym__cmd_separator] = STATE(248), - [aux_sym__separated_statements] = STATE(17), - [sym__statement] = STATE(2366), - [sym_unknown_builtin_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_break_statement] = STATE(2366), - [sym_continue_statement] = STATE(2366), - [sym_normal_statement] = STATE(2366), - [sym_setfiletype_statement] = STATE(2366), - [sym_options_statement] = STATE(2366), - [sym_startinsert_statement] = STATE(2366), - [sym_stopinsert_statement] = STATE(2366), - [sym_scriptencoding_statement] = STATE(2366), - [sym_comclear_statement] = STATE(2366), - [sym_delcommand_statement] = STATE(2366), - [sym_runtime_statement] = STATE(2366), - [sym_wincmd_statement] = STATE(2366), - [sym_source_statement] = STATE(2366), - [sym_global_statement] = STATE(2366), - [sym_filetype_statement] = STATE(2366), - [sym_colorscheme_statement] = STATE(2366), - [sym_lua_statement] = STATE(2366), - [sym_ruby_statement] = STATE(2366), - [sym_python_statement] = STATE(2366), - [sym_perl_statement] = STATE(2366), - [sym_for_loop] = STATE(2366), - [sym_while_loop] = STATE(2366), - [sym_if_statement] = STATE(2366), - [sym_try_statement] = STATE(2366), - [sym_throw_statement] = STATE(2366), - [sym_autocmd_statement] = STATE(2366), - [sym_augroup_statement] = STATE(2366), - [sym_bang_filter_statement] = STATE(2366), - [sym_let_statement] = STATE(2366), - [sym_const_statement] = STATE(2366), - [sym_set_statement] = STATE(2366), - [sym_setlocal_statement] = STATE(2366), - [sym_unlet_statement] = STATE(2366), - [sym_call_statement] = STATE(2366), - [sym_echo_statement] = STATE(2366), - [sym_echon_statement] = STATE(2366), - [sym_echohl_statement] = STATE(2366), - [sym_echomsg_statement] = STATE(2366), - [sym_echoerr_statement] = STATE(2366), - [sym_execute_statement] = STATE(2366), - [sym_silent_statement] = STATE(2366), - [sym_user_command] = STATE(2366), - [sym_function_definition] = STATE(2366), - [sym_range_statement] = STATE(2366), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2366), - [sym_map_statement] = STATE(2366), - [sym_highlight_statement] = STATE(2366), - [sym_syntax_statement] = STATE(2366), - [sym_sign_statement] = STATE(2366), - [aux_sym__statement_repeat1] = STATE(141), - [anon_sym_COLON] = ACTIONS(235), - [sym_command_name] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(241), - [sym_mark] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_DOT2] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(259), - [anon_sym_BSLASH_SLASH] = ACTIONS(262), - [anon_sym_BSLASH_QMARK] = ACTIONS(262), - [anon_sym_BSLASH_AMP] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [sym_register] = ACTIONS(268), - [sym__newline_or_pipe] = ACTIONS(424), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(424), - [sym__function] = ACTIONS(274), - [sym__for] = ACTIONS(277), - [sym__while] = ACTIONS(280), - [sym__if] = ACTIONS(283), - [sym__try] = ACTIONS(288), - [sym__catch] = ACTIONS(286), - [sym__finally] = ACTIONS(286), - [sym__endtry] = ACTIONS(286), - [sym__const] = ACTIONS(291), - [sym__normal] = ACTIONS(294), - [sym__return] = ACTIONS(297), - [sym__perl] = ACTIONS(300), - [sym__lua] = ACTIONS(303), - [sym__ruby] = ACTIONS(306), - [sym__python] = ACTIONS(309), - [sym__throw] = ACTIONS(312), - [sym__execute] = ACTIONS(315), - [sym__autocmd] = ACTIONS(318), - [sym__silent] = ACTIONS(321), - [sym__echo] = ACTIONS(324), - [sym__echon] = ACTIONS(327), - [sym__echohl] = ACTIONS(330), - [sym__echomsg] = ACTIONS(333), - [sym__echoerr] = ACTIONS(336), - [sym__map] = ACTIONS(339), - [sym__nmap] = ACTIONS(339), - [sym__vmap] = ACTIONS(339), - [sym__xmap] = ACTIONS(339), - [sym__smap] = ACTIONS(339), - [sym__omap] = ACTIONS(339), - [sym__imap] = ACTIONS(339), - [sym__lmap] = ACTIONS(339), - [sym__cmap] = ACTIONS(339), - [sym__tmap] = ACTIONS(339), - [sym__noremap] = ACTIONS(339), - [sym__vnoremap] = ACTIONS(339), - [sym__nnoremap] = ACTIONS(339), - [sym__xnoremap] = ACTIONS(339), - [sym__snoremap] = ACTIONS(339), - [sym__onoremap] = ACTIONS(339), - [sym__inoremap] = ACTIONS(339), - [sym__lnoremap] = ACTIONS(339), - [sym__cnoremap] = ACTIONS(339), - [sym__tnoremap] = ACTIONS(339), - [sym__augroup] = ACTIONS(342), - [sym__highlight] = ACTIONS(345), - [sym__syntax] = ACTIONS(348), - [sym__set] = ACTIONS(351), - [sym__setlocal] = ACTIONS(354), - [sym__setfiletype] = ACTIONS(357), - [sym__browse] = ACTIONS(360), - [sym__options] = ACTIONS(363), - [sym__startinsert] = ACTIONS(366), - [sym__stopinsert] = ACTIONS(369), - [sym__scriptencoding] = ACTIONS(372), - [sym__source] = ACTIONS(375), - [sym__global] = ACTIONS(378), - [sym__colorscheme] = ACTIONS(381), - [sym__comclear] = ACTIONS(384), - [sym__delcommand] = ACTIONS(387), - [sym__runtime] = ACTIONS(390), - [sym__wincmd] = ACTIONS(393), - [sym__sign] = ACTIONS(396), - [sym__filetype] = ACTIONS(399), - [sym__let] = ACTIONS(402), - [sym__unlet] = ACTIONS(405), - [sym__call] = ACTIONS(408), - [sym__break] = ACTIONS(411), - [sym__continue] = ACTIONS(414), - [sym_unknown_command_name] = ACTIONS(417), - }, - [18] = { - [sym__cmd_separator] = STATE(248), - [aux_sym__separated_statements] = STATE(15), - [sym__statement] = STATE(2366), - [sym_unknown_builtin_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_break_statement] = STATE(2366), - [sym_continue_statement] = STATE(2366), - [sym_normal_statement] = STATE(2366), - [sym_setfiletype_statement] = STATE(2366), - [sym_options_statement] = STATE(2366), - [sym_startinsert_statement] = STATE(2366), - [sym_stopinsert_statement] = STATE(2366), - [sym_scriptencoding_statement] = STATE(2366), - [sym_comclear_statement] = STATE(2366), - [sym_delcommand_statement] = STATE(2366), - [sym_runtime_statement] = STATE(2366), - [sym_wincmd_statement] = STATE(2366), - [sym_source_statement] = STATE(2366), - [sym_global_statement] = STATE(2366), - [sym_filetype_statement] = STATE(2366), - [sym_colorscheme_statement] = STATE(2366), - [sym_lua_statement] = STATE(2366), - [sym_ruby_statement] = STATE(2366), - [sym_python_statement] = STATE(2366), - [sym_perl_statement] = STATE(2366), - [sym_for_loop] = STATE(2366), - [sym_while_loop] = STATE(2366), - [sym_if_statement] = STATE(2366), - [sym_try_statement] = STATE(2366), - [sym_throw_statement] = STATE(2366), - [sym_autocmd_statement] = STATE(2366), - [sym_augroup_statement] = STATE(2366), - [sym_bang_filter_statement] = STATE(2366), - [sym_let_statement] = STATE(2366), - [sym_const_statement] = STATE(2366), - [sym_set_statement] = STATE(2366), - [sym_setlocal_statement] = STATE(2366), - [sym_unlet_statement] = STATE(2366), - [sym_call_statement] = STATE(2366), - [sym_echo_statement] = STATE(2366), - [sym_echon_statement] = STATE(2366), - [sym_echohl_statement] = STATE(2366), - [sym_echomsg_statement] = STATE(2366), - [sym_echoerr_statement] = STATE(2366), - [sym_execute_statement] = STATE(2366), - [sym_silent_statement] = STATE(2366), - [sym_user_command] = STATE(2366), - [sym_function_definition] = STATE(2366), - [sym_range_statement] = STATE(2366), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2366), - [sym_map_statement] = STATE(2366), - [sym_highlight_statement] = STATE(2366), - [sym_syntax_statement] = STATE(2366), - [sym_sign_statement] = STATE(2366), + [aux_sym__separated_statements] = STATE(18), + [sym__statement] = STATE(2407), + [sym_unknown_builtin_statement] = STATE(2407), + [sym_return_statement] = STATE(2407), + [sym_break_statement] = STATE(2407), + [sym_continue_statement] = STATE(2407), + [sym_normal_statement] = STATE(2407), + [sym_setfiletype_statement] = STATE(2407), + [sym_options_statement] = STATE(2407), + [sym_startinsert_statement] = STATE(2407), + [sym_stopinsert_statement] = STATE(2407), + [sym_scriptencoding_statement] = STATE(2407), + [sym_comclear_statement] = STATE(2407), + [sym_delcommand_statement] = STATE(2407), + [sym_runtime_statement] = STATE(2407), + [sym_wincmd_statement] = STATE(2407), + [sym_source_statement] = STATE(2407), + [sym_global_statement] = STATE(2407), + [sym_filetype_statement] = STATE(2407), + [sym_colorscheme_statement] = STATE(2407), + [sym_lua_statement] = STATE(2407), + [sym_ruby_statement] = STATE(2407), + [sym_python_statement] = STATE(2407), + [sym_perl_statement] = STATE(2407), + [sym_for_loop] = STATE(2407), + [sym_while_loop] = STATE(2407), + [sym_if_statement] = STATE(2407), + [sym_try_statement] = STATE(2407), + [sym_throw_statement] = STATE(2407), + [sym_autocmd_statement] = STATE(2407), + [sym_augroup_statement] = STATE(2407), + [sym_bang_filter_statement] = STATE(2407), + [sym_let_statement] = STATE(2407), + [sym_const_statement] = STATE(2407), + [sym_set_statement] = STATE(2407), + [sym_setlocal_statement] = STATE(2407), + [sym_unlet_statement] = STATE(2407), + [sym_call_statement] = STATE(2407), + [sym_echo_statement] = STATE(2407), + [sym_echon_statement] = STATE(2407), + [sym_echohl_statement] = STATE(2407), + [sym_echomsg_statement] = STATE(2407), + [sym_echoerr_statement] = STATE(2407), + [sym_execute_statement] = STATE(2407), + [sym_silent_statement] = STATE(2407), + [sym_user_command] = STATE(2407), + [sym_function_definition] = STATE(2407), + [sym_range_statement] = STATE(2407), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2407), + [sym_map_statement] = STATE(2407), + [sym_highlight_statement] = STATE(2407), + [sym_syntax_statement] = STATE(2407), + [sym_sign_statement] = STATE(2407), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -29182,17 +28284,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(207), + [sym__newline_or_pipe] = ACTIONS(163), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(207), + [sym_comment] = ACTIONS(163), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), + [sym__elseif] = ACTIONS(241), + [sym__else] = ACTIONS(241), + [sym__endif] = ACTIONS(241), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(427), - [sym__finally] = ACTIONS(427), - [sym__endtry] = ACTIONS(427), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -29256,68 +28358,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [19] = { + [18] = { [sym__cmd_separator] = STATE(248), - [aux_sym__separated_statements] = STATE(17), - [sym__statement] = STATE(2366), - [sym_unknown_builtin_statement] = STATE(2366), - [sym_return_statement] = STATE(2366), - [sym_break_statement] = STATE(2366), - [sym_continue_statement] = STATE(2366), - [sym_normal_statement] = STATE(2366), - [sym_setfiletype_statement] = STATE(2366), - [sym_options_statement] = STATE(2366), - [sym_startinsert_statement] = STATE(2366), - [sym_stopinsert_statement] = STATE(2366), - [sym_scriptencoding_statement] = STATE(2366), - [sym_comclear_statement] = STATE(2366), - [sym_delcommand_statement] = STATE(2366), - [sym_runtime_statement] = STATE(2366), - [sym_wincmd_statement] = STATE(2366), - [sym_source_statement] = STATE(2366), - [sym_global_statement] = STATE(2366), - [sym_filetype_statement] = STATE(2366), - [sym_colorscheme_statement] = STATE(2366), - [sym_lua_statement] = STATE(2366), - [sym_ruby_statement] = STATE(2366), - [sym_python_statement] = STATE(2366), - [sym_perl_statement] = STATE(2366), - [sym_for_loop] = STATE(2366), - [sym_while_loop] = STATE(2366), - [sym_if_statement] = STATE(2366), - [sym_try_statement] = STATE(2366), - [sym_throw_statement] = STATE(2366), - [sym_autocmd_statement] = STATE(2366), - [sym_augroup_statement] = STATE(2366), - [sym_bang_filter_statement] = STATE(2366), - [sym_let_statement] = STATE(2366), - [sym_const_statement] = STATE(2366), - [sym_set_statement] = STATE(2366), - [sym_setlocal_statement] = STATE(2366), - [sym_unlet_statement] = STATE(2366), - [sym_call_statement] = STATE(2366), - [sym_echo_statement] = STATE(2366), - [sym_echon_statement] = STATE(2366), - [sym_echohl_statement] = STATE(2366), - [sym_echomsg_statement] = STATE(2366), - [sym_echoerr_statement] = STATE(2366), - [sym_execute_statement] = STATE(2366), - [sym_silent_statement] = STATE(2366), - [sym_user_command] = STATE(2366), - [sym_function_definition] = STATE(2366), - [sym_range_statement] = STATE(2366), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2366), - [sym_map_statement] = STATE(2366), - [sym_highlight_statement] = STATE(2366), - [sym_syntax_statement] = STATE(2366), - [sym_sign_statement] = STATE(2366), + [aux_sym__separated_statements] = STATE(18), + [sym__statement] = STATE(2407), + [sym_unknown_builtin_statement] = STATE(2407), + [sym_return_statement] = STATE(2407), + [sym_break_statement] = STATE(2407), + [sym_continue_statement] = STATE(2407), + [sym_normal_statement] = STATE(2407), + [sym_setfiletype_statement] = STATE(2407), + [sym_options_statement] = STATE(2407), + [sym_startinsert_statement] = STATE(2407), + [sym_stopinsert_statement] = STATE(2407), + [sym_scriptencoding_statement] = STATE(2407), + [sym_comclear_statement] = STATE(2407), + [sym_delcommand_statement] = STATE(2407), + [sym_runtime_statement] = STATE(2407), + [sym_wincmd_statement] = STATE(2407), + [sym_source_statement] = STATE(2407), + [sym_global_statement] = STATE(2407), + [sym_filetype_statement] = STATE(2407), + [sym_colorscheme_statement] = STATE(2407), + [sym_lua_statement] = STATE(2407), + [sym_ruby_statement] = STATE(2407), + [sym_python_statement] = STATE(2407), + [sym_perl_statement] = STATE(2407), + [sym_for_loop] = STATE(2407), + [sym_while_loop] = STATE(2407), + [sym_if_statement] = STATE(2407), + [sym_try_statement] = STATE(2407), + [sym_throw_statement] = STATE(2407), + [sym_autocmd_statement] = STATE(2407), + [sym_augroup_statement] = STATE(2407), + [sym_bang_filter_statement] = STATE(2407), + [sym_let_statement] = STATE(2407), + [sym_const_statement] = STATE(2407), + [sym_set_statement] = STATE(2407), + [sym_setlocal_statement] = STATE(2407), + [sym_unlet_statement] = STATE(2407), + [sym_call_statement] = STATE(2407), + [sym_echo_statement] = STATE(2407), + [sym_echon_statement] = STATE(2407), + [sym_echohl_statement] = STATE(2407), + [sym_echomsg_statement] = STATE(2407), + [sym_echoerr_statement] = STATE(2407), + [sym_execute_statement] = STATE(2407), + [sym_silent_statement] = STATE(2407), + [sym_user_command] = STATE(2407), + [sym_function_definition] = STATE(2407), + [sym_range_statement] = STATE(2407), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2407), + [sym_map_statement] = STATE(2407), + [sym_highlight_statement] = STATE(2407), + [sym_syntax_statement] = STATE(2407), + [sym_sign_statement] = STATE(2407), + [aux_sym__statement_repeat1] = STATE(141), + [anon_sym_COLON] = ACTIONS(243), + [sym_command_name] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(249), + [sym_mark] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(255), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT2] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_BSLASH_SLASH] = ACTIONS(270), + [anon_sym_BSLASH_QMARK] = ACTIONS(270), + [anon_sym_BSLASH_AMP] = ACTIONS(270), + [sym_integer_literal] = ACTIONS(273), + [sym_register] = ACTIONS(276), + [sym__newline_or_pipe] = ACTIONS(279), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(279), + [sym__function] = ACTIONS(282), + [sym__for] = ACTIONS(285), + [sym__while] = ACTIONS(288), + [sym__if] = ACTIONS(291), + [sym__elseif] = ACTIONS(294), + [sym__else] = ACTIONS(294), + [sym__endif] = ACTIONS(294), + [sym__try] = ACTIONS(296), + [sym__const] = ACTIONS(299), + [sym__normal] = ACTIONS(302), + [sym__return] = ACTIONS(305), + [sym__perl] = ACTIONS(308), + [sym__lua] = ACTIONS(311), + [sym__ruby] = ACTIONS(314), + [sym__python] = ACTIONS(317), + [sym__throw] = ACTIONS(320), + [sym__execute] = ACTIONS(323), + [sym__autocmd] = ACTIONS(326), + [sym__silent] = ACTIONS(329), + [sym__echo] = ACTIONS(332), + [sym__echon] = ACTIONS(335), + [sym__echohl] = ACTIONS(338), + [sym__echomsg] = ACTIONS(341), + [sym__echoerr] = ACTIONS(344), + [sym__map] = ACTIONS(347), + [sym__nmap] = ACTIONS(347), + [sym__vmap] = ACTIONS(347), + [sym__xmap] = ACTIONS(347), + [sym__smap] = ACTIONS(347), + [sym__omap] = ACTIONS(347), + [sym__imap] = ACTIONS(347), + [sym__lmap] = ACTIONS(347), + [sym__cmap] = ACTIONS(347), + [sym__tmap] = ACTIONS(347), + [sym__noremap] = ACTIONS(347), + [sym__vnoremap] = ACTIONS(347), + [sym__nnoremap] = ACTIONS(347), + [sym__xnoremap] = ACTIONS(347), + [sym__snoremap] = ACTIONS(347), + [sym__onoremap] = ACTIONS(347), + [sym__inoremap] = ACTIONS(347), + [sym__lnoremap] = ACTIONS(347), + [sym__cnoremap] = ACTIONS(347), + [sym__tnoremap] = ACTIONS(347), + [sym__augroup] = ACTIONS(350), + [sym__highlight] = ACTIONS(353), + [sym__syntax] = ACTIONS(356), + [sym__set] = ACTIONS(359), + [sym__setlocal] = ACTIONS(362), + [sym__setfiletype] = ACTIONS(365), + [sym__browse] = ACTIONS(368), + [sym__options] = ACTIONS(371), + [sym__startinsert] = ACTIONS(374), + [sym__stopinsert] = ACTIONS(377), + [sym__scriptencoding] = ACTIONS(380), + [sym__source] = ACTIONS(383), + [sym__global] = ACTIONS(386), + [sym__colorscheme] = ACTIONS(389), + [sym__comclear] = ACTIONS(392), + [sym__delcommand] = ACTIONS(395), + [sym__runtime] = ACTIONS(398), + [sym__wincmd] = ACTIONS(401), + [sym__sign] = ACTIONS(404), + [sym__filetype] = ACTIONS(407), + [sym__let] = ACTIONS(410), + [sym__unlet] = ACTIONS(413), + [sym__call] = ACTIONS(416), + [sym__break] = ACTIONS(419), + [sym__continue] = ACTIONS(422), + [sym_unknown_command_name] = ACTIONS(425), + }, + [19] = { + [sym__cmd_separator] = STATE(246), + [aux_sym__separated_statements] = STATE(19), + [sym__statement] = STATE(2449), + [sym_unknown_builtin_statement] = STATE(2449), + [sym_return_statement] = STATE(2449), + [sym_break_statement] = STATE(2449), + [sym_continue_statement] = STATE(2449), + [sym_normal_statement] = STATE(2449), + [sym_setfiletype_statement] = STATE(2449), + [sym_options_statement] = STATE(2449), + [sym_startinsert_statement] = STATE(2449), + [sym_stopinsert_statement] = STATE(2449), + [sym_scriptencoding_statement] = STATE(2449), + [sym_comclear_statement] = STATE(2449), + [sym_delcommand_statement] = STATE(2449), + [sym_runtime_statement] = STATE(2449), + [sym_wincmd_statement] = STATE(2449), + [sym_source_statement] = STATE(2449), + [sym_global_statement] = STATE(2449), + [sym_filetype_statement] = STATE(2449), + [sym_colorscheme_statement] = STATE(2449), + [sym_lua_statement] = STATE(2449), + [sym_ruby_statement] = STATE(2449), + [sym_python_statement] = STATE(2449), + [sym_perl_statement] = STATE(2449), + [sym_for_loop] = STATE(2449), + [sym_while_loop] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_try_statement] = STATE(2449), + [sym_throw_statement] = STATE(2449), + [sym_autocmd_statement] = STATE(2449), + [sym_augroup_statement] = STATE(2449), + [sym_bang_filter_statement] = STATE(2449), + [sym_let_statement] = STATE(2449), + [sym_const_statement] = STATE(2449), + [sym_set_statement] = STATE(2449), + [sym_setlocal_statement] = STATE(2449), + [sym_unlet_statement] = STATE(2449), + [sym_call_statement] = STATE(2449), + [sym_echo_statement] = STATE(2449), + [sym_echon_statement] = STATE(2449), + [sym_echohl_statement] = STATE(2449), + [sym_echomsg_statement] = STATE(2449), + [sym_echoerr_statement] = STATE(2449), + [sym_execute_statement] = STATE(2449), + [sym_silent_statement] = STATE(2449), + [sym_user_command] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_range_statement] = STATE(2449), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2449), + [sym_map_statement] = STATE(2449), + [sym_highlight_statement] = STATE(2449), + [sym_syntax_statement] = STATE(2449), + [sym_sign_statement] = STATE(2449), + [aux_sym__statement_repeat1] = STATE(141), + [anon_sym_COLON] = ACTIONS(243), + [sym_command_name] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(249), + [sym_mark] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(255), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT2] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_BSLASH_SLASH] = ACTIONS(270), + [anon_sym_BSLASH_QMARK] = ACTIONS(270), + [anon_sym_BSLASH_AMP] = ACTIONS(270), + [sym_integer_literal] = ACTIONS(273), + [sym_register] = ACTIONS(276), + [sym__newline_or_pipe] = ACTIONS(428), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(428), + [sym__function] = ACTIONS(282), + [sym__for] = ACTIONS(285), + [sym__while] = ACTIONS(288), + [sym__if] = ACTIONS(291), + [sym__try] = ACTIONS(296), + [sym__catch] = ACTIONS(294), + [sym__finally] = ACTIONS(294), + [sym__endtry] = ACTIONS(294), + [sym__const] = ACTIONS(299), + [sym__normal] = ACTIONS(302), + [sym__return] = ACTIONS(305), + [sym__perl] = ACTIONS(308), + [sym__lua] = ACTIONS(311), + [sym__ruby] = ACTIONS(314), + [sym__python] = ACTIONS(317), + [sym__throw] = ACTIONS(320), + [sym__execute] = ACTIONS(323), + [sym__autocmd] = ACTIONS(326), + [sym__silent] = ACTIONS(329), + [sym__echo] = ACTIONS(332), + [sym__echon] = ACTIONS(335), + [sym__echohl] = ACTIONS(338), + [sym__echomsg] = ACTIONS(341), + [sym__echoerr] = ACTIONS(344), + [sym__map] = ACTIONS(347), + [sym__nmap] = ACTIONS(347), + [sym__vmap] = ACTIONS(347), + [sym__xmap] = ACTIONS(347), + [sym__smap] = ACTIONS(347), + [sym__omap] = ACTIONS(347), + [sym__imap] = ACTIONS(347), + [sym__lmap] = ACTIONS(347), + [sym__cmap] = ACTIONS(347), + [sym__tmap] = ACTIONS(347), + [sym__noremap] = ACTIONS(347), + [sym__vnoremap] = ACTIONS(347), + [sym__nnoremap] = ACTIONS(347), + [sym__xnoremap] = ACTIONS(347), + [sym__snoremap] = ACTIONS(347), + [sym__onoremap] = ACTIONS(347), + [sym__inoremap] = ACTIONS(347), + [sym__lnoremap] = ACTIONS(347), + [sym__cnoremap] = ACTIONS(347), + [sym__tnoremap] = ACTIONS(347), + [sym__augroup] = ACTIONS(350), + [sym__highlight] = ACTIONS(353), + [sym__syntax] = ACTIONS(356), + [sym__set] = ACTIONS(359), + [sym__setlocal] = ACTIONS(362), + [sym__setfiletype] = ACTIONS(365), + [sym__browse] = ACTIONS(368), + [sym__options] = ACTIONS(371), + [sym__startinsert] = ACTIONS(374), + [sym__stopinsert] = ACTIONS(377), + [sym__scriptencoding] = ACTIONS(380), + [sym__source] = ACTIONS(383), + [sym__global] = ACTIONS(386), + [sym__colorscheme] = ACTIONS(389), + [sym__comclear] = ACTIONS(392), + [sym__delcommand] = ACTIONS(395), + [sym__runtime] = ACTIONS(398), + [sym__wincmd] = ACTIONS(401), + [sym__sign] = ACTIONS(404), + [sym__filetype] = ACTIONS(407), + [sym__let] = ACTIONS(410), + [sym__unlet] = ACTIONS(413), + [sym__call] = ACTIONS(416), + [sym__break] = ACTIONS(419), + [sym__continue] = ACTIONS(422), + [sym_unknown_command_name] = ACTIONS(425), + }, + [20] = { + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(47), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -29333,17 +28737,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(207), + [sym__newline_or_pipe] = ACTIONS(431), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(207), + [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(433), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), - [sym__catch] = ACTIONS(429), - [sym__finally] = ACTIONS(429), - [sym__endtry] = ACTIONS(429), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -29407,68 +28809,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [20] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(48), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [21] = { + [sym__cmd_separator] = STATE(253), + [aux_sym__separated_statements] = STATE(30), + [sym__statement] = STATE(2415), + [sym_unknown_builtin_statement] = STATE(2415), + [sym_return_statement] = STATE(2415), + [sym_break_statement] = STATE(2415), + [sym_continue_statement] = STATE(2415), + [sym_normal_statement] = STATE(2415), + [sym_setfiletype_statement] = STATE(2415), + [sym_options_statement] = STATE(2415), + [sym_startinsert_statement] = STATE(2415), + [sym_stopinsert_statement] = STATE(2415), + [sym_scriptencoding_statement] = STATE(2415), + [sym_comclear_statement] = STATE(2415), + [sym_delcommand_statement] = STATE(2415), + [sym_runtime_statement] = STATE(2415), + [sym_wincmd_statement] = STATE(2415), + [sym_source_statement] = STATE(2415), + [sym_global_statement] = STATE(2415), + [sym_filetype_statement] = STATE(2415), + [sym_colorscheme_statement] = STATE(2415), + [sym_lua_statement] = STATE(2415), + [sym_ruby_statement] = STATE(2415), + [sym_python_statement] = STATE(2415), + [sym_perl_statement] = STATE(2415), + [sym_for_loop] = STATE(2415), + [sym_while_loop] = STATE(2415), + [sym_if_statement] = STATE(2415), + [sym_try_statement] = STATE(2415), + [sym_throw_statement] = STATE(2415), + [sym_autocmd_statement] = STATE(2415), + [sym_augroup_statement] = STATE(2415), + [sym_bang_filter_statement] = STATE(2415), + [sym_let_statement] = STATE(2415), + [sym_const_statement] = STATE(2415), + [sym_set_statement] = STATE(2415), + [sym_setlocal_statement] = STATE(2415), + [sym_unlet_statement] = STATE(2415), + [sym_call_statement] = STATE(2415), + [sym_echo_statement] = STATE(2415), + [sym_echon_statement] = STATE(2415), + [sym_echohl_statement] = STATE(2415), + [sym_echomsg_statement] = STATE(2415), + [sym_echoerr_statement] = STATE(2415), + [sym_execute_statement] = STATE(2415), + [sym_silent_statement] = STATE(2415), + [sym_user_command] = STATE(2415), + [sym_function_definition] = STATE(2415), + [sym_range_statement] = STATE(2415), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2415), + [sym_map_statement] = STATE(2415), + [sym_highlight_statement] = STATE(2415), + [sym_syntax_statement] = STATE(2415), + [sym_sign_statement] = STATE(2415), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -29484,13 +28886,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(431), + [sym__newline_or_pipe] = ACTIONS(435), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(431), + [sym_comment] = ACTIONS(435), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(433), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), + [sym__endwhile] = ACTIONS(437), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__const] = ACTIONS(43), @@ -29556,68 +28958,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [21] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(48), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [22] = { + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(47), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -29637,7 +29039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(3), [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(435), + [sym__endfunction] = ACTIONS(439), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -29705,68 +29107,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [22] = { - [sym__cmd_separator] = STATE(250), - [aux_sym__separated_statements] = STATE(36), - [sym__statement] = STATE(2363), - [sym_unknown_builtin_statement] = STATE(2363), - [sym_return_statement] = STATE(2363), - [sym_break_statement] = STATE(2363), - [sym_continue_statement] = STATE(2363), - [sym_normal_statement] = STATE(2363), - [sym_setfiletype_statement] = STATE(2363), - [sym_options_statement] = STATE(2363), - [sym_startinsert_statement] = STATE(2363), - [sym_stopinsert_statement] = STATE(2363), - [sym_scriptencoding_statement] = STATE(2363), - [sym_comclear_statement] = STATE(2363), - [sym_delcommand_statement] = STATE(2363), - [sym_runtime_statement] = STATE(2363), - [sym_wincmd_statement] = STATE(2363), - [sym_source_statement] = STATE(2363), - [sym_global_statement] = STATE(2363), - [sym_filetype_statement] = STATE(2363), - [sym_colorscheme_statement] = STATE(2363), - [sym_lua_statement] = STATE(2363), - [sym_ruby_statement] = STATE(2363), - [sym_python_statement] = STATE(2363), - [sym_perl_statement] = STATE(2363), - [sym_for_loop] = STATE(2363), - [sym_while_loop] = STATE(2363), - [sym_if_statement] = STATE(2363), - [sym_try_statement] = STATE(2363), - [sym_throw_statement] = STATE(2363), - [sym_autocmd_statement] = STATE(2363), - [sym_augroup_statement] = STATE(2363), - [sym_bang_filter_statement] = STATE(2363), - [sym_let_statement] = STATE(2363), - [sym_const_statement] = STATE(2363), - [sym_set_statement] = STATE(2363), - [sym_setlocal_statement] = STATE(2363), - [sym_unlet_statement] = STATE(2363), - [sym_call_statement] = STATE(2363), - [sym_echo_statement] = STATE(2363), - [sym_echon_statement] = STATE(2363), - [sym_echohl_statement] = STATE(2363), - [sym_echomsg_statement] = STATE(2363), - [sym_echoerr_statement] = STATE(2363), - [sym_execute_statement] = STATE(2363), - [sym_silent_statement] = STATE(2363), - [sym_user_command] = STATE(2363), - [sym_function_definition] = STATE(2363), - [sym_range_statement] = STATE(2363), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2363), - [sym_map_statement] = STATE(2363), - [sym_highlight_statement] = STATE(2363), - [sym_syntax_statement] = STATE(2363), - [sym_sign_statement] = STATE(2363), + [23] = { + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(22), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -29782,12 +29184,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(201), + [sym__newline_or_pipe] = ACTIONS(431), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(201), + [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(441), [sym__for] = ACTIONS(35), - [sym__endfor] = ACTIONS(437), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), @@ -29854,68 +29256,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [23] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(48), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [24] = { + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(47), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -29935,7 +29337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(3), [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(439), + [sym__endfunction] = ACTIONS(443), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -30003,68 +29405,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [24] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(20), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [25] = { + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(47), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -30084,7 +29486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(3), [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(441), + [sym__endfunction] = ACTIONS(445), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -30152,68 +29554,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [25] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(48), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [26] = { + [sym__cmd_separator] = STATE(260), + [aux_sym__separated_statements] = STATE(41), + [sym__statement] = STATE(2538), + [sym_unknown_builtin_statement] = STATE(2538), + [sym_return_statement] = STATE(2538), + [sym_break_statement] = STATE(2538), + [sym_continue_statement] = STATE(2538), + [sym_normal_statement] = STATE(2538), + [sym_setfiletype_statement] = STATE(2538), + [sym_options_statement] = STATE(2538), + [sym_startinsert_statement] = STATE(2538), + [sym_stopinsert_statement] = STATE(2538), + [sym_scriptencoding_statement] = STATE(2538), + [sym_comclear_statement] = STATE(2538), + [sym_delcommand_statement] = STATE(2538), + [sym_runtime_statement] = STATE(2538), + [sym_wincmd_statement] = STATE(2538), + [sym_source_statement] = STATE(2538), + [sym_global_statement] = STATE(2538), + [sym_filetype_statement] = STATE(2538), + [sym_colorscheme_statement] = STATE(2538), + [sym_lua_statement] = STATE(2538), + [sym_ruby_statement] = STATE(2538), + [sym_python_statement] = STATE(2538), + [sym_perl_statement] = STATE(2538), + [sym_for_loop] = STATE(2538), + [sym_while_loop] = STATE(2538), + [sym_if_statement] = STATE(2538), + [sym_try_statement] = STATE(2538), + [sym_throw_statement] = STATE(2538), + [sym_autocmd_statement] = STATE(2538), + [sym_augroup_statement] = STATE(2538), + [sym_bang_filter_statement] = STATE(2538), + [sym_let_statement] = STATE(2538), + [sym_const_statement] = STATE(2538), + [sym_set_statement] = STATE(2538), + [sym_setlocal_statement] = STATE(2538), + [sym_unlet_statement] = STATE(2538), + [sym_call_statement] = STATE(2538), + [sym_echo_statement] = STATE(2538), + [sym_echon_statement] = STATE(2538), + [sym_echohl_statement] = STATE(2538), + [sym_echomsg_statement] = STATE(2538), + [sym_echoerr_statement] = STATE(2538), + [sym_execute_statement] = STATE(2538), + [sym_silent_statement] = STATE(2538), + [sym_user_command] = STATE(2538), + [sym_function_definition] = STATE(2538), + [sym_range_statement] = STATE(2538), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2538), + [sym_map_statement] = STATE(2538), + [sym_highlight_statement] = STATE(2538), + [sym_syntax_statement] = STATE(2538), + [sym_sign_statement] = STATE(2538), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -30229,12 +29631,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(431), + [sym__newline_or_pipe] = ACTIONS(201), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(431), + [sym_comment] = ACTIONS(201), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(443), [sym__for] = ACTIONS(35), + [sym__endfor] = ACTIONS(447), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), @@ -30301,217 +29703,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [26] = { - [sym__cmd_separator] = STATE(251), - [aux_sym__separated_statements] = STATE(26), - [sym__statement] = STATE(2368), - [sym_unknown_builtin_statement] = STATE(2368), - [sym_return_statement] = STATE(2368), - [sym_break_statement] = STATE(2368), - [sym_continue_statement] = STATE(2368), - [sym_normal_statement] = STATE(2368), - [sym_setfiletype_statement] = STATE(2368), - [sym_options_statement] = STATE(2368), - [sym_startinsert_statement] = STATE(2368), - [sym_stopinsert_statement] = STATE(2368), - [sym_scriptencoding_statement] = STATE(2368), - [sym_comclear_statement] = STATE(2368), - [sym_delcommand_statement] = STATE(2368), - [sym_runtime_statement] = STATE(2368), - [sym_wincmd_statement] = STATE(2368), - [sym_source_statement] = STATE(2368), - [sym_global_statement] = STATE(2368), - [sym_filetype_statement] = STATE(2368), - [sym_colorscheme_statement] = STATE(2368), - [sym_lua_statement] = STATE(2368), - [sym_ruby_statement] = STATE(2368), - [sym_python_statement] = STATE(2368), - [sym_perl_statement] = STATE(2368), - [sym_for_loop] = STATE(2368), - [sym_while_loop] = STATE(2368), - [sym_if_statement] = STATE(2368), - [sym_try_statement] = STATE(2368), - [sym_throw_statement] = STATE(2368), - [sym_autocmd_statement] = STATE(2368), - [sym_augroup_statement] = STATE(2368), - [sym_bang_filter_statement] = STATE(2368), - [sym_let_statement] = STATE(2368), - [sym_const_statement] = STATE(2368), - [sym_set_statement] = STATE(2368), - [sym_setlocal_statement] = STATE(2368), - [sym_unlet_statement] = STATE(2368), - [sym_call_statement] = STATE(2368), - [sym_echo_statement] = STATE(2368), - [sym_echon_statement] = STATE(2368), - [sym_echohl_statement] = STATE(2368), - [sym_echomsg_statement] = STATE(2368), - [sym_echoerr_statement] = STATE(2368), - [sym_execute_statement] = STATE(2368), - [sym_silent_statement] = STATE(2368), - [sym_user_command] = STATE(2368), - [sym_function_definition] = STATE(2368), - [sym_range_statement] = STATE(2368), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2368), - [sym_map_statement] = STATE(2368), - [sym_highlight_statement] = STATE(2368), - [sym_syntax_statement] = STATE(2368), - [sym_sign_statement] = STATE(2368), - [aux_sym__statement_repeat1] = STATE(141), - [anon_sym_COLON] = ACTIONS(235), - [sym_command_name] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(241), - [sym_mark] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_DOT2] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(259), - [anon_sym_BSLASH_SLASH] = ACTIONS(262), - [anon_sym_BSLASH_QMARK] = ACTIONS(262), - [anon_sym_BSLASH_AMP] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [sym_register] = ACTIONS(268), - [sym__newline_or_pipe] = ACTIONS(445), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(445), - [sym__function] = ACTIONS(274), - [sym__for] = ACTIONS(277), - [sym__while] = ACTIONS(280), - [sym__endwhile] = ACTIONS(286), - [sym__if] = ACTIONS(283), - [sym__try] = ACTIONS(288), - [sym__const] = ACTIONS(291), - [sym__normal] = ACTIONS(294), - [sym__return] = ACTIONS(297), - [sym__perl] = ACTIONS(300), - [sym__lua] = ACTIONS(303), - [sym__ruby] = ACTIONS(306), - [sym__python] = ACTIONS(309), - [sym__throw] = ACTIONS(312), - [sym__execute] = ACTIONS(315), - [sym__autocmd] = ACTIONS(318), - [sym__silent] = ACTIONS(321), - [sym__echo] = ACTIONS(324), - [sym__echon] = ACTIONS(327), - [sym__echohl] = ACTIONS(330), - [sym__echomsg] = ACTIONS(333), - [sym__echoerr] = ACTIONS(336), - [sym__map] = ACTIONS(339), - [sym__nmap] = ACTIONS(339), - [sym__vmap] = ACTIONS(339), - [sym__xmap] = ACTIONS(339), - [sym__smap] = ACTIONS(339), - [sym__omap] = ACTIONS(339), - [sym__imap] = ACTIONS(339), - [sym__lmap] = ACTIONS(339), - [sym__cmap] = ACTIONS(339), - [sym__tmap] = ACTIONS(339), - [sym__noremap] = ACTIONS(339), - [sym__vnoremap] = ACTIONS(339), - [sym__nnoremap] = ACTIONS(339), - [sym__xnoremap] = ACTIONS(339), - [sym__snoremap] = ACTIONS(339), - [sym__onoremap] = ACTIONS(339), - [sym__inoremap] = ACTIONS(339), - [sym__lnoremap] = ACTIONS(339), - [sym__cnoremap] = ACTIONS(339), - [sym__tnoremap] = ACTIONS(339), - [sym__augroup] = ACTIONS(342), - [sym__highlight] = ACTIONS(345), - [sym__syntax] = ACTIONS(348), - [sym__set] = ACTIONS(351), - [sym__setlocal] = ACTIONS(354), - [sym__setfiletype] = ACTIONS(357), - [sym__browse] = ACTIONS(360), - [sym__options] = ACTIONS(363), - [sym__startinsert] = ACTIONS(366), - [sym__stopinsert] = ACTIONS(369), - [sym__scriptencoding] = ACTIONS(372), - [sym__source] = ACTIONS(375), - [sym__global] = ACTIONS(378), - [sym__colorscheme] = ACTIONS(381), - [sym__comclear] = ACTIONS(384), - [sym__delcommand] = ACTIONS(387), - [sym__runtime] = ACTIONS(390), - [sym__wincmd] = ACTIONS(393), - [sym__sign] = ACTIONS(396), - [sym__filetype] = ACTIONS(399), - [sym__let] = ACTIONS(402), - [sym__unlet] = ACTIONS(405), - [sym__call] = ACTIONS(408), - [sym__break] = ACTIONS(411), - [sym__continue] = ACTIONS(414), - [sym_unknown_command_name] = ACTIONS(417), - }, [27] = { - [sym__cmd_separator] = STATE(251), - [aux_sym__separated_statements] = STATE(26), - [sym__statement] = STATE(2368), - [sym_unknown_builtin_statement] = STATE(2368), - [sym_return_statement] = STATE(2368), - [sym_break_statement] = STATE(2368), - [sym_continue_statement] = STATE(2368), - [sym_normal_statement] = STATE(2368), - [sym_setfiletype_statement] = STATE(2368), - [sym_options_statement] = STATE(2368), - [sym_startinsert_statement] = STATE(2368), - [sym_stopinsert_statement] = STATE(2368), - [sym_scriptencoding_statement] = STATE(2368), - [sym_comclear_statement] = STATE(2368), - [sym_delcommand_statement] = STATE(2368), - [sym_runtime_statement] = STATE(2368), - [sym_wincmd_statement] = STATE(2368), - [sym_source_statement] = STATE(2368), - [sym_global_statement] = STATE(2368), - [sym_filetype_statement] = STATE(2368), - [sym_colorscheme_statement] = STATE(2368), - [sym_lua_statement] = STATE(2368), - [sym_ruby_statement] = STATE(2368), - [sym_python_statement] = STATE(2368), - [sym_perl_statement] = STATE(2368), - [sym_for_loop] = STATE(2368), - [sym_while_loop] = STATE(2368), - [sym_if_statement] = STATE(2368), - [sym_try_statement] = STATE(2368), - [sym_throw_statement] = STATE(2368), - [sym_autocmd_statement] = STATE(2368), - [sym_augroup_statement] = STATE(2368), - [sym_bang_filter_statement] = STATE(2368), - [sym_let_statement] = STATE(2368), - [sym_const_statement] = STATE(2368), - [sym_set_statement] = STATE(2368), - [sym_setlocal_statement] = STATE(2368), - [sym_unlet_statement] = STATE(2368), - [sym_call_statement] = STATE(2368), - [sym_echo_statement] = STATE(2368), - [sym_echon_statement] = STATE(2368), - [sym_echohl_statement] = STATE(2368), - [sym_echomsg_statement] = STATE(2368), - [sym_echoerr_statement] = STATE(2368), - [sym_execute_statement] = STATE(2368), - [sym_silent_statement] = STATE(2368), - [sym_user_command] = STATE(2368), - [sym_function_definition] = STATE(2368), - [sym_range_statement] = STATE(2368), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2368), - [sym_map_statement] = STATE(2368), - [sym_highlight_statement] = STATE(2368), - [sym_syntax_statement] = STATE(2368), - [sym_sign_statement] = STATE(2368), + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(25), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -30527,13 +29780,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(448), + [sym__newline_or_pipe] = ACTIONS(431), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(448), + [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(449), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), - [sym__endwhile] = ACTIONS(450), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__const] = ACTIONS(43), @@ -30600,67 +29853,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [28] = { - [sym__cmd_separator] = STATE(260), - [aux_sym__separated_statements] = STATE(45), - [sym__statement] = STATE(2473), - [sym_unknown_builtin_statement] = STATE(2473), - [sym_return_statement] = STATE(2473), - [sym_break_statement] = STATE(2473), - [sym_continue_statement] = STATE(2473), - [sym_normal_statement] = STATE(2473), - [sym_setfiletype_statement] = STATE(2473), - [sym_options_statement] = STATE(2473), - [sym_startinsert_statement] = STATE(2473), - [sym_stopinsert_statement] = STATE(2473), - [sym_scriptencoding_statement] = STATE(2473), - [sym_comclear_statement] = STATE(2473), - [sym_delcommand_statement] = STATE(2473), - [sym_runtime_statement] = STATE(2473), - [sym_wincmd_statement] = STATE(2473), - [sym_source_statement] = STATE(2473), - [sym_global_statement] = STATE(2473), - [sym_filetype_statement] = STATE(2473), - [sym_colorscheme_statement] = STATE(2473), - [sym_lua_statement] = STATE(2473), - [sym_ruby_statement] = STATE(2473), - [sym_python_statement] = STATE(2473), - [sym_perl_statement] = STATE(2473), - [sym_for_loop] = STATE(2473), - [sym_while_loop] = STATE(2473), - [sym_if_statement] = STATE(2473), - [sym_try_statement] = STATE(2473), - [sym_throw_statement] = STATE(2473), - [sym_autocmd_statement] = STATE(2473), - [sym_augroup_statement] = STATE(2473), - [sym_bang_filter_statement] = STATE(2473), - [sym_let_statement] = STATE(2473), - [sym_const_statement] = STATE(2473), - [sym_set_statement] = STATE(2473), - [sym_setlocal_statement] = STATE(2473), - [sym_unlet_statement] = STATE(2473), - [sym_call_statement] = STATE(2473), - [sym_echo_statement] = STATE(2473), - [sym_echon_statement] = STATE(2473), - [sym_echohl_statement] = STATE(2473), - [sym_echomsg_statement] = STATE(2473), - [sym_echoerr_statement] = STATE(2473), - [sym_execute_statement] = STATE(2473), - [sym_silent_statement] = STATE(2473), - [sym_user_command] = STATE(2473), - [sym_function_definition] = STATE(2473), - [sym_range_statement] = STATE(2473), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2473), - [sym_map_statement] = STATE(2473), - [sym_highlight_statement] = STATE(2473), - [sym_syntax_statement] = STATE(2473), - [sym_sign_statement] = STATE(2473), + [sym__cmd_separator] = STATE(259), + [aux_sym__separated_statements] = STATE(36), + [sym__statement] = STATE(2491), + [sym_unknown_builtin_statement] = STATE(2491), + [sym_return_statement] = STATE(2491), + [sym_break_statement] = STATE(2491), + [sym_continue_statement] = STATE(2491), + [sym_normal_statement] = STATE(2491), + [sym_setfiletype_statement] = STATE(2491), + [sym_options_statement] = STATE(2491), + [sym_startinsert_statement] = STATE(2491), + [sym_stopinsert_statement] = STATE(2491), + [sym_scriptencoding_statement] = STATE(2491), + [sym_comclear_statement] = STATE(2491), + [sym_delcommand_statement] = STATE(2491), + [sym_runtime_statement] = STATE(2491), + [sym_wincmd_statement] = STATE(2491), + [sym_source_statement] = STATE(2491), + [sym_global_statement] = STATE(2491), + [sym_filetype_statement] = STATE(2491), + [sym_colorscheme_statement] = STATE(2491), + [sym_lua_statement] = STATE(2491), + [sym_ruby_statement] = STATE(2491), + [sym_python_statement] = STATE(2491), + [sym_perl_statement] = STATE(2491), + [sym_for_loop] = STATE(2491), + [sym_while_loop] = STATE(2491), + [sym_if_statement] = STATE(2491), + [sym_try_statement] = STATE(2491), + [sym_throw_statement] = STATE(2491), + [sym_autocmd_statement] = STATE(2491), + [sym_augroup_statement] = STATE(2491), + [sym_bang_filter_statement] = STATE(2491), + [sym_let_statement] = STATE(2491), + [sym_const_statement] = STATE(2491), + [sym_set_statement] = STATE(2491), + [sym_setlocal_statement] = STATE(2491), + [sym_unlet_statement] = STATE(2491), + [sym_call_statement] = STATE(2491), + [sym_echo_statement] = STATE(2491), + [sym_echon_statement] = STATE(2491), + [sym_echohl_statement] = STATE(2491), + [sym_echomsg_statement] = STATE(2491), + [sym_echoerr_statement] = STATE(2491), + [sym_execute_statement] = STATE(2491), + [sym_silent_statement] = STATE(2491), + [sym_user_command] = STATE(2491), + [sym_function_definition] = STATE(2491), + [sym_range_statement] = STATE(2491), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2491), + [sym_map_statement] = STATE(2491), + [sym_highlight_statement] = STATE(2491), + [sym_syntax_statement] = STATE(2491), + [sym_sign_statement] = STATE(2491), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -30676,14 +29929,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(452), + [sym__newline_or_pipe] = ACTIONS(451), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(452), + [sym_comment] = ACTIONS(451), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__endif] = ACTIONS(454), + [sym__endif] = ACTIONS(453), [sym__try] = ACTIONS(41), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), @@ -30749,67 +30002,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [29] = { - [sym__cmd_separator] = STATE(255), - [aux_sym__separated_statements] = STATE(44), - [sym__statement] = STATE(2524), - [sym_unknown_builtin_statement] = STATE(2524), - [sym_return_statement] = STATE(2524), - [sym_break_statement] = STATE(2524), - [sym_continue_statement] = STATE(2524), - [sym_normal_statement] = STATE(2524), - [sym_setfiletype_statement] = STATE(2524), - [sym_options_statement] = STATE(2524), - [sym_startinsert_statement] = STATE(2524), - [sym_stopinsert_statement] = STATE(2524), - [sym_scriptencoding_statement] = STATE(2524), - [sym_comclear_statement] = STATE(2524), - [sym_delcommand_statement] = STATE(2524), - [sym_runtime_statement] = STATE(2524), - [sym_wincmd_statement] = STATE(2524), - [sym_source_statement] = STATE(2524), - [sym_global_statement] = STATE(2524), - [sym_filetype_statement] = STATE(2524), - [sym_colorscheme_statement] = STATE(2524), - [sym_lua_statement] = STATE(2524), - [sym_ruby_statement] = STATE(2524), - [sym_python_statement] = STATE(2524), - [sym_perl_statement] = STATE(2524), - [sym_for_loop] = STATE(2524), - [sym_while_loop] = STATE(2524), - [sym_if_statement] = STATE(2524), - [sym_try_statement] = STATE(2524), - [sym_throw_statement] = STATE(2524), - [sym_autocmd_statement] = STATE(2524), - [sym_augroup_statement] = STATE(2524), - [sym_bang_filter_statement] = STATE(2524), - [sym_let_statement] = STATE(2524), - [sym_const_statement] = STATE(2524), - [sym_set_statement] = STATE(2524), - [sym_setlocal_statement] = STATE(2524), - [sym_unlet_statement] = STATE(2524), - [sym_call_statement] = STATE(2524), - [sym_echo_statement] = STATE(2524), - [sym_echon_statement] = STATE(2524), - [sym_echohl_statement] = STATE(2524), - [sym_echomsg_statement] = STATE(2524), - [sym_echoerr_statement] = STATE(2524), - [sym_execute_statement] = STATE(2524), - [sym_silent_statement] = STATE(2524), - [sym_user_command] = STATE(2524), - [sym_function_definition] = STATE(2524), - [sym_range_statement] = STATE(2524), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2524), - [sym_map_statement] = STATE(2524), - [sym_highlight_statement] = STATE(2524), - [sym_syntax_statement] = STATE(2524), - [sym_sign_statement] = STATE(2524), + [sym__cmd_separator] = STATE(253), + [aux_sym__separated_statements] = STATE(48), + [sym__statement] = STATE(2415), + [sym_unknown_builtin_statement] = STATE(2415), + [sym_return_statement] = STATE(2415), + [sym_break_statement] = STATE(2415), + [sym_continue_statement] = STATE(2415), + [sym_normal_statement] = STATE(2415), + [sym_setfiletype_statement] = STATE(2415), + [sym_options_statement] = STATE(2415), + [sym_startinsert_statement] = STATE(2415), + [sym_stopinsert_statement] = STATE(2415), + [sym_scriptencoding_statement] = STATE(2415), + [sym_comclear_statement] = STATE(2415), + [sym_delcommand_statement] = STATE(2415), + [sym_runtime_statement] = STATE(2415), + [sym_wincmd_statement] = STATE(2415), + [sym_source_statement] = STATE(2415), + [sym_global_statement] = STATE(2415), + [sym_filetype_statement] = STATE(2415), + [sym_colorscheme_statement] = STATE(2415), + [sym_lua_statement] = STATE(2415), + [sym_ruby_statement] = STATE(2415), + [sym_python_statement] = STATE(2415), + [sym_perl_statement] = STATE(2415), + [sym_for_loop] = STATE(2415), + [sym_while_loop] = STATE(2415), + [sym_if_statement] = STATE(2415), + [sym_try_statement] = STATE(2415), + [sym_throw_statement] = STATE(2415), + [sym_autocmd_statement] = STATE(2415), + [sym_augroup_statement] = STATE(2415), + [sym_bang_filter_statement] = STATE(2415), + [sym_let_statement] = STATE(2415), + [sym_const_statement] = STATE(2415), + [sym_set_statement] = STATE(2415), + [sym_setlocal_statement] = STATE(2415), + [sym_unlet_statement] = STATE(2415), + [sym_call_statement] = STATE(2415), + [sym_echo_statement] = STATE(2415), + [sym_echon_statement] = STATE(2415), + [sym_echohl_statement] = STATE(2415), + [sym_echomsg_statement] = STATE(2415), + [sym_echoerr_statement] = STATE(2415), + [sym_execute_statement] = STATE(2415), + [sym_silent_statement] = STATE(2415), + [sym_user_command] = STATE(2415), + [sym_function_definition] = STATE(2415), + [sym_range_statement] = STATE(2415), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2415), + [sym_map_statement] = STATE(2415), + [sym_highlight_statement] = STATE(2415), + [sym_syntax_statement] = STATE(2415), + [sym_sign_statement] = STATE(2415), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -30825,15 +30078,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(456), + [sym__newline_or_pipe] = ACTIONS(435), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(456), + [sym_comment] = ACTIONS(435), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), + [sym__endwhile] = ACTIONS(455), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), - [sym__endtry] = ACTIONS(458), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -30898,67 +30151,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [30] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(41), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [sym__cmd_separator] = STATE(253), + [aux_sym__separated_statements] = STATE(48), + [sym__statement] = STATE(2415), + [sym_unknown_builtin_statement] = STATE(2415), + [sym_return_statement] = STATE(2415), + [sym_break_statement] = STATE(2415), + [sym_continue_statement] = STATE(2415), + [sym_normal_statement] = STATE(2415), + [sym_setfiletype_statement] = STATE(2415), + [sym_options_statement] = STATE(2415), + [sym_startinsert_statement] = STATE(2415), + [sym_stopinsert_statement] = STATE(2415), + [sym_scriptencoding_statement] = STATE(2415), + [sym_comclear_statement] = STATE(2415), + [sym_delcommand_statement] = STATE(2415), + [sym_runtime_statement] = STATE(2415), + [sym_wincmd_statement] = STATE(2415), + [sym_source_statement] = STATE(2415), + [sym_global_statement] = STATE(2415), + [sym_filetype_statement] = STATE(2415), + [sym_colorscheme_statement] = STATE(2415), + [sym_lua_statement] = STATE(2415), + [sym_ruby_statement] = STATE(2415), + [sym_python_statement] = STATE(2415), + [sym_perl_statement] = STATE(2415), + [sym_for_loop] = STATE(2415), + [sym_while_loop] = STATE(2415), + [sym_if_statement] = STATE(2415), + [sym_try_statement] = STATE(2415), + [sym_throw_statement] = STATE(2415), + [sym_autocmd_statement] = STATE(2415), + [sym_augroup_statement] = STATE(2415), + [sym_bang_filter_statement] = STATE(2415), + [sym_let_statement] = STATE(2415), + [sym_const_statement] = STATE(2415), + [sym_set_statement] = STATE(2415), + [sym_setlocal_statement] = STATE(2415), + [sym_unlet_statement] = STATE(2415), + [sym_call_statement] = STATE(2415), + [sym_echo_statement] = STATE(2415), + [sym_echon_statement] = STATE(2415), + [sym_echohl_statement] = STATE(2415), + [sym_echomsg_statement] = STATE(2415), + [sym_echoerr_statement] = STATE(2415), + [sym_execute_statement] = STATE(2415), + [sym_silent_statement] = STATE(2415), + [sym_user_command] = STATE(2415), + [sym_function_definition] = STATE(2415), + [sym_range_statement] = STATE(2415), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2415), + [sym_map_statement] = STATE(2415), + [sym_highlight_statement] = STATE(2415), + [sym_syntax_statement] = STATE(2415), + [sym_sign_statement] = STATE(2415), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -30974,13 +30227,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(431), + [sym__newline_or_pipe] = ACTIONS(435), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(431), + [sym_comment] = ACTIONS(435), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(460), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), + [sym__endwhile] = ACTIONS(457), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__const] = ACTIONS(43), @@ -31047,69 +30300,367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [31] = { - [sym__cmd_separator] = STATE(262), - [aux_sym__separated_statements] = STATE(37), - [sym__statement] = STATE(2467), - [sym_unknown_builtin_statement] = STATE(2467), - [sym_return_statement] = STATE(2467), - [sym_break_statement] = STATE(2467), - [sym_continue_statement] = STATE(2467), - [sym_normal_statement] = STATE(2467), - [sym_setfiletype_statement] = STATE(2467), - [sym_options_statement] = STATE(2467), - [sym_startinsert_statement] = STATE(2467), - [sym_stopinsert_statement] = STATE(2467), - [sym_scriptencoding_statement] = STATE(2467), - [sym_comclear_statement] = STATE(2467), - [sym_delcommand_statement] = STATE(2467), - [sym_runtime_statement] = STATE(2467), - [sym_wincmd_statement] = STATE(2467), - [sym_source_statement] = STATE(2467), - [sym_global_statement] = STATE(2467), - [sym_filetype_statement] = STATE(2467), - [sym_colorscheme_statement] = STATE(2467), - [sym_lua_statement] = STATE(2467), - [sym_ruby_statement] = STATE(2467), - [sym_python_statement] = STATE(2467), - [sym_perl_statement] = STATE(2467), - [sym_for_loop] = STATE(2467), - [sym_while_loop] = STATE(2467), - [sym_if_statement] = STATE(2467), - [sym_try_statement] = STATE(2467), - [sym_throw_statement] = STATE(2467), - [sym_autocmd_statement] = STATE(2467), - [sym_augroup_statement] = STATE(2467), - [sym_bang_filter_statement] = STATE(2467), - [sym_let_statement] = STATE(2467), - [sym_const_statement] = STATE(2467), - [sym_set_statement] = STATE(2467), - [sym_setlocal_statement] = STATE(2467), - [sym_unlet_statement] = STATE(2467), - [sym_call_statement] = STATE(2467), - [sym_echo_statement] = STATE(2467), - [sym_echon_statement] = STATE(2467), - [sym_echohl_statement] = STATE(2467), - [sym_echomsg_statement] = STATE(2467), - [sym_echoerr_statement] = STATE(2467), - [sym_execute_statement] = STATE(2467), - [sym_silent_statement] = STATE(2467), - [sym_user_command] = STATE(2467), - [sym_function_definition] = STATE(2467), - [sym_range_statement] = STATE(2467), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2467), - [sym_map_statement] = STATE(2467), - [sym_highlight_statement] = STATE(2467), - [sym_syntax_statement] = STATE(2467), - [sym_sign_statement] = STATE(2467), + [sym__cmd_separator] = STATE(259), + [aux_sym__separated_statements] = STATE(31), + [sym__statement] = STATE(2491), + [sym_unknown_builtin_statement] = STATE(2491), + [sym_return_statement] = STATE(2491), + [sym_break_statement] = STATE(2491), + [sym_continue_statement] = STATE(2491), + [sym_normal_statement] = STATE(2491), + [sym_setfiletype_statement] = STATE(2491), + [sym_options_statement] = STATE(2491), + [sym_startinsert_statement] = STATE(2491), + [sym_stopinsert_statement] = STATE(2491), + [sym_scriptencoding_statement] = STATE(2491), + [sym_comclear_statement] = STATE(2491), + [sym_delcommand_statement] = STATE(2491), + [sym_runtime_statement] = STATE(2491), + [sym_wincmd_statement] = STATE(2491), + [sym_source_statement] = STATE(2491), + [sym_global_statement] = STATE(2491), + [sym_filetype_statement] = STATE(2491), + [sym_colorscheme_statement] = STATE(2491), + [sym_lua_statement] = STATE(2491), + [sym_ruby_statement] = STATE(2491), + [sym_python_statement] = STATE(2491), + [sym_perl_statement] = STATE(2491), + [sym_for_loop] = STATE(2491), + [sym_while_loop] = STATE(2491), + [sym_if_statement] = STATE(2491), + [sym_try_statement] = STATE(2491), + [sym_throw_statement] = STATE(2491), + [sym_autocmd_statement] = STATE(2491), + [sym_augroup_statement] = STATE(2491), + [sym_bang_filter_statement] = STATE(2491), + [sym_let_statement] = STATE(2491), + [sym_const_statement] = STATE(2491), + [sym_set_statement] = STATE(2491), + [sym_setlocal_statement] = STATE(2491), + [sym_unlet_statement] = STATE(2491), + [sym_call_statement] = STATE(2491), + [sym_echo_statement] = STATE(2491), + [sym_echon_statement] = STATE(2491), + [sym_echohl_statement] = STATE(2491), + [sym_echomsg_statement] = STATE(2491), + [sym_echoerr_statement] = STATE(2491), + [sym_execute_statement] = STATE(2491), + [sym_silent_statement] = STATE(2491), + [sym_user_command] = STATE(2491), + [sym_function_definition] = STATE(2491), + [sym_range_statement] = STATE(2491), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2491), + [sym_map_statement] = STATE(2491), + [sym_highlight_statement] = STATE(2491), + [sym_syntax_statement] = STATE(2491), + [sym_sign_statement] = STATE(2491), + [aux_sym__statement_repeat1] = STATE(141), + [anon_sym_COLON] = ACTIONS(243), + [sym_command_name] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(249), + [sym_mark] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(255), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT2] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_BSLASH_SLASH] = ACTIONS(270), + [anon_sym_BSLASH_QMARK] = ACTIONS(270), + [anon_sym_BSLASH_AMP] = ACTIONS(270), + [sym_integer_literal] = ACTIONS(273), + [sym_register] = ACTIONS(276), + [sym__newline_or_pipe] = ACTIONS(459), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(459), + [sym__function] = ACTIONS(282), + [sym__for] = ACTIONS(285), + [sym__while] = ACTIONS(288), + [sym__if] = ACTIONS(291), + [sym__endif] = ACTIONS(294), + [sym__try] = ACTIONS(296), + [sym__const] = ACTIONS(299), + [sym__normal] = ACTIONS(302), + [sym__return] = ACTIONS(305), + [sym__perl] = ACTIONS(308), + [sym__lua] = ACTIONS(311), + [sym__ruby] = ACTIONS(314), + [sym__python] = ACTIONS(317), + [sym__throw] = ACTIONS(320), + [sym__execute] = ACTIONS(323), + [sym__autocmd] = ACTIONS(326), + [sym__silent] = ACTIONS(329), + [sym__echo] = ACTIONS(332), + [sym__echon] = ACTIONS(335), + [sym__echohl] = ACTIONS(338), + [sym__echomsg] = ACTIONS(341), + [sym__echoerr] = ACTIONS(344), + [sym__map] = ACTIONS(347), + [sym__nmap] = ACTIONS(347), + [sym__vmap] = ACTIONS(347), + [sym__xmap] = ACTIONS(347), + [sym__smap] = ACTIONS(347), + [sym__omap] = ACTIONS(347), + [sym__imap] = ACTIONS(347), + [sym__lmap] = ACTIONS(347), + [sym__cmap] = ACTIONS(347), + [sym__tmap] = ACTIONS(347), + [sym__noremap] = ACTIONS(347), + [sym__vnoremap] = ACTIONS(347), + [sym__nnoremap] = ACTIONS(347), + [sym__xnoremap] = ACTIONS(347), + [sym__snoremap] = ACTIONS(347), + [sym__onoremap] = ACTIONS(347), + [sym__inoremap] = ACTIONS(347), + [sym__lnoremap] = ACTIONS(347), + [sym__cnoremap] = ACTIONS(347), + [sym__tnoremap] = ACTIONS(347), + [sym__augroup] = ACTIONS(350), + [sym__highlight] = ACTIONS(353), + [sym__syntax] = ACTIONS(356), + [sym__set] = ACTIONS(359), + [sym__setlocal] = ACTIONS(362), + [sym__setfiletype] = ACTIONS(365), + [sym__browse] = ACTIONS(368), + [sym__options] = ACTIONS(371), + [sym__startinsert] = ACTIONS(374), + [sym__stopinsert] = ACTIONS(377), + [sym__scriptencoding] = ACTIONS(380), + [sym__source] = ACTIONS(383), + [sym__global] = ACTIONS(386), + [sym__colorscheme] = ACTIONS(389), + [sym__comclear] = ACTIONS(392), + [sym__delcommand] = ACTIONS(395), + [sym__runtime] = ACTIONS(398), + [sym__wincmd] = ACTIONS(401), + [sym__sign] = ACTIONS(404), + [sym__filetype] = ACTIONS(407), + [sym__let] = ACTIONS(410), + [sym__unlet] = ACTIONS(413), + [sym__call] = ACTIONS(416), + [sym__break] = ACTIONS(419), + [sym__continue] = ACTIONS(422), + [sym_unknown_command_name] = ACTIONS(425), + }, + [32] = { + [sym__cmd_separator] = STATE(255), + [aux_sym__separated_statements] = STATE(32), + [sym__statement] = STATE(2510), + [sym_unknown_builtin_statement] = STATE(2510), + [sym_return_statement] = STATE(2510), + [sym_break_statement] = STATE(2510), + [sym_continue_statement] = STATE(2510), + [sym_normal_statement] = STATE(2510), + [sym_setfiletype_statement] = STATE(2510), + [sym_options_statement] = STATE(2510), + [sym_startinsert_statement] = STATE(2510), + [sym_stopinsert_statement] = STATE(2510), + [sym_scriptencoding_statement] = STATE(2510), + [sym_comclear_statement] = STATE(2510), + [sym_delcommand_statement] = STATE(2510), + [sym_runtime_statement] = STATE(2510), + [sym_wincmd_statement] = STATE(2510), + [sym_source_statement] = STATE(2510), + [sym_global_statement] = STATE(2510), + [sym_filetype_statement] = STATE(2510), + [sym_colorscheme_statement] = STATE(2510), + [sym_lua_statement] = STATE(2510), + [sym_ruby_statement] = STATE(2510), + [sym_python_statement] = STATE(2510), + [sym_perl_statement] = STATE(2510), + [sym_for_loop] = STATE(2510), + [sym_while_loop] = STATE(2510), + [sym_if_statement] = STATE(2510), + [sym_try_statement] = STATE(2510), + [sym_throw_statement] = STATE(2510), + [sym_autocmd_statement] = STATE(2510), + [sym_augroup_statement] = STATE(2510), + [sym_bang_filter_statement] = STATE(2510), + [sym_let_statement] = STATE(2510), + [sym_const_statement] = STATE(2510), + [sym_set_statement] = STATE(2510), + [sym_setlocal_statement] = STATE(2510), + [sym_unlet_statement] = STATE(2510), + [sym_call_statement] = STATE(2510), + [sym_echo_statement] = STATE(2510), + [sym_echon_statement] = STATE(2510), + [sym_echohl_statement] = STATE(2510), + [sym_echomsg_statement] = STATE(2510), + [sym_echoerr_statement] = STATE(2510), + [sym_execute_statement] = STATE(2510), + [sym_silent_statement] = STATE(2510), + [sym_user_command] = STATE(2510), + [sym_function_definition] = STATE(2510), + [sym_range_statement] = STATE(2510), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2510), + [sym_map_statement] = STATE(2510), + [sym_highlight_statement] = STATE(2510), + [sym_syntax_statement] = STATE(2510), + [sym_sign_statement] = STATE(2510), + [aux_sym__statement_repeat1] = STATE(141), + [ts_builtin_sym_end] = ACTIONS(294), + [anon_sym_COLON] = ACTIONS(243), + [sym_command_name] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(249), + [sym_mark] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(255), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT2] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_BSLASH_SLASH] = ACTIONS(270), + [anon_sym_BSLASH_QMARK] = ACTIONS(270), + [anon_sym_BSLASH_AMP] = ACTIONS(270), + [sym_integer_literal] = ACTIONS(273), + [sym_register] = ACTIONS(276), + [sym__newline_or_pipe] = ACTIONS(462), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(462), + [sym__function] = ACTIONS(282), + [sym__for] = ACTIONS(285), + [sym__while] = ACTIONS(288), + [sym__if] = ACTIONS(291), + [sym__try] = ACTIONS(296), + [sym__const] = ACTIONS(299), + [sym__normal] = ACTIONS(302), + [sym__return] = ACTIONS(305), + [sym__perl] = ACTIONS(308), + [sym__lua] = ACTIONS(311), + [sym__ruby] = ACTIONS(314), + [sym__python] = ACTIONS(317), + [sym__throw] = ACTIONS(320), + [sym__execute] = ACTIONS(323), + [sym__autocmd] = ACTIONS(326), + [sym__silent] = ACTIONS(329), + [sym__echo] = ACTIONS(332), + [sym__echon] = ACTIONS(335), + [sym__echohl] = ACTIONS(338), + [sym__echomsg] = ACTIONS(341), + [sym__echoerr] = ACTIONS(344), + [sym__map] = ACTIONS(347), + [sym__nmap] = ACTIONS(347), + [sym__vmap] = ACTIONS(347), + [sym__xmap] = ACTIONS(347), + [sym__smap] = ACTIONS(347), + [sym__omap] = ACTIONS(347), + [sym__imap] = ACTIONS(347), + [sym__lmap] = ACTIONS(347), + [sym__cmap] = ACTIONS(347), + [sym__tmap] = ACTIONS(347), + [sym__noremap] = ACTIONS(347), + [sym__vnoremap] = ACTIONS(347), + [sym__nnoremap] = ACTIONS(347), + [sym__xnoremap] = ACTIONS(347), + [sym__snoremap] = ACTIONS(347), + [sym__onoremap] = ACTIONS(347), + [sym__inoremap] = ACTIONS(347), + [sym__lnoremap] = ACTIONS(347), + [sym__cnoremap] = ACTIONS(347), + [sym__tnoremap] = ACTIONS(347), + [sym__augroup] = ACTIONS(350), + [sym__highlight] = ACTIONS(353), + [sym__syntax] = ACTIONS(356), + [sym__set] = ACTIONS(359), + [sym__setlocal] = ACTIONS(362), + [sym__setfiletype] = ACTIONS(365), + [sym__browse] = ACTIONS(368), + [sym__options] = ACTIONS(371), + [sym__startinsert] = ACTIONS(374), + [sym__stopinsert] = ACTIONS(377), + [sym__scriptencoding] = ACTIONS(380), + [sym__source] = ACTIONS(383), + [sym__global] = ACTIONS(386), + [sym__colorscheme] = ACTIONS(389), + [sym__comclear] = ACTIONS(392), + [sym__delcommand] = ACTIONS(395), + [sym__runtime] = ACTIONS(398), + [sym__wincmd] = ACTIONS(401), + [sym__sign] = ACTIONS(404), + [sym__filetype] = ACTIONS(407), + [sym__let] = ACTIONS(410), + [sym__unlet] = ACTIONS(413), + [sym__call] = ACTIONS(416), + [sym__break] = ACTIONS(419), + [sym__continue] = ACTIONS(422), + [sym_unknown_command_name] = ACTIONS(425), + }, + [33] = { + [sym__cmd_separator] = STATE(255), + [aux_sym__separated_statements] = STATE(32), + [sym__statement] = STATE(2510), + [sym_unknown_builtin_statement] = STATE(2510), + [sym_return_statement] = STATE(2510), + [sym_break_statement] = STATE(2510), + [sym_continue_statement] = STATE(2510), + [sym_normal_statement] = STATE(2510), + [sym_setfiletype_statement] = STATE(2510), + [sym_options_statement] = STATE(2510), + [sym_startinsert_statement] = STATE(2510), + [sym_stopinsert_statement] = STATE(2510), + [sym_scriptencoding_statement] = STATE(2510), + [sym_comclear_statement] = STATE(2510), + [sym_delcommand_statement] = STATE(2510), + [sym_runtime_statement] = STATE(2510), + [sym_wincmd_statement] = STATE(2510), + [sym_source_statement] = STATE(2510), + [sym_global_statement] = STATE(2510), + [sym_filetype_statement] = STATE(2510), + [sym_colorscheme_statement] = STATE(2510), + [sym_lua_statement] = STATE(2510), + [sym_ruby_statement] = STATE(2510), + [sym_python_statement] = STATE(2510), + [sym_perl_statement] = STATE(2510), + [sym_for_loop] = STATE(2510), + [sym_while_loop] = STATE(2510), + [sym_if_statement] = STATE(2510), + [sym_try_statement] = STATE(2510), + [sym_throw_statement] = STATE(2510), + [sym_autocmd_statement] = STATE(2510), + [sym_augroup_statement] = STATE(2510), + [sym_bang_filter_statement] = STATE(2510), + [sym_let_statement] = STATE(2510), + [sym_const_statement] = STATE(2510), + [sym_set_statement] = STATE(2510), + [sym_setlocal_statement] = STATE(2510), + [sym_unlet_statement] = STATE(2510), + [sym_call_statement] = STATE(2510), + [sym_echo_statement] = STATE(2510), + [sym_echon_statement] = STATE(2510), + [sym_echohl_statement] = STATE(2510), + [sym_echomsg_statement] = STATE(2510), + [sym_echoerr_statement] = STATE(2510), + [sym_execute_statement] = STATE(2510), + [sym_silent_statement] = STATE(2510), + [sym_user_command] = STATE(2510), + [sym_function_definition] = STATE(2510), + [sym_range_statement] = STATE(2510), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2510), + [sym_map_statement] = STATE(2510), + [sym_highlight_statement] = STATE(2510), + [sym_syntax_statement] = STATE(2510), + [sym_sign_statement] = STATE(2510), [aux_sym__statement_repeat1] = STATE(141), - [ts_builtin_sym_end] = ACTIONS(462), + [ts_builtin_sym_end] = ACTIONS(465), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(11), @@ -31195,68 +30746,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [32] = { - [sym__cmd_separator] = STATE(251), - [aux_sym__separated_statements] = STATE(46), - [sym__statement] = STATE(2368), - [sym_unknown_builtin_statement] = STATE(2368), - [sym_return_statement] = STATE(2368), - [sym_break_statement] = STATE(2368), - [sym_continue_statement] = STATE(2368), - [sym_normal_statement] = STATE(2368), - [sym_setfiletype_statement] = STATE(2368), - [sym_options_statement] = STATE(2368), - [sym_startinsert_statement] = STATE(2368), - [sym_stopinsert_statement] = STATE(2368), - [sym_scriptencoding_statement] = STATE(2368), - [sym_comclear_statement] = STATE(2368), - [sym_delcommand_statement] = STATE(2368), - [sym_runtime_statement] = STATE(2368), - [sym_wincmd_statement] = STATE(2368), - [sym_source_statement] = STATE(2368), - [sym_global_statement] = STATE(2368), - [sym_filetype_statement] = STATE(2368), - [sym_colorscheme_statement] = STATE(2368), - [sym_lua_statement] = STATE(2368), - [sym_ruby_statement] = STATE(2368), - [sym_python_statement] = STATE(2368), - [sym_perl_statement] = STATE(2368), - [sym_for_loop] = STATE(2368), - [sym_while_loop] = STATE(2368), - [sym_if_statement] = STATE(2368), - [sym_try_statement] = STATE(2368), - [sym_throw_statement] = STATE(2368), - [sym_autocmd_statement] = STATE(2368), - [sym_augroup_statement] = STATE(2368), - [sym_bang_filter_statement] = STATE(2368), - [sym_let_statement] = STATE(2368), - [sym_const_statement] = STATE(2368), - [sym_set_statement] = STATE(2368), - [sym_setlocal_statement] = STATE(2368), - [sym_unlet_statement] = STATE(2368), - [sym_call_statement] = STATE(2368), - [sym_echo_statement] = STATE(2368), - [sym_echon_statement] = STATE(2368), - [sym_echohl_statement] = STATE(2368), - [sym_echomsg_statement] = STATE(2368), - [sym_echoerr_statement] = STATE(2368), - [sym_execute_statement] = STATE(2368), - [sym_silent_statement] = STATE(2368), - [sym_user_command] = STATE(2368), - [sym_function_definition] = STATE(2368), - [sym_range_statement] = STATE(2368), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2368), - [sym_map_statement] = STATE(2368), - [sym_highlight_statement] = STATE(2368), - [sym_syntax_statement] = STATE(2368), - [sym_sign_statement] = STATE(2368), + [34] = { + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(35), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -31272,13 +30823,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(448), + [sym__newline_or_pipe] = ACTIONS(431), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(448), + [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(467), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), - [sym__endwhile] = ACTIONS(464), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__const] = ACTIONS(43), @@ -31344,68 +30895,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [33] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(23), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [35] = { + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(47), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -31425,7 +30976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(3), [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(466), + [sym__endfunction] = ACTIONS(469), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -31493,217 +31044,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [34] = { - [sym__cmd_separator] = STATE(260), - [aux_sym__separated_statements] = STATE(34), - [sym__statement] = STATE(2473), - [sym_unknown_builtin_statement] = STATE(2473), - [sym_return_statement] = STATE(2473), - [sym_break_statement] = STATE(2473), - [sym_continue_statement] = STATE(2473), - [sym_normal_statement] = STATE(2473), - [sym_setfiletype_statement] = STATE(2473), - [sym_options_statement] = STATE(2473), - [sym_startinsert_statement] = STATE(2473), - [sym_stopinsert_statement] = STATE(2473), - [sym_scriptencoding_statement] = STATE(2473), - [sym_comclear_statement] = STATE(2473), - [sym_delcommand_statement] = STATE(2473), - [sym_runtime_statement] = STATE(2473), - [sym_wincmd_statement] = STATE(2473), - [sym_source_statement] = STATE(2473), - [sym_global_statement] = STATE(2473), - [sym_filetype_statement] = STATE(2473), - [sym_colorscheme_statement] = STATE(2473), - [sym_lua_statement] = STATE(2473), - [sym_ruby_statement] = STATE(2473), - [sym_python_statement] = STATE(2473), - [sym_perl_statement] = STATE(2473), - [sym_for_loop] = STATE(2473), - [sym_while_loop] = STATE(2473), - [sym_if_statement] = STATE(2473), - [sym_try_statement] = STATE(2473), - [sym_throw_statement] = STATE(2473), - [sym_autocmd_statement] = STATE(2473), - [sym_augroup_statement] = STATE(2473), - [sym_bang_filter_statement] = STATE(2473), - [sym_let_statement] = STATE(2473), - [sym_const_statement] = STATE(2473), - [sym_set_statement] = STATE(2473), - [sym_setlocal_statement] = STATE(2473), - [sym_unlet_statement] = STATE(2473), - [sym_call_statement] = STATE(2473), - [sym_echo_statement] = STATE(2473), - [sym_echon_statement] = STATE(2473), - [sym_echohl_statement] = STATE(2473), - [sym_echomsg_statement] = STATE(2473), - [sym_echoerr_statement] = STATE(2473), - [sym_execute_statement] = STATE(2473), - [sym_silent_statement] = STATE(2473), - [sym_user_command] = STATE(2473), - [sym_function_definition] = STATE(2473), - [sym_range_statement] = STATE(2473), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2473), - [sym_map_statement] = STATE(2473), - [sym_highlight_statement] = STATE(2473), - [sym_syntax_statement] = STATE(2473), - [sym_sign_statement] = STATE(2473), - [aux_sym__statement_repeat1] = STATE(141), - [anon_sym_COLON] = ACTIONS(235), - [sym_command_name] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(241), - [sym_mark] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_DOT2] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(259), - [anon_sym_BSLASH_SLASH] = ACTIONS(262), - [anon_sym_BSLASH_QMARK] = ACTIONS(262), - [anon_sym_BSLASH_AMP] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [sym_register] = ACTIONS(268), - [sym__newline_or_pipe] = ACTIONS(468), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(468), - [sym__function] = ACTIONS(274), - [sym__for] = ACTIONS(277), - [sym__while] = ACTIONS(280), - [sym__if] = ACTIONS(283), - [sym__endif] = ACTIONS(286), - [sym__try] = ACTIONS(288), - [sym__const] = ACTIONS(291), - [sym__normal] = ACTIONS(294), - [sym__return] = ACTIONS(297), - [sym__perl] = ACTIONS(300), - [sym__lua] = ACTIONS(303), - [sym__ruby] = ACTIONS(306), - [sym__python] = ACTIONS(309), - [sym__throw] = ACTIONS(312), - [sym__execute] = ACTIONS(315), - [sym__autocmd] = ACTIONS(318), - [sym__silent] = ACTIONS(321), - [sym__echo] = ACTIONS(324), - [sym__echon] = ACTIONS(327), - [sym__echohl] = ACTIONS(330), - [sym__echomsg] = ACTIONS(333), - [sym__echoerr] = ACTIONS(336), - [sym__map] = ACTIONS(339), - [sym__nmap] = ACTIONS(339), - [sym__vmap] = ACTIONS(339), - [sym__xmap] = ACTIONS(339), - [sym__smap] = ACTIONS(339), - [sym__omap] = ACTIONS(339), - [sym__imap] = ACTIONS(339), - [sym__lmap] = ACTIONS(339), - [sym__cmap] = ACTIONS(339), - [sym__tmap] = ACTIONS(339), - [sym__noremap] = ACTIONS(339), - [sym__vnoremap] = ACTIONS(339), - [sym__nnoremap] = ACTIONS(339), - [sym__xnoremap] = ACTIONS(339), - [sym__snoremap] = ACTIONS(339), - [sym__onoremap] = ACTIONS(339), - [sym__inoremap] = ACTIONS(339), - [sym__lnoremap] = ACTIONS(339), - [sym__cnoremap] = ACTIONS(339), - [sym__tnoremap] = ACTIONS(339), - [sym__augroup] = ACTIONS(342), - [sym__highlight] = ACTIONS(345), - [sym__syntax] = ACTIONS(348), - [sym__set] = ACTIONS(351), - [sym__setlocal] = ACTIONS(354), - [sym__setfiletype] = ACTIONS(357), - [sym__browse] = ACTIONS(360), - [sym__options] = ACTIONS(363), - [sym__startinsert] = ACTIONS(366), - [sym__stopinsert] = ACTIONS(369), - [sym__scriptencoding] = ACTIONS(372), - [sym__source] = ACTIONS(375), - [sym__global] = ACTIONS(378), - [sym__colorscheme] = ACTIONS(381), - [sym__comclear] = ACTIONS(384), - [sym__delcommand] = ACTIONS(387), - [sym__runtime] = ACTIONS(390), - [sym__wincmd] = ACTIONS(393), - [sym__sign] = ACTIONS(396), - [sym__filetype] = ACTIONS(399), - [sym__let] = ACTIONS(402), - [sym__unlet] = ACTIONS(405), - [sym__call] = ACTIONS(408), - [sym__break] = ACTIONS(411), - [sym__continue] = ACTIONS(414), - [sym_unknown_command_name] = ACTIONS(417), - }, - [35] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(25), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [36] = { + [sym__cmd_separator] = STATE(259), + [aux_sym__separated_statements] = STATE(31), + [sym__statement] = STATE(2491), + [sym_unknown_builtin_statement] = STATE(2491), + [sym_return_statement] = STATE(2491), + [sym_break_statement] = STATE(2491), + [sym_continue_statement] = STATE(2491), + [sym_normal_statement] = STATE(2491), + [sym_setfiletype_statement] = STATE(2491), + [sym_options_statement] = STATE(2491), + [sym_startinsert_statement] = STATE(2491), + [sym_stopinsert_statement] = STATE(2491), + [sym_scriptencoding_statement] = STATE(2491), + [sym_comclear_statement] = STATE(2491), + [sym_delcommand_statement] = STATE(2491), + [sym_runtime_statement] = STATE(2491), + [sym_wincmd_statement] = STATE(2491), + [sym_source_statement] = STATE(2491), + [sym_global_statement] = STATE(2491), + [sym_filetype_statement] = STATE(2491), + [sym_colorscheme_statement] = STATE(2491), + [sym_lua_statement] = STATE(2491), + [sym_ruby_statement] = STATE(2491), + [sym_python_statement] = STATE(2491), + [sym_perl_statement] = STATE(2491), + [sym_for_loop] = STATE(2491), + [sym_while_loop] = STATE(2491), + [sym_if_statement] = STATE(2491), + [sym_try_statement] = STATE(2491), + [sym_throw_statement] = STATE(2491), + [sym_autocmd_statement] = STATE(2491), + [sym_augroup_statement] = STATE(2491), + [sym_bang_filter_statement] = STATE(2491), + [sym_let_statement] = STATE(2491), + [sym_const_statement] = STATE(2491), + [sym_set_statement] = STATE(2491), + [sym_setlocal_statement] = STATE(2491), + [sym_unlet_statement] = STATE(2491), + [sym_call_statement] = STATE(2491), + [sym_echo_statement] = STATE(2491), + [sym_echon_statement] = STATE(2491), + [sym_echohl_statement] = STATE(2491), + [sym_echomsg_statement] = STATE(2491), + [sym_echoerr_statement] = STATE(2491), + [sym_execute_statement] = STATE(2491), + [sym_silent_statement] = STATE(2491), + [sym_user_command] = STATE(2491), + [sym_function_definition] = STATE(2491), + [sym_range_statement] = STATE(2491), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2491), + [sym_map_statement] = STATE(2491), + [sym_highlight_statement] = STATE(2491), + [sym_syntax_statement] = STATE(2491), + [sym_sign_statement] = STATE(2491), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -31719,14 +31121,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(431), + [sym__newline_or_pipe] = ACTIONS(451), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(431), + [sym_comment] = ACTIONS(451), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(471), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), + [sym__endif] = ACTIONS(471), [sym__try] = ACTIONS(41), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), @@ -31791,366 +31193,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [36] = { - [sym__cmd_separator] = STATE(250), - [aux_sym__separated_statements] = STATE(36), - [sym__statement] = STATE(2363), - [sym_unknown_builtin_statement] = STATE(2363), - [sym_return_statement] = STATE(2363), - [sym_break_statement] = STATE(2363), - [sym_continue_statement] = STATE(2363), - [sym_normal_statement] = STATE(2363), - [sym_setfiletype_statement] = STATE(2363), - [sym_options_statement] = STATE(2363), - [sym_startinsert_statement] = STATE(2363), - [sym_stopinsert_statement] = STATE(2363), - [sym_scriptencoding_statement] = STATE(2363), - [sym_comclear_statement] = STATE(2363), - [sym_delcommand_statement] = STATE(2363), - [sym_runtime_statement] = STATE(2363), - [sym_wincmd_statement] = STATE(2363), - [sym_source_statement] = STATE(2363), - [sym_global_statement] = STATE(2363), - [sym_filetype_statement] = STATE(2363), - [sym_colorscheme_statement] = STATE(2363), - [sym_lua_statement] = STATE(2363), - [sym_ruby_statement] = STATE(2363), - [sym_python_statement] = STATE(2363), - [sym_perl_statement] = STATE(2363), - [sym_for_loop] = STATE(2363), - [sym_while_loop] = STATE(2363), - [sym_if_statement] = STATE(2363), - [sym_try_statement] = STATE(2363), - [sym_throw_statement] = STATE(2363), - [sym_autocmd_statement] = STATE(2363), - [sym_augroup_statement] = STATE(2363), - [sym_bang_filter_statement] = STATE(2363), - [sym_let_statement] = STATE(2363), - [sym_const_statement] = STATE(2363), - [sym_set_statement] = STATE(2363), - [sym_setlocal_statement] = STATE(2363), - [sym_unlet_statement] = STATE(2363), - [sym_call_statement] = STATE(2363), - [sym_echo_statement] = STATE(2363), - [sym_echon_statement] = STATE(2363), - [sym_echohl_statement] = STATE(2363), - [sym_echomsg_statement] = STATE(2363), - [sym_echoerr_statement] = STATE(2363), - [sym_execute_statement] = STATE(2363), - [sym_silent_statement] = STATE(2363), - [sym_user_command] = STATE(2363), - [sym_function_definition] = STATE(2363), - [sym_range_statement] = STATE(2363), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2363), - [sym_map_statement] = STATE(2363), - [sym_highlight_statement] = STATE(2363), - [sym_syntax_statement] = STATE(2363), - [sym_sign_statement] = STATE(2363), - [aux_sym__statement_repeat1] = STATE(141), - [anon_sym_COLON] = ACTIONS(235), - [sym_command_name] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(241), - [sym_mark] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_DOT2] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(259), - [anon_sym_BSLASH_SLASH] = ACTIONS(262), - [anon_sym_BSLASH_QMARK] = ACTIONS(262), - [anon_sym_BSLASH_AMP] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [sym_register] = ACTIONS(268), - [sym__newline_or_pipe] = ACTIONS(473), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(473), - [sym__function] = ACTIONS(274), - [sym__for] = ACTIONS(277), - [sym__endfor] = ACTIONS(286), - [sym__while] = ACTIONS(280), - [sym__if] = ACTIONS(283), - [sym__try] = ACTIONS(288), - [sym__const] = ACTIONS(291), - [sym__normal] = ACTIONS(294), - [sym__return] = ACTIONS(297), - [sym__perl] = ACTIONS(300), - [sym__lua] = ACTIONS(303), - [sym__ruby] = ACTIONS(306), - [sym__python] = ACTIONS(309), - [sym__throw] = ACTIONS(312), - [sym__execute] = ACTIONS(315), - [sym__autocmd] = ACTIONS(318), - [sym__silent] = ACTIONS(321), - [sym__echo] = ACTIONS(324), - [sym__echon] = ACTIONS(327), - [sym__echohl] = ACTIONS(330), - [sym__echomsg] = ACTIONS(333), - [sym__echoerr] = ACTIONS(336), - [sym__map] = ACTIONS(339), - [sym__nmap] = ACTIONS(339), - [sym__vmap] = ACTIONS(339), - [sym__xmap] = ACTIONS(339), - [sym__smap] = ACTIONS(339), - [sym__omap] = ACTIONS(339), - [sym__imap] = ACTIONS(339), - [sym__lmap] = ACTIONS(339), - [sym__cmap] = ACTIONS(339), - [sym__tmap] = ACTIONS(339), - [sym__noremap] = ACTIONS(339), - [sym__vnoremap] = ACTIONS(339), - [sym__nnoremap] = ACTIONS(339), - [sym__xnoremap] = ACTIONS(339), - [sym__snoremap] = ACTIONS(339), - [sym__onoremap] = ACTIONS(339), - [sym__inoremap] = ACTIONS(339), - [sym__lnoremap] = ACTIONS(339), - [sym__cnoremap] = ACTIONS(339), - [sym__tnoremap] = ACTIONS(339), - [sym__augroup] = ACTIONS(342), - [sym__highlight] = ACTIONS(345), - [sym__syntax] = ACTIONS(348), - [sym__set] = ACTIONS(351), - [sym__setlocal] = ACTIONS(354), - [sym__setfiletype] = ACTIONS(357), - [sym__browse] = ACTIONS(360), - [sym__options] = ACTIONS(363), - [sym__startinsert] = ACTIONS(366), - [sym__stopinsert] = ACTIONS(369), - [sym__scriptencoding] = ACTIONS(372), - [sym__source] = ACTIONS(375), - [sym__global] = ACTIONS(378), - [sym__colorscheme] = ACTIONS(381), - [sym__comclear] = ACTIONS(384), - [sym__delcommand] = ACTIONS(387), - [sym__runtime] = ACTIONS(390), - [sym__wincmd] = ACTIONS(393), - [sym__sign] = ACTIONS(396), - [sym__filetype] = ACTIONS(399), - [sym__let] = ACTIONS(402), - [sym__unlet] = ACTIONS(405), - [sym__call] = ACTIONS(408), - [sym__break] = ACTIONS(411), - [sym__continue] = ACTIONS(414), - [sym_unknown_command_name] = ACTIONS(417), - }, [37] = { - [sym__cmd_separator] = STATE(262), - [aux_sym__separated_statements] = STATE(37), - [sym__statement] = STATE(2467), - [sym_unknown_builtin_statement] = STATE(2467), - [sym_return_statement] = STATE(2467), - [sym_break_statement] = STATE(2467), - [sym_continue_statement] = STATE(2467), - [sym_normal_statement] = STATE(2467), - [sym_setfiletype_statement] = STATE(2467), - [sym_options_statement] = STATE(2467), - [sym_startinsert_statement] = STATE(2467), - [sym_stopinsert_statement] = STATE(2467), - [sym_scriptencoding_statement] = STATE(2467), - [sym_comclear_statement] = STATE(2467), - [sym_delcommand_statement] = STATE(2467), - [sym_runtime_statement] = STATE(2467), - [sym_wincmd_statement] = STATE(2467), - [sym_source_statement] = STATE(2467), - [sym_global_statement] = STATE(2467), - [sym_filetype_statement] = STATE(2467), - [sym_colorscheme_statement] = STATE(2467), - [sym_lua_statement] = STATE(2467), - [sym_ruby_statement] = STATE(2467), - [sym_python_statement] = STATE(2467), - [sym_perl_statement] = STATE(2467), - [sym_for_loop] = STATE(2467), - [sym_while_loop] = STATE(2467), - [sym_if_statement] = STATE(2467), - [sym_try_statement] = STATE(2467), - [sym_throw_statement] = STATE(2467), - [sym_autocmd_statement] = STATE(2467), - [sym_augroup_statement] = STATE(2467), - [sym_bang_filter_statement] = STATE(2467), - [sym_let_statement] = STATE(2467), - [sym_const_statement] = STATE(2467), - [sym_set_statement] = STATE(2467), - [sym_setlocal_statement] = STATE(2467), - [sym_unlet_statement] = STATE(2467), - [sym_call_statement] = STATE(2467), - [sym_echo_statement] = STATE(2467), - [sym_echon_statement] = STATE(2467), - [sym_echohl_statement] = STATE(2467), - [sym_echomsg_statement] = STATE(2467), - [sym_echoerr_statement] = STATE(2467), - [sym_execute_statement] = STATE(2467), - [sym_silent_statement] = STATE(2467), - [sym_user_command] = STATE(2467), - [sym_function_definition] = STATE(2467), - [sym_range_statement] = STATE(2467), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2467), - [sym_map_statement] = STATE(2467), - [sym_highlight_statement] = STATE(2467), - [sym_syntax_statement] = STATE(2467), - [sym_sign_statement] = STATE(2467), - [aux_sym__statement_repeat1] = STATE(141), - [ts_builtin_sym_end] = ACTIONS(286), - [anon_sym_COLON] = ACTIONS(235), - [sym_command_name] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(241), - [sym_mark] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_DOT2] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(259), - [anon_sym_BSLASH_SLASH] = ACTIONS(262), - [anon_sym_BSLASH_QMARK] = ACTIONS(262), - [anon_sym_BSLASH_AMP] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [sym_register] = ACTIONS(268), - [sym__newline_or_pipe] = ACTIONS(476), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(476), - [sym__function] = ACTIONS(274), - [sym__for] = ACTIONS(277), - [sym__while] = ACTIONS(280), - [sym__if] = ACTIONS(283), - [sym__try] = ACTIONS(288), - [sym__const] = ACTIONS(291), - [sym__normal] = ACTIONS(294), - [sym__return] = ACTIONS(297), - [sym__perl] = ACTIONS(300), - [sym__lua] = ACTIONS(303), - [sym__ruby] = ACTIONS(306), - [sym__python] = ACTIONS(309), - [sym__throw] = ACTIONS(312), - [sym__execute] = ACTIONS(315), - [sym__autocmd] = ACTIONS(318), - [sym__silent] = ACTIONS(321), - [sym__echo] = ACTIONS(324), - [sym__echon] = ACTIONS(327), - [sym__echohl] = ACTIONS(330), - [sym__echomsg] = ACTIONS(333), - [sym__echoerr] = ACTIONS(336), - [sym__map] = ACTIONS(339), - [sym__nmap] = ACTIONS(339), - [sym__vmap] = ACTIONS(339), - [sym__xmap] = ACTIONS(339), - [sym__smap] = ACTIONS(339), - [sym__omap] = ACTIONS(339), - [sym__imap] = ACTIONS(339), - [sym__lmap] = ACTIONS(339), - [sym__cmap] = ACTIONS(339), - [sym__tmap] = ACTIONS(339), - [sym__noremap] = ACTIONS(339), - [sym__vnoremap] = ACTIONS(339), - [sym__nnoremap] = ACTIONS(339), - [sym__xnoremap] = ACTIONS(339), - [sym__snoremap] = ACTIONS(339), - [sym__onoremap] = ACTIONS(339), - [sym__inoremap] = ACTIONS(339), - [sym__lnoremap] = ACTIONS(339), - [sym__cnoremap] = ACTIONS(339), - [sym__tnoremap] = ACTIONS(339), - [sym__augroup] = ACTIONS(342), - [sym__highlight] = ACTIONS(345), - [sym__syntax] = ACTIONS(348), - [sym__set] = ACTIONS(351), - [sym__setlocal] = ACTIONS(354), - [sym__setfiletype] = ACTIONS(357), - [sym__browse] = ACTIONS(360), - [sym__options] = ACTIONS(363), - [sym__startinsert] = ACTIONS(366), - [sym__stopinsert] = ACTIONS(369), - [sym__scriptencoding] = ACTIONS(372), - [sym__source] = ACTIONS(375), - [sym__global] = ACTIONS(378), - [sym__colorscheme] = ACTIONS(381), - [sym__comclear] = ACTIONS(384), - [sym__delcommand] = ACTIONS(387), - [sym__runtime] = ACTIONS(390), - [sym__wincmd] = ACTIONS(393), - [sym__sign] = ACTIONS(396), - [sym__filetype] = ACTIONS(399), - [sym__let] = ACTIONS(402), - [sym__unlet] = ACTIONS(405), - [sym__call] = ACTIONS(408), - [sym__break] = ACTIONS(411), - [sym__continue] = ACTIONS(414), - [sym_unknown_command_name] = ACTIONS(417), - }, - [38] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(21), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [sym__cmd_separator] = STATE(253), + [aux_sym__separated_statements] = STATE(29), + [sym__statement] = STATE(2415), + [sym_unknown_builtin_statement] = STATE(2415), + [sym_return_statement] = STATE(2415), + [sym_break_statement] = STATE(2415), + [sym_continue_statement] = STATE(2415), + [sym_normal_statement] = STATE(2415), + [sym_setfiletype_statement] = STATE(2415), + [sym_options_statement] = STATE(2415), + [sym_startinsert_statement] = STATE(2415), + [sym_stopinsert_statement] = STATE(2415), + [sym_scriptencoding_statement] = STATE(2415), + [sym_comclear_statement] = STATE(2415), + [sym_delcommand_statement] = STATE(2415), + [sym_runtime_statement] = STATE(2415), + [sym_wincmd_statement] = STATE(2415), + [sym_source_statement] = STATE(2415), + [sym_global_statement] = STATE(2415), + [sym_filetype_statement] = STATE(2415), + [sym_colorscheme_statement] = STATE(2415), + [sym_lua_statement] = STATE(2415), + [sym_ruby_statement] = STATE(2415), + [sym_python_statement] = STATE(2415), + [sym_perl_statement] = STATE(2415), + [sym_for_loop] = STATE(2415), + [sym_while_loop] = STATE(2415), + [sym_if_statement] = STATE(2415), + [sym_try_statement] = STATE(2415), + [sym_throw_statement] = STATE(2415), + [sym_autocmd_statement] = STATE(2415), + [sym_augroup_statement] = STATE(2415), + [sym_bang_filter_statement] = STATE(2415), + [sym_let_statement] = STATE(2415), + [sym_const_statement] = STATE(2415), + [sym_set_statement] = STATE(2415), + [sym_setlocal_statement] = STATE(2415), + [sym_unlet_statement] = STATE(2415), + [sym_call_statement] = STATE(2415), + [sym_echo_statement] = STATE(2415), + [sym_echon_statement] = STATE(2415), + [sym_echohl_statement] = STATE(2415), + [sym_echomsg_statement] = STATE(2415), + [sym_echoerr_statement] = STATE(2415), + [sym_execute_statement] = STATE(2415), + [sym_silent_statement] = STATE(2415), + [sym_user_command] = STATE(2415), + [sym_function_definition] = STATE(2415), + [sym_range_statement] = STATE(2415), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2415), + [sym_map_statement] = STATE(2415), + [sym_highlight_statement] = STATE(2415), + [sym_syntax_statement] = STATE(2415), + [sym_sign_statement] = STATE(2415), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -32166,13 +31270,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(431), + [sym__newline_or_pipe] = ACTIONS(435), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(431), + [sym_comment] = ACTIONS(435), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(479), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), + [sym__endwhile] = ACTIONS(473), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__const] = ACTIONS(43), @@ -32238,68 +31342,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [39] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(48), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [38] = { + [sym__cmd_separator] = STATE(260), + [aux_sym__separated_statements] = STATE(41), + [sym__statement] = STATE(2538), + [sym_unknown_builtin_statement] = STATE(2538), + [sym_return_statement] = STATE(2538), + [sym_break_statement] = STATE(2538), + [sym_continue_statement] = STATE(2538), + [sym_normal_statement] = STATE(2538), + [sym_setfiletype_statement] = STATE(2538), + [sym_options_statement] = STATE(2538), + [sym_startinsert_statement] = STATE(2538), + [sym_stopinsert_statement] = STATE(2538), + [sym_scriptencoding_statement] = STATE(2538), + [sym_comclear_statement] = STATE(2538), + [sym_delcommand_statement] = STATE(2538), + [sym_runtime_statement] = STATE(2538), + [sym_wincmd_statement] = STATE(2538), + [sym_source_statement] = STATE(2538), + [sym_global_statement] = STATE(2538), + [sym_filetype_statement] = STATE(2538), + [sym_colorscheme_statement] = STATE(2538), + [sym_lua_statement] = STATE(2538), + [sym_ruby_statement] = STATE(2538), + [sym_python_statement] = STATE(2538), + [sym_perl_statement] = STATE(2538), + [sym_for_loop] = STATE(2538), + [sym_while_loop] = STATE(2538), + [sym_if_statement] = STATE(2538), + [sym_try_statement] = STATE(2538), + [sym_throw_statement] = STATE(2538), + [sym_autocmd_statement] = STATE(2538), + [sym_augroup_statement] = STATE(2538), + [sym_bang_filter_statement] = STATE(2538), + [sym_let_statement] = STATE(2538), + [sym_const_statement] = STATE(2538), + [sym_set_statement] = STATE(2538), + [sym_setlocal_statement] = STATE(2538), + [sym_unlet_statement] = STATE(2538), + [sym_call_statement] = STATE(2538), + [sym_echo_statement] = STATE(2538), + [sym_echon_statement] = STATE(2538), + [sym_echohl_statement] = STATE(2538), + [sym_echomsg_statement] = STATE(2538), + [sym_echoerr_statement] = STATE(2538), + [sym_execute_statement] = STATE(2538), + [sym_silent_statement] = STATE(2538), + [sym_user_command] = STATE(2538), + [sym_function_definition] = STATE(2538), + [sym_range_statement] = STATE(2538), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2538), + [sym_map_statement] = STATE(2538), + [sym_highlight_statement] = STATE(2538), + [sym_syntax_statement] = STATE(2538), + [sym_sign_statement] = STATE(2538), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -32315,12 +31419,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(431), + [sym__newline_or_pipe] = ACTIONS(201), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(431), + [sym_comment] = ACTIONS(201), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(481), [sym__for] = ACTIONS(35), + [sym__endfor] = ACTIONS(475), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), @@ -32387,68 +31491,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [40] = { - [sym__cmd_separator] = STATE(255), - [aux_sym__separated_statements] = STATE(29), - [sym__statement] = STATE(2524), - [sym_unknown_builtin_statement] = STATE(2524), - [sym_return_statement] = STATE(2524), - [sym_break_statement] = STATE(2524), - [sym_continue_statement] = STATE(2524), - [sym_normal_statement] = STATE(2524), - [sym_setfiletype_statement] = STATE(2524), - [sym_options_statement] = STATE(2524), - [sym_startinsert_statement] = STATE(2524), - [sym_stopinsert_statement] = STATE(2524), - [sym_scriptencoding_statement] = STATE(2524), - [sym_comclear_statement] = STATE(2524), - [sym_delcommand_statement] = STATE(2524), - [sym_runtime_statement] = STATE(2524), - [sym_wincmd_statement] = STATE(2524), - [sym_source_statement] = STATE(2524), - [sym_global_statement] = STATE(2524), - [sym_filetype_statement] = STATE(2524), - [sym_colorscheme_statement] = STATE(2524), - [sym_lua_statement] = STATE(2524), - [sym_ruby_statement] = STATE(2524), - [sym_python_statement] = STATE(2524), - [sym_perl_statement] = STATE(2524), - [sym_for_loop] = STATE(2524), - [sym_while_loop] = STATE(2524), - [sym_if_statement] = STATE(2524), - [sym_try_statement] = STATE(2524), - [sym_throw_statement] = STATE(2524), - [sym_autocmd_statement] = STATE(2524), - [sym_augroup_statement] = STATE(2524), - [sym_bang_filter_statement] = STATE(2524), - [sym_let_statement] = STATE(2524), - [sym_const_statement] = STATE(2524), - [sym_set_statement] = STATE(2524), - [sym_setlocal_statement] = STATE(2524), - [sym_unlet_statement] = STATE(2524), - [sym_call_statement] = STATE(2524), - [sym_echo_statement] = STATE(2524), - [sym_echon_statement] = STATE(2524), - [sym_echohl_statement] = STATE(2524), - [sym_echomsg_statement] = STATE(2524), - [sym_echoerr_statement] = STATE(2524), - [sym_execute_statement] = STATE(2524), - [sym_silent_statement] = STATE(2524), - [sym_user_command] = STATE(2524), - [sym_function_definition] = STATE(2524), - [sym_range_statement] = STATE(2524), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2524), - [sym_map_statement] = STATE(2524), - [sym_highlight_statement] = STATE(2524), - [sym_syntax_statement] = STATE(2524), - [sym_sign_statement] = STATE(2524), + [39] = { + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(24), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -32464,15 +31568,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(456), + [sym__newline_or_pipe] = ACTIONS(431), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(456), + [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(477), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), - [sym__endtry] = ACTIONS(483), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -32536,68 +31640,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [41] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(48), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [40] = { + [sym__cmd_separator] = STATE(252), + [aux_sym__separated_statements] = STATE(44), + [sym__statement] = STATE(2405), + [sym_unknown_builtin_statement] = STATE(2405), + [sym_return_statement] = STATE(2405), + [sym_break_statement] = STATE(2405), + [sym_continue_statement] = STATE(2405), + [sym_normal_statement] = STATE(2405), + [sym_setfiletype_statement] = STATE(2405), + [sym_options_statement] = STATE(2405), + [sym_startinsert_statement] = STATE(2405), + [sym_stopinsert_statement] = STATE(2405), + [sym_scriptencoding_statement] = STATE(2405), + [sym_comclear_statement] = STATE(2405), + [sym_delcommand_statement] = STATE(2405), + [sym_runtime_statement] = STATE(2405), + [sym_wincmd_statement] = STATE(2405), + [sym_source_statement] = STATE(2405), + [sym_global_statement] = STATE(2405), + [sym_filetype_statement] = STATE(2405), + [sym_colorscheme_statement] = STATE(2405), + [sym_lua_statement] = STATE(2405), + [sym_ruby_statement] = STATE(2405), + [sym_python_statement] = STATE(2405), + [sym_perl_statement] = STATE(2405), + [sym_for_loop] = STATE(2405), + [sym_while_loop] = STATE(2405), + [sym_if_statement] = STATE(2405), + [sym_try_statement] = STATE(2405), + [sym_throw_statement] = STATE(2405), + [sym_autocmd_statement] = STATE(2405), + [sym_augroup_statement] = STATE(2405), + [sym_bang_filter_statement] = STATE(2405), + [sym_let_statement] = STATE(2405), + [sym_const_statement] = STATE(2405), + [sym_set_statement] = STATE(2405), + [sym_setlocal_statement] = STATE(2405), + [sym_unlet_statement] = STATE(2405), + [sym_call_statement] = STATE(2405), + [sym_echo_statement] = STATE(2405), + [sym_echon_statement] = STATE(2405), + [sym_echohl_statement] = STATE(2405), + [sym_echomsg_statement] = STATE(2405), + [sym_echoerr_statement] = STATE(2405), + [sym_execute_statement] = STATE(2405), + [sym_silent_statement] = STATE(2405), + [sym_user_command] = STATE(2405), + [sym_function_definition] = STATE(2405), + [sym_range_statement] = STATE(2405), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2405), + [sym_map_statement] = STATE(2405), + [sym_highlight_statement] = STATE(2405), + [sym_syntax_statement] = STATE(2405), + [sym_sign_statement] = STATE(2405), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -32613,15 +31717,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(431), + [sym__newline_or_pipe] = ACTIONS(479), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(431), + [sym_comment] = ACTIONS(479), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(485), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), + [sym__endtry] = ACTIONS(481), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -32685,68 +31789,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, + [41] = { + [sym__cmd_separator] = STATE(260), + [aux_sym__separated_statements] = STATE(41), + [sym__statement] = STATE(2538), + [sym_unknown_builtin_statement] = STATE(2538), + [sym_return_statement] = STATE(2538), + [sym_break_statement] = STATE(2538), + [sym_continue_statement] = STATE(2538), + [sym_normal_statement] = STATE(2538), + [sym_setfiletype_statement] = STATE(2538), + [sym_options_statement] = STATE(2538), + [sym_startinsert_statement] = STATE(2538), + [sym_stopinsert_statement] = STATE(2538), + [sym_scriptencoding_statement] = STATE(2538), + [sym_comclear_statement] = STATE(2538), + [sym_delcommand_statement] = STATE(2538), + [sym_runtime_statement] = STATE(2538), + [sym_wincmd_statement] = STATE(2538), + [sym_source_statement] = STATE(2538), + [sym_global_statement] = STATE(2538), + [sym_filetype_statement] = STATE(2538), + [sym_colorscheme_statement] = STATE(2538), + [sym_lua_statement] = STATE(2538), + [sym_ruby_statement] = STATE(2538), + [sym_python_statement] = STATE(2538), + [sym_perl_statement] = STATE(2538), + [sym_for_loop] = STATE(2538), + [sym_while_loop] = STATE(2538), + [sym_if_statement] = STATE(2538), + [sym_try_statement] = STATE(2538), + [sym_throw_statement] = STATE(2538), + [sym_autocmd_statement] = STATE(2538), + [sym_augroup_statement] = STATE(2538), + [sym_bang_filter_statement] = STATE(2538), + [sym_let_statement] = STATE(2538), + [sym_const_statement] = STATE(2538), + [sym_set_statement] = STATE(2538), + [sym_setlocal_statement] = STATE(2538), + [sym_unlet_statement] = STATE(2538), + [sym_call_statement] = STATE(2538), + [sym_echo_statement] = STATE(2538), + [sym_echon_statement] = STATE(2538), + [sym_echohl_statement] = STATE(2538), + [sym_echomsg_statement] = STATE(2538), + [sym_echoerr_statement] = STATE(2538), + [sym_execute_statement] = STATE(2538), + [sym_silent_statement] = STATE(2538), + [sym_user_command] = STATE(2538), + [sym_function_definition] = STATE(2538), + [sym_range_statement] = STATE(2538), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2538), + [sym_map_statement] = STATE(2538), + [sym_highlight_statement] = STATE(2538), + [sym_syntax_statement] = STATE(2538), + [sym_sign_statement] = STATE(2538), + [aux_sym__statement_repeat1] = STATE(141), + [anon_sym_COLON] = ACTIONS(243), + [sym_command_name] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(249), + [sym_mark] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(255), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT2] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_BSLASH_SLASH] = ACTIONS(270), + [anon_sym_BSLASH_QMARK] = ACTIONS(270), + [anon_sym_BSLASH_AMP] = ACTIONS(270), + [sym_integer_literal] = ACTIONS(273), + [sym_register] = ACTIONS(276), + [sym__newline_or_pipe] = ACTIONS(483), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(483), + [sym__function] = ACTIONS(282), + [sym__for] = ACTIONS(285), + [sym__endfor] = ACTIONS(294), + [sym__while] = ACTIONS(288), + [sym__if] = ACTIONS(291), + [sym__try] = ACTIONS(296), + [sym__const] = ACTIONS(299), + [sym__normal] = ACTIONS(302), + [sym__return] = ACTIONS(305), + [sym__perl] = ACTIONS(308), + [sym__lua] = ACTIONS(311), + [sym__ruby] = ACTIONS(314), + [sym__python] = ACTIONS(317), + [sym__throw] = ACTIONS(320), + [sym__execute] = ACTIONS(323), + [sym__autocmd] = ACTIONS(326), + [sym__silent] = ACTIONS(329), + [sym__echo] = ACTIONS(332), + [sym__echon] = ACTIONS(335), + [sym__echohl] = ACTIONS(338), + [sym__echomsg] = ACTIONS(341), + [sym__echoerr] = ACTIONS(344), + [sym__map] = ACTIONS(347), + [sym__nmap] = ACTIONS(347), + [sym__vmap] = ACTIONS(347), + [sym__xmap] = ACTIONS(347), + [sym__smap] = ACTIONS(347), + [sym__omap] = ACTIONS(347), + [sym__imap] = ACTIONS(347), + [sym__lmap] = ACTIONS(347), + [sym__cmap] = ACTIONS(347), + [sym__tmap] = ACTIONS(347), + [sym__noremap] = ACTIONS(347), + [sym__vnoremap] = ACTIONS(347), + [sym__nnoremap] = ACTIONS(347), + [sym__xnoremap] = ACTIONS(347), + [sym__snoremap] = ACTIONS(347), + [sym__onoremap] = ACTIONS(347), + [sym__inoremap] = ACTIONS(347), + [sym__lnoremap] = ACTIONS(347), + [sym__cnoremap] = ACTIONS(347), + [sym__tnoremap] = ACTIONS(347), + [sym__augroup] = ACTIONS(350), + [sym__highlight] = ACTIONS(353), + [sym__syntax] = ACTIONS(356), + [sym__set] = ACTIONS(359), + [sym__setlocal] = ACTIONS(362), + [sym__setfiletype] = ACTIONS(365), + [sym__browse] = ACTIONS(368), + [sym__options] = ACTIONS(371), + [sym__startinsert] = ACTIONS(374), + [sym__stopinsert] = ACTIONS(377), + [sym__scriptencoding] = ACTIONS(380), + [sym__source] = ACTIONS(383), + [sym__global] = ACTIONS(386), + [sym__colorscheme] = ACTIONS(389), + [sym__comclear] = ACTIONS(392), + [sym__delcommand] = ACTIONS(395), + [sym__runtime] = ACTIONS(398), + [sym__wincmd] = ACTIONS(401), + [sym__sign] = ACTIONS(404), + [sym__filetype] = ACTIONS(407), + [sym__let] = ACTIONS(410), + [sym__unlet] = ACTIONS(413), + [sym__call] = ACTIONS(416), + [sym__break] = ACTIONS(419), + [sym__continue] = ACTIONS(422), + [sym_unknown_command_name] = ACTIONS(425), + }, [42] = { - [sym__cmd_separator] = STATE(251), - [aux_sym__separated_statements] = STATE(27), - [sym__statement] = STATE(2368), - [sym_unknown_builtin_statement] = STATE(2368), - [sym_return_statement] = STATE(2368), - [sym_break_statement] = STATE(2368), - [sym_continue_statement] = STATE(2368), - [sym_normal_statement] = STATE(2368), - [sym_setfiletype_statement] = STATE(2368), - [sym_options_statement] = STATE(2368), - [sym_startinsert_statement] = STATE(2368), - [sym_stopinsert_statement] = STATE(2368), - [sym_scriptencoding_statement] = STATE(2368), - [sym_comclear_statement] = STATE(2368), - [sym_delcommand_statement] = STATE(2368), - [sym_runtime_statement] = STATE(2368), - [sym_wincmd_statement] = STATE(2368), - [sym_source_statement] = STATE(2368), - [sym_global_statement] = STATE(2368), - [sym_filetype_statement] = STATE(2368), - [sym_colorscheme_statement] = STATE(2368), - [sym_lua_statement] = STATE(2368), - [sym_ruby_statement] = STATE(2368), - [sym_python_statement] = STATE(2368), - [sym_perl_statement] = STATE(2368), - [sym_for_loop] = STATE(2368), - [sym_while_loop] = STATE(2368), - [sym_if_statement] = STATE(2368), - [sym_try_statement] = STATE(2368), - [sym_throw_statement] = STATE(2368), - [sym_autocmd_statement] = STATE(2368), - [sym_augroup_statement] = STATE(2368), - [sym_bang_filter_statement] = STATE(2368), - [sym_let_statement] = STATE(2368), - [sym_const_statement] = STATE(2368), - [sym_set_statement] = STATE(2368), - [sym_setlocal_statement] = STATE(2368), - [sym_unlet_statement] = STATE(2368), - [sym_call_statement] = STATE(2368), - [sym_echo_statement] = STATE(2368), - [sym_echon_statement] = STATE(2368), - [sym_echohl_statement] = STATE(2368), - [sym_echomsg_statement] = STATE(2368), - [sym_echoerr_statement] = STATE(2368), - [sym_execute_statement] = STATE(2368), - [sym_silent_statement] = STATE(2368), - [sym_user_command] = STATE(2368), - [sym_function_definition] = STATE(2368), - [sym_range_statement] = STATE(2368), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2368), - [sym_map_statement] = STATE(2368), - [sym_highlight_statement] = STATE(2368), - [sym_syntax_statement] = STATE(2368), - [sym_sign_statement] = STATE(2368), + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(47), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -32762,13 +32015,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(448), + [sym__newline_or_pipe] = ACTIONS(431), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(448), + [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(486), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), - [sym__endwhile] = ACTIONS(487), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__const] = ACTIONS(43), @@ -32835,67 +32088,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [43] = { - [sym__cmd_separator] = STATE(250), - [aux_sym__separated_statements] = STATE(36), - [sym__statement] = STATE(2363), - [sym_unknown_builtin_statement] = STATE(2363), - [sym_return_statement] = STATE(2363), - [sym_break_statement] = STATE(2363), - [sym_continue_statement] = STATE(2363), - [sym_normal_statement] = STATE(2363), - [sym_setfiletype_statement] = STATE(2363), - [sym_options_statement] = STATE(2363), - [sym_startinsert_statement] = STATE(2363), - [sym_stopinsert_statement] = STATE(2363), - [sym_scriptencoding_statement] = STATE(2363), - [sym_comclear_statement] = STATE(2363), - [sym_delcommand_statement] = STATE(2363), - [sym_runtime_statement] = STATE(2363), - [sym_wincmd_statement] = STATE(2363), - [sym_source_statement] = STATE(2363), - [sym_global_statement] = STATE(2363), - [sym_filetype_statement] = STATE(2363), - [sym_colorscheme_statement] = STATE(2363), - [sym_lua_statement] = STATE(2363), - [sym_ruby_statement] = STATE(2363), - [sym_python_statement] = STATE(2363), - [sym_perl_statement] = STATE(2363), - [sym_for_loop] = STATE(2363), - [sym_while_loop] = STATE(2363), - [sym_if_statement] = STATE(2363), - [sym_try_statement] = STATE(2363), - [sym_throw_statement] = STATE(2363), - [sym_autocmd_statement] = STATE(2363), - [sym_augroup_statement] = STATE(2363), - [sym_bang_filter_statement] = STATE(2363), - [sym_let_statement] = STATE(2363), - [sym_const_statement] = STATE(2363), - [sym_set_statement] = STATE(2363), - [sym_setlocal_statement] = STATE(2363), - [sym_unlet_statement] = STATE(2363), - [sym_call_statement] = STATE(2363), - [sym_echo_statement] = STATE(2363), - [sym_echon_statement] = STATE(2363), - [sym_echohl_statement] = STATE(2363), - [sym_echomsg_statement] = STATE(2363), - [sym_echoerr_statement] = STATE(2363), - [sym_execute_statement] = STATE(2363), - [sym_silent_statement] = STATE(2363), - [sym_user_command] = STATE(2363), - [sym_function_definition] = STATE(2363), - [sym_range_statement] = STATE(2363), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2363), - [sym_map_statement] = STATE(2363), - [sym_highlight_statement] = STATE(2363), - [sym_syntax_statement] = STATE(2363), - [sym_sign_statement] = STATE(2363), + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(42), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -32911,12 +32164,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(201), + [sym__newline_or_pipe] = ACTIONS(431), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(201), + [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(488), [sym__for] = ACTIONS(35), - [sym__endfor] = ACTIONS(489), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), @@ -32984,216 +32237,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [44] = { - [sym__cmd_separator] = STATE(255), + [sym__cmd_separator] = STATE(252), [aux_sym__separated_statements] = STATE(44), - [sym__statement] = STATE(2524), - [sym_unknown_builtin_statement] = STATE(2524), - [sym_return_statement] = STATE(2524), - [sym_break_statement] = STATE(2524), - [sym_continue_statement] = STATE(2524), - [sym_normal_statement] = STATE(2524), - [sym_setfiletype_statement] = STATE(2524), - [sym_options_statement] = STATE(2524), - [sym_startinsert_statement] = STATE(2524), - [sym_stopinsert_statement] = STATE(2524), - [sym_scriptencoding_statement] = STATE(2524), - [sym_comclear_statement] = STATE(2524), - [sym_delcommand_statement] = STATE(2524), - [sym_runtime_statement] = STATE(2524), - [sym_wincmd_statement] = STATE(2524), - [sym_source_statement] = STATE(2524), - [sym_global_statement] = STATE(2524), - [sym_filetype_statement] = STATE(2524), - [sym_colorscheme_statement] = STATE(2524), - [sym_lua_statement] = STATE(2524), - [sym_ruby_statement] = STATE(2524), - [sym_python_statement] = STATE(2524), - [sym_perl_statement] = STATE(2524), - [sym_for_loop] = STATE(2524), - [sym_while_loop] = STATE(2524), - [sym_if_statement] = STATE(2524), - [sym_try_statement] = STATE(2524), - [sym_throw_statement] = STATE(2524), - [sym_autocmd_statement] = STATE(2524), - [sym_augroup_statement] = STATE(2524), - [sym_bang_filter_statement] = STATE(2524), - [sym_let_statement] = STATE(2524), - [sym_const_statement] = STATE(2524), - [sym_set_statement] = STATE(2524), - [sym_setlocal_statement] = STATE(2524), - [sym_unlet_statement] = STATE(2524), - [sym_call_statement] = STATE(2524), - [sym_echo_statement] = STATE(2524), - [sym_echon_statement] = STATE(2524), - [sym_echohl_statement] = STATE(2524), - [sym_echomsg_statement] = STATE(2524), - [sym_echoerr_statement] = STATE(2524), - [sym_execute_statement] = STATE(2524), - [sym_silent_statement] = STATE(2524), - [sym_user_command] = STATE(2524), - [sym_function_definition] = STATE(2524), - [sym_range_statement] = STATE(2524), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2524), - [sym_map_statement] = STATE(2524), - [sym_highlight_statement] = STATE(2524), - [sym_syntax_statement] = STATE(2524), - [sym_sign_statement] = STATE(2524), + [sym__statement] = STATE(2405), + [sym_unknown_builtin_statement] = STATE(2405), + [sym_return_statement] = STATE(2405), + [sym_break_statement] = STATE(2405), + [sym_continue_statement] = STATE(2405), + [sym_normal_statement] = STATE(2405), + [sym_setfiletype_statement] = STATE(2405), + [sym_options_statement] = STATE(2405), + [sym_startinsert_statement] = STATE(2405), + [sym_stopinsert_statement] = STATE(2405), + [sym_scriptencoding_statement] = STATE(2405), + [sym_comclear_statement] = STATE(2405), + [sym_delcommand_statement] = STATE(2405), + [sym_runtime_statement] = STATE(2405), + [sym_wincmd_statement] = STATE(2405), + [sym_source_statement] = STATE(2405), + [sym_global_statement] = STATE(2405), + [sym_filetype_statement] = STATE(2405), + [sym_colorscheme_statement] = STATE(2405), + [sym_lua_statement] = STATE(2405), + [sym_ruby_statement] = STATE(2405), + [sym_python_statement] = STATE(2405), + [sym_perl_statement] = STATE(2405), + [sym_for_loop] = STATE(2405), + [sym_while_loop] = STATE(2405), + [sym_if_statement] = STATE(2405), + [sym_try_statement] = STATE(2405), + [sym_throw_statement] = STATE(2405), + [sym_autocmd_statement] = STATE(2405), + [sym_augroup_statement] = STATE(2405), + [sym_bang_filter_statement] = STATE(2405), + [sym_let_statement] = STATE(2405), + [sym_const_statement] = STATE(2405), + [sym_set_statement] = STATE(2405), + [sym_setlocal_statement] = STATE(2405), + [sym_unlet_statement] = STATE(2405), + [sym_call_statement] = STATE(2405), + [sym_echo_statement] = STATE(2405), + [sym_echon_statement] = STATE(2405), + [sym_echohl_statement] = STATE(2405), + [sym_echomsg_statement] = STATE(2405), + [sym_echoerr_statement] = STATE(2405), + [sym_execute_statement] = STATE(2405), + [sym_silent_statement] = STATE(2405), + [sym_user_command] = STATE(2405), + [sym_function_definition] = STATE(2405), + [sym_range_statement] = STATE(2405), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2405), + [sym_map_statement] = STATE(2405), + [sym_highlight_statement] = STATE(2405), + [sym_syntax_statement] = STATE(2405), + [sym_sign_statement] = STATE(2405), [aux_sym__statement_repeat1] = STATE(141), - [anon_sym_COLON] = ACTIONS(235), - [sym_command_name] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(241), - [sym_mark] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_DOT2] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(259), - [anon_sym_BSLASH_SLASH] = ACTIONS(262), - [anon_sym_BSLASH_QMARK] = ACTIONS(262), - [anon_sym_BSLASH_AMP] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [sym_register] = ACTIONS(268), - [sym__newline_or_pipe] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(243), + [sym_command_name] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(249), + [sym_mark] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(255), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT2] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_BSLASH_SLASH] = ACTIONS(270), + [anon_sym_BSLASH_QMARK] = ACTIONS(270), + [anon_sym_BSLASH_AMP] = ACTIONS(270), + [sym_integer_literal] = ACTIONS(273), + [sym_register] = ACTIONS(276), + [sym__newline_or_pipe] = ACTIONS(490), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(491), - [sym__function] = ACTIONS(274), - [sym__for] = ACTIONS(277), - [sym__while] = ACTIONS(280), - [sym__if] = ACTIONS(283), - [sym__try] = ACTIONS(288), - [sym__endtry] = ACTIONS(286), - [sym__const] = ACTIONS(291), - [sym__normal] = ACTIONS(294), - [sym__return] = ACTIONS(297), - [sym__perl] = ACTIONS(300), - [sym__lua] = ACTIONS(303), - [sym__ruby] = ACTIONS(306), - [sym__python] = ACTIONS(309), - [sym__throw] = ACTIONS(312), - [sym__execute] = ACTIONS(315), - [sym__autocmd] = ACTIONS(318), - [sym__silent] = ACTIONS(321), - [sym__echo] = ACTIONS(324), - [sym__echon] = ACTIONS(327), - [sym__echohl] = ACTIONS(330), - [sym__echomsg] = ACTIONS(333), - [sym__echoerr] = ACTIONS(336), - [sym__map] = ACTIONS(339), - [sym__nmap] = ACTIONS(339), - [sym__vmap] = ACTIONS(339), - [sym__xmap] = ACTIONS(339), - [sym__smap] = ACTIONS(339), - [sym__omap] = ACTIONS(339), - [sym__imap] = ACTIONS(339), - [sym__lmap] = ACTIONS(339), - [sym__cmap] = ACTIONS(339), - [sym__tmap] = ACTIONS(339), - [sym__noremap] = ACTIONS(339), - [sym__vnoremap] = ACTIONS(339), - [sym__nnoremap] = ACTIONS(339), - [sym__xnoremap] = ACTIONS(339), - [sym__snoremap] = ACTIONS(339), - [sym__onoremap] = ACTIONS(339), - [sym__inoremap] = ACTIONS(339), - [sym__lnoremap] = ACTIONS(339), - [sym__cnoremap] = ACTIONS(339), - [sym__tnoremap] = ACTIONS(339), - [sym__augroup] = ACTIONS(342), - [sym__highlight] = ACTIONS(345), - [sym__syntax] = ACTIONS(348), - [sym__set] = ACTIONS(351), - [sym__setlocal] = ACTIONS(354), - [sym__setfiletype] = ACTIONS(357), - [sym__browse] = ACTIONS(360), - [sym__options] = ACTIONS(363), - [sym__startinsert] = ACTIONS(366), - [sym__stopinsert] = ACTIONS(369), - [sym__scriptencoding] = ACTIONS(372), - [sym__source] = ACTIONS(375), - [sym__global] = ACTIONS(378), - [sym__colorscheme] = ACTIONS(381), - [sym__comclear] = ACTIONS(384), - [sym__delcommand] = ACTIONS(387), - [sym__runtime] = ACTIONS(390), - [sym__wincmd] = ACTIONS(393), - [sym__sign] = ACTIONS(396), - [sym__filetype] = ACTIONS(399), - [sym__let] = ACTIONS(402), - [sym__unlet] = ACTIONS(405), - [sym__call] = ACTIONS(408), - [sym__break] = ACTIONS(411), - [sym__continue] = ACTIONS(414), - [sym_unknown_command_name] = ACTIONS(417), + [sym_comment] = ACTIONS(490), + [sym__function] = ACTIONS(282), + [sym__for] = ACTIONS(285), + [sym__while] = ACTIONS(288), + [sym__if] = ACTIONS(291), + [sym__try] = ACTIONS(296), + [sym__endtry] = ACTIONS(294), + [sym__const] = ACTIONS(299), + [sym__normal] = ACTIONS(302), + [sym__return] = ACTIONS(305), + [sym__perl] = ACTIONS(308), + [sym__lua] = ACTIONS(311), + [sym__ruby] = ACTIONS(314), + [sym__python] = ACTIONS(317), + [sym__throw] = ACTIONS(320), + [sym__execute] = ACTIONS(323), + [sym__autocmd] = ACTIONS(326), + [sym__silent] = ACTIONS(329), + [sym__echo] = ACTIONS(332), + [sym__echon] = ACTIONS(335), + [sym__echohl] = ACTIONS(338), + [sym__echomsg] = ACTIONS(341), + [sym__echoerr] = ACTIONS(344), + [sym__map] = ACTIONS(347), + [sym__nmap] = ACTIONS(347), + [sym__vmap] = ACTIONS(347), + [sym__xmap] = ACTIONS(347), + [sym__smap] = ACTIONS(347), + [sym__omap] = ACTIONS(347), + [sym__imap] = ACTIONS(347), + [sym__lmap] = ACTIONS(347), + [sym__cmap] = ACTIONS(347), + [sym__tmap] = ACTIONS(347), + [sym__noremap] = ACTIONS(347), + [sym__vnoremap] = ACTIONS(347), + [sym__nnoremap] = ACTIONS(347), + [sym__xnoremap] = ACTIONS(347), + [sym__snoremap] = ACTIONS(347), + [sym__onoremap] = ACTIONS(347), + [sym__inoremap] = ACTIONS(347), + [sym__lnoremap] = ACTIONS(347), + [sym__cnoremap] = ACTIONS(347), + [sym__tnoremap] = ACTIONS(347), + [sym__augroup] = ACTIONS(350), + [sym__highlight] = ACTIONS(353), + [sym__syntax] = ACTIONS(356), + [sym__set] = ACTIONS(359), + [sym__setlocal] = ACTIONS(362), + [sym__setfiletype] = ACTIONS(365), + [sym__browse] = ACTIONS(368), + [sym__options] = ACTIONS(371), + [sym__startinsert] = ACTIONS(374), + [sym__stopinsert] = ACTIONS(377), + [sym__scriptencoding] = ACTIONS(380), + [sym__source] = ACTIONS(383), + [sym__global] = ACTIONS(386), + [sym__colorscheme] = ACTIONS(389), + [sym__comclear] = ACTIONS(392), + [sym__delcommand] = ACTIONS(395), + [sym__runtime] = ACTIONS(398), + [sym__wincmd] = ACTIONS(401), + [sym__sign] = ACTIONS(404), + [sym__filetype] = ACTIONS(407), + [sym__let] = ACTIONS(410), + [sym__unlet] = ACTIONS(413), + [sym__call] = ACTIONS(416), + [sym__break] = ACTIONS(419), + [sym__continue] = ACTIONS(422), + [sym_unknown_command_name] = ACTIONS(425), }, [45] = { - [sym__cmd_separator] = STATE(260), - [aux_sym__separated_statements] = STATE(34), - [sym__statement] = STATE(2473), - [sym_unknown_builtin_statement] = STATE(2473), - [sym_return_statement] = STATE(2473), - [sym_break_statement] = STATE(2473), - [sym_continue_statement] = STATE(2473), - [sym_normal_statement] = STATE(2473), - [sym_setfiletype_statement] = STATE(2473), - [sym_options_statement] = STATE(2473), - [sym_startinsert_statement] = STATE(2473), - [sym_stopinsert_statement] = STATE(2473), - [sym_scriptencoding_statement] = STATE(2473), - [sym_comclear_statement] = STATE(2473), - [sym_delcommand_statement] = STATE(2473), - [sym_runtime_statement] = STATE(2473), - [sym_wincmd_statement] = STATE(2473), - [sym_source_statement] = STATE(2473), - [sym_global_statement] = STATE(2473), - [sym_filetype_statement] = STATE(2473), - [sym_colorscheme_statement] = STATE(2473), - [sym_lua_statement] = STATE(2473), - [sym_ruby_statement] = STATE(2473), - [sym_python_statement] = STATE(2473), - [sym_perl_statement] = STATE(2473), - [sym_for_loop] = STATE(2473), - [sym_while_loop] = STATE(2473), - [sym_if_statement] = STATE(2473), - [sym_try_statement] = STATE(2473), - [sym_throw_statement] = STATE(2473), - [sym_autocmd_statement] = STATE(2473), - [sym_augroup_statement] = STATE(2473), - [sym_bang_filter_statement] = STATE(2473), - [sym_let_statement] = STATE(2473), - [sym_const_statement] = STATE(2473), - [sym_set_statement] = STATE(2473), - [sym_setlocal_statement] = STATE(2473), - [sym_unlet_statement] = STATE(2473), - [sym_call_statement] = STATE(2473), - [sym_echo_statement] = STATE(2473), - [sym_echon_statement] = STATE(2473), - [sym_echohl_statement] = STATE(2473), - [sym_echomsg_statement] = STATE(2473), - [sym_echoerr_statement] = STATE(2473), - [sym_execute_statement] = STATE(2473), - [sym_silent_statement] = STATE(2473), - [sym_user_command] = STATE(2473), - [sym_function_definition] = STATE(2473), - [sym_range_statement] = STATE(2473), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2473), - [sym_map_statement] = STATE(2473), - [sym_highlight_statement] = STATE(2473), - [sym_syntax_statement] = STATE(2473), - [sym_sign_statement] = STATE(2473), + [sym__cmd_separator] = STATE(252), + [aux_sym__separated_statements] = STATE(40), + [sym__statement] = STATE(2405), + [sym_unknown_builtin_statement] = STATE(2405), + [sym_return_statement] = STATE(2405), + [sym_break_statement] = STATE(2405), + [sym_continue_statement] = STATE(2405), + [sym_normal_statement] = STATE(2405), + [sym_setfiletype_statement] = STATE(2405), + [sym_options_statement] = STATE(2405), + [sym_startinsert_statement] = STATE(2405), + [sym_stopinsert_statement] = STATE(2405), + [sym_scriptencoding_statement] = STATE(2405), + [sym_comclear_statement] = STATE(2405), + [sym_delcommand_statement] = STATE(2405), + [sym_runtime_statement] = STATE(2405), + [sym_wincmd_statement] = STATE(2405), + [sym_source_statement] = STATE(2405), + [sym_global_statement] = STATE(2405), + [sym_filetype_statement] = STATE(2405), + [sym_colorscheme_statement] = STATE(2405), + [sym_lua_statement] = STATE(2405), + [sym_ruby_statement] = STATE(2405), + [sym_python_statement] = STATE(2405), + [sym_perl_statement] = STATE(2405), + [sym_for_loop] = STATE(2405), + [sym_while_loop] = STATE(2405), + [sym_if_statement] = STATE(2405), + [sym_try_statement] = STATE(2405), + [sym_throw_statement] = STATE(2405), + [sym_autocmd_statement] = STATE(2405), + [sym_augroup_statement] = STATE(2405), + [sym_bang_filter_statement] = STATE(2405), + [sym_let_statement] = STATE(2405), + [sym_const_statement] = STATE(2405), + [sym_set_statement] = STATE(2405), + [sym_setlocal_statement] = STATE(2405), + [sym_unlet_statement] = STATE(2405), + [sym_call_statement] = STATE(2405), + [sym_echo_statement] = STATE(2405), + [sym_echon_statement] = STATE(2405), + [sym_echohl_statement] = STATE(2405), + [sym_echomsg_statement] = STATE(2405), + [sym_echoerr_statement] = STATE(2405), + [sym_execute_statement] = STATE(2405), + [sym_silent_statement] = STATE(2405), + [sym_user_command] = STATE(2405), + [sym_function_definition] = STATE(2405), + [sym_range_statement] = STATE(2405), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2405), + [sym_map_statement] = STATE(2405), + [sym_highlight_statement] = STATE(2405), + [sym_syntax_statement] = STATE(2405), + [sym_sign_statement] = STATE(2405), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -33209,15 +32462,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(452), + [sym__newline_or_pipe] = ACTIONS(479), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(452), + [sym_comment] = ACTIONS(479), [sym__function] = ACTIONS(33), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), - [sym__endif] = ACTIONS(494), [sym__try] = ACTIONS(41), + [sym__endtry] = ACTIONS(493), [sym__const] = ACTIONS(43), [sym__normal] = ACTIONS(45), [sym__return] = ACTIONS(47), @@ -33282,67 +32535,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [46] = { - [sym__cmd_separator] = STATE(251), - [aux_sym__separated_statements] = STATE(26), - [sym__statement] = STATE(2368), - [sym_unknown_builtin_statement] = STATE(2368), - [sym_return_statement] = STATE(2368), - [sym_break_statement] = STATE(2368), - [sym_continue_statement] = STATE(2368), - [sym_normal_statement] = STATE(2368), - [sym_setfiletype_statement] = STATE(2368), - [sym_options_statement] = STATE(2368), - [sym_startinsert_statement] = STATE(2368), - [sym_stopinsert_statement] = STATE(2368), - [sym_scriptencoding_statement] = STATE(2368), - [sym_comclear_statement] = STATE(2368), - [sym_delcommand_statement] = STATE(2368), - [sym_runtime_statement] = STATE(2368), - [sym_wincmd_statement] = STATE(2368), - [sym_source_statement] = STATE(2368), - [sym_global_statement] = STATE(2368), - [sym_filetype_statement] = STATE(2368), - [sym_colorscheme_statement] = STATE(2368), - [sym_lua_statement] = STATE(2368), - [sym_ruby_statement] = STATE(2368), - [sym_python_statement] = STATE(2368), - [sym_perl_statement] = STATE(2368), - [sym_for_loop] = STATE(2368), - [sym_while_loop] = STATE(2368), - [sym_if_statement] = STATE(2368), - [sym_try_statement] = STATE(2368), - [sym_throw_statement] = STATE(2368), - [sym_autocmd_statement] = STATE(2368), - [sym_augroup_statement] = STATE(2368), - [sym_bang_filter_statement] = STATE(2368), - [sym_let_statement] = STATE(2368), - [sym_const_statement] = STATE(2368), - [sym_set_statement] = STATE(2368), - [sym_setlocal_statement] = STATE(2368), - [sym_unlet_statement] = STATE(2368), - [sym_call_statement] = STATE(2368), - [sym_echo_statement] = STATE(2368), - [sym_echon_statement] = STATE(2368), - [sym_echohl_statement] = STATE(2368), - [sym_echomsg_statement] = STATE(2368), - [sym_echoerr_statement] = STATE(2368), - [sym_execute_statement] = STATE(2368), - [sym_silent_statement] = STATE(2368), - [sym_user_command] = STATE(2368), - [sym_function_definition] = STATE(2368), - [sym_range_statement] = STATE(2368), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2368), - [sym_map_statement] = STATE(2368), - [sym_highlight_statement] = STATE(2368), - [sym_syntax_statement] = STATE(2368), - [sym_sign_statement] = STATE(2368), + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(20), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -33358,13 +32611,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(448), + [sym__newline_or_pipe] = ACTIONS(431), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(448), + [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), + [sym__endfunction] = ACTIONS(495), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), - [sym__endwhile] = ACTIONS(496), [sym__if] = ACTIONS(39), [sym__try] = ACTIONS(41), [sym__const] = ACTIONS(43), @@ -33431,70 +32684,518 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [47] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(39), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), + [sym__cmd_separator] = STATE(254), + [aux_sym__separated_statements] = STATE(47), + [sym__statement] = STATE(2417), + [sym_unknown_builtin_statement] = STATE(2417), + [sym_return_statement] = STATE(2417), + [sym_break_statement] = STATE(2417), + [sym_continue_statement] = STATE(2417), + [sym_normal_statement] = STATE(2417), + [sym_setfiletype_statement] = STATE(2417), + [sym_options_statement] = STATE(2417), + [sym_startinsert_statement] = STATE(2417), + [sym_stopinsert_statement] = STATE(2417), + [sym_scriptencoding_statement] = STATE(2417), + [sym_comclear_statement] = STATE(2417), + [sym_delcommand_statement] = STATE(2417), + [sym_runtime_statement] = STATE(2417), + [sym_wincmd_statement] = STATE(2417), + [sym_source_statement] = STATE(2417), + [sym_global_statement] = STATE(2417), + [sym_filetype_statement] = STATE(2417), + [sym_colorscheme_statement] = STATE(2417), + [sym_lua_statement] = STATE(2417), + [sym_ruby_statement] = STATE(2417), + [sym_python_statement] = STATE(2417), + [sym_perl_statement] = STATE(2417), + [sym_for_loop] = STATE(2417), + [sym_while_loop] = STATE(2417), + [sym_if_statement] = STATE(2417), + [sym_try_statement] = STATE(2417), + [sym_throw_statement] = STATE(2417), + [sym_autocmd_statement] = STATE(2417), + [sym_augroup_statement] = STATE(2417), + [sym_bang_filter_statement] = STATE(2417), + [sym_let_statement] = STATE(2417), + [sym_const_statement] = STATE(2417), + [sym_set_statement] = STATE(2417), + [sym_setlocal_statement] = STATE(2417), + [sym_unlet_statement] = STATE(2417), + [sym_call_statement] = STATE(2417), + [sym_echo_statement] = STATE(2417), + [sym_echon_statement] = STATE(2417), + [sym_echohl_statement] = STATE(2417), + [sym_echomsg_statement] = STATE(2417), + [sym_echoerr_statement] = STATE(2417), + [sym_execute_statement] = STATE(2417), + [sym_silent_statement] = STATE(2417), + [sym_user_command] = STATE(2417), + [sym_function_definition] = STATE(2417), + [sym_range_statement] = STATE(2417), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2417), + [sym_map_statement] = STATE(2417), + [sym_highlight_statement] = STATE(2417), + [sym_syntax_statement] = STATE(2417), + [sym_sign_statement] = STATE(2417), [aux_sym__statement_repeat1] = STATE(141), + [anon_sym_COLON] = ACTIONS(243), + [sym_command_name] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(249), + [sym_mark] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(255), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT2] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_BSLASH_SLASH] = ACTIONS(270), + [anon_sym_BSLASH_QMARK] = ACTIONS(270), + [anon_sym_BSLASH_AMP] = ACTIONS(270), + [sym_integer_literal] = ACTIONS(273), + [sym_register] = ACTIONS(276), + [sym__newline_or_pipe] = ACTIONS(497), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(497), + [sym__function] = ACTIONS(282), + [sym__endfunction] = ACTIONS(294), + [sym__for] = ACTIONS(285), + [sym__while] = ACTIONS(288), + [sym__if] = ACTIONS(291), + [sym__try] = ACTIONS(296), + [sym__const] = ACTIONS(299), + [sym__normal] = ACTIONS(302), + [sym__return] = ACTIONS(305), + [sym__perl] = ACTIONS(308), + [sym__lua] = ACTIONS(311), + [sym__ruby] = ACTIONS(314), + [sym__python] = ACTIONS(317), + [sym__throw] = ACTIONS(320), + [sym__execute] = ACTIONS(323), + [sym__autocmd] = ACTIONS(326), + [sym__silent] = ACTIONS(329), + [sym__echo] = ACTIONS(332), + [sym__echon] = ACTIONS(335), + [sym__echohl] = ACTIONS(338), + [sym__echomsg] = ACTIONS(341), + [sym__echoerr] = ACTIONS(344), + [sym__map] = ACTIONS(347), + [sym__nmap] = ACTIONS(347), + [sym__vmap] = ACTIONS(347), + [sym__xmap] = ACTIONS(347), + [sym__smap] = ACTIONS(347), + [sym__omap] = ACTIONS(347), + [sym__imap] = ACTIONS(347), + [sym__lmap] = ACTIONS(347), + [sym__cmap] = ACTIONS(347), + [sym__tmap] = ACTIONS(347), + [sym__noremap] = ACTIONS(347), + [sym__vnoremap] = ACTIONS(347), + [sym__nnoremap] = ACTIONS(347), + [sym__xnoremap] = ACTIONS(347), + [sym__snoremap] = ACTIONS(347), + [sym__onoremap] = ACTIONS(347), + [sym__inoremap] = ACTIONS(347), + [sym__lnoremap] = ACTIONS(347), + [sym__cnoremap] = ACTIONS(347), + [sym__tnoremap] = ACTIONS(347), + [sym__augroup] = ACTIONS(350), + [sym__highlight] = ACTIONS(353), + [sym__syntax] = ACTIONS(356), + [sym__set] = ACTIONS(359), + [sym__setlocal] = ACTIONS(362), + [sym__setfiletype] = ACTIONS(365), + [sym__browse] = ACTIONS(368), + [sym__options] = ACTIONS(371), + [sym__startinsert] = ACTIONS(374), + [sym__stopinsert] = ACTIONS(377), + [sym__scriptencoding] = ACTIONS(380), + [sym__source] = ACTIONS(383), + [sym__global] = ACTIONS(386), + [sym__colorscheme] = ACTIONS(389), + [sym__comclear] = ACTIONS(392), + [sym__delcommand] = ACTIONS(395), + [sym__runtime] = ACTIONS(398), + [sym__wincmd] = ACTIONS(401), + [sym__sign] = ACTIONS(404), + [sym__filetype] = ACTIONS(407), + [sym__let] = ACTIONS(410), + [sym__unlet] = ACTIONS(413), + [sym__call] = ACTIONS(416), + [sym__break] = ACTIONS(419), + [sym__continue] = ACTIONS(422), + [sym_unknown_command_name] = ACTIONS(425), + }, + [48] = { + [sym__cmd_separator] = STATE(253), + [aux_sym__separated_statements] = STATE(48), + [sym__statement] = STATE(2415), + [sym_unknown_builtin_statement] = STATE(2415), + [sym_return_statement] = STATE(2415), + [sym_break_statement] = STATE(2415), + [sym_continue_statement] = STATE(2415), + [sym_normal_statement] = STATE(2415), + [sym_setfiletype_statement] = STATE(2415), + [sym_options_statement] = STATE(2415), + [sym_startinsert_statement] = STATE(2415), + [sym_stopinsert_statement] = STATE(2415), + [sym_scriptencoding_statement] = STATE(2415), + [sym_comclear_statement] = STATE(2415), + [sym_delcommand_statement] = STATE(2415), + [sym_runtime_statement] = STATE(2415), + [sym_wincmd_statement] = STATE(2415), + [sym_source_statement] = STATE(2415), + [sym_global_statement] = STATE(2415), + [sym_filetype_statement] = STATE(2415), + [sym_colorscheme_statement] = STATE(2415), + [sym_lua_statement] = STATE(2415), + [sym_ruby_statement] = STATE(2415), + [sym_python_statement] = STATE(2415), + [sym_perl_statement] = STATE(2415), + [sym_for_loop] = STATE(2415), + [sym_while_loop] = STATE(2415), + [sym_if_statement] = STATE(2415), + [sym_try_statement] = STATE(2415), + [sym_throw_statement] = STATE(2415), + [sym_autocmd_statement] = STATE(2415), + [sym_augroup_statement] = STATE(2415), + [sym_bang_filter_statement] = STATE(2415), + [sym_let_statement] = STATE(2415), + [sym_const_statement] = STATE(2415), + [sym_set_statement] = STATE(2415), + [sym_setlocal_statement] = STATE(2415), + [sym_unlet_statement] = STATE(2415), + [sym_call_statement] = STATE(2415), + [sym_echo_statement] = STATE(2415), + [sym_echon_statement] = STATE(2415), + [sym_echohl_statement] = STATE(2415), + [sym_echomsg_statement] = STATE(2415), + [sym_echoerr_statement] = STATE(2415), + [sym_execute_statement] = STATE(2415), + [sym_silent_statement] = STATE(2415), + [sym_user_command] = STATE(2415), + [sym_function_definition] = STATE(2415), + [sym_range_statement] = STATE(2415), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2415), + [sym_map_statement] = STATE(2415), + [sym_highlight_statement] = STATE(2415), + [sym_syntax_statement] = STATE(2415), + [sym_sign_statement] = STATE(2415), + [aux_sym__statement_repeat1] = STATE(141), + [anon_sym_COLON] = ACTIONS(243), + [sym_command_name] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(249), + [sym_mark] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(255), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT2] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_BSLASH_SLASH] = ACTIONS(270), + [anon_sym_BSLASH_QMARK] = ACTIONS(270), + [anon_sym_BSLASH_AMP] = ACTIONS(270), + [sym_integer_literal] = ACTIONS(273), + [sym_register] = ACTIONS(276), + [sym__newline_or_pipe] = ACTIONS(500), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(500), + [sym__function] = ACTIONS(282), + [sym__for] = ACTIONS(285), + [sym__while] = ACTIONS(288), + [sym__endwhile] = ACTIONS(294), + [sym__if] = ACTIONS(291), + [sym__try] = ACTIONS(296), + [sym__const] = ACTIONS(299), + [sym__normal] = ACTIONS(302), + [sym__return] = ACTIONS(305), + [sym__perl] = ACTIONS(308), + [sym__lua] = ACTIONS(311), + [sym__ruby] = ACTIONS(314), + [sym__python] = ACTIONS(317), + [sym__throw] = ACTIONS(320), + [sym__execute] = ACTIONS(323), + [sym__autocmd] = ACTIONS(326), + [sym__silent] = ACTIONS(329), + [sym__echo] = ACTIONS(332), + [sym__echon] = ACTIONS(335), + [sym__echohl] = ACTIONS(338), + [sym__echomsg] = ACTIONS(341), + [sym__echoerr] = ACTIONS(344), + [sym__map] = ACTIONS(347), + [sym__nmap] = ACTIONS(347), + [sym__vmap] = ACTIONS(347), + [sym__xmap] = ACTIONS(347), + [sym__smap] = ACTIONS(347), + [sym__omap] = ACTIONS(347), + [sym__imap] = ACTIONS(347), + [sym__lmap] = ACTIONS(347), + [sym__cmap] = ACTIONS(347), + [sym__tmap] = ACTIONS(347), + [sym__noremap] = ACTIONS(347), + [sym__vnoremap] = ACTIONS(347), + [sym__nnoremap] = ACTIONS(347), + [sym__xnoremap] = ACTIONS(347), + [sym__snoremap] = ACTIONS(347), + [sym__onoremap] = ACTIONS(347), + [sym__inoremap] = ACTIONS(347), + [sym__lnoremap] = ACTIONS(347), + [sym__cnoremap] = ACTIONS(347), + [sym__tnoremap] = ACTIONS(347), + [sym__augroup] = ACTIONS(350), + [sym__highlight] = ACTIONS(353), + [sym__syntax] = ACTIONS(356), + [sym__set] = ACTIONS(359), + [sym__setlocal] = ACTIONS(362), + [sym__setfiletype] = ACTIONS(365), + [sym__browse] = ACTIONS(368), + [sym__options] = ACTIONS(371), + [sym__startinsert] = ACTIONS(374), + [sym__stopinsert] = ACTIONS(377), + [sym__scriptencoding] = ACTIONS(380), + [sym__source] = ACTIONS(383), + [sym__global] = ACTIONS(386), + [sym__colorscheme] = ACTIONS(389), + [sym__comclear] = ACTIONS(392), + [sym__delcommand] = ACTIONS(395), + [sym__runtime] = ACTIONS(398), + [sym__wincmd] = ACTIONS(401), + [sym__sign] = ACTIONS(404), + [sym__filetype] = ACTIONS(407), + [sym__let] = ACTIONS(410), + [sym__unlet] = ACTIONS(413), + [sym__call] = ACTIONS(416), + [sym__break] = ACTIONS(419), + [sym__continue] = ACTIONS(422), + [sym_unknown_command_name] = ACTIONS(425), + }, + [49] = { + [sym__statement] = STATE(2849), + [sym_unknown_builtin_statement] = STATE(2849), + [sym_return_statement] = STATE(2849), + [sym_break_statement] = STATE(2849), + [sym_continue_statement] = STATE(2849), + [sym_normal_statement] = STATE(2849), + [sym_setfiletype_statement] = STATE(2849), + [sym_options_statement] = STATE(2849), + [sym_startinsert_statement] = STATE(2849), + [sym_stopinsert_statement] = STATE(2849), + [sym_scriptencoding_statement] = STATE(2849), + [sym_comclear_statement] = STATE(2849), + [sym_delcommand_statement] = STATE(2849), + [sym_runtime_statement] = STATE(2849), + [sym_wincmd_statement] = STATE(2849), + [sym_source_statement] = STATE(2849), + [sym_global_statement] = STATE(2849), + [sym_filetype_statement] = STATE(2849), + [sym_colorscheme_statement] = STATE(2849), + [sym_lua_statement] = STATE(2849), + [sym_ruby_statement] = STATE(2849), + [sym_python_statement] = STATE(2849), + [sym_perl_statement] = STATE(2849), + [sym_for_loop] = STATE(2849), + [sym_while_loop] = STATE(2849), + [sym_if_statement] = STATE(2849), + [sym_try_statement] = STATE(2849), + [sym_throw_statement] = STATE(2849), + [sym_autocmd_statement] = STATE(2849), + [sym_augroup_statement] = STATE(2849), + [sym_bang_filter_statement] = STATE(2849), + [sym_let_statement] = STATE(2849), + [sym_const_statement] = STATE(2849), + [sym_set_statement] = STATE(2849), + [sym_setlocal_statement] = STATE(2849), + [sym_unlet_statement] = STATE(2849), + [sym_call_statement] = STATE(2849), + [sym_echo_statement] = STATE(2849), + [sym_echon_statement] = STATE(2849), + [sym_echohl_statement] = STATE(2849), + [sym_echomsg_statement] = STATE(2849), + [sym_echoerr_statement] = STATE(2849), + [sym_execute_statement] = STATE(2849), + [sym_silent_statement] = STATE(2849), + [sym_user_command] = STATE(2849), + [sym_function_definition] = STATE(2849), + [sym_range_statement] = STATE(2849), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2849), + [sym_map_statement] = STATE(2849), + [sym_highlight_statement] = STATE(2849), + [sym_syntax_statement] = STATE(2849), + [sym_sign_statement] = STATE(2849), + [aux_sym__statement_repeat1] = STATE(140), + [aux_sym_autocmd_statement_repeat1] = STATE(249), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(509), + [anon_sym_PLUS_PLUSnested] = ACTIONS(511), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [50] = { + [sym__statement] = STATE(2676), + [sym_unknown_builtin_statement] = STATE(2676), + [sym_return_statement] = STATE(2676), + [sym_break_statement] = STATE(2676), + [sym_continue_statement] = STATE(2676), + [sym_normal_statement] = STATE(2676), + [sym_setfiletype_statement] = STATE(2676), + [sym_options_statement] = STATE(2676), + [sym_startinsert_statement] = STATE(2676), + [sym_stopinsert_statement] = STATE(2676), + [sym_scriptencoding_statement] = STATE(2676), + [sym_comclear_statement] = STATE(2676), + [sym_delcommand_statement] = STATE(2676), + [sym_runtime_statement] = STATE(2676), + [sym_wincmd_statement] = STATE(2676), + [sym_source_statement] = STATE(2676), + [sym_global_statement] = STATE(2676), + [sym_filetype_statement] = STATE(2676), + [sym_colorscheme_statement] = STATE(2676), + [sym_lua_statement] = STATE(2676), + [sym_ruby_statement] = STATE(2676), + [sym_python_statement] = STATE(2676), + [sym_perl_statement] = STATE(2676), + [sym_for_loop] = STATE(2676), + [sym_while_loop] = STATE(2676), + [sym_if_statement] = STATE(2676), + [sym_try_statement] = STATE(2676), + [sym_throw_statement] = STATE(2676), + [sym_autocmd_statement] = STATE(2676), + [sym_augroup_statement] = STATE(2676), + [sym_bang_filter_statement] = STATE(2676), + [sym_let_statement] = STATE(2676), + [sym_const_statement] = STATE(2676), + [sym_set_statement] = STATE(2676), + [sym_setlocal_statement] = STATE(2676), + [sym_unlet_statement] = STATE(2676), + [sym_call_statement] = STATE(2676), + [sym_echo_statement] = STATE(2676), + [sym_echon_statement] = STATE(2676), + [sym_echohl_statement] = STATE(2676), + [sym_echomsg_statement] = STATE(2676), + [sym_echoerr_statement] = STATE(2676), + [sym_execute_statement] = STATE(2676), + [sym_silent_statement] = STATE(2676), + [sym_user_command] = STATE(2676), + [sym_function_definition] = STATE(2676), + [sym_range_statement] = STATE(2676), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2676), + [sym_map_statement] = STATE(2676), + [sym_highlight_statement] = STATE(2676), + [sym_syntax_statement] = STATE(2676), + [sym_sign_statement] = STATE(2676), + [aux_sym__statement_repeat1] = STATE(141), + [aux_sym_autocmd_statement_repeat1] = STATE(249), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(629), + [anon_sym_PLUS_PLUSnested] = ACTIONS(631), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -33507,11 +33208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_AMP] = ACTIONS(25), [sym_integer_literal] = ACTIONS(27), [sym_register] = ACTIONS(29), - [sym__newline_or_pipe] = ACTIONS(431), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(431), [sym__function] = ACTIONS(33), - [sym__endfunction] = ACTIONS(498), [sym__for] = ACTIONS(35), [sym__while] = ACTIONS(37), [sym__if] = ACTIONS(39), @@ -33579,222 +33277,1109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [48] = { - [sym__cmd_separator] = STATE(257), - [aux_sym__separated_statements] = STATE(48), - [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_comclear_statement] = STATE(2444), - [sym_delcommand_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_autocmd_statement] = STATE(2444), - [sym_augroup_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_user_command] = STATE(2444), - [sym_function_definition] = STATE(2444), - [sym_range_statement] = STATE(2444), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2444), - [sym_map_statement] = STATE(2444), - [sym_highlight_statement] = STATE(2444), - [sym_syntax_statement] = STATE(2444), - [sym_sign_statement] = STATE(2444), - [aux_sym__statement_repeat1] = STATE(141), - [anon_sym_COLON] = ACTIONS(235), - [sym_command_name] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(241), - [sym_mark] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_DOT2] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(259), - [anon_sym_BSLASH_SLASH] = ACTIONS(262), - [anon_sym_BSLASH_QMARK] = ACTIONS(262), - [anon_sym_BSLASH_AMP] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [sym_register] = ACTIONS(268), - [sym__newline_or_pipe] = ACTIONS(500), + [51] = { + [sym__statement] = STATE(2851), + [sym_unknown_builtin_statement] = STATE(2851), + [sym_return_statement] = STATE(2851), + [sym_break_statement] = STATE(2851), + [sym_continue_statement] = STATE(2851), + [sym_normal_statement] = STATE(2851), + [sym_setfiletype_statement] = STATE(2851), + [sym_options_statement] = STATE(2851), + [sym_startinsert_statement] = STATE(2851), + [sym_stopinsert_statement] = STATE(2851), + [sym_scriptencoding_statement] = STATE(2851), + [sym_comclear_statement] = STATE(2851), + [sym_delcommand_statement] = STATE(2851), + [sym_runtime_statement] = STATE(2851), + [sym_wincmd_statement] = STATE(2851), + [sym_source_statement] = STATE(2851), + [sym_global_statement] = STATE(2851), + [sym_filetype_statement] = STATE(2851), + [sym_colorscheme_statement] = STATE(2851), + [sym_lua_statement] = STATE(2851), + [sym_ruby_statement] = STATE(2851), + [sym_python_statement] = STATE(2851), + [sym_perl_statement] = STATE(2851), + [sym_for_loop] = STATE(2851), + [sym_while_loop] = STATE(2851), + [sym_if_statement] = STATE(2851), + [sym_try_statement] = STATE(2851), + [sym_throw_statement] = STATE(2851), + [sym_autocmd_statement] = STATE(2851), + [sym_augroup_statement] = STATE(2851), + [sym_bang_filter_statement] = STATE(2851), + [sym_let_statement] = STATE(2851), + [sym_const_statement] = STATE(2851), + [sym_set_statement] = STATE(2851), + [sym_setlocal_statement] = STATE(2851), + [sym_unlet_statement] = STATE(2851), + [sym_call_statement] = STATE(2851), + [sym_echo_statement] = STATE(2851), + [sym_echon_statement] = STATE(2851), + [sym_echohl_statement] = STATE(2851), + [sym_echomsg_statement] = STATE(2851), + [sym_echoerr_statement] = STATE(2851), + [sym_execute_statement] = STATE(2851), + [sym_silent_statement] = STATE(2851), + [sym_user_command] = STATE(2851), + [sym_function_definition] = STATE(2851), + [sym_range_statement] = STATE(2851), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2851), + [sym_map_statement] = STATE(2851), + [sym_highlight_statement] = STATE(2851), + [sym_syntax_statement] = STATE(2851), + [sym_sign_statement] = STATE(2851), + [aux_sym__statement_repeat1] = STATE(142), + [aux_sym_autocmd_statement_repeat1] = STATE(249), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(637), + [anon_sym_PLUS_PLUSnested] = ACTIONS(639), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(500), - [sym__function] = ACTIONS(274), - [sym__endfunction] = ACTIONS(286), - [sym__for] = ACTIONS(277), - [sym__while] = ACTIONS(280), - [sym__if] = ACTIONS(283), - [sym__try] = ACTIONS(288), - [sym__const] = ACTIONS(291), - [sym__normal] = ACTIONS(294), - [sym__return] = ACTIONS(297), - [sym__perl] = ACTIONS(300), - [sym__lua] = ACTIONS(303), - [sym__ruby] = ACTIONS(306), - [sym__python] = ACTIONS(309), - [sym__throw] = ACTIONS(312), - [sym__execute] = ACTIONS(315), - [sym__autocmd] = ACTIONS(318), - [sym__silent] = ACTIONS(321), - [sym__echo] = ACTIONS(324), - [sym__echon] = ACTIONS(327), - [sym__echohl] = ACTIONS(330), - [sym__echomsg] = ACTIONS(333), - [sym__echoerr] = ACTIONS(336), - [sym__map] = ACTIONS(339), - [sym__nmap] = ACTIONS(339), - [sym__vmap] = ACTIONS(339), - [sym__xmap] = ACTIONS(339), - [sym__smap] = ACTIONS(339), - [sym__omap] = ACTIONS(339), - [sym__imap] = ACTIONS(339), - [sym__lmap] = ACTIONS(339), - [sym__cmap] = ACTIONS(339), - [sym__tmap] = ACTIONS(339), - [sym__noremap] = ACTIONS(339), - [sym__vnoremap] = ACTIONS(339), - [sym__nnoremap] = ACTIONS(339), - [sym__xnoremap] = ACTIONS(339), - [sym__snoremap] = ACTIONS(339), - [sym__onoremap] = ACTIONS(339), - [sym__inoremap] = ACTIONS(339), - [sym__lnoremap] = ACTIONS(339), - [sym__cnoremap] = ACTIONS(339), - [sym__tnoremap] = ACTIONS(339), - [sym__augroup] = ACTIONS(342), - [sym__highlight] = ACTIONS(345), - [sym__syntax] = ACTIONS(348), - [sym__set] = ACTIONS(351), - [sym__setlocal] = ACTIONS(354), - [sym__setfiletype] = ACTIONS(357), - [sym__browse] = ACTIONS(360), - [sym__options] = ACTIONS(363), - [sym__startinsert] = ACTIONS(366), - [sym__stopinsert] = ACTIONS(369), - [sym__scriptencoding] = ACTIONS(372), - [sym__source] = ACTIONS(375), - [sym__global] = ACTIONS(378), - [sym__colorscheme] = ACTIONS(381), - [sym__comclear] = ACTIONS(384), - [sym__delcommand] = ACTIONS(387), - [sym__runtime] = ACTIONS(390), - [sym__wincmd] = ACTIONS(393), - [sym__sign] = ACTIONS(396), - [sym__filetype] = ACTIONS(399), - [sym__let] = ACTIONS(402), - [sym__unlet] = ACTIONS(405), - [sym__call] = ACTIONS(408), - [sym__break] = ACTIONS(411), - [sym__continue] = ACTIONS(414), - [sym_unknown_command_name] = ACTIONS(417), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [49] = { - [sym__statement] = STATE(2834), - [sym_unknown_builtin_statement] = STATE(2834), - [sym_return_statement] = STATE(2834), - [sym_break_statement] = STATE(2834), - [sym_continue_statement] = STATE(2834), - [sym_normal_statement] = STATE(2834), - [sym_setfiletype_statement] = STATE(2834), - [sym_options_statement] = STATE(2834), - [sym_startinsert_statement] = STATE(2834), - [sym_stopinsert_statement] = STATE(2834), - [sym_scriptencoding_statement] = STATE(2834), - [sym_comclear_statement] = STATE(2834), - [sym_delcommand_statement] = STATE(2834), - [sym_runtime_statement] = STATE(2834), - [sym_wincmd_statement] = STATE(2834), - [sym_source_statement] = STATE(2834), - [sym_global_statement] = STATE(2834), - [sym_filetype_statement] = STATE(2834), - [sym_colorscheme_statement] = STATE(2834), - [sym_lua_statement] = STATE(2834), - [sym_ruby_statement] = STATE(2834), - [sym_python_statement] = STATE(2834), - [sym_perl_statement] = STATE(2834), - [sym_for_loop] = STATE(2834), - [sym_while_loop] = STATE(2834), - [sym_if_statement] = STATE(2834), - [sym_try_statement] = STATE(2834), - [sym_throw_statement] = STATE(2834), - [sym_autocmd_statement] = STATE(2834), - [sym_augroup_statement] = STATE(2834), - [sym_bang_filter_statement] = STATE(2834), - [sym_let_statement] = STATE(2834), - [sym_const_statement] = STATE(2834), - [sym_set_statement] = STATE(2834), - [sym_setlocal_statement] = STATE(2834), - [sym_unlet_statement] = STATE(2834), - [sym_call_statement] = STATE(2834), - [sym_echo_statement] = STATE(2834), - [sym_echon_statement] = STATE(2834), - [sym_echohl_statement] = STATE(2834), - [sym_echomsg_statement] = STATE(2834), - [sym_echoerr_statement] = STATE(2834), - [sym_execute_statement] = STATE(2834), - [sym_silent_statement] = STATE(2834), - [sym_user_command] = STATE(2834), - [sym_function_definition] = STATE(2834), - [sym_range_statement] = STATE(2834), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2834), - [sym_map_statement] = STATE(2834), - [sym_highlight_statement] = STATE(2834), - [sym_syntax_statement] = STATE(2834), - [sym_sign_statement] = STATE(2834), - [aux_sym__statement_repeat1] = STATE(141), + [52] = { + [sym__statement] = STATE(2816), + [sym_unknown_builtin_statement] = STATE(2816), + [sym_return_statement] = STATE(2816), + [sym_break_statement] = STATE(2816), + [sym_continue_statement] = STATE(2816), + [sym_normal_statement] = STATE(2816), + [sym_setfiletype_statement] = STATE(2816), + [sym_options_statement] = STATE(2816), + [sym_startinsert_statement] = STATE(2816), + [sym_stopinsert_statement] = STATE(2816), + [sym_scriptencoding_statement] = STATE(2816), + [sym_comclear_statement] = STATE(2816), + [sym_delcommand_statement] = STATE(2816), + [sym_runtime_statement] = STATE(2816), + [sym_wincmd_statement] = STATE(2816), + [sym_source_statement] = STATE(2816), + [sym_global_statement] = STATE(2816), + [sym_filetype_statement] = STATE(2816), + [sym_colorscheme_statement] = STATE(2816), + [sym_lua_statement] = STATE(2816), + [sym_ruby_statement] = STATE(2816), + [sym_python_statement] = STATE(2816), + [sym_perl_statement] = STATE(2816), + [sym_for_loop] = STATE(2816), + [sym_while_loop] = STATE(2816), + [sym_if_statement] = STATE(2816), + [sym_try_statement] = STATE(2816), + [sym_throw_statement] = STATE(2816), + [sym_autocmd_statement] = STATE(2816), + [sym_augroup_statement] = STATE(2816), + [sym_bang_filter_statement] = STATE(2816), + [sym_let_statement] = STATE(2816), + [sym_const_statement] = STATE(2816), + [sym_set_statement] = STATE(2816), + [sym_setlocal_statement] = STATE(2816), + [sym_unlet_statement] = STATE(2816), + [sym_call_statement] = STATE(2816), + [sym_echo_statement] = STATE(2816), + [sym_echon_statement] = STATE(2816), + [sym_echohl_statement] = STATE(2816), + [sym_echomsg_statement] = STATE(2816), + [sym_echoerr_statement] = STATE(2816), + [sym_execute_statement] = STATE(2816), + [sym_silent_statement] = STATE(2816), + [sym_user_command] = STATE(2816), + [sym_function_definition] = STATE(2816), + [sym_range_statement] = STATE(2816), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2816), + [sym_map_statement] = STATE(2816), + [sym_highlight_statement] = STATE(2816), + [sym_syntax_statement] = STATE(2816), + [sym_sign_statement] = STATE(2816), + [aux_sym__statement_repeat1] = STATE(140), + [aux_sym_autocmd_statement_repeat1] = STATE(61), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(673), + [anon_sym_PLUS_PLUSnested] = ACTIONS(675), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [53] = { + [sym__statement] = STATE(2816), + [sym_unknown_builtin_statement] = STATE(2816), + [sym_return_statement] = STATE(2816), + [sym_break_statement] = STATE(2816), + [sym_continue_statement] = STATE(2816), + [sym_normal_statement] = STATE(2816), + [sym_setfiletype_statement] = STATE(2816), + [sym_options_statement] = STATE(2816), + [sym_startinsert_statement] = STATE(2816), + [sym_stopinsert_statement] = STATE(2816), + [sym_scriptencoding_statement] = STATE(2816), + [sym_comclear_statement] = STATE(2816), + [sym_delcommand_statement] = STATE(2816), + [sym_runtime_statement] = STATE(2816), + [sym_wincmd_statement] = STATE(2816), + [sym_source_statement] = STATE(2816), + [sym_global_statement] = STATE(2816), + [sym_filetype_statement] = STATE(2816), + [sym_colorscheme_statement] = STATE(2816), + [sym_lua_statement] = STATE(2816), + [sym_ruby_statement] = STATE(2816), + [sym_python_statement] = STATE(2816), + [sym_perl_statement] = STATE(2816), + [sym_for_loop] = STATE(2816), + [sym_while_loop] = STATE(2816), + [sym_if_statement] = STATE(2816), + [sym_try_statement] = STATE(2816), + [sym_throw_statement] = STATE(2816), + [sym_autocmd_statement] = STATE(2816), + [sym_augroup_statement] = STATE(2816), + [sym_bang_filter_statement] = STATE(2816), + [sym_let_statement] = STATE(2816), + [sym_const_statement] = STATE(2816), + [sym_set_statement] = STATE(2816), + [sym_setlocal_statement] = STATE(2816), + [sym_unlet_statement] = STATE(2816), + [sym_call_statement] = STATE(2816), + [sym_echo_statement] = STATE(2816), + [sym_echon_statement] = STATE(2816), + [sym_echohl_statement] = STATE(2816), + [sym_echomsg_statement] = STATE(2816), + [sym_echoerr_statement] = STATE(2816), + [sym_execute_statement] = STATE(2816), + [sym_silent_statement] = STATE(2816), + [sym_user_command] = STATE(2816), + [sym_function_definition] = STATE(2816), + [sym_range_statement] = STATE(2816), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2816), + [sym_map_statement] = STATE(2816), + [sym_highlight_statement] = STATE(2816), + [sym_syntax_statement] = STATE(2816), + [sym_sign_statement] = STATE(2816), + [aux_sym__statement_repeat1] = STATE(142), + [aux_sym_autocmd_statement_repeat1] = STATE(51), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(677), + [anon_sym_PLUS_PLUSnested] = ACTIONS(679), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, + [54] = { + [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_comclear_statement] = STATE(2815), + [sym_delcommand_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_autocmd_statement] = STATE(2815), + [sym_augroup_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_user_command] = STATE(2815), + [sym_function_definition] = STATE(2815), + [sym_range_statement] = STATE(2815), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2815), + [sym_map_statement] = STATE(2815), + [sym_highlight_statement] = STATE(2815), + [sym_syntax_statement] = STATE(2815), + [sym_sign_statement] = STATE(2815), + [aux_sym__statement_repeat1] = STATE(140), + [aux_sym_autocmd_statement_repeat1] = STATE(249), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(681), + [anon_sym_PLUS_PLUSnested] = ACTIONS(683), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [55] = { + [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_comclear_statement] = STATE(2815), + [sym_delcommand_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_autocmd_statement] = STATE(2815), + [sym_augroup_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_user_command] = STATE(2815), + [sym_function_definition] = STATE(2815), + [sym_range_statement] = STATE(2815), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2815), + [sym_map_statement] = STATE(2815), + [sym_highlight_statement] = STATE(2815), + [sym_syntax_statement] = STATE(2815), + [sym_sign_statement] = STATE(2815), + [aux_sym__statement_repeat1] = STATE(142), + [aux_sym_autocmd_statement_repeat1] = STATE(249), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(685), + [anon_sym_PLUS_PLUSnested] = ACTIONS(687), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, + [56] = { + [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_comclear_statement] = STATE(2815), + [sym_delcommand_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_autocmd_statement] = STATE(2815), + [sym_augroup_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_user_command] = STATE(2815), + [sym_function_definition] = STATE(2815), + [sym_range_statement] = STATE(2815), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2815), + [sym_map_statement] = STATE(2815), + [sym_highlight_statement] = STATE(2815), + [sym_syntax_statement] = STATE(2815), + [sym_sign_statement] = STATE(2815), + [aux_sym__statement_repeat1] = STATE(140), + [aux_sym_autocmd_statement_repeat1] = STATE(49), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(681), + [anon_sym_PLUS_PLUSnested] = ACTIONS(683), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [57] = { + [sym__statement] = STATE(2722), + [sym_unknown_builtin_statement] = STATE(2722), + [sym_return_statement] = STATE(2722), + [sym_break_statement] = STATE(2722), + [sym_continue_statement] = STATE(2722), + [sym_normal_statement] = STATE(2722), + [sym_setfiletype_statement] = STATE(2722), + [sym_options_statement] = STATE(2722), + [sym_startinsert_statement] = STATE(2722), + [sym_stopinsert_statement] = STATE(2722), + [sym_scriptencoding_statement] = STATE(2722), + [sym_comclear_statement] = STATE(2722), + [sym_delcommand_statement] = STATE(2722), + [sym_runtime_statement] = STATE(2722), + [sym_wincmd_statement] = STATE(2722), + [sym_source_statement] = STATE(2722), + [sym_global_statement] = STATE(2722), + [sym_filetype_statement] = STATE(2722), + [sym_colorscheme_statement] = STATE(2722), + [sym_lua_statement] = STATE(2722), + [sym_ruby_statement] = STATE(2722), + [sym_python_statement] = STATE(2722), + [sym_perl_statement] = STATE(2722), + [sym_for_loop] = STATE(2722), + [sym_while_loop] = STATE(2722), + [sym_if_statement] = STATE(2722), + [sym_try_statement] = STATE(2722), + [sym_throw_statement] = STATE(2722), + [sym_autocmd_statement] = STATE(2722), + [sym_augroup_statement] = STATE(2722), + [sym_bang_filter_statement] = STATE(2722), + [sym_let_statement] = STATE(2722), + [sym_const_statement] = STATE(2722), + [sym_set_statement] = STATE(2722), + [sym_setlocal_statement] = STATE(2722), + [sym_unlet_statement] = STATE(2722), + [sym_call_statement] = STATE(2722), + [sym_echo_statement] = STATE(2722), + [sym_echon_statement] = STATE(2722), + [sym_echohl_statement] = STATE(2722), + [sym_echomsg_statement] = STATE(2722), + [sym_echoerr_statement] = STATE(2722), + [sym_execute_statement] = STATE(2722), + [sym_silent_statement] = STATE(2722), + [sym_user_command] = STATE(2722), + [sym_function_definition] = STATE(2722), + [sym_range_statement] = STATE(2722), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2722), + [sym_map_statement] = STATE(2722), + [sym_highlight_statement] = STATE(2722), + [sym_syntax_statement] = STATE(2722), + [sym_sign_statement] = STATE(2722), + [aux_sym__statement_repeat1] = STATE(140), [aux_sym_autocmd_statement_repeat1] = STATE(54), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(689), + [anon_sym_PLUS_PLUSnested] = ACTIONS(691), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [58] = { + [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_comclear_statement] = STATE(2673), + [sym_delcommand_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_autocmd_statement] = STATE(2673), + [sym_augroup_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_user_command] = STATE(2673), + [sym_function_definition] = STATE(2673), + [sym_range_statement] = STATE(2673), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2673), + [sym_map_statement] = STATE(2673), + [sym_highlight_statement] = STATE(2673), + [sym_syntax_statement] = STATE(2673), + [sym_sign_statement] = STATE(2673), + [aux_sym__statement_repeat1] = STATE(141), + [aux_sym_autocmd_statement_repeat1] = STATE(249), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(505), - [anon_sym_PLUS_PLUSnested] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(693), + [anon_sym_PLUS_PLUSnested] = ACTIONS(695), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -33876,73 +34461,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [50] = { - [sym__statement] = STATE(2886), - [sym_unknown_builtin_statement] = STATE(2886), - [sym_return_statement] = STATE(2886), - [sym_break_statement] = STATE(2886), - [sym_continue_statement] = STATE(2886), - [sym_normal_statement] = STATE(2886), - [sym_setfiletype_statement] = STATE(2886), - [sym_options_statement] = STATE(2886), - [sym_startinsert_statement] = STATE(2886), - [sym_stopinsert_statement] = STATE(2886), - [sym_scriptencoding_statement] = STATE(2886), - [sym_comclear_statement] = STATE(2886), - [sym_delcommand_statement] = STATE(2886), - [sym_runtime_statement] = STATE(2886), - [sym_wincmd_statement] = STATE(2886), - [sym_source_statement] = STATE(2886), - [sym_global_statement] = STATE(2886), - [sym_filetype_statement] = STATE(2886), - [sym_colorscheme_statement] = STATE(2886), - [sym_lua_statement] = STATE(2886), - [sym_ruby_statement] = STATE(2886), - [sym_python_statement] = STATE(2886), - [sym_perl_statement] = STATE(2886), - [sym_for_loop] = STATE(2886), - [sym_while_loop] = STATE(2886), - [sym_if_statement] = STATE(2886), - [sym_try_statement] = STATE(2886), - [sym_throw_statement] = STATE(2886), - [sym_autocmd_statement] = STATE(2886), - [sym_augroup_statement] = STATE(2886), - [sym_bang_filter_statement] = STATE(2886), - [sym_let_statement] = STATE(2886), - [sym_const_statement] = STATE(2886), - [sym_set_statement] = STATE(2886), - [sym_setlocal_statement] = STATE(2886), - [sym_unlet_statement] = STATE(2886), - [sym_call_statement] = STATE(2886), - [sym_echo_statement] = STATE(2886), - [sym_echon_statement] = STATE(2886), - [sym_echohl_statement] = STATE(2886), - [sym_echomsg_statement] = STATE(2886), - [sym_echoerr_statement] = STATE(2886), - [sym_execute_statement] = STATE(2886), - [sym_silent_statement] = STATE(2886), - [sym_user_command] = STATE(2886), - [sym_function_definition] = STATE(2886), - [sym_range_statement] = STATE(2886), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2886), - [sym_map_statement] = STATE(2886), - [sym_highlight_statement] = STATE(2886), - [sym_syntax_statement] = STATE(2886), - [sym_sign_statement] = STATE(2886), + [59] = { + [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_comclear_statement] = STATE(2673), + [sym_delcommand_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_autocmd_statement] = STATE(2673), + [sym_augroup_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_user_command] = STATE(2673), + [sym_function_definition] = STATE(2673), + [sym_range_statement] = STATE(2673), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2673), + [sym_map_statement] = STATE(2673), + [sym_highlight_statement] = STATE(2673), + [sym_syntax_statement] = STATE(2673), + [sym_sign_statement] = STATE(2673), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_autocmd_statement_repeat1] = STATE(249), + [aux_sym_autocmd_statement_repeat1] = STATE(69), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(509), - [anon_sym_PLUS_PLUSnested] = ACTIONS(511), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(693), + [anon_sym_PLUS_PLUSnested] = ACTIONS(695), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -34024,73 +34609,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [51] = { - [sym__statement] = STATE(2883), - [sym_unknown_builtin_statement] = STATE(2883), - [sym_return_statement] = STATE(2883), - [sym_break_statement] = STATE(2883), - [sym_continue_statement] = STATE(2883), - [sym_normal_statement] = STATE(2883), - [sym_setfiletype_statement] = STATE(2883), - [sym_options_statement] = STATE(2883), - [sym_startinsert_statement] = STATE(2883), - [sym_stopinsert_statement] = STATE(2883), - [sym_scriptencoding_statement] = STATE(2883), - [sym_comclear_statement] = STATE(2883), - [sym_delcommand_statement] = STATE(2883), - [sym_runtime_statement] = STATE(2883), - [sym_wincmd_statement] = STATE(2883), - [sym_source_statement] = STATE(2883), - [sym_global_statement] = STATE(2883), - [sym_filetype_statement] = STATE(2883), - [sym_colorscheme_statement] = STATE(2883), - [sym_lua_statement] = STATE(2883), - [sym_ruby_statement] = STATE(2883), - [sym_python_statement] = STATE(2883), - [sym_perl_statement] = STATE(2883), - [sym_for_loop] = STATE(2883), - [sym_while_loop] = STATE(2883), - [sym_if_statement] = STATE(2883), - [sym_try_statement] = STATE(2883), - [sym_throw_statement] = STATE(2883), - [sym_autocmd_statement] = STATE(2883), - [sym_augroup_statement] = STATE(2883), - [sym_bang_filter_statement] = STATE(2883), - [sym_let_statement] = STATE(2883), - [sym_const_statement] = STATE(2883), - [sym_set_statement] = STATE(2883), - [sym_setlocal_statement] = STATE(2883), - [sym_unlet_statement] = STATE(2883), - [sym_call_statement] = STATE(2883), - [sym_echo_statement] = STATE(2883), - [sym_echon_statement] = STATE(2883), - [sym_echohl_statement] = STATE(2883), - [sym_echomsg_statement] = STATE(2883), - [sym_echoerr_statement] = STATE(2883), - [sym_execute_statement] = STATE(2883), - [sym_silent_statement] = STATE(2883), - [sym_user_command] = STATE(2883), - [sym_function_definition] = STATE(2883), - [sym_range_statement] = STATE(2883), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2883), - [sym_map_statement] = STATE(2883), - [sym_highlight_statement] = STATE(2883), - [sym_syntax_statement] = STATE(2883), - [sym_sign_statement] = STATE(2883), + [60] = { + [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_comclear_statement] = STATE(2652), + [sym_delcommand_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_autocmd_statement] = STATE(2652), + [sym_augroup_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_user_command] = STATE(2652), + [sym_function_definition] = STATE(2652), + [sym_range_statement] = STATE(2652), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2652), + [sym_map_statement] = STATE(2652), + [sym_highlight_statement] = STATE(2652), + [sym_syntax_statement] = STATE(2652), + [sym_sign_statement] = STATE(2652), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_autocmd_statement_repeat1] = STATE(65), + [aux_sym_autocmd_statement_repeat1] = STATE(50), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(513), - [anon_sym_PLUS_PLUSnested] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(697), + [anon_sym_PLUS_PLUSnested] = ACTIONS(699), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -34172,369 +34757,813 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [52] = { - [sym__statement] = STATE(2644), - [sym_unknown_builtin_statement] = STATE(2644), - [sym_return_statement] = STATE(2644), - [sym_break_statement] = STATE(2644), - [sym_continue_statement] = STATE(2644), - [sym_normal_statement] = STATE(2644), - [sym_setfiletype_statement] = STATE(2644), - [sym_options_statement] = STATE(2644), - [sym_startinsert_statement] = STATE(2644), - [sym_stopinsert_statement] = STATE(2644), - [sym_scriptencoding_statement] = STATE(2644), - [sym_comclear_statement] = STATE(2644), - [sym_delcommand_statement] = STATE(2644), - [sym_runtime_statement] = STATE(2644), - [sym_wincmd_statement] = STATE(2644), - [sym_source_statement] = STATE(2644), - [sym_global_statement] = STATE(2644), - [sym_filetype_statement] = STATE(2644), - [sym_colorscheme_statement] = STATE(2644), - [sym_lua_statement] = STATE(2644), - [sym_ruby_statement] = STATE(2644), - [sym_python_statement] = STATE(2644), - [sym_perl_statement] = STATE(2644), - [sym_for_loop] = STATE(2644), - [sym_while_loop] = STATE(2644), - [sym_if_statement] = STATE(2644), - [sym_try_statement] = STATE(2644), - [sym_throw_statement] = STATE(2644), - [sym_autocmd_statement] = STATE(2644), - [sym_augroup_statement] = STATE(2644), - [sym_bang_filter_statement] = STATE(2644), - [sym_let_statement] = STATE(2644), - [sym_const_statement] = STATE(2644), - [sym_set_statement] = STATE(2644), - [sym_setlocal_statement] = STATE(2644), - [sym_unlet_statement] = STATE(2644), - [sym_call_statement] = STATE(2644), - [sym_echo_statement] = STATE(2644), - [sym_echon_statement] = STATE(2644), - [sym_echohl_statement] = STATE(2644), - [sym_echomsg_statement] = STATE(2644), - [sym_echoerr_statement] = STATE(2644), - [sym_execute_statement] = STATE(2644), - [sym_silent_statement] = STATE(2644), - [sym_user_command] = STATE(2644), - [sym_function_definition] = STATE(2644), - [sym_range_statement] = STATE(2644), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2644), - [sym_map_statement] = STATE(2644), - [sym_highlight_statement] = STATE(2644), - [sym_syntax_statement] = STATE(2644), - [sym_sign_statement] = STATE(2644), + [61] = { + [sym__statement] = STATE(2851), + [sym_unknown_builtin_statement] = STATE(2851), + [sym_return_statement] = STATE(2851), + [sym_break_statement] = STATE(2851), + [sym_continue_statement] = STATE(2851), + [sym_normal_statement] = STATE(2851), + [sym_setfiletype_statement] = STATE(2851), + [sym_options_statement] = STATE(2851), + [sym_startinsert_statement] = STATE(2851), + [sym_stopinsert_statement] = STATE(2851), + [sym_scriptencoding_statement] = STATE(2851), + [sym_comclear_statement] = STATE(2851), + [sym_delcommand_statement] = STATE(2851), + [sym_runtime_statement] = STATE(2851), + [sym_wincmd_statement] = STATE(2851), + [sym_source_statement] = STATE(2851), + [sym_global_statement] = STATE(2851), + [sym_filetype_statement] = STATE(2851), + [sym_colorscheme_statement] = STATE(2851), + [sym_lua_statement] = STATE(2851), + [sym_ruby_statement] = STATE(2851), + [sym_python_statement] = STATE(2851), + [sym_perl_statement] = STATE(2851), + [sym_for_loop] = STATE(2851), + [sym_while_loop] = STATE(2851), + [sym_if_statement] = STATE(2851), + [sym_try_statement] = STATE(2851), + [sym_throw_statement] = STATE(2851), + [sym_autocmd_statement] = STATE(2851), + [sym_augroup_statement] = STATE(2851), + [sym_bang_filter_statement] = STATE(2851), + [sym_let_statement] = STATE(2851), + [sym_const_statement] = STATE(2851), + [sym_set_statement] = STATE(2851), + [sym_setlocal_statement] = STATE(2851), + [sym_unlet_statement] = STATE(2851), + [sym_call_statement] = STATE(2851), + [sym_echo_statement] = STATE(2851), + [sym_echon_statement] = STATE(2851), + [sym_echohl_statement] = STATE(2851), + [sym_echomsg_statement] = STATE(2851), + [sym_echoerr_statement] = STATE(2851), + [sym_execute_statement] = STATE(2851), + [sym_silent_statement] = STATE(2851), + [sym_user_command] = STATE(2851), + [sym_function_definition] = STATE(2851), + [sym_range_statement] = STATE(2851), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2851), + [sym_map_statement] = STATE(2851), + [sym_highlight_statement] = STATE(2851), + [sym_syntax_statement] = STATE(2851), + [sym_sign_statement] = STATE(2851), + [aux_sym__statement_repeat1] = STATE(140), + [aux_sym_autocmd_statement_repeat1] = STATE(249), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(701), + [anon_sym_PLUS_PLUSnested] = ACTIONS(703), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [62] = { + [sym__statement] = STATE(2850), + [sym_unknown_builtin_statement] = STATE(2850), + [sym_return_statement] = STATE(2850), + [sym_break_statement] = STATE(2850), + [sym_continue_statement] = STATE(2850), + [sym_normal_statement] = STATE(2850), + [sym_setfiletype_statement] = STATE(2850), + [sym_options_statement] = STATE(2850), + [sym_startinsert_statement] = STATE(2850), + [sym_stopinsert_statement] = STATE(2850), + [sym_scriptencoding_statement] = STATE(2850), + [sym_comclear_statement] = STATE(2850), + [sym_delcommand_statement] = STATE(2850), + [sym_runtime_statement] = STATE(2850), + [sym_wincmd_statement] = STATE(2850), + [sym_source_statement] = STATE(2850), + [sym_global_statement] = STATE(2850), + [sym_filetype_statement] = STATE(2850), + [sym_colorscheme_statement] = STATE(2850), + [sym_lua_statement] = STATE(2850), + [sym_ruby_statement] = STATE(2850), + [sym_python_statement] = STATE(2850), + [sym_perl_statement] = STATE(2850), + [sym_for_loop] = STATE(2850), + [sym_while_loop] = STATE(2850), + [sym_if_statement] = STATE(2850), + [sym_try_statement] = STATE(2850), + [sym_throw_statement] = STATE(2850), + [sym_autocmd_statement] = STATE(2850), + [sym_augroup_statement] = STATE(2850), + [sym_bang_filter_statement] = STATE(2850), + [sym_let_statement] = STATE(2850), + [sym_const_statement] = STATE(2850), + [sym_set_statement] = STATE(2850), + [sym_setlocal_statement] = STATE(2850), + [sym_unlet_statement] = STATE(2850), + [sym_call_statement] = STATE(2850), + [sym_echo_statement] = STATE(2850), + [sym_echon_statement] = STATE(2850), + [sym_echohl_statement] = STATE(2850), + [sym_echomsg_statement] = STATE(2850), + [sym_echoerr_statement] = STATE(2850), + [sym_execute_statement] = STATE(2850), + [sym_silent_statement] = STATE(2850), + [sym_user_command] = STATE(2850), + [sym_function_definition] = STATE(2850), + [sym_range_statement] = STATE(2850), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2850), + [sym_map_statement] = STATE(2850), + [sym_highlight_statement] = STATE(2850), + [sym_syntax_statement] = STATE(2850), + [sym_sign_statement] = STATE(2850), + [aux_sym__statement_repeat1] = STATE(142), + [aux_sym_autocmd_statement_repeat1] = STATE(65), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(705), + [anon_sym_PLUS_PLUSnested] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, + [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_comclear_statement] = STATE(2815), + [sym_delcommand_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_autocmd_statement] = STATE(2815), + [sym_augroup_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_user_command] = STATE(2815), + [sym_function_definition] = STATE(2815), + [sym_range_statement] = STATE(2815), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2815), + [sym_map_statement] = STATE(2815), + [sym_highlight_statement] = STATE(2815), + [sym_syntax_statement] = STATE(2815), + [sym_sign_statement] = STATE(2815), + [aux_sym__statement_repeat1] = STATE(142), + [aux_sym_autocmd_statement_repeat1] = STATE(64), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(685), + [anon_sym_PLUS_PLUSnested] = ACTIONS(687), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, + [64] = { + [sym__statement] = STATE(2849), + [sym_unknown_builtin_statement] = STATE(2849), + [sym_return_statement] = STATE(2849), + [sym_break_statement] = STATE(2849), + [sym_continue_statement] = STATE(2849), + [sym_normal_statement] = STATE(2849), + [sym_setfiletype_statement] = STATE(2849), + [sym_options_statement] = STATE(2849), + [sym_startinsert_statement] = STATE(2849), + [sym_stopinsert_statement] = STATE(2849), + [sym_scriptencoding_statement] = STATE(2849), + [sym_comclear_statement] = STATE(2849), + [sym_delcommand_statement] = STATE(2849), + [sym_runtime_statement] = STATE(2849), + [sym_wincmd_statement] = STATE(2849), + [sym_source_statement] = STATE(2849), + [sym_global_statement] = STATE(2849), + [sym_filetype_statement] = STATE(2849), + [sym_colorscheme_statement] = STATE(2849), + [sym_lua_statement] = STATE(2849), + [sym_ruby_statement] = STATE(2849), + [sym_python_statement] = STATE(2849), + [sym_perl_statement] = STATE(2849), + [sym_for_loop] = STATE(2849), + [sym_while_loop] = STATE(2849), + [sym_if_statement] = STATE(2849), + [sym_try_statement] = STATE(2849), + [sym_throw_statement] = STATE(2849), + [sym_autocmd_statement] = STATE(2849), + [sym_augroup_statement] = STATE(2849), + [sym_bang_filter_statement] = STATE(2849), + [sym_let_statement] = STATE(2849), + [sym_const_statement] = STATE(2849), + [sym_set_statement] = STATE(2849), + [sym_setlocal_statement] = STATE(2849), + [sym_unlet_statement] = STATE(2849), + [sym_call_statement] = STATE(2849), + [sym_echo_statement] = STATE(2849), + [sym_echon_statement] = STATE(2849), + [sym_echohl_statement] = STATE(2849), + [sym_echomsg_statement] = STATE(2849), + [sym_echoerr_statement] = STATE(2849), + [sym_execute_statement] = STATE(2849), + [sym_silent_statement] = STATE(2849), + [sym_user_command] = STATE(2849), + [sym_function_definition] = STATE(2849), + [sym_range_statement] = STATE(2849), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2849), + [sym_map_statement] = STATE(2849), + [sym_highlight_statement] = STATE(2849), + [sym_syntax_statement] = STATE(2849), + [sym_sign_statement] = STATE(2849), [aux_sym__statement_repeat1] = STATE(142), [aux_sym_autocmd_statement_repeat1] = STATE(249), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(521), - [anon_sym_PLUS_PLUSnested] = ACTIONS(523), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(709), + [anon_sym_PLUS_PLUSnested] = ACTIONS(711), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [53] = { - [sym__statement] = STATE(2646), - [sym_unknown_builtin_statement] = STATE(2646), - [sym_return_statement] = STATE(2646), - [sym_break_statement] = STATE(2646), - [sym_continue_statement] = STATE(2646), - [sym_normal_statement] = STATE(2646), - [sym_setfiletype_statement] = STATE(2646), - [sym_options_statement] = STATE(2646), - [sym_startinsert_statement] = STATE(2646), - [sym_stopinsert_statement] = STATE(2646), - [sym_scriptencoding_statement] = STATE(2646), - [sym_comclear_statement] = STATE(2646), - [sym_delcommand_statement] = STATE(2646), - [sym_runtime_statement] = STATE(2646), - [sym_wincmd_statement] = STATE(2646), - [sym_source_statement] = STATE(2646), - [sym_global_statement] = STATE(2646), - [sym_filetype_statement] = STATE(2646), - [sym_colorscheme_statement] = STATE(2646), - [sym_lua_statement] = STATE(2646), - [sym_ruby_statement] = STATE(2646), - [sym_python_statement] = STATE(2646), - [sym_perl_statement] = STATE(2646), - [sym_for_loop] = STATE(2646), - [sym_while_loop] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_try_statement] = STATE(2646), - [sym_throw_statement] = STATE(2646), - [sym_autocmd_statement] = STATE(2646), - [sym_augroup_statement] = STATE(2646), - [sym_bang_filter_statement] = STATE(2646), - [sym_let_statement] = STATE(2646), - [sym_const_statement] = STATE(2646), - [sym_set_statement] = STATE(2646), - [sym_setlocal_statement] = STATE(2646), - [sym_unlet_statement] = STATE(2646), - [sym_call_statement] = STATE(2646), - [sym_echo_statement] = STATE(2646), - [sym_echon_statement] = STATE(2646), - [sym_echohl_statement] = STATE(2646), - [sym_echomsg_statement] = STATE(2646), - [sym_echoerr_statement] = STATE(2646), - [sym_execute_statement] = STATE(2646), - [sym_silent_statement] = STATE(2646), - [sym_user_command] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_range_statement] = STATE(2646), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2646), - [sym_map_statement] = STATE(2646), - [sym_highlight_statement] = STATE(2646), - [sym_syntax_statement] = STATE(2646), - [sym_sign_statement] = STATE(2646), + [65] = { + [sym__statement] = STATE(2870), + [sym_unknown_builtin_statement] = STATE(2870), + [sym_return_statement] = STATE(2870), + [sym_break_statement] = STATE(2870), + [sym_continue_statement] = STATE(2870), + [sym_normal_statement] = STATE(2870), + [sym_setfiletype_statement] = STATE(2870), + [sym_options_statement] = STATE(2870), + [sym_startinsert_statement] = STATE(2870), + [sym_stopinsert_statement] = STATE(2870), + [sym_scriptencoding_statement] = STATE(2870), + [sym_comclear_statement] = STATE(2870), + [sym_delcommand_statement] = STATE(2870), + [sym_runtime_statement] = STATE(2870), + [sym_wincmd_statement] = STATE(2870), + [sym_source_statement] = STATE(2870), + [sym_global_statement] = STATE(2870), + [sym_filetype_statement] = STATE(2870), + [sym_colorscheme_statement] = STATE(2870), + [sym_lua_statement] = STATE(2870), + [sym_ruby_statement] = STATE(2870), + [sym_python_statement] = STATE(2870), + [sym_perl_statement] = STATE(2870), + [sym_for_loop] = STATE(2870), + [sym_while_loop] = STATE(2870), + [sym_if_statement] = STATE(2870), + [sym_try_statement] = STATE(2870), + [sym_throw_statement] = STATE(2870), + [sym_autocmd_statement] = STATE(2870), + [sym_augroup_statement] = STATE(2870), + [sym_bang_filter_statement] = STATE(2870), + [sym_let_statement] = STATE(2870), + [sym_const_statement] = STATE(2870), + [sym_set_statement] = STATE(2870), + [sym_setlocal_statement] = STATE(2870), + [sym_unlet_statement] = STATE(2870), + [sym_call_statement] = STATE(2870), + [sym_echo_statement] = STATE(2870), + [sym_echon_statement] = STATE(2870), + [sym_echohl_statement] = STATE(2870), + [sym_echomsg_statement] = STATE(2870), + [sym_echoerr_statement] = STATE(2870), + [sym_execute_statement] = STATE(2870), + [sym_silent_statement] = STATE(2870), + [sym_user_command] = STATE(2870), + [sym_function_definition] = STATE(2870), + [sym_range_statement] = STATE(2870), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2870), + [sym_map_statement] = STATE(2870), + [sym_highlight_statement] = STATE(2870), + [sym_syntax_statement] = STATE(2870), + [sym_sign_statement] = STATE(2870), [aux_sym__statement_repeat1] = STATE(142), [aux_sym_autocmd_statement_repeat1] = STATE(249), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(641), - [anon_sym_PLUS_PLUSnested] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(713), + [anon_sym_PLUS_PLUSnested] = ACTIONS(715), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [54] = { - [sym__statement] = STATE(2878), - [sym_unknown_builtin_statement] = STATE(2878), - [sym_return_statement] = STATE(2878), - [sym_break_statement] = STATE(2878), - [sym_continue_statement] = STATE(2878), - [sym_normal_statement] = STATE(2878), - [sym_setfiletype_statement] = STATE(2878), - [sym_options_statement] = STATE(2878), - [sym_startinsert_statement] = STATE(2878), - [sym_stopinsert_statement] = STATE(2878), - [sym_scriptencoding_statement] = STATE(2878), - [sym_comclear_statement] = STATE(2878), - [sym_delcommand_statement] = STATE(2878), - [sym_runtime_statement] = STATE(2878), - [sym_wincmd_statement] = STATE(2878), - [sym_source_statement] = STATE(2878), - [sym_global_statement] = STATE(2878), - [sym_filetype_statement] = STATE(2878), - [sym_colorscheme_statement] = STATE(2878), - [sym_lua_statement] = STATE(2878), - [sym_ruby_statement] = STATE(2878), - [sym_python_statement] = STATE(2878), - [sym_perl_statement] = STATE(2878), - [sym_for_loop] = STATE(2878), - [sym_while_loop] = STATE(2878), - [sym_if_statement] = STATE(2878), - [sym_try_statement] = STATE(2878), - [sym_throw_statement] = STATE(2878), - [sym_autocmd_statement] = STATE(2878), - [sym_augroup_statement] = STATE(2878), - [sym_bang_filter_statement] = STATE(2878), - [sym_let_statement] = STATE(2878), - [sym_const_statement] = STATE(2878), - [sym_set_statement] = STATE(2878), - [sym_setlocal_statement] = STATE(2878), - [sym_unlet_statement] = STATE(2878), - [sym_call_statement] = STATE(2878), - [sym_echo_statement] = STATE(2878), - [sym_echon_statement] = STATE(2878), - [sym_echohl_statement] = STATE(2878), - [sym_echomsg_statement] = STATE(2878), - [sym_echoerr_statement] = STATE(2878), - [sym_execute_statement] = STATE(2878), - [sym_silent_statement] = STATE(2878), - [sym_user_command] = STATE(2878), - [sym_function_definition] = STATE(2878), - [sym_range_statement] = STATE(2878), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2878), - [sym_map_statement] = STATE(2878), - [sym_highlight_statement] = STATE(2878), - [sym_syntax_statement] = STATE(2878), - [sym_sign_statement] = STATE(2878), + [66] = { + [sym__statement] = STATE(2780), + [sym_unknown_builtin_statement] = STATE(2780), + [sym_return_statement] = STATE(2780), + [sym_break_statement] = STATE(2780), + [sym_continue_statement] = STATE(2780), + [sym_normal_statement] = STATE(2780), + [sym_setfiletype_statement] = STATE(2780), + [sym_options_statement] = STATE(2780), + [sym_startinsert_statement] = STATE(2780), + [sym_stopinsert_statement] = STATE(2780), + [sym_scriptencoding_statement] = STATE(2780), + [sym_comclear_statement] = STATE(2780), + [sym_delcommand_statement] = STATE(2780), + [sym_runtime_statement] = STATE(2780), + [sym_wincmd_statement] = STATE(2780), + [sym_source_statement] = STATE(2780), + [sym_global_statement] = STATE(2780), + [sym_filetype_statement] = STATE(2780), + [sym_colorscheme_statement] = STATE(2780), + [sym_lua_statement] = STATE(2780), + [sym_ruby_statement] = STATE(2780), + [sym_python_statement] = STATE(2780), + [sym_perl_statement] = STATE(2780), + [sym_for_loop] = STATE(2780), + [sym_while_loop] = STATE(2780), + [sym_if_statement] = STATE(2780), + [sym_try_statement] = STATE(2780), + [sym_throw_statement] = STATE(2780), + [sym_autocmd_statement] = STATE(2780), + [sym_augroup_statement] = STATE(2780), + [sym_bang_filter_statement] = STATE(2780), + [sym_let_statement] = STATE(2780), + [sym_const_statement] = STATE(2780), + [sym_set_statement] = STATE(2780), + [sym_setlocal_statement] = STATE(2780), + [sym_unlet_statement] = STATE(2780), + [sym_call_statement] = STATE(2780), + [sym_echo_statement] = STATE(2780), + [sym_echon_statement] = STATE(2780), + [sym_echohl_statement] = STATE(2780), + [sym_echomsg_statement] = STATE(2780), + [sym_echoerr_statement] = STATE(2780), + [sym_execute_statement] = STATE(2780), + [sym_silent_statement] = STATE(2780), + [sym_user_command] = STATE(2780), + [sym_function_definition] = STATE(2780), + [sym_range_statement] = STATE(2780), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2780), + [sym_map_statement] = STATE(2780), + [sym_highlight_statement] = STATE(2780), + [sym_syntax_statement] = STATE(2780), + [sym_sign_statement] = STATE(2780), [aux_sym__statement_repeat1] = STATE(141), [aux_sym_autocmd_statement_repeat1] = STATE(249), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(645), - [anon_sym_PLUS_PLUSnested] = ACTIONS(647), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(717), + [anon_sym_PLUS_PLUSnested] = ACTIONS(719), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -34616,813 +35645,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [55] = { - [sym__statement] = STATE(2549), - [sym_unknown_builtin_statement] = STATE(2549), - [sym_return_statement] = STATE(2549), - [sym_break_statement] = STATE(2549), - [sym_continue_statement] = STATE(2549), - [sym_normal_statement] = STATE(2549), - [sym_setfiletype_statement] = STATE(2549), - [sym_options_statement] = STATE(2549), - [sym_startinsert_statement] = STATE(2549), - [sym_stopinsert_statement] = STATE(2549), - [sym_scriptencoding_statement] = STATE(2549), - [sym_comclear_statement] = STATE(2549), - [sym_delcommand_statement] = STATE(2549), - [sym_runtime_statement] = STATE(2549), - [sym_wincmd_statement] = STATE(2549), - [sym_source_statement] = STATE(2549), - [sym_global_statement] = STATE(2549), - [sym_filetype_statement] = STATE(2549), - [sym_colorscheme_statement] = STATE(2549), - [sym_lua_statement] = STATE(2549), - [sym_ruby_statement] = STATE(2549), - [sym_python_statement] = STATE(2549), - [sym_perl_statement] = STATE(2549), - [sym_for_loop] = STATE(2549), - [sym_while_loop] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_try_statement] = STATE(2549), - [sym_throw_statement] = STATE(2549), - [sym_autocmd_statement] = STATE(2549), - [sym_augroup_statement] = STATE(2549), - [sym_bang_filter_statement] = STATE(2549), - [sym_let_statement] = STATE(2549), - [sym_const_statement] = STATE(2549), - [sym_set_statement] = STATE(2549), - [sym_setlocal_statement] = STATE(2549), - [sym_unlet_statement] = STATE(2549), - [sym_call_statement] = STATE(2549), - [sym_echo_statement] = STATE(2549), - [sym_echon_statement] = STATE(2549), - [sym_echohl_statement] = STATE(2549), - [sym_echomsg_statement] = STATE(2549), - [sym_echoerr_statement] = STATE(2549), - [sym_execute_statement] = STATE(2549), - [sym_silent_statement] = STATE(2549), - [sym_user_command] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_range_statement] = STATE(2549), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2549), - [sym_map_statement] = STATE(2549), - [sym_highlight_statement] = STATE(2549), - [sym_syntax_statement] = STATE(2549), - [sym_sign_statement] = STATE(2549), - [aux_sym__statement_repeat1] = STATE(142), - [aux_sym_autocmd_statement_repeat1] = STATE(67), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(649), - [anon_sym_PLUS_PLUSnested] = ACTIONS(651), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, - [56] = { - [sym__statement] = STATE(2549), - [sym_unknown_builtin_statement] = STATE(2549), - [sym_return_statement] = STATE(2549), - [sym_break_statement] = STATE(2549), - [sym_continue_statement] = STATE(2549), - [sym_normal_statement] = STATE(2549), - [sym_setfiletype_statement] = STATE(2549), - [sym_options_statement] = STATE(2549), - [sym_startinsert_statement] = STATE(2549), - [sym_stopinsert_statement] = STATE(2549), - [sym_scriptencoding_statement] = STATE(2549), - [sym_comclear_statement] = STATE(2549), - [sym_delcommand_statement] = STATE(2549), - [sym_runtime_statement] = STATE(2549), - [sym_wincmd_statement] = STATE(2549), - [sym_source_statement] = STATE(2549), - [sym_global_statement] = STATE(2549), - [sym_filetype_statement] = STATE(2549), - [sym_colorscheme_statement] = STATE(2549), - [sym_lua_statement] = STATE(2549), - [sym_ruby_statement] = STATE(2549), - [sym_python_statement] = STATE(2549), - [sym_perl_statement] = STATE(2549), - [sym_for_loop] = STATE(2549), - [sym_while_loop] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_try_statement] = STATE(2549), - [sym_throw_statement] = STATE(2549), - [sym_autocmd_statement] = STATE(2549), - [sym_augroup_statement] = STATE(2549), - [sym_bang_filter_statement] = STATE(2549), - [sym_let_statement] = STATE(2549), - [sym_const_statement] = STATE(2549), - [sym_set_statement] = STATE(2549), - [sym_setlocal_statement] = STATE(2549), - [sym_unlet_statement] = STATE(2549), - [sym_call_statement] = STATE(2549), - [sym_echo_statement] = STATE(2549), - [sym_echon_statement] = STATE(2549), - [sym_echohl_statement] = STATE(2549), - [sym_echomsg_statement] = STATE(2549), - [sym_echoerr_statement] = STATE(2549), - [sym_execute_statement] = STATE(2549), - [sym_silent_statement] = STATE(2549), - [sym_user_command] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_range_statement] = STATE(2549), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2549), - [sym_map_statement] = STATE(2549), - [sym_highlight_statement] = STATE(2549), - [sym_syntax_statement] = STATE(2549), - [sym_sign_statement] = STATE(2549), - [aux_sym__statement_repeat1] = STATE(140), - [aux_sym_autocmd_statement_repeat1] = STATE(63), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(657), - [anon_sym_PLUS_PLUSnested] = ACTIONS(659), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [57] = { - [sym__statement] = STATE(2645), - [sym_unknown_builtin_statement] = STATE(2645), - [sym_return_statement] = STATE(2645), - [sym_break_statement] = STATE(2645), - [sym_continue_statement] = STATE(2645), - [sym_normal_statement] = STATE(2645), - [sym_setfiletype_statement] = STATE(2645), - [sym_options_statement] = STATE(2645), - [sym_startinsert_statement] = STATE(2645), - [sym_stopinsert_statement] = STATE(2645), - [sym_scriptencoding_statement] = STATE(2645), - [sym_comclear_statement] = STATE(2645), - [sym_delcommand_statement] = STATE(2645), - [sym_runtime_statement] = STATE(2645), - [sym_wincmd_statement] = STATE(2645), - [sym_source_statement] = STATE(2645), - [sym_global_statement] = STATE(2645), - [sym_filetype_statement] = STATE(2645), - [sym_colorscheme_statement] = STATE(2645), - [sym_lua_statement] = STATE(2645), - [sym_ruby_statement] = STATE(2645), - [sym_python_statement] = STATE(2645), - [sym_perl_statement] = STATE(2645), - [sym_for_loop] = STATE(2645), - [sym_while_loop] = STATE(2645), - [sym_if_statement] = STATE(2645), - [sym_try_statement] = STATE(2645), - [sym_throw_statement] = STATE(2645), - [sym_autocmd_statement] = STATE(2645), - [sym_augroup_statement] = STATE(2645), - [sym_bang_filter_statement] = STATE(2645), - [sym_let_statement] = STATE(2645), - [sym_const_statement] = STATE(2645), - [sym_set_statement] = STATE(2645), - [sym_setlocal_statement] = STATE(2645), - [sym_unlet_statement] = STATE(2645), - [sym_call_statement] = STATE(2645), - [sym_echo_statement] = STATE(2645), - [sym_echon_statement] = STATE(2645), - [sym_echohl_statement] = STATE(2645), - [sym_echomsg_statement] = STATE(2645), - [sym_echoerr_statement] = STATE(2645), - [sym_execute_statement] = STATE(2645), - [sym_silent_statement] = STATE(2645), - [sym_user_command] = STATE(2645), - [sym_function_definition] = STATE(2645), - [sym_range_statement] = STATE(2645), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2645), - [sym_map_statement] = STATE(2645), - [sym_highlight_statement] = STATE(2645), - [sym_syntax_statement] = STATE(2645), - [sym_sign_statement] = STATE(2645), - [aux_sym__statement_repeat1] = STATE(142), - [aux_sym_autocmd_statement_repeat1] = STATE(69), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(693), - [anon_sym_PLUS_PLUSnested] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, - [58] = { - [sym__statement] = STATE(2591), - [sym_unknown_builtin_statement] = STATE(2591), - [sym_return_statement] = STATE(2591), - [sym_break_statement] = STATE(2591), - [sym_continue_statement] = STATE(2591), - [sym_normal_statement] = STATE(2591), - [sym_setfiletype_statement] = STATE(2591), - [sym_options_statement] = STATE(2591), - [sym_startinsert_statement] = STATE(2591), - [sym_stopinsert_statement] = STATE(2591), - [sym_scriptencoding_statement] = STATE(2591), - [sym_comclear_statement] = STATE(2591), - [sym_delcommand_statement] = STATE(2591), - [sym_runtime_statement] = STATE(2591), - [sym_wincmd_statement] = STATE(2591), - [sym_source_statement] = STATE(2591), - [sym_global_statement] = STATE(2591), - [sym_filetype_statement] = STATE(2591), - [sym_colorscheme_statement] = STATE(2591), - [sym_lua_statement] = STATE(2591), - [sym_ruby_statement] = STATE(2591), - [sym_python_statement] = STATE(2591), - [sym_perl_statement] = STATE(2591), - [sym_for_loop] = STATE(2591), - [sym_while_loop] = STATE(2591), - [sym_if_statement] = STATE(2591), - [sym_try_statement] = STATE(2591), - [sym_throw_statement] = STATE(2591), - [sym_autocmd_statement] = STATE(2591), - [sym_augroup_statement] = STATE(2591), - [sym_bang_filter_statement] = STATE(2591), - [sym_let_statement] = STATE(2591), - [sym_const_statement] = STATE(2591), - [sym_set_statement] = STATE(2591), - [sym_setlocal_statement] = STATE(2591), - [sym_unlet_statement] = STATE(2591), - [sym_call_statement] = STATE(2591), - [sym_echo_statement] = STATE(2591), - [sym_echon_statement] = STATE(2591), - [sym_echohl_statement] = STATE(2591), - [sym_echomsg_statement] = STATE(2591), - [sym_echoerr_statement] = STATE(2591), - [sym_execute_statement] = STATE(2591), - [sym_silent_statement] = STATE(2591), - [sym_user_command] = STATE(2591), - [sym_function_definition] = STATE(2591), - [sym_range_statement] = STATE(2591), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2591), - [sym_map_statement] = STATE(2591), - [sym_highlight_statement] = STATE(2591), - [sym_syntax_statement] = STATE(2591), - [sym_sign_statement] = STATE(2591), - [aux_sym__statement_repeat1] = STATE(140), - [aux_sym_autocmd_statement_repeat1] = STATE(72), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(697), - [anon_sym_PLUS_PLUSnested] = ACTIONS(699), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [59] = { - [sym__statement] = STATE(2645), - [sym_unknown_builtin_statement] = STATE(2645), - [sym_return_statement] = STATE(2645), - [sym_break_statement] = STATE(2645), - [sym_continue_statement] = STATE(2645), - [sym_normal_statement] = STATE(2645), - [sym_setfiletype_statement] = STATE(2645), - [sym_options_statement] = STATE(2645), - [sym_startinsert_statement] = STATE(2645), - [sym_stopinsert_statement] = STATE(2645), - [sym_scriptencoding_statement] = STATE(2645), - [sym_comclear_statement] = STATE(2645), - [sym_delcommand_statement] = STATE(2645), - [sym_runtime_statement] = STATE(2645), - [sym_wincmd_statement] = STATE(2645), - [sym_source_statement] = STATE(2645), - [sym_global_statement] = STATE(2645), - [sym_filetype_statement] = STATE(2645), - [sym_colorscheme_statement] = STATE(2645), - [sym_lua_statement] = STATE(2645), - [sym_ruby_statement] = STATE(2645), - [sym_python_statement] = STATE(2645), - [sym_perl_statement] = STATE(2645), - [sym_for_loop] = STATE(2645), - [sym_while_loop] = STATE(2645), - [sym_if_statement] = STATE(2645), - [sym_try_statement] = STATE(2645), - [sym_throw_statement] = STATE(2645), - [sym_autocmd_statement] = STATE(2645), - [sym_augroup_statement] = STATE(2645), - [sym_bang_filter_statement] = STATE(2645), - [sym_let_statement] = STATE(2645), - [sym_const_statement] = STATE(2645), - [sym_set_statement] = STATE(2645), - [sym_setlocal_statement] = STATE(2645), - [sym_unlet_statement] = STATE(2645), - [sym_call_statement] = STATE(2645), - [sym_echo_statement] = STATE(2645), - [sym_echon_statement] = STATE(2645), - [sym_echohl_statement] = STATE(2645), - [sym_echomsg_statement] = STATE(2645), - [sym_echoerr_statement] = STATE(2645), - [sym_execute_statement] = STATE(2645), - [sym_silent_statement] = STATE(2645), - [sym_user_command] = STATE(2645), - [sym_function_definition] = STATE(2645), - [sym_range_statement] = STATE(2645), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2645), - [sym_map_statement] = STATE(2645), - [sym_highlight_statement] = STATE(2645), - [sym_syntax_statement] = STATE(2645), - [sym_sign_statement] = STATE(2645), - [aux_sym__statement_repeat1] = STATE(140), - [aux_sym_autocmd_statement_repeat1] = STATE(71), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(701), - [anon_sym_PLUS_PLUSnested] = ACTIONS(703), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [60] = { - [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_comclear_statement] = STATE(2726), - [sym_delcommand_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_autocmd_statement] = STATE(2726), - [sym_augroup_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_user_command] = STATE(2726), - [sym_function_definition] = STATE(2726), - [sym_range_statement] = STATE(2726), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2726), - [sym_map_statement] = STATE(2726), - [sym_highlight_statement] = STATE(2726), - [sym_syntax_statement] = STATE(2726), - [sym_sign_statement] = STATE(2726), + [67] = { + [sym__statement] = STATE(2800), + [sym_unknown_builtin_statement] = STATE(2800), + [sym_return_statement] = STATE(2800), + [sym_break_statement] = STATE(2800), + [sym_continue_statement] = STATE(2800), + [sym_normal_statement] = STATE(2800), + [sym_setfiletype_statement] = STATE(2800), + [sym_options_statement] = STATE(2800), + [sym_startinsert_statement] = STATE(2800), + [sym_stopinsert_statement] = STATE(2800), + [sym_scriptencoding_statement] = STATE(2800), + [sym_comclear_statement] = STATE(2800), + [sym_delcommand_statement] = STATE(2800), + [sym_runtime_statement] = STATE(2800), + [sym_wincmd_statement] = STATE(2800), + [sym_source_statement] = STATE(2800), + [sym_global_statement] = STATE(2800), + [sym_filetype_statement] = STATE(2800), + [sym_colorscheme_statement] = STATE(2800), + [sym_lua_statement] = STATE(2800), + [sym_ruby_statement] = STATE(2800), + [sym_python_statement] = STATE(2800), + [sym_perl_statement] = STATE(2800), + [sym_for_loop] = STATE(2800), + [sym_while_loop] = STATE(2800), + [sym_if_statement] = STATE(2800), + [sym_try_statement] = STATE(2800), + [sym_throw_statement] = STATE(2800), + [sym_autocmd_statement] = STATE(2800), + [sym_augroup_statement] = STATE(2800), + [sym_bang_filter_statement] = STATE(2800), + [sym_let_statement] = STATE(2800), + [sym_const_statement] = STATE(2800), + [sym_set_statement] = STATE(2800), + [sym_setlocal_statement] = STATE(2800), + [sym_unlet_statement] = STATE(2800), + [sym_call_statement] = STATE(2800), + [sym_echo_statement] = STATE(2800), + [sym_echon_statement] = STATE(2800), + [sym_echohl_statement] = STATE(2800), + [sym_echomsg_statement] = STATE(2800), + [sym_echoerr_statement] = STATE(2800), + [sym_execute_statement] = STATE(2800), + [sym_silent_statement] = STATE(2800), + [sym_user_command] = STATE(2800), + [sym_function_definition] = STATE(2800), + [sym_range_statement] = STATE(2800), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2800), + [sym_map_statement] = STATE(2800), + [sym_highlight_statement] = STATE(2800), + [sym_syntax_statement] = STATE(2800), + [sym_sign_statement] = STATE(2800), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_autocmd_statement_repeat1] = STATE(62), + [aux_sym_autocmd_statement_repeat1] = STATE(58), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(705), - [anon_sym_PLUS_PLUSnested] = ACTIONS(707), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(721), + [anon_sym_PLUS_PLUSnested] = ACTIONS(723), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -35504,221 +35793,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [61] = { - [sym__statement] = STATE(2591), - [sym_unknown_builtin_statement] = STATE(2591), - [sym_return_statement] = STATE(2591), - [sym_break_statement] = STATE(2591), - [sym_continue_statement] = STATE(2591), - [sym_normal_statement] = STATE(2591), - [sym_setfiletype_statement] = STATE(2591), - [sym_options_statement] = STATE(2591), - [sym_startinsert_statement] = STATE(2591), - [sym_stopinsert_statement] = STATE(2591), - [sym_scriptencoding_statement] = STATE(2591), - [sym_comclear_statement] = STATE(2591), - [sym_delcommand_statement] = STATE(2591), - [sym_runtime_statement] = STATE(2591), - [sym_wincmd_statement] = STATE(2591), - [sym_source_statement] = STATE(2591), - [sym_global_statement] = STATE(2591), - [sym_filetype_statement] = STATE(2591), - [sym_colorscheme_statement] = STATE(2591), - [sym_lua_statement] = STATE(2591), - [sym_ruby_statement] = STATE(2591), - [sym_python_statement] = STATE(2591), - [sym_perl_statement] = STATE(2591), - [sym_for_loop] = STATE(2591), - [sym_while_loop] = STATE(2591), - [sym_if_statement] = STATE(2591), - [sym_try_statement] = STATE(2591), - [sym_throw_statement] = STATE(2591), - [sym_autocmd_statement] = STATE(2591), - [sym_augroup_statement] = STATE(2591), - [sym_bang_filter_statement] = STATE(2591), - [sym_let_statement] = STATE(2591), - [sym_const_statement] = STATE(2591), - [sym_set_statement] = STATE(2591), - [sym_setlocal_statement] = STATE(2591), - [sym_unlet_statement] = STATE(2591), - [sym_call_statement] = STATE(2591), - [sym_echo_statement] = STATE(2591), - [sym_echon_statement] = STATE(2591), - [sym_echohl_statement] = STATE(2591), - [sym_echomsg_statement] = STATE(2591), - [sym_echoerr_statement] = STATE(2591), - [sym_execute_statement] = STATE(2591), - [sym_silent_statement] = STATE(2591), - [sym_user_command] = STATE(2591), - [sym_function_definition] = STATE(2591), - [sym_range_statement] = STATE(2591), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2591), - [sym_map_statement] = STATE(2591), - [sym_highlight_statement] = STATE(2591), - [sym_syntax_statement] = STATE(2591), - [sym_sign_statement] = STATE(2591), - [aux_sym__statement_repeat1] = STATE(142), - [aux_sym_autocmd_statement_repeat1] = STATE(52), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(709), - [anon_sym_PLUS_PLUSnested] = ACTIONS(711), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [68] = { + [sym__statement] = STATE(2870), + [sym_unknown_builtin_statement] = STATE(2870), + [sym_return_statement] = STATE(2870), + [sym_break_statement] = STATE(2870), + [sym_continue_statement] = STATE(2870), + [sym_normal_statement] = STATE(2870), + [sym_setfiletype_statement] = STATE(2870), + [sym_options_statement] = STATE(2870), + [sym_startinsert_statement] = STATE(2870), + [sym_stopinsert_statement] = STATE(2870), + [sym_scriptencoding_statement] = STATE(2870), + [sym_comclear_statement] = STATE(2870), + [sym_delcommand_statement] = STATE(2870), + [sym_runtime_statement] = STATE(2870), + [sym_wincmd_statement] = STATE(2870), + [sym_source_statement] = STATE(2870), + [sym_global_statement] = STATE(2870), + [sym_filetype_statement] = STATE(2870), + [sym_colorscheme_statement] = STATE(2870), + [sym_lua_statement] = STATE(2870), + [sym_ruby_statement] = STATE(2870), + [sym_python_statement] = STATE(2870), + [sym_perl_statement] = STATE(2870), + [sym_for_loop] = STATE(2870), + [sym_while_loop] = STATE(2870), + [sym_if_statement] = STATE(2870), + [sym_try_statement] = STATE(2870), + [sym_throw_statement] = STATE(2870), + [sym_autocmd_statement] = STATE(2870), + [sym_augroup_statement] = STATE(2870), + [sym_bang_filter_statement] = STATE(2870), + [sym_let_statement] = STATE(2870), + [sym_const_statement] = STATE(2870), + [sym_set_statement] = STATE(2870), + [sym_setlocal_statement] = STATE(2870), + [sym_unlet_statement] = STATE(2870), + [sym_call_statement] = STATE(2870), + [sym_echo_statement] = STATE(2870), + [sym_echon_statement] = STATE(2870), + [sym_echohl_statement] = STATE(2870), + [sym_echomsg_statement] = STATE(2870), + [sym_echoerr_statement] = STATE(2870), + [sym_execute_statement] = STATE(2870), + [sym_silent_statement] = STATE(2870), + [sym_user_command] = STATE(2870), + [sym_function_definition] = STATE(2870), + [sym_range_statement] = STATE(2870), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2870), + [sym_map_statement] = STATE(2870), + [sym_highlight_statement] = STATE(2870), + [sym_syntax_statement] = STATE(2870), + [sym_sign_statement] = STATE(2870), + [aux_sym__statement_repeat1] = STATE(140), + [aux_sym_autocmd_statement_repeat1] = STATE(249), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(725), + [anon_sym_PLUS_PLUSnested] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [62] = { - [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_comclear_statement] = STATE(2833), - [sym_delcommand_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_autocmd_statement] = STATE(2833), - [sym_augroup_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_user_command] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_range_statement] = STATE(2833), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2833), - [sym_map_statement] = STATE(2833), - [sym_highlight_statement] = STATE(2833), - [sym_syntax_statement] = STATE(2833), - [sym_sign_statement] = STATE(2833), + [69] = { + [sym__statement] = STATE(2608), + [sym_unknown_builtin_statement] = STATE(2608), + [sym_return_statement] = STATE(2608), + [sym_break_statement] = STATE(2608), + [sym_continue_statement] = STATE(2608), + [sym_normal_statement] = STATE(2608), + [sym_setfiletype_statement] = STATE(2608), + [sym_options_statement] = STATE(2608), + [sym_startinsert_statement] = STATE(2608), + [sym_stopinsert_statement] = STATE(2608), + [sym_scriptencoding_statement] = STATE(2608), + [sym_comclear_statement] = STATE(2608), + [sym_delcommand_statement] = STATE(2608), + [sym_runtime_statement] = STATE(2608), + [sym_wincmd_statement] = STATE(2608), + [sym_source_statement] = STATE(2608), + [sym_global_statement] = STATE(2608), + [sym_filetype_statement] = STATE(2608), + [sym_colorscheme_statement] = STATE(2608), + [sym_lua_statement] = STATE(2608), + [sym_ruby_statement] = STATE(2608), + [sym_python_statement] = STATE(2608), + [sym_perl_statement] = STATE(2608), + [sym_for_loop] = STATE(2608), + [sym_while_loop] = STATE(2608), + [sym_if_statement] = STATE(2608), + [sym_try_statement] = STATE(2608), + [sym_throw_statement] = STATE(2608), + [sym_autocmd_statement] = STATE(2608), + [sym_augroup_statement] = STATE(2608), + [sym_bang_filter_statement] = STATE(2608), + [sym_let_statement] = STATE(2608), + [sym_const_statement] = STATE(2608), + [sym_set_statement] = STATE(2608), + [sym_setlocal_statement] = STATE(2608), + [sym_unlet_statement] = STATE(2608), + [sym_call_statement] = STATE(2608), + [sym_echo_statement] = STATE(2608), + [sym_echon_statement] = STATE(2608), + [sym_echohl_statement] = STATE(2608), + [sym_echomsg_statement] = STATE(2608), + [sym_echoerr_statement] = STATE(2608), + [sym_execute_statement] = STATE(2608), + [sym_silent_statement] = STATE(2608), + [sym_user_command] = STATE(2608), + [sym_function_definition] = STATE(2608), + [sym_range_statement] = STATE(2608), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2608), + [sym_map_statement] = STATE(2608), + [sym_highlight_statement] = STATE(2608), + [sym_syntax_statement] = STATE(2608), + [sym_sign_statement] = STATE(2608), [aux_sym__statement_repeat1] = STATE(141), [aux_sym_autocmd_statement_repeat1] = STATE(249), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(713), - [anon_sym_PLUS_PLUSnested] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(729), + [anon_sym_PLUS_PLUSnested] = ACTIONS(731), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -35800,369 +36089,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [63] = { - [sym__statement] = STATE(2591), - [sym_unknown_builtin_statement] = STATE(2591), - [sym_return_statement] = STATE(2591), - [sym_break_statement] = STATE(2591), - [sym_continue_statement] = STATE(2591), - [sym_normal_statement] = STATE(2591), - [sym_setfiletype_statement] = STATE(2591), - [sym_options_statement] = STATE(2591), - [sym_startinsert_statement] = STATE(2591), - [sym_stopinsert_statement] = STATE(2591), - [sym_scriptencoding_statement] = STATE(2591), - [sym_comclear_statement] = STATE(2591), - [sym_delcommand_statement] = STATE(2591), - [sym_runtime_statement] = STATE(2591), - [sym_wincmd_statement] = STATE(2591), - [sym_source_statement] = STATE(2591), - [sym_global_statement] = STATE(2591), - [sym_filetype_statement] = STATE(2591), - [sym_colorscheme_statement] = STATE(2591), - [sym_lua_statement] = STATE(2591), - [sym_ruby_statement] = STATE(2591), - [sym_python_statement] = STATE(2591), - [sym_perl_statement] = STATE(2591), - [sym_for_loop] = STATE(2591), - [sym_while_loop] = STATE(2591), - [sym_if_statement] = STATE(2591), - [sym_try_statement] = STATE(2591), - [sym_throw_statement] = STATE(2591), - [sym_autocmd_statement] = STATE(2591), - [sym_augroup_statement] = STATE(2591), - [sym_bang_filter_statement] = STATE(2591), - [sym_let_statement] = STATE(2591), - [sym_const_statement] = STATE(2591), - [sym_set_statement] = STATE(2591), - [sym_setlocal_statement] = STATE(2591), - [sym_unlet_statement] = STATE(2591), - [sym_call_statement] = STATE(2591), - [sym_echo_statement] = STATE(2591), - [sym_echon_statement] = STATE(2591), - [sym_echohl_statement] = STATE(2591), - [sym_echomsg_statement] = STATE(2591), - [sym_echoerr_statement] = STATE(2591), - [sym_execute_statement] = STATE(2591), - [sym_silent_statement] = STATE(2591), - [sym_user_command] = STATE(2591), - [sym_function_definition] = STATE(2591), - [sym_range_statement] = STATE(2591), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2591), - [sym_map_statement] = STATE(2591), - [sym_highlight_statement] = STATE(2591), - [sym_syntax_statement] = STATE(2591), - [sym_sign_statement] = STATE(2591), - [aux_sym__statement_repeat1] = STATE(140), - [aux_sym_autocmd_statement_repeat1] = STATE(249), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(697), - [anon_sym_PLUS_PLUSnested] = ACTIONS(699), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [64] = { - [sym__statement] = STATE(2597), - [sym_unknown_builtin_statement] = STATE(2597), - [sym_return_statement] = STATE(2597), - [sym_break_statement] = STATE(2597), - [sym_continue_statement] = STATE(2597), - [sym_normal_statement] = STATE(2597), - [sym_setfiletype_statement] = STATE(2597), - [sym_options_statement] = STATE(2597), - [sym_startinsert_statement] = STATE(2597), - [sym_stopinsert_statement] = STATE(2597), - [sym_scriptencoding_statement] = STATE(2597), - [sym_comclear_statement] = STATE(2597), - [sym_delcommand_statement] = STATE(2597), - [sym_runtime_statement] = STATE(2597), - [sym_wincmd_statement] = STATE(2597), - [sym_source_statement] = STATE(2597), - [sym_global_statement] = STATE(2597), - [sym_filetype_statement] = STATE(2597), - [sym_colorscheme_statement] = STATE(2597), - [sym_lua_statement] = STATE(2597), - [sym_ruby_statement] = STATE(2597), - [sym_python_statement] = STATE(2597), - [sym_perl_statement] = STATE(2597), - [sym_for_loop] = STATE(2597), - [sym_while_loop] = STATE(2597), - [sym_if_statement] = STATE(2597), - [sym_try_statement] = STATE(2597), - [sym_throw_statement] = STATE(2597), - [sym_autocmd_statement] = STATE(2597), - [sym_augroup_statement] = STATE(2597), - [sym_bang_filter_statement] = STATE(2597), - [sym_let_statement] = STATE(2597), - [sym_const_statement] = STATE(2597), - [sym_set_statement] = STATE(2597), - [sym_setlocal_statement] = STATE(2597), - [sym_unlet_statement] = STATE(2597), - [sym_call_statement] = STATE(2597), - [sym_echo_statement] = STATE(2597), - [sym_echon_statement] = STATE(2597), - [sym_echohl_statement] = STATE(2597), - [sym_echomsg_statement] = STATE(2597), - [sym_echoerr_statement] = STATE(2597), - [sym_execute_statement] = STATE(2597), - [sym_silent_statement] = STATE(2597), - [sym_user_command] = STATE(2597), - [sym_function_definition] = STATE(2597), - [sym_range_statement] = STATE(2597), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2597), - [sym_map_statement] = STATE(2597), - [sym_highlight_statement] = STATE(2597), - [sym_syntax_statement] = STATE(2597), - [sym_sign_statement] = STATE(2597), - [aux_sym__statement_repeat1] = STATE(140), - [aux_sym_autocmd_statement_repeat1] = STATE(70), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(717), - [anon_sym_PLUS_PLUSnested] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [65] = { - [sym__statement] = STATE(2846), - [sym_unknown_builtin_statement] = STATE(2846), - [sym_return_statement] = STATE(2846), - [sym_break_statement] = STATE(2846), - [sym_continue_statement] = STATE(2846), - [sym_normal_statement] = STATE(2846), - [sym_setfiletype_statement] = STATE(2846), - [sym_options_statement] = STATE(2846), - [sym_startinsert_statement] = STATE(2846), - [sym_stopinsert_statement] = STATE(2846), - [sym_scriptencoding_statement] = STATE(2846), - [sym_comclear_statement] = STATE(2846), - [sym_delcommand_statement] = STATE(2846), - [sym_runtime_statement] = STATE(2846), - [sym_wincmd_statement] = STATE(2846), - [sym_source_statement] = STATE(2846), - [sym_global_statement] = STATE(2846), - [sym_filetype_statement] = STATE(2846), - [sym_colorscheme_statement] = STATE(2846), - [sym_lua_statement] = STATE(2846), - [sym_ruby_statement] = STATE(2846), - [sym_python_statement] = STATE(2846), - [sym_perl_statement] = STATE(2846), - [sym_for_loop] = STATE(2846), - [sym_while_loop] = STATE(2846), - [sym_if_statement] = STATE(2846), - [sym_try_statement] = STATE(2846), - [sym_throw_statement] = STATE(2846), - [sym_autocmd_statement] = STATE(2846), - [sym_augroup_statement] = STATE(2846), - [sym_bang_filter_statement] = STATE(2846), - [sym_let_statement] = STATE(2846), - [sym_const_statement] = STATE(2846), - [sym_set_statement] = STATE(2846), - [sym_setlocal_statement] = STATE(2846), - [sym_unlet_statement] = STATE(2846), - [sym_call_statement] = STATE(2846), - [sym_echo_statement] = STATE(2846), - [sym_echon_statement] = STATE(2846), - [sym_echohl_statement] = STATE(2846), - [sym_echomsg_statement] = STATE(2846), - [sym_echoerr_statement] = STATE(2846), - [sym_execute_statement] = STATE(2846), - [sym_silent_statement] = STATE(2846), - [sym_user_command] = STATE(2846), - [sym_function_definition] = STATE(2846), - [sym_range_statement] = STATE(2846), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2846), - [sym_map_statement] = STATE(2846), - [sym_highlight_statement] = STATE(2846), - [sym_syntax_statement] = STATE(2846), - [sym_sign_statement] = STATE(2846), + [70] = { + [sym__statement] = STATE(2604), + [sym_unknown_builtin_statement] = STATE(2604), + [sym_return_statement] = STATE(2604), + [sym_break_statement] = STATE(2604), + [sym_continue_statement] = STATE(2604), + [sym_normal_statement] = STATE(2604), + [sym_setfiletype_statement] = STATE(2604), + [sym_options_statement] = STATE(2604), + [sym_startinsert_statement] = STATE(2604), + [sym_stopinsert_statement] = STATE(2604), + [sym_scriptencoding_statement] = STATE(2604), + [sym_comclear_statement] = STATE(2604), + [sym_delcommand_statement] = STATE(2604), + [sym_runtime_statement] = STATE(2604), + [sym_wincmd_statement] = STATE(2604), + [sym_source_statement] = STATE(2604), + [sym_global_statement] = STATE(2604), + [sym_filetype_statement] = STATE(2604), + [sym_colorscheme_statement] = STATE(2604), + [sym_lua_statement] = STATE(2604), + [sym_ruby_statement] = STATE(2604), + [sym_python_statement] = STATE(2604), + [sym_perl_statement] = STATE(2604), + [sym_for_loop] = STATE(2604), + [sym_while_loop] = STATE(2604), + [sym_if_statement] = STATE(2604), + [sym_try_statement] = STATE(2604), + [sym_throw_statement] = STATE(2604), + [sym_autocmd_statement] = STATE(2604), + [sym_augroup_statement] = STATE(2604), + [sym_bang_filter_statement] = STATE(2604), + [sym_let_statement] = STATE(2604), + [sym_const_statement] = STATE(2604), + [sym_set_statement] = STATE(2604), + [sym_setlocal_statement] = STATE(2604), + [sym_unlet_statement] = STATE(2604), + [sym_call_statement] = STATE(2604), + [sym_echo_statement] = STATE(2604), + [sym_echon_statement] = STATE(2604), + [sym_echohl_statement] = STATE(2604), + [sym_echomsg_statement] = STATE(2604), + [sym_echoerr_statement] = STATE(2604), + [sym_execute_statement] = STATE(2604), + [sym_silent_statement] = STATE(2604), + [sym_user_command] = STATE(2604), + [sym_function_definition] = STATE(2604), + [sym_range_statement] = STATE(2604), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2604), + [sym_map_statement] = STATE(2604), + [sym_highlight_statement] = STATE(2604), + [sym_syntax_statement] = STATE(2604), + [sym_sign_statement] = STATE(2604), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_autocmd_statement_repeat1] = STATE(249), + [aux_sym_autocmd_statement_repeat1] = STATE(66), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(721), - [anon_sym_PLUS_PLUSnested] = ACTIONS(723), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(733), + [anon_sym_PLUS_PLUSnested] = ACTIONS(735), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -36244,73 +36237,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [66] = { - [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_comclear_statement] = STATE(2833), - [sym_delcommand_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_autocmd_statement] = STATE(2833), - [sym_augroup_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_user_command] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_range_statement] = STATE(2833), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2833), - [sym_map_statement] = STATE(2833), - [sym_highlight_statement] = STATE(2833), - [sym_syntax_statement] = STATE(2833), - [sym_sign_statement] = STATE(2833), + [71] = { + [sym__statement] = STATE(2722), + [sym_unknown_builtin_statement] = STATE(2722), + [sym_return_statement] = STATE(2722), + [sym_break_statement] = STATE(2722), + [sym_continue_statement] = STATE(2722), + [sym_normal_statement] = STATE(2722), + [sym_setfiletype_statement] = STATE(2722), + [sym_options_statement] = STATE(2722), + [sym_startinsert_statement] = STATE(2722), + [sym_stopinsert_statement] = STATE(2722), + [sym_scriptencoding_statement] = STATE(2722), + [sym_comclear_statement] = STATE(2722), + [sym_delcommand_statement] = STATE(2722), + [sym_runtime_statement] = STATE(2722), + [sym_wincmd_statement] = STATE(2722), + [sym_source_statement] = STATE(2722), + [sym_global_statement] = STATE(2722), + [sym_filetype_statement] = STATE(2722), + [sym_colorscheme_statement] = STATE(2722), + [sym_lua_statement] = STATE(2722), + [sym_ruby_statement] = STATE(2722), + [sym_python_statement] = STATE(2722), + [sym_perl_statement] = STATE(2722), + [sym_for_loop] = STATE(2722), + [sym_while_loop] = STATE(2722), + [sym_if_statement] = STATE(2722), + [sym_try_statement] = STATE(2722), + [sym_throw_statement] = STATE(2722), + [sym_autocmd_statement] = STATE(2722), + [sym_augroup_statement] = STATE(2722), + [sym_bang_filter_statement] = STATE(2722), + [sym_let_statement] = STATE(2722), + [sym_const_statement] = STATE(2722), + [sym_set_statement] = STATE(2722), + [sym_setlocal_statement] = STATE(2722), + [sym_unlet_statement] = STATE(2722), + [sym_call_statement] = STATE(2722), + [sym_echo_statement] = STATE(2722), + [sym_echon_statement] = STATE(2722), + [sym_echohl_statement] = STATE(2722), + [sym_echomsg_statement] = STATE(2722), + [sym_echoerr_statement] = STATE(2722), + [sym_execute_statement] = STATE(2722), + [sym_silent_statement] = STATE(2722), + [sym_user_command] = STATE(2722), + [sym_function_definition] = STATE(2722), + [sym_range_statement] = STATE(2722), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2722), + [sym_map_statement] = STATE(2722), + [sym_highlight_statement] = STATE(2722), + [sym_syntax_statement] = STATE(2722), + [sym_sign_statement] = STATE(2722), + [aux_sym__statement_repeat1] = STATE(142), + [aux_sym_autocmd_statement_repeat1] = STATE(55), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(737), + [anon_sym_PLUS_PLUSnested] = ACTIONS(739), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, + [72] = { + [sym__statement] = STATE(2850), + [sym_unknown_builtin_statement] = STATE(2850), + [sym_return_statement] = STATE(2850), + [sym_break_statement] = STATE(2850), + [sym_continue_statement] = STATE(2850), + [sym_normal_statement] = STATE(2850), + [sym_setfiletype_statement] = STATE(2850), + [sym_options_statement] = STATE(2850), + [sym_startinsert_statement] = STATE(2850), + [sym_stopinsert_statement] = STATE(2850), + [sym_scriptencoding_statement] = STATE(2850), + [sym_comclear_statement] = STATE(2850), + [sym_delcommand_statement] = STATE(2850), + [sym_runtime_statement] = STATE(2850), + [sym_wincmd_statement] = STATE(2850), + [sym_source_statement] = STATE(2850), + [sym_global_statement] = STATE(2850), + [sym_filetype_statement] = STATE(2850), + [sym_colorscheme_statement] = STATE(2850), + [sym_lua_statement] = STATE(2850), + [sym_ruby_statement] = STATE(2850), + [sym_python_statement] = STATE(2850), + [sym_perl_statement] = STATE(2850), + [sym_for_loop] = STATE(2850), + [sym_while_loop] = STATE(2850), + [sym_if_statement] = STATE(2850), + [sym_try_statement] = STATE(2850), + [sym_throw_statement] = STATE(2850), + [sym_autocmd_statement] = STATE(2850), + [sym_augroup_statement] = STATE(2850), + [sym_bang_filter_statement] = STATE(2850), + [sym_let_statement] = STATE(2850), + [sym_const_statement] = STATE(2850), + [sym_set_statement] = STATE(2850), + [sym_setlocal_statement] = STATE(2850), + [sym_unlet_statement] = STATE(2850), + [sym_call_statement] = STATE(2850), + [sym_echo_statement] = STATE(2850), + [sym_echon_statement] = STATE(2850), + [sym_echohl_statement] = STATE(2850), + [sym_echomsg_statement] = STATE(2850), + [sym_echoerr_statement] = STATE(2850), + [sym_execute_statement] = STATE(2850), + [sym_silent_statement] = STATE(2850), + [sym_user_command] = STATE(2850), + [sym_function_definition] = STATE(2850), + [sym_range_statement] = STATE(2850), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2850), + [sym_map_statement] = STATE(2850), + [sym_highlight_statement] = STATE(2850), + [sym_syntax_statement] = STATE(2850), + [sym_sign_statement] = STATE(2850), + [aux_sym__statement_repeat1] = STATE(140), + [aux_sym_autocmd_statement_repeat1] = STATE(68), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(507), + [anon_sym_PLUS_PLUSonce] = ACTIONS(741), + [anon_sym_PLUS_PLUSnested] = ACTIONS(743), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [73] = { + [sym__statement] = STATE(2780), + [sym_unknown_builtin_statement] = STATE(2780), + [sym_return_statement] = STATE(2780), + [sym_break_statement] = STATE(2780), + [sym_continue_statement] = STATE(2780), + [sym_normal_statement] = STATE(2780), + [sym_setfiletype_statement] = STATE(2780), + [sym_options_statement] = STATE(2780), + [sym_startinsert_statement] = STATE(2780), + [sym_stopinsert_statement] = STATE(2780), + [sym_scriptencoding_statement] = STATE(2780), + [sym_comclear_statement] = STATE(2780), + [sym_delcommand_statement] = STATE(2780), + [sym_runtime_statement] = STATE(2780), + [sym_wincmd_statement] = STATE(2780), + [sym_source_statement] = STATE(2780), + [sym_global_statement] = STATE(2780), + [sym_filetype_statement] = STATE(2780), + [sym_colorscheme_statement] = STATE(2780), + [sym_lua_statement] = STATE(2780), + [sym_ruby_statement] = STATE(2780), + [sym_python_statement] = STATE(2780), + [sym_perl_statement] = STATE(2780), + [sym_for_loop] = STATE(2780), + [sym_while_loop] = STATE(2780), + [sym_if_statement] = STATE(2780), + [sym_try_statement] = STATE(2780), + [sym_throw_statement] = STATE(2780), + [sym_autocmd_statement] = STATE(2780), + [sym_augroup_statement] = STATE(2780), + [sym_bang_filter_statement] = STATE(2780), + [sym_let_statement] = STATE(2780), + [sym_const_statement] = STATE(2780), + [sym_set_statement] = STATE(2780), + [sym_setlocal_statement] = STATE(2780), + [sym_unlet_statement] = STATE(2780), + [sym_call_statement] = STATE(2780), + [sym_echo_statement] = STATE(2780), + [sym_echon_statement] = STATE(2780), + [sym_echohl_statement] = STATE(2780), + [sym_echomsg_statement] = STATE(2780), + [sym_echoerr_statement] = STATE(2780), + [sym_execute_statement] = STATE(2780), + [sym_silent_statement] = STATE(2780), + [sym_user_command] = STATE(2780), + [sym_function_definition] = STATE(2780), + [sym_range_statement] = STATE(2780), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2780), + [sym_map_statement] = STATE(2780), + [sym_highlight_statement] = STATE(2780), + [sym_syntax_statement] = STATE(2780), + [sym_sign_statement] = STATE(2780), [aux_sym__statement_repeat1] = STATE(141), - [aux_sym_autocmd_statement_repeat1] = STATE(50), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(713), - [anon_sym_PLUS_PLUSnested] = ACTIONS(715), + [anon_sym_PLUS_PLUSnested] = ACTIONS(719), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -36392,959 +36678,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [67] = { - [sym__statement] = STATE(2591), - [sym_unknown_builtin_statement] = STATE(2591), - [sym_return_statement] = STATE(2591), - [sym_break_statement] = STATE(2591), - [sym_continue_statement] = STATE(2591), - [sym_normal_statement] = STATE(2591), - [sym_setfiletype_statement] = STATE(2591), - [sym_options_statement] = STATE(2591), - [sym_startinsert_statement] = STATE(2591), - [sym_stopinsert_statement] = STATE(2591), - [sym_scriptencoding_statement] = STATE(2591), - [sym_comclear_statement] = STATE(2591), - [sym_delcommand_statement] = STATE(2591), - [sym_runtime_statement] = STATE(2591), - [sym_wincmd_statement] = STATE(2591), - [sym_source_statement] = STATE(2591), - [sym_global_statement] = STATE(2591), - [sym_filetype_statement] = STATE(2591), - [sym_colorscheme_statement] = STATE(2591), - [sym_lua_statement] = STATE(2591), - [sym_ruby_statement] = STATE(2591), - [sym_python_statement] = STATE(2591), - [sym_perl_statement] = STATE(2591), - [sym_for_loop] = STATE(2591), - [sym_while_loop] = STATE(2591), - [sym_if_statement] = STATE(2591), - [sym_try_statement] = STATE(2591), - [sym_throw_statement] = STATE(2591), - [sym_autocmd_statement] = STATE(2591), - [sym_augroup_statement] = STATE(2591), - [sym_bang_filter_statement] = STATE(2591), - [sym_let_statement] = STATE(2591), - [sym_const_statement] = STATE(2591), - [sym_set_statement] = STATE(2591), - [sym_setlocal_statement] = STATE(2591), - [sym_unlet_statement] = STATE(2591), - [sym_call_statement] = STATE(2591), - [sym_echo_statement] = STATE(2591), - [sym_echon_statement] = STATE(2591), - [sym_echohl_statement] = STATE(2591), - [sym_echomsg_statement] = STATE(2591), - [sym_echoerr_statement] = STATE(2591), - [sym_execute_statement] = STATE(2591), - [sym_silent_statement] = STATE(2591), - [sym_user_command] = STATE(2591), - [sym_function_definition] = STATE(2591), - [sym_range_statement] = STATE(2591), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2591), - [sym_map_statement] = STATE(2591), - [sym_highlight_statement] = STATE(2591), - [sym_syntax_statement] = STATE(2591), - [sym_sign_statement] = STATE(2591), - [aux_sym__statement_repeat1] = STATE(142), - [aux_sym_autocmd_statement_repeat1] = STATE(249), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(709), - [anon_sym_PLUS_PLUSnested] = ACTIONS(711), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, - [68] = { - [sym__statement] = STATE(2597), - [sym_unknown_builtin_statement] = STATE(2597), - [sym_return_statement] = STATE(2597), - [sym_break_statement] = STATE(2597), - [sym_continue_statement] = STATE(2597), - [sym_normal_statement] = STATE(2597), - [sym_setfiletype_statement] = STATE(2597), - [sym_options_statement] = STATE(2597), - [sym_startinsert_statement] = STATE(2597), - [sym_stopinsert_statement] = STATE(2597), - [sym_scriptencoding_statement] = STATE(2597), - [sym_comclear_statement] = STATE(2597), - [sym_delcommand_statement] = STATE(2597), - [sym_runtime_statement] = STATE(2597), - [sym_wincmd_statement] = STATE(2597), - [sym_source_statement] = STATE(2597), - [sym_global_statement] = STATE(2597), - [sym_filetype_statement] = STATE(2597), - [sym_colorscheme_statement] = STATE(2597), - [sym_lua_statement] = STATE(2597), - [sym_ruby_statement] = STATE(2597), - [sym_python_statement] = STATE(2597), - [sym_perl_statement] = STATE(2597), - [sym_for_loop] = STATE(2597), - [sym_while_loop] = STATE(2597), - [sym_if_statement] = STATE(2597), - [sym_try_statement] = STATE(2597), - [sym_throw_statement] = STATE(2597), - [sym_autocmd_statement] = STATE(2597), - [sym_augroup_statement] = STATE(2597), - [sym_bang_filter_statement] = STATE(2597), - [sym_let_statement] = STATE(2597), - [sym_const_statement] = STATE(2597), - [sym_set_statement] = STATE(2597), - [sym_setlocal_statement] = STATE(2597), - [sym_unlet_statement] = STATE(2597), - [sym_call_statement] = STATE(2597), - [sym_echo_statement] = STATE(2597), - [sym_echon_statement] = STATE(2597), - [sym_echohl_statement] = STATE(2597), - [sym_echomsg_statement] = STATE(2597), - [sym_echoerr_statement] = STATE(2597), - [sym_execute_statement] = STATE(2597), - [sym_silent_statement] = STATE(2597), - [sym_user_command] = STATE(2597), - [sym_function_definition] = STATE(2597), - [sym_range_statement] = STATE(2597), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2597), - [sym_map_statement] = STATE(2597), - [sym_highlight_statement] = STATE(2597), - [sym_syntax_statement] = STATE(2597), - [sym_sign_statement] = STATE(2597), - [aux_sym__statement_repeat1] = STATE(142), - [aux_sym_autocmd_statement_repeat1] = STATE(53), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(725), - [anon_sym_PLUS_PLUSnested] = ACTIONS(727), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, - [69] = { - [sym__statement] = STATE(2664), - [sym_unknown_builtin_statement] = STATE(2664), - [sym_return_statement] = STATE(2664), - [sym_break_statement] = STATE(2664), - [sym_continue_statement] = STATE(2664), - [sym_normal_statement] = STATE(2664), - [sym_setfiletype_statement] = STATE(2664), - [sym_options_statement] = STATE(2664), - [sym_startinsert_statement] = STATE(2664), - [sym_stopinsert_statement] = STATE(2664), - [sym_scriptencoding_statement] = STATE(2664), - [sym_comclear_statement] = STATE(2664), - [sym_delcommand_statement] = STATE(2664), - [sym_runtime_statement] = STATE(2664), - [sym_wincmd_statement] = STATE(2664), - [sym_source_statement] = STATE(2664), - [sym_global_statement] = STATE(2664), - [sym_filetype_statement] = STATE(2664), - [sym_colorscheme_statement] = STATE(2664), - [sym_lua_statement] = STATE(2664), - [sym_ruby_statement] = STATE(2664), - [sym_python_statement] = STATE(2664), - [sym_perl_statement] = STATE(2664), - [sym_for_loop] = STATE(2664), - [sym_while_loop] = STATE(2664), - [sym_if_statement] = STATE(2664), - [sym_try_statement] = STATE(2664), - [sym_throw_statement] = STATE(2664), - [sym_autocmd_statement] = STATE(2664), - [sym_augroup_statement] = STATE(2664), - [sym_bang_filter_statement] = STATE(2664), - [sym_let_statement] = STATE(2664), - [sym_const_statement] = STATE(2664), - [sym_set_statement] = STATE(2664), - [sym_setlocal_statement] = STATE(2664), - [sym_unlet_statement] = STATE(2664), - [sym_call_statement] = STATE(2664), - [sym_echo_statement] = STATE(2664), - [sym_echon_statement] = STATE(2664), - [sym_echohl_statement] = STATE(2664), - [sym_echomsg_statement] = STATE(2664), - [sym_echoerr_statement] = STATE(2664), - [sym_execute_statement] = STATE(2664), - [sym_silent_statement] = STATE(2664), - [sym_user_command] = STATE(2664), - [sym_function_definition] = STATE(2664), - [sym_range_statement] = STATE(2664), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2664), - [sym_map_statement] = STATE(2664), - [sym_highlight_statement] = STATE(2664), - [sym_syntax_statement] = STATE(2664), - [sym_sign_statement] = STATE(2664), - [aux_sym__statement_repeat1] = STATE(142), - [aux_sym_autocmd_statement_repeat1] = STATE(249), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(729), - [anon_sym_PLUS_PLUSnested] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, - [70] = { - [sym__statement] = STATE(2646), - [sym_unknown_builtin_statement] = STATE(2646), - [sym_return_statement] = STATE(2646), - [sym_break_statement] = STATE(2646), - [sym_continue_statement] = STATE(2646), - [sym_normal_statement] = STATE(2646), - [sym_setfiletype_statement] = STATE(2646), - [sym_options_statement] = STATE(2646), - [sym_startinsert_statement] = STATE(2646), - [sym_stopinsert_statement] = STATE(2646), - [sym_scriptencoding_statement] = STATE(2646), - [sym_comclear_statement] = STATE(2646), - [sym_delcommand_statement] = STATE(2646), - [sym_runtime_statement] = STATE(2646), - [sym_wincmd_statement] = STATE(2646), - [sym_source_statement] = STATE(2646), - [sym_global_statement] = STATE(2646), - [sym_filetype_statement] = STATE(2646), - [sym_colorscheme_statement] = STATE(2646), - [sym_lua_statement] = STATE(2646), - [sym_ruby_statement] = STATE(2646), - [sym_python_statement] = STATE(2646), - [sym_perl_statement] = STATE(2646), - [sym_for_loop] = STATE(2646), - [sym_while_loop] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_try_statement] = STATE(2646), - [sym_throw_statement] = STATE(2646), - [sym_autocmd_statement] = STATE(2646), - [sym_augroup_statement] = STATE(2646), - [sym_bang_filter_statement] = STATE(2646), - [sym_let_statement] = STATE(2646), - [sym_const_statement] = STATE(2646), - [sym_set_statement] = STATE(2646), - [sym_setlocal_statement] = STATE(2646), - [sym_unlet_statement] = STATE(2646), - [sym_call_statement] = STATE(2646), - [sym_echo_statement] = STATE(2646), - [sym_echon_statement] = STATE(2646), - [sym_echohl_statement] = STATE(2646), - [sym_echomsg_statement] = STATE(2646), - [sym_echoerr_statement] = STATE(2646), - [sym_execute_statement] = STATE(2646), - [sym_silent_statement] = STATE(2646), - [sym_user_command] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_range_statement] = STATE(2646), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2646), - [sym_map_statement] = STATE(2646), - [sym_highlight_statement] = STATE(2646), - [sym_syntax_statement] = STATE(2646), - [sym_sign_statement] = STATE(2646), - [aux_sym__statement_repeat1] = STATE(140), - [aux_sym_autocmd_statement_repeat1] = STATE(249), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(733), - [anon_sym_PLUS_PLUSnested] = ACTIONS(735), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [71] = { - [sym__statement] = STATE(2664), - [sym_unknown_builtin_statement] = STATE(2664), - [sym_return_statement] = STATE(2664), - [sym_break_statement] = STATE(2664), - [sym_continue_statement] = STATE(2664), - [sym_normal_statement] = STATE(2664), - [sym_setfiletype_statement] = STATE(2664), - [sym_options_statement] = STATE(2664), - [sym_startinsert_statement] = STATE(2664), - [sym_stopinsert_statement] = STATE(2664), - [sym_scriptencoding_statement] = STATE(2664), - [sym_comclear_statement] = STATE(2664), - [sym_delcommand_statement] = STATE(2664), - [sym_runtime_statement] = STATE(2664), - [sym_wincmd_statement] = STATE(2664), - [sym_source_statement] = STATE(2664), - [sym_global_statement] = STATE(2664), - [sym_filetype_statement] = STATE(2664), - [sym_colorscheme_statement] = STATE(2664), - [sym_lua_statement] = STATE(2664), - [sym_ruby_statement] = STATE(2664), - [sym_python_statement] = STATE(2664), - [sym_perl_statement] = STATE(2664), - [sym_for_loop] = STATE(2664), - [sym_while_loop] = STATE(2664), - [sym_if_statement] = STATE(2664), - [sym_try_statement] = STATE(2664), - [sym_throw_statement] = STATE(2664), - [sym_autocmd_statement] = STATE(2664), - [sym_augroup_statement] = STATE(2664), - [sym_bang_filter_statement] = STATE(2664), - [sym_let_statement] = STATE(2664), - [sym_const_statement] = STATE(2664), - [sym_set_statement] = STATE(2664), - [sym_setlocal_statement] = STATE(2664), - [sym_unlet_statement] = STATE(2664), - [sym_call_statement] = STATE(2664), - [sym_echo_statement] = STATE(2664), - [sym_echon_statement] = STATE(2664), - [sym_echohl_statement] = STATE(2664), - [sym_echomsg_statement] = STATE(2664), - [sym_echoerr_statement] = STATE(2664), - [sym_execute_statement] = STATE(2664), - [sym_silent_statement] = STATE(2664), - [sym_user_command] = STATE(2664), - [sym_function_definition] = STATE(2664), - [sym_range_statement] = STATE(2664), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2664), - [sym_map_statement] = STATE(2664), - [sym_highlight_statement] = STATE(2664), - [sym_syntax_statement] = STATE(2664), - [sym_sign_statement] = STATE(2664), - [aux_sym__statement_repeat1] = STATE(140), - [aux_sym_autocmd_statement_repeat1] = STATE(249), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(737), - [anon_sym_PLUS_PLUSnested] = ACTIONS(739), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [72] = { - [sym__statement] = STATE(2644), - [sym_unknown_builtin_statement] = STATE(2644), - [sym_return_statement] = STATE(2644), - [sym_break_statement] = STATE(2644), - [sym_continue_statement] = STATE(2644), - [sym_normal_statement] = STATE(2644), - [sym_setfiletype_statement] = STATE(2644), - [sym_options_statement] = STATE(2644), - [sym_startinsert_statement] = STATE(2644), - [sym_stopinsert_statement] = STATE(2644), - [sym_scriptencoding_statement] = STATE(2644), - [sym_comclear_statement] = STATE(2644), - [sym_delcommand_statement] = STATE(2644), - [sym_runtime_statement] = STATE(2644), - [sym_wincmd_statement] = STATE(2644), - [sym_source_statement] = STATE(2644), - [sym_global_statement] = STATE(2644), - [sym_filetype_statement] = STATE(2644), - [sym_colorscheme_statement] = STATE(2644), - [sym_lua_statement] = STATE(2644), - [sym_ruby_statement] = STATE(2644), - [sym_python_statement] = STATE(2644), - [sym_perl_statement] = STATE(2644), - [sym_for_loop] = STATE(2644), - [sym_while_loop] = STATE(2644), - [sym_if_statement] = STATE(2644), - [sym_try_statement] = STATE(2644), - [sym_throw_statement] = STATE(2644), - [sym_autocmd_statement] = STATE(2644), - [sym_augroup_statement] = STATE(2644), - [sym_bang_filter_statement] = STATE(2644), - [sym_let_statement] = STATE(2644), - [sym_const_statement] = STATE(2644), - [sym_set_statement] = STATE(2644), - [sym_setlocal_statement] = STATE(2644), - [sym_unlet_statement] = STATE(2644), - [sym_call_statement] = STATE(2644), - [sym_echo_statement] = STATE(2644), - [sym_echon_statement] = STATE(2644), - [sym_echohl_statement] = STATE(2644), - [sym_echomsg_statement] = STATE(2644), - [sym_echoerr_statement] = STATE(2644), - [sym_execute_statement] = STATE(2644), - [sym_silent_statement] = STATE(2644), - [sym_user_command] = STATE(2644), - [sym_function_definition] = STATE(2644), - [sym_range_statement] = STATE(2644), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2644), - [sym_map_statement] = STATE(2644), - [sym_highlight_statement] = STATE(2644), - [sym_syntax_statement] = STATE(2644), - [sym_sign_statement] = STATE(2644), - [aux_sym__statement_repeat1] = STATE(140), - [aux_sym_autocmd_statement_repeat1] = STATE(249), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_PLUS_PLUSonce] = ACTIONS(741), - [anon_sym_PLUS_PLUSnested] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [73] = { - [sym__statement] = STATE(2851), - [sym_unknown_builtin_statement] = STATE(2851), - [sym_return_statement] = STATE(2851), - [sym_break_statement] = STATE(2851), - [sym_continue_statement] = STATE(2851), - [sym_normal_statement] = STATE(2851), - [sym_setfiletype_statement] = STATE(2851), - [sym_options_statement] = STATE(2851), - [sym_startinsert_statement] = STATE(2851), - [sym_stopinsert_statement] = STATE(2851), - [sym_scriptencoding_statement] = STATE(2851), - [sym_comclear_statement] = STATE(2851), - [sym_delcommand_statement] = STATE(2851), - [sym_runtime_statement] = STATE(2851), - [sym_wincmd_statement] = STATE(2851), - [sym_source_statement] = STATE(2851), - [sym_global_statement] = STATE(2851), - [sym_filetype_statement] = STATE(2851), - [sym_colorscheme_statement] = STATE(2851), - [sym_lua_statement] = STATE(2851), - [sym_ruby_statement] = STATE(2851), - [sym_python_statement] = STATE(2851), - [sym_perl_statement] = STATE(2851), - [sym_for_loop] = STATE(2851), - [sym_while_loop] = STATE(2851), - [sym_if_statement] = STATE(2851), - [sym_try_statement] = STATE(2851), - [sym_throw_statement] = STATE(2851), - [sym_autocmd_statement] = STATE(2851), - [sym_augroup_statement] = STATE(2851), - [sym_bang_filter_statement] = STATE(2851), - [sym_let_statement] = STATE(2851), - [sym_const_statement] = STATE(2851), - [sym_set_statement] = STATE(2851), - [sym_setlocal_statement] = STATE(2851), - [sym_unlet_statement] = STATE(2851), - [sym_call_statement] = STATE(2851), - [sym_echo_statement] = STATE(2851), - [sym_echon_statement] = STATE(2851), - [sym_echohl_statement] = STATE(2851), - [sym_echomsg_statement] = STATE(2851), - [sym_echoerr_statement] = STATE(2851), - [sym_execute_statement] = STATE(2851), - [sym_silent_statement] = STATE(2851), - [sym_user_command] = STATE(2851), - [sym_function_definition] = STATE(2851), - [sym_range_statement] = STATE(2851), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2851), - [sym_map_statement] = STATE(2851), - [sym_highlight_statement] = STATE(2851), - [sym_syntax_statement] = STATE(2851), - [sym_sign_statement] = STATE(2851), + [74] = { + [sym__statement] = STATE(2697), + [sym_unknown_builtin_statement] = STATE(2697), + [sym_return_statement] = STATE(2697), + [sym_break_statement] = STATE(2697), + [sym_continue_statement] = STATE(2697), + [sym_normal_statement] = STATE(2697), + [sym_setfiletype_statement] = STATE(2697), + [sym_options_statement] = STATE(2697), + [sym_startinsert_statement] = STATE(2697), + [sym_stopinsert_statement] = STATE(2697), + [sym_scriptencoding_statement] = STATE(2697), + [sym_comclear_statement] = STATE(2697), + [sym_delcommand_statement] = STATE(2697), + [sym_runtime_statement] = STATE(2697), + [sym_wincmd_statement] = STATE(2697), + [sym_source_statement] = STATE(2697), + [sym_global_statement] = STATE(2697), + [sym_filetype_statement] = STATE(2697), + [sym_colorscheme_statement] = STATE(2697), + [sym_lua_statement] = STATE(2697), + [sym_ruby_statement] = STATE(2697), + [sym_python_statement] = STATE(2697), + [sym_perl_statement] = STATE(2697), + [sym_for_loop] = STATE(2697), + [sym_while_loop] = STATE(2697), + [sym_if_statement] = STATE(2697), + [sym_try_statement] = STATE(2697), + [sym_throw_statement] = STATE(2697), + [sym_autocmd_statement] = STATE(2697), + [sym_augroup_statement] = STATE(2697), + [sym_bang_filter_statement] = STATE(2697), + [sym_let_statement] = STATE(2697), + [sym_const_statement] = STATE(2697), + [sym_set_statement] = STATE(2697), + [sym_setlocal_statement] = STATE(2697), + [sym_unlet_statement] = STATE(2697), + [sym_call_statement] = STATE(2697), + [sym_echo_statement] = STATE(2697), + [sym_echon_statement] = STATE(2697), + [sym_echohl_statement] = STATE(2697), + [sym_echomsg_statement] = STATE(2697), + [sym_echoerr_statement] = STATE(2697), + [sym_execute_statement] = STATE(2697), + [sym_silent_statement] = STATE(2697), + [sym_user_command] = STATE(2697), + [sym_function_definition] = STATE(2697), + [sym_range_statement] = STATE(2697), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2697), + [sym_map_statement] = STATE(2697), + [sym_highlight_statement] = STATE(2697), + [sym_syntax_statement] = STATE(2697), + [sym_sign_statement] = STATE(2697), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_PLUS_PLUSnested] = ACTIONS(745), [anon_sym_QMARK] = ACTIONS(11), + [sym_bang] = ACTIONS(745), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), [anon_sym_SLASH] = ACTIONS(17), @@ -37425,360 +36823,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [74] = { - [sym__statement] = STATE(2661), - [sym_unknown_builtin_statement] = STATE(2661), - [sym_return_statement] = STATE(2661), - [sym_break_statement] = STATE(2661), - [sym_continue_statement] = STATE(2661), - [sym_normal_statement] = STATE(2661), - [sym_setfiletype_statement] = STATE(2661), - [sym_options_statement] = STATE(2661), - [sym_startinsert_statement] = STATE(2661), - [sym_stopinsert_statement] = STATE(2661), - [sym_scriptencoding_statement] = STATE(2661), - [sym_comclear_statement] = STATE(2661), - [sym_delcommand_statement] = STATE(2661), - [sym_runtime_statement] = STATE(2661), - [sym_wincmd_statement] = STATE(2661), - [sym_source_statement] = STATE(2661), - [sym_global_statement] = STATE(2661), - [sym_filetype_statement] = STATE(2661), - [sym_colorscheme_statement] = STATE(2661), - [sym_lua_statement] = STATE(2661), - [sym_ruby_statement] = STATE(2661), - [sym_python_statement] = STATE(2661), - [sym_perl_statement] = STATE(2661), - [sym_for_loop] = STATE(2661), - [sym_while_loop] = STATE(2661), - [sym_if_statement] = STATE(2661), - [sym_try_statement] = STATE(2661), - [sym_throw_statement] = STATE(2661), - [sym_autocmd_statement] = STATE(2661), - [sym_augroup_statement] = STATE(2661), - [sym_bang_filter_statement] = STATE(2661), - [sym_let_statement] = STATE(2661), - [sym_const_statement] = STATE(2661), - [sym_set_statement] = STATE(2661), - [sym_setlocal_statement] = STATE(2661), - [sym_unlet_statement] = STATE(2661), - [sym_call_statement] = STATE(2661), - [sym_echo_statement] = STATE(2661), - [sym_echon_statement] = STATE(2661), - [sym_echohl_statement] = STATE(2661), - [sym_echomsg_statement] = STATE(2661), - [sym_echoerr_statement] = STATE(2661), - [sym_execute_statement] = STATE(2661), - [sym_silent_statement] = STATE(2661), - [sym_user_command] = STATE(2661), - [sym_function_definition] = STATE(2661), - [sym_range_statement] = STATE(2661), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2661), - [sym_map_statement] = STATE(2661), - [sym_highlight_statement] = STATE(2661), - [sym_syntax_statement] = STATE(2661), - [sym_sign_statement] = STATE(2661), + [75] = { + [sym__statement] = STATE(2869), + [sym_unknown_builtin_statement] = STATE(2869), + [sym_return_statement] = STATE(2869), + [sym_break_statement] = STATE(2869), + [sym_continue_statement] = STATE(2869), + [sym_normal_statement] = STATE(2869), + [sym_setfiletype_statement] = STATE(2869), + [sym_options_statement] = STATE(2869), + [sym_startinsert_statement] = STATE(2869), + [sym_stopinsert_statement] = STATE(2869), + [sym_scriptencoding_statement] = STATE(2869), + [sym_comclear_statement] = STATE(2869), + [sym_delcommand_statement] = STATE(2869), + [sym_runtime_statement] = STATE(2869), + [sym_wincmd_statement] = STATE(2869), + [sym_source_statement] = STATE(2869), + [sym_global_statement] = STATE(2869), + [sym_filetype_statement] = STATE(2869), + [sym_colorscheme_statement] = STATE(2869), + [sym_lua_statement] = STATE(2869), + [sym_ruby_statement] = STATE(2869), + [sym_python_statement] = STATE(2869), + [sym_perl_statement] = STATE(2869), + [sym_for_loop] = STATE(2869), + [sym_while_loop] = STATE(2869), + [sym_if_statement] = STATE(2869), + [sym_try_statement] = STATE(2869), + [sym_throw_statement] = STATE(2869), + [sym_autocmd_statement] = STATE(2869), + [sym_augroup_statement] = STATE(2869), + [sym_bang_filter_statement] = STATE(2869), + [sym_let_statement] = STATE(2869), + [sym_const_statement] = STATE(2869), + [sym_set_statement] = STATE(2869), + [sym_setlocal_statement] = STATE(2869), + [sym_unlet_statement] = STATE(2869), + [sym_call_statement] = STATE(2869), + [sym_echo_statement] = STATE(2869), + [sym_echon_statement] = STATE(2869), + [sym_echohl_statement] = STATE(2869), + [sym_echomsg_statement] = STATE(2869), + [sym_echoerr_statement] = STATE(2869), + [sym_execute_statement] = STATE(2869), + [sym_silent_statement] = STATE(2869), + [sym_user_command] = STATE(2869), + [sym_function_definition] = STATE(2869), + [sym_range_statement] = STATE(2869), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2869), + [sym_map_statement] = STATE(2869), + [sym_highlight_statement] = STATE(2869), + [sym_syntax_statement] = STATE(2869), + [sym_sign_statement] = STATE(2869), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), [anon_sym_PLUS_PLUSnested] = ACTIONS(747), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [75] = { - [sym__statement] = STATE(2644), - [sym_unknown_builtin_statement] = STATE(2644), - [sym_return_statement] = STATE(2644), - [sym_break_statement] = STATE(2644), - [sym_continue_statement] = STATE(2644), - [sym_normal_statement] = STATE(2644), - [sym_setfiletype_statement] = STATE(2644), - [sym_options_statement] = STATE(2644), - [sym_startinsert_statement] = STATE(2644), - [sym_stopinsert_statement] = STATE(2644), - [sym_scriptencoding_statement] = STATE(2644), - [sym_comclear_statement] = STATE(2644), - [sym_delcommand_statement] = STATE(2644), - [sym_runtime_statement] = STATE(2644), - [sym_wincmd_statement] = STATE(2644), - [sym_source_statement] = STATE(2644), - [sym_global_statement] = STATE(2644), - [sym_filetype_statement] = STATE(2644), - [sym_colorscheme_statement] = STATE(2644), - [sym_lua_statement] = STATE(2644), - [sym_ruby_statement] = STATE(2644), - [sym_python_statement] = STATE(2644), - [sym_perl_statement] = STATE(2644), - [sym_for_loop] = STATE(2644), - [sym_while_loop] = STATE(2644), - [sym_if_statement] = STATE(2644), - [sym_try_statement] = STATE(2644), - [sym_throw_statement] = STATE(2644), - [sym_autocmd_statement] = STATE(2644), - [sym_augroup_statement] = STATE(2644), - [sym_bang_filter_statement] = STATE(2644), - [sym_let_statement] = STATE(2644), - [sym_const_statement] = STATE(2644), - [sym_set_statement] = STATE(2644), - [sym_setlocal_statement] = STATE(2644), - [sym_unlet_statement] = STATE(2644), - [sym_call_statement] = STATE(2644), - [sym_echo_statement] = STATE(2644), - [sym_echon_statement] = STATE(2644), - [sym_echohl_statement] = STATE(2644), - [sym_echomsg_statement] = STATE(2644), - [sym_echoerr_statement] = STATE(2644), - [sym_execute_statement] = STATE(2644), - [sym_silent_statement] = STATE(2644), - [sym_user_command] = STATE(2644), - [sym_function_definition] = STATE(2644), - [sym_range_statement] = STATE(2644), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2644), - [sym_map_statement] = STATE(2644), - [sym_highlight_statement] = STATE(2644), - [sym_syntax_statement] = STATE(2644), - [sym_sign_statement] = STATE(2644), + [76] = { + [sym__statement] = STATE(2870), + [sym_unknown_builtin_statement] = STATE(2870), + [sym_return_statement] = STATE(2870), + [sym_break_statement] = STATE(2870), + [sym_continue_statement] = STATE(2870), + [sym_normal_statement] = STATE(2870), + [sym_setfiletype_statement] = STATE(2870), + [sym_options_statement] = STATE(2870), + [sym_startinsert_statement] = STATE(2870), + [sym_stopinsert_statement] = STATE(2870), + [sym_scriptencoding_statement] = STATE(2870), + [sym_comclear_statement] = STATE(2870), + [sym_delcommand_statement] = STATE(2870), + [sym_runtime_statement] = STATE(2870), + [sym_wincmd_statement] = STATE(2870), + [sym_source_statement] = STATE(2870), + [sym_global_statement] = STATE(2870), + [sym_filetype_statement] = STATE(2870), + [sym_colorscheme_statement] = STATE(2870), + [sym_lua_statement] = STATE(2870), + [sym_ruby_statement] = STATE(2870), + [sym_python_statement] = STATE(2870), + [sym_perl_statement] = STATE(2870), + [sym_for_loop] = STATE(2870), + [sym_while_loop] = STATE(2870), + [sym_if_statement] = STATE(2870), + [sym_try_statement] = STATE(2870), + [sym_throw_statement] = STATE(2870), + [sym_autocmd_statement] = STATE(2870), + [sym_augroup_statement] = STATE(2870), + [sym_bang_filter_statement] = STATE(2870), + [sym_let_statement] = STATE(2870), + [sym_const_statement] = STATE(2870), + [sym_set_statement] = STATE(2870), + [sym_setlocal_statement] = STATE(2870), + [sym_unlet_statement] = STATE(2870), + [sym_call_statement] = STATE(2870), + [sym_echo_statement] = STATE(2870), + [sym_echon_statement] = STATE(2870), + [sym_echohl_statement] = STATE(2870), + [sym_echomsg_statement] = STATE(2870), + [sym_echoerr_statement] = STATE(2870), + [sym_execute_statement] = STATE(2870), + [sym_silent_statement] = STATE(2870), + [sym_user_command] = STATE(2870), + [sym_function_definition] = STATE(2870), + [sym_range_statement] = STATE(2870), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2870), + [sym_map_statement] = STATE(2870), + [sym_highlight_statement] = STATE(2870), + [sym_syntax_statement] = STATE(2870), + [sym_sign_statement] = STATE(2870), [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_PLUS_PLUSnested] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_PLUS_PLUSnested] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [76] = { - [sym__statement] = STATE(2878), - [sym_unknown_builtin_statement] = STATE(2878), - [sym_return_statement] = STATE(2878), - [sym_break_statement] = STATE(2878), - [sym_continue_statement] = STATE(2878), - [sym_normal_statement] = STATE(2878), - [sym_setfiletype_statement] = STATE(2878), - [sym_options_statement] = STATE(2878), - [sym_startinsert_statement] = STATE(2878), - [sym_stopinsert_statement] = STATE(2878), - [sym_scriptencoding_statement] = STATE(2878), - [sym_comclear_statement] = STATE(2878), - [sym_delcommand_statement] = STATE(2878), - [sym_runtime_statement] = STATE(2878), - [sym_wincmd_statement] = STATE(2878), - [sym_source_statement] = STATE(2878), - [sym_global_statement] = STATE(2878), - [sym_filetype_statement] = STATE(2878), - [sym_colorscheme_statement] = STATE(2878), - [sym_lua_statement] = STATE(2878), - [sym_ruby_statement] = STATE(2878), - [sym_python_statement] = STATE(2878), - [sym_perl_statement] = STATE(2878), - [sym_for_loop] = STATE(2878), - [sym_while_loop] = STATE(2878), - [sym_if_statement] = STATE(2878), - [sym_try_statement] = STATE(2878), - [sym_throw_statement] = STATE(2878), - [sym_autocmd_statement] = STATE(2878), - [sym_augroup_statement] = STATE(2878), - [sym_bang_filter_statement] = STATE(2878), - [sym_let_statement] = STATE(2878), - [sym_const_statement] = STATE(2878), - [sym_set_statement] = STATE(2878), - [sym_setlocal_statement] = STATE(2878), - [sym_unlet_statement] = STATE(2878), - [sym_call_statement] = STATE(2878), - [sym_echo_statement] = STATE(2878), - [sym_echon_statement] = STATE(2878), - [sym_echohl_statement] = STATE(2878), - [sym_echomsg_statement] = STATE(2878), - [sym_echoerr_statement] = STATE(2878), - [sym_execute_statement] = STATE(2878), - [sym_silent_statement] = STATE(2878), - [sym_user_command] = STATE(2878), - [sym_function_definition] = STATE(2878), - [sym_range_statement] = STATE(2878), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2878), - [sym_map_statement] = STATE(2878), - [sym_highlight_statement] = STATE(2878), - [sym_syntax_statement] = STATE(2878), - [sym_sign_statement] = STATE(2878), + [77] = { + [sym__statement] = STATE(2793), + [sym_unknown_builtin_statement] = STATE(2793), + [sym_return_statement] = STATE(2793), + [sym_break_statement] = STATE(2793), + [sym_continue_statement] = STATE(2793), + [sym_normal_statement] = STATE(2793), + [sym_setfiletype_statement] = STATE(2793), + [sym_options_statement] = STATE(2793), + [sym_startinsert_statement] = STATE(2793), + [sym_stopinsert_statement] = STATE(2793), + [sym_scriptencoding_statement] = STATE(2793), + [sym_comclear_statement] = STATE(2793), + [sym_delcommand_statement] = STATE(2793), + [sym_runtime_statement] = STATE(2793), + [sym_wincmd_statement] = STATE(2793), + [sym_source_statement] = STATE(2793), + [sym_global_statement] = STATE(2793), + [sym_filetype_statement] = STATE(2793), + [sym_colorscheme_statement] = STATE(2793), + [sym_lua_statement] = STATE(2793), + [sym_ruby_statement] = STATE(2793), + [sym_python_statement] = STATE(2793), + [sym_perl_statement] = STATE(2793), + [sym_for_loop] = STATE(2793), + [sym_while_loop] = STATE(2793), + [sym_if_statement] = STATE(2793), + [sym_try_statement] = STATE(2793), + [sym_throw_statement] = STATE(2793), + [sym_autocmd_statement] = STATE(2793), + [sym_augroup_statement] = STATE(2793), + [sym_bang_filter_statement] = STATE(2793), + [sym_let_statement] = STATE(2793), + [sym_const_statement] = STATE(2793), + [sym_set_statement] = STATE(2793), + [sym_setlocal_statement] = STATE(2793), + [sym_unlet_statement] = STATE(2793), + [sym_call_statement] = STATE(2793), + [sym_echo_statement] = STATE(2793), + [sym_echon_statement] = STATE(2793), + [sym_echohl_statement] = STATE(2793), + [sym_echomsg_statement] = STATE(2793), + [sym_echoerr_statement] = STATE(2793), + [sym_execute_statement] = STATE(2793), + [sym_silent_statement] = STATE(2793), + [sym_user_command] = STATE(2793), + [sym_function_definition] = STATE(2793), + [sym_range_statement] = STATE(2793), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2793), + [sym_map_statement] = STATE(2793), + [sym_highlight_statement] = STATE(2793), + [sym_syntax_statement] = STATE(2793), + [sym_sign_statement] = STATE(2793), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_PLUS_PLUSnested] = ACTIONS(647), + [anon_sym_PLUS_PLUSnested] = ACTIONS(749), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -37860,70 +37258,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [77] = { - [sym__statement] = STATE(2886), - [sym_unknown_builtin_statement] = STATE(2886), - [sym_return_statement] = STATE(2886), - [sym_break_statement] = STATE(2886), - [sym_continue_statement] = STATE(2886), - [sym_normal_statement] = STATE(2886), - [sym_setfiletype_statement] = STATE(2886), - [sym_options_statement] = STATE(2886), - [sym_startinsert_statement] = STATE(2886), - [sym_stopinsert_statement] = STATE(2886), - [sym_scriptencoding_statement] = STATE(2886), - [sym_comclear_statement] = STATE(2886), - [sym_delcommand_statement] = STATE(2886), - [sym_runtime_statement] = STATE(2886), - [sym_wincmd_statement] = STATE(2886), - [sym_source_statement] = STATE(2886), - [sym_global_statement] = STATE(2886), - [sym_filetype_statement] = STATE(2886), - [sym_colorscheme_statement] = STATE(2886), - [sym_lua_statement] = STATE(2886), - [sym_ruby_statement] = STATE(2886), - [sym_python_statement] = STATE(2886), - [sym_perl_statement] = STATE(2886), - [sym_for_loop] = STATE(2886), - [sym_while_loop] = STATE(2886), - [sym_if_statement] = STATE(2886), - [sym_try_statement] = STATE(2886), - [sym_throw_statement] = STATE(2886), - [sym_autocmd_statement] = STATE(2886), - [sym_augroup_statement] = STATE(2886), - [sym_bang_filter_statement] = STATE(2886), - [sym_let_statement] = STATE(2886), - [sym_const_statement] = STATE(2886), - [sym_set_statement] = STATE(2886), - [sym_setlocal_statement] = STATE(2886), - [sym_unlet_statement] = STATE(2886), - [sym_call_statement] = STATE(2886), - [sym_echo_statement] = STATE(2886), - [sym_echon_statement] = STATE(2886), - [sym_echohl_statement] = STATE(2886), - [sym_echomsg_statement] = STATE(2886), - [sym_echoerr_statement] = STATE(2886), - [sym_execute_statement] = STATE(2886), - [sym_silent_statement] = STATE(2886), - [sym_user_command] = STATE(2886), - [sym_function_definition] = STATE(2886), - [sym_range_statement] = STATE(2886), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2886), - [sym_map_statement] = STATE(2886), - [sym_highlight_statement] = STATE(2886), - [sym_syntax_statement] = STATE(2886), - [sym_sign_statement] = STATE(2886), + [78] = { + [sym__statement] = STATE(2874), + [sym_unknown_builtin_statement] = STATE(2874), + [sym_return_statement] = STATE(2874), + [sym_break_statement] = STATE(2874), + [sym_continue_statement] = STATE(2874), + [sym_normal_statement] = STATE(2874), + [sym_setfiletype_statement] = STATE(2874), + [sym_options_statement] = STATE(2874), + [sym_startinsert_statement] = STATE(2874), + [sym_stopinsert_statement] = STATE(2874), + [sym_scriptencoding_statement] = STATE(2874), + [sym_comclear_statement] = STATE(2874), + [sym_delcommand_statement] = STATE(2874), + [sym_runtime_statement] = STATE(2874), + [sym_wincmd_statement] = STATE(2874), + [sym_source_statement] = STATE(2874), + [sym_global_statement] = STATE(2874), + [sym_filetype_statement] = STATE(2874), + [sym_colorscheme_statement] = STATE(2874), + [sym_lua_statement] = STATE(2874), + [sym_ruby_statement] = STATE(2874), + [sym_python_statement] = STATE(2874), + [sym_perl_statement] = STATE(2874), + [sym_for_loop] = STATE(2874), + [sym_while_loop] = STATE(2874), + [sym_if_statement] = STATE(2874), + [sym_try_statement] = STATE(2874), + [sym_throw_statement] = STATE(2874), + [sym_autocmd_statement] = STATE(2874), + [sym_augroup_statement] = STATE(2874), + [sym_bang_filter_statement] = STATE(2874), + [sym_let_statement] = STATE(2874), + [sym_const_statement] = STATE(2874), + [sym_set_statement] = STATE(2874), + [sym_setlocal_statement] = STATE(2874), + [sym_unlet_statement] = STATE(2874), + [sym_call_statement] = STATE(2874), + [sym_echo_statement] = STATE(2874), + [sym_echon_statement] = STATE(2874), + [sym_echohl_statement] = STATE(2874), + [sym_echomsg_statement] = STATE(2874), + [sym_echoerr_statement] = STATE(2874), + [sym_execute_statement] = STATE(2874), + [sym_silent_statement] = STATE(2874), + [sym_user_command] = STATE(2874), + [sym_function_definition] = STATE(2874), + [sym_range_statement] = STATE(2874), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2874), + [sym_map_statement] = STATE(2874), + [sym_highlight_statement] = STATE(2874), + [sym_syntax_statement] = STATE(2874), + [sym_sign_statement] = STATE(2874), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_PLUS_PLUSnested] = ACTIONS(751), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [79] = { + [sym__statement] = STATE(2849), + [sym_unknown_builtin_statement] = STATE(2849), + [sym_return_statement] = STATE(2849), + [sym_break_statement] = STATE(2849), + [sym_continue_statement] = STATE(2849), + [sym_normal_statement] = STATE(2849), + [sym_setfiletype_statement] = STATE(2849), + [sym_options_statement] = STATE(2849), + [sym_startinsert_statement] = STATE(2849), + [sym_stopinsert_statement] = STATE(2849), + [sym_scriptencoding_statement] = STATE(2849), + [sym_comclear_statement] = STATE(2849), + [sym_delcommand_statement] = STATE(2849), + [sym_runtime_statement] = STATE(2849), + [sym_wincmd_statement] = STATE(2849), + [sym_source_statement] = STATE(2849), + [sym_global_statement] = STATE(2849), + [sym_filetype_statement] = STATE(2849), + [sym_colorscheme_statement] = STATE(2849), + [sym_lua_statement] = STATE(2849), + [sym_ruby_statement] = STATE(2849), + [sym_python_statement] = STATE(2849), + [sym_perl_statement] = STATE(2849), + [sym_for_loop] = STATE(2849), + [sym_while_loop] = STATE(2849), + [sym_if_statement] = STATE(2849), + [sym_try_statement] = STATE(2849), + [sym_throw_statement] = STATE(2849), + [sym_autocmd_statement] = STATE(2849), + [sym_augroup_statement] = STATE(2849), + [sym_bang_filter_statement] = STATE(2849), + [sym_let_statement] = STATE(2849), + [sym_const_statement] = STATE(2849), + [sym_set_statement] = STATE(2849), + [sym_setlocal_statement] = STATE(2849), + [sym_unlet_statement] = STATE(2849), + [sym_call_statement] = STATE(2849), + [sym_echo_statement] = STATE(2849), + [sym_echon_statement] = STATE(2849), + [sym_echohl_statement] = STATE(2849), + [sym_echomsg_statement] = STATE(2849), + [sym_echoerr_statement] = STATE(2849), + [sym_execute_statement] = STATE(2849), + [sym_silent_statement] = STATE(2849), + [sym_user_command] = STATE(2849), + [sym_function_definition] = STATE(2849), + [sym_range_statement] = STATE(2849), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2849), + [sym_map_statement] = STATE(2849), + [sym_highlight_statement] = STATE(2849), + [sym_syntax_statement] = STATE(2849), + [sym_sign_statement] = STATE(2849), + [aux_sym__statement_repeat1] = STATE(142), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_PLUS_PLUSnested] = ACTIONS(711), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, + [80] = { + [sym__statement] = STATE(2608), + [sym_unknown_builtin_statement] = STATE(2608), + [sym_return_statement] = STATE(2608), + [sym_break_statement] = STATE(2608), + [sym_continue_statement] = STATE(2608), + [sym_normal_statement] = STATE(2608), + [sym_setfiletype_statement] = STATE(2608), + [sym_options_statement] = STATE(2608), + [sym_startinsert_statement] = STATE(2608), + [sym_stopinsert_statement] = STATE(2608), + [sym_scriptencoding_statement] = STATE(2608), + [sym_comclear_statement] = STATE(2608), + [sym_delcommand_statement] = STATE(2608), + [sym_runtime_statement] = STATE(2608), + [sym_wincmd_statement] = STATE(2608), + [sym_source_statement] = STATE(2608), + [sym_global_statement] = STATE(2608), + [sym_filetype_statement] = STATE(2608), + [sym_colorscheme_statement] = STATE(2608), + [sym_lua_statement] = STATE(2608), + [sym_ruby_statement] = STATE(2608), + [sym_python_statement] = STATE(2608), + [sym_perl_statement] = STATE(2608), + [sym_for_loop] = STATE(2608), + [sym_while_loop] = STATE(2608), + [sym_if_statement] = STATE(2608), + [sym_try_statement] = STATE(2608), + [sym_throw_statement] = STATE(2608), + [sym_autocmd_statement] = STATE(2608), + [sym_augroup_statement] = STATE(2608), + [sym_bang_filter_statement] = STATE(2608), + [sym_let_statement] = STATE(2608), + [sym_const_statement] = STATE(2608), + [sym_set_statement] = STATE(2608), + [sym_setlocal_statement] = STATE(2608), + [sym_unlet_statement] = STATE(2608), + [sym_call_statement] = STATE(2608), + [sym_echo_statement] = STATE(2608), + [sym_echon_statement] = STATE(2608), + [sym_echohl_statement] = STATE(2608), + [sym_echomsg_statement] = STATE(2608), + [sym_echoerr_statement] = STATE(2608), + [sym_execute_statement] = STATE(2608), + [sym_silent_statement] = STATE(2608), + [sym_user_command] = STATE(2608), + [sym_function_definition] = STATE(2608), + [sym_range_statement] = STATE(2608), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2608), + [sym_map_statement] = STATE(2608), + [sym_highlight_statement] = STATE(2608), + [sym_syntax_statement] = STATE(2608), + [sym_sign_statement] = STATE(2608), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_PLUS_PLUSnested] = ACTIONS(511), + [anon_sym_PLUS_PLUSnested] = ACTIONS(731), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -38005,360 +37693,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [78] = { - [sym__statement] = STATE(2646), - [sym_unknown_builtin_statement] = STATE(2646), - [sym_return_statement] = STATE(2646), - [sym_break_statement] = STATE(2646), - [sym_continue_statement] = STATE(2646), - [sym_normal_statement] = STATE(2646), - [sym_setfiletype_statement] = STATE(2646), - [sym_options_statement] = STATE(2646), - [sym_startinsert_statement] = STATE(2646), - [sym_stopinsert_statement] = STATE(2646), - [sym_scriptencoding_statement] = STATE(2646), - [sym_comclear_statement] = STATE(2646), - [sym_delcommand_statement] = STATE(2646), - [sym_runtime_statement] = STATE(2646), - [sym_wincmd_statement] = STATE(2646), - [sym_source_statement] = STATE(2646), - [sym_global_statement] = STATE(2646), - [sym_filetype_statement] = STATE(2646), - [sym_colorscheme_statement] = STATE(2646), - [sym_lua_statement] = STATE(2646), - [sym_ruby_statement] = STATE(2646), - [sym_python_statement] = STATE(2646), - [sym_perl_statement] = STATE(2646), - [sym_for_loop] = STATE(2646), - [sym_while_loop] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_try_statement] = STATE(2646), - [sym_throw_statement] = STATE(2646), - [sym_autocmd_statement] = STATE(2646), - [sym_augroup_statement] = STATE(2646), - [sym_bang_filter_statement] = STATE(2646), - [sym_let_statement] = STATE(2646), - [sym_const_statement] = STATE(2646), - [sym_set_statement] = STATE(2646), - [sym_setlocal_statement] = STATE(2646), - [sym_unlet_statement] = STATE(2646), - [sym_call_statement] = STATE(2646), - [sym_echo_statement] = STATE(2646), - [sym_echon_statement] = STATE(2646), - [sym_echohl_statement] = STATE(2646), - [sym_echomsg_statement] = STATE(2646), - [sym_echoerr_statement] = STATE(2646), - [sym_execute_statement] = STATE(2646), - [sym_silent_statement] = STATE(2646), - [sym_user_command] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_range_statement] = STATE(2646), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2646), - [sym_map_statement] = STATE(2646), - [sym_highlight_statement] = STATE(2646), - [sym_syntax_statement] = STATE(2646), - [sym_sign_statement] = STATE(2646), + [81] = { + [sym__statement] = STATE(2889), + [sym_unknown_builtin_statement] = STATE(2889), + [sym_return_statement] = STATE(2889), + [sym_break_statement] = STATE(2889), + [sym_continue_statement] = STATE(2889), + [sym_normal_statement] = STATE(2889), + [sym_setfiletype_statement] = STATE(2889), + [sym_options_statement] = STATE(2889), + [sym_startinsert_statement] = STATE(2889), + [sym_stopinsert_statement] = STATE(2889), + [sym_scriptencoding_statement] = STATE(2889), + [sym_comclear_statement] = STATE(2889), + [sym_delcommand_statement] = STATE(2889), + [sym_runtime_statement] = STATE(2889), + [sym_wincmd_statement] = STATE(2889), + [sym_source_statement] = STATE(2889), + [sym_global_statement] = STATE(2889), + [sym_filetype_statement] = STATE(2889), + [sym_colorscheme_statement] = STATE(2889), + [sym_lua_statement] = STATE(2889), + [sym_ruby_statement] = STATE(2889), + [sym_python_statement] = STATE(2889), + [sym_perl_statement] = STATE(2889), + [sym_for_loop] = STATE(2889), + [sym_while_loop] = STATE(2889), + [sym_if_statement] = STATE(2889), + [sym_try_statement] = STATE(2889), + [sym_throw_statement] = STATE(2889), + [sym_autocmd_statement] = STATE(2889), + [sym_augroup_statement] = STATE(2889), + [sym_bang_filter_statement] = STATE(2889), + [sym_let_statement] = STATE(2889), + [sym_const_statement] = STATE(2889), + [sym_set_statement] = STATE(2889), + [sym_setlocal_statement] = STATE(2889), + [sym_unlet_statement] = STATE(2889), + [sym_call_statement] = STATE(2889), + [sym_echo_statement] = STATE(2889), + [sym_echon_statement] = STATE(2889), + [sym_echohl_statement] = STATE(2889), + [sym_echomsg_statement] = STATE(2889), + [sym_echoerr_statement] = STATE(2889), + [sym_execute_statement] = STATE(2889), + [sym_silent_statement] = STATE(2889), + [sym_user_command] = STATE(2889), + [sym_function_definition] = STATE(2889), + [sym_range_statement] = STATE(2889), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2889), + [sym_map_statement] = STATE(2889), + [sym_highlight_statement] = STATE(2889), + [sym_syntax_statement] = STATE(2889), + [sym_sign_statement] = STATE(2889), [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_PLUS_PLUSnested] = ACTIONS(735), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_PLUS_PLUSnested] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [79] = { - [sym__statement] = STATE(2684), - [sym_unknown_builtin_statement] = STATE(2684), - [sym_return_statement] = STATE(2684), - [sym_break_statement] = STATE(2684), - [sym_continue_statement] = STATE(2684), - [sym_normal_statement] = STATE(2684), - [sym_setfiletype_statement] = STATE(2684), - [sym_options_statement] = STATE(2684), - [sym_startinsert_statement] = STATE(2684), - [sym_stopinsert_statement] = STATE(2684), - [sym_scriptencoding_statement] = STATE(2684), - [sym_comclear_statement] = STATE(2684), - [sym_delcommand_statement] = STATE(2684), - [sym_runtime_statement] = STATE(2684), - [sym_wincmd_statement] = STATE(2684), - [sym_source_statement] = STATE(2684), - [sym_global_statement] = STATE(2684), - [sym_filetype_statement] = STATE(2684), - [sym_colorscheme_statement] = STATE(2684), - [sym_lua_statement] = STATE(2684), - [sym_ruby_statement] = STATE(2684), - [sym_python_statement] = STATE(2684), - [sym_perl_statement] = STATE(2684), - [sym_for_loop] = STATE(2684), - [sym_while_loop] = STATE(2684), - [sym_if_statement] = STATE(2684), - [sym_try_statement] = STATE(2684), - [sym_throw_statement] = STATE(2684), - [sym_autocmd_statement] = STATE(2684), - [sym_augroup_statement] = STATE(2684), - [sym_bang_filter_statement] = STATE(2684), - [sym_let_statement] = STATE(2684), - [sym_const_statement] = STATE(2684), - [sym_set_statement] = STATE(2684), - [sym_setlocal_statement] = STATE(2684), - [sym_unlet_statement] = STATE(2684), - [sym_call_statement] = STATE(2684), - [sym_echo_statement] = STATE(2684), - [sym_echon_statement] = STATE(2684), - [sym_echohl_statement] = STATE(2684), - [sym_echomsg_statement] = STATE(2684), - [sym_echoerr_statement] = STATE(2684), - [sym_execute_statement] = STATE(2684), - [sym_silent_statement] = STATE(2684), - [sym_user_command] = STATE(2684), - [sym_function_definition] = STATE(2684), - [sym_range_statement] = STATE(2684), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2684), - [sym_map_statement] = STATE(2684), - [sym_highlight_statement] = STATE(2684), - [sym_syntax_statement] = STATE(2684), - [sym_sign_statement] = STATE(2684), + [82] = { + [sym__statement] = STATE(2874), + [sym_unknown_builtin_statement] = STATE(2874), + [sym_return_statement] = STATE(2874), + [sym_break_statement] = STATE(2874), + [sym_continue_statement] = STATE(2874), + [sym_normal_statement] = STATE(2874), + [sym_setfiletype_statement] = STATE(2874), + [sym_options_statement] = STATE(2874), + [sym_startinsert_statement] = STATE(2874), + [sym_stopinsert_statement] = STATE(2874), + [sym_scriptencoding_statement] = STATE(2874), + [sym_comclear_statement] = STATE(2874), + [sym_delcommand_statement] = STATE(2874), + [sym_runtime_statement] = STATE(2874), + [sym_wincmd_statement] = STATE(2874), + [sym_source_statement] = STATE(2874), + [sym_global_statement] = STATE(2874), + [sym_filetype_statement] = STATE(2874), + [sym_colorscheme_statement] = STATE(2874), + [sym_lua_statement] = STATE(2874), + [sym_ruby_statement] = STATE(2874), + [sym_python_statement] = STATE(2874), + [sym_perl_statement] = STATE(2874), + [sym_for_loop] = STATE(2874), + [sym_while_loop] = STATE(2874), + [sym_if_statement] = STATE(2874), + [sym_try_statement] = STATE(2874), + [sym_throw_statement] = STATE(2874), + [sym_autocmd_statement] = STATE(2874), + [sym_augroup_statement] = STATE(2874), + [sym_bang_filter_statement] = STATE(2874), + [sym_let_statement] = STATE(2874), + [sym_const_statement] = STATE(2874), + [sym_set_statement] = STATE(2874), + [sym_setlocal_statement] = STATE(2874), + [sym_unlet_statement] = STATE(2874), + [sym_call_statement] = STATE(2874), + [sym_echo_statement] = STATE(2874), + [sym_echon_statement] = STATE(2874), + [sym_echohl_statement] = STATE(2874), + [sym_echomsg_statement] = STATE(2874), + [sym_echoerr_statement] = STATE(2874), + [sym_execute_statement] = STATE(2874), + [sym_silent_statement] = STATE(2874), + [sym_user_command] = STATE(2874), + [sym_function_definition] = STATE(2874), + [sym_range_statement] = STATE(2874), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2874), + [sym_map_statement] = STATE(2874), + [sym_highlight_statement] = STATE(2874), + [sym_syntax_statement] = STATE(2874), + [sym_sign_statement] = STATE(2874), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_PLUS_PLUSnested] = ACTIONS(749), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_PLUS_PLUSnested] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [80] = { - [sym__statement] = STATE(2829), - [sym_unknown_builtin_statement] = STATE(2829), - [sym_return_statement] = STATE(2829), - [sym_break_statement] = STATE(2829), - [sym_continue_statement] = STATE(2829), - [sym_normal_statement] = STATE(2829), - [sym_setfiletype_statement] = STATE(2829), - [sym_options_statement] = STATE(2829), - [sym_startinsert_statement] = STATE(2829), - [sym_stopinsert_statement] = STATE(2829), - [sym_scriptencoding_statement] = STATE(2829), - [sym_comclear_statement] = STATE(2829), - [sym_delcommand_statement] = STATE(2829), - [sym_runtime_statement] = STATE(2829), - [sym_wincmd_statement] = STATE(2829), - [sym_source_statement] = STATE(2829), - [sym_global_statement] = STATE(2829), - [sym_filetype_statement] = STATE(2829), - [sym_colorscheme_statement] = STATE(2829), - [sym_lua_statement] = STATE(2829), - [sym_ruby_statement] = STATE(2829), - [sym_python_statement] = STATE(2829), - [sym_perl_statement] = STATE(2829), - [sym_for_loop] = STATE(2829), - [sym_while_loop] = STATE(2829), - [sym_if_statement] = STATE(2829), - [sym_try_statement] = STATE(2829), - [sym_throw_statement] = STATE(2829), - [sym_autocmd_statement] = STATE(2829), - [sym_augroup_statement] = STATE(2829), - [sym_bang_filter_statement] = STATE(2829), - [sym_let_statement] = STATE(2829), - [sym_const_statement] = STATE(2829), - [sym_set_statement] = STATE(2829), - [sym_setlocal_statement] = STATE(2829), - [sym_unlet_statement] = STATE(2829), - [sym_call_statement] = STATE(2829), - [sym_echo_statement] = STATE(2829), - [sym_echon_statement] = STATE(2829), - [sym_echohl_statement] = STATE(2829), - [sym_echomsg_statement] = STATE(2829), - [sym_echoerr_statement] = STATE(2829), - [sym_execute_statement] = STATE(2829), - [sym_silent_statement] = STATE(2829), - [sym_user_command] = STATE(2829), - [sym_function_definition] = STATE(2829), - [sym_range_statement] = STATE(2829), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2829), - [sym_map_statement] = STATE(2829), - [sym_highlight_statement] = STATE(2829), - [sym_syntax_statement] = STATE(2829), - [sym_sign_statement] = STATE(2829), + [83] = { + [sym__statement] = STATE(2853), + [sym_unknown_builtin_statement] = STATE(2853), + [sym_return_statement] = STATE(2853), + [sym_break_statement] = STATE(2853), + [sym_continue_statement] = STATE(2853), + [sym_normal_statement] = STATE(2853), + [sym_setfiletype_statement] = STATE(2853), + [sym_options_statement] = STATE(2853), + [sym_startinsert_statement] = STATE(2853), + [sym_stopinsert_statement] = STATE(2853), + [sym_scriptencoding_statement] = STATE(2853), + [sym_comclear_statement] = STATE(2853), + [sym_delcommand_statement] = STATE(2853), + [sym_runtime_statement] = STATE(2853), + [sym_wincmd_statement] = STATE(2853), + [sym_source_statement] = STATE(2853), + [sym_global_statement] = STATE(2853), + [sym_filetype_statement] = STATE(2853), + [sym_colorscheme_statement] = STATE(2853), + [sym_lua_statement] = STATE(2853), + [sym_ruby_statement] = STATE(2853), + [sym_python_statement] = STATE(2853), + [sym_perl_statement] = STATE(2853), + [sym_for_loop] = STATE(2853), + [sym_while_loop] = STATE(2853), + [sym_if_statement] = STATE(2853), + [sym_try_statement] = STATE(2853), + [sym_throw_statement] = STATE(2853), + [sym_autocmd_statement] = STATE(2853), + [sym_augroup_statement] = STATE(2853), + [sym_bang_filter_statement] = STATE(2853), + [sym_let_statement] = STATE(2853), + [sym_const_statement] = STATE(2853), + [sym_set_statement] = STATE(2853), + [sym_setlocal_statement] = STATE(2853), + [sym_unlet_statement] = STATE(2853), + [sym_call_statement] = STATE(2853), + [sym_echo_statement] = STATE(2853), + [sym_echon_statement] = STATE(2853), + [sym_echohl_statement] = STATE(2853), + [sym_echomsg_statement] = STATE(2853), + [sym_echoerr_statement] = STATE(2853), + [sym_execute_statement] = STATE(2853), + [sym_silent_statement] = STATE(2853), + [sym_user_command] = STATE(2853), + [sym_function_definition] = STATE(2853), + [sym_range_statement] = STATE(2853), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2853), + [sym_map_statement] = STATE(2853), + [sym_highlight_statement] = STATE(2853), + [sym_syntax_statement] = STATE(2853), + [sym_sign_statement] = STATE(2853), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_PLUS_PLUSnested] = ACTIONS(751), + [anon_sym_PLUS_PLUSnested] = ACTIONS(757), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -38440,215 +38128,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [81] = { - [sym__statement] = STATE(2591), - [sym_unknown_builtin_statement] = STATE(2591), - [sym_return_statement] = STATE(2591), - [sym_break_statement] = STATE(2591), - [sym_continue_statement] = STATE(2591), - [sym_normal_statement] = STATE(2591), - [sym_setfiletype_statement] = STATE(2591), - [sym_options_statement] = STATE(2591), - [sym_startinsert_statement] = STATE(2591), - [sym_stopinsert_statement] = STATE(2591), - [sym_scriptencoding_statement] = STATE(2591), - [sym_comclear_statement] = STATE(2591), - [sym_delcommand_statement] = STATE(2591), - [sym_runtime_statement] = STATE(2591), - [sym_wincmd_statement] = STATE(2591), - [sym_source_statement] = STATE(2591), - [sym_global_statement] = STATE(2591), - [sym_filetype_statement] = STATE(2591), - [sym_colorscheme_statement] = STATE(2591), - [sym_lua_statement] = STATE(2591), - [sym_ruby_statement] = STATE(2591), - [sym_python_statement] = STATE(2591), - [sym_perl_statement] = STATE(2591), - [sym_for_loop] = STATE(2591), - [sym_while_loop] = STATE(2591), - [sym_if_statement] = STATE(2591), - [sym_try_statement] = STATE(2591), - [sym_throw_statement] = STATE(2591), - [sym_autocmd_statement] = STATE(2591), - [sym_augroup_statement] = STATE(2591), - [sym_bang_filter_statement] = STATE(2591), - [sym_let_statement] = STATE(2591), - [sym_const_statement] = STATE(2591), - [sym_set_statement] = STATE(2591), - [sym_setlocal_statement] = STATE(2591), - [sym_unlet_statement] = STATE(2591), - [sym_call_statement] = STATE(2591), - [sym_echo_statement] = STATE(2591), - [sym_echon_statement] = STATE(2591), - [sym_echohl_statement] = STATE(2591), - [sym_echomsg_statement] = STATE(2591), - [sym_echoerr_statement] = STATE(2591), - [sym_execute_statement] = STATE(2591), - [sym_silent_statement] = STATE(2591), - [sym_user_command] = STATE(2591), - [sym_function_definition] = STATE(2591), - [sym_range_statement] = STATE(2591), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2591), - [sym_map_statement] = STATE(2591), - [sym_highlight_statement] = STATE(2591), - [sym_syntax_statement] = STATE(2591), - [sym_sign_statement] = STATE(2591), + [84] = { + [sym__statement] = STATE(2870), + [sym_unknown_builtin_statement] = STATE(2870), + [sym_return_statement] = STATE(2870), + [sym_break_statement] = STATE(2870), + [sym_continue_statement] = STATE(2870), + [sym_normal_statement] = STATE(2870), + [sym_setfiletype_statement] = STATE(2870), + [sym_options_statement] = STATE(2870), + [sym_startinsert_statement] = STATE(2870), + [sym_stopinsert_statement] = STATE(2870), + [sym_scriptencoding_statement] = STATE(2870), + [sym_comclear_statement] = STATE(2870), + [sym_delcommand_statement] = STATE(2870), + [sym_runtime_statement] = STATE(2870), + [sym_wincmd_statement] = STATE(2870), + [sym_source_statement] = STATE(2870), + [sym_global_statement] = STATE(2870), + [sym_filetype_statement] = STATE(2870), + [sym_colorscheme_statement] = STATE(2870), + [sym_lua_statement] = STATE(2870), + [sym_ruby_statement] = STATE(2870), + [sym_python_statement] = STATE(2870), + [sym_perl_statement] = STATE(2870), + [sym_for_loop] = STATE(2870), + [sym_while_loop] = STATE(2870), + [sym_if_statement] = STATE(2870), + [sym_try_statement] = STATE(2870), + [sym_throw_statement] = STATE(2870), + [sym_autocmd_statement] = STATE(2870), + [sym_augroup_statement] = STATE(2870), + [sym_bang_filter_statement] = STATE(2870), + [sym_let_statement] = STATE(2870), + [sym_const_statement] = STATE(2870), + [sym_set_statement] = STATE(2870), + [sym_setlocal_statement] = STATE(2870), + [sym_unlet_statement] = STATE(2870), + [sym_call_statement] = STATE(2870), + [sym_echo_statement] = STATE(2870), + [sym_echon_statement] = STATE(2870), + [sym_echohl_statement] = STATE(2870), + [sym_echomsg_statement] = STATE(2870), + [sym_echoerr_statement] = STATE(2870), + [sym_execute_statement] = STATE(2870), + [sym_silent_statement] = STATE(2870), + [sym_user_command] = STATE(2870), + [sym_function_definition] = STATE(2870), + [sym_range_statement] = STATE(2870), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2870), + [sym_map_statement] = STATE(2870), + [sym_highlight_statement] = STATE(2870), + [sym_syntax_statement] = STATE(2870), + [sym_sign_statement] = STATE(2870), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_PLUS_PLUSnested] = ACTIONS(711), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_PLUS_PLUSnested] = ACTIONS(715), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [82] = { - [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_comclear_statement] = STATE(2833), - [sym_delcommand_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_autocmd_statement] = STATE(2833), - [sym_augroup_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_user_command] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_range_statement] = STATE(2833), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2833), - [sym_map_statement] = STATE(2833), - [sym_highlight_statement] = STATE(2833), - [sym_syntax_statement] = STATE(2833), - [sym_sign_statement] = STATE(2833), + [85] = { + [sym__statement] = STATE(2869), + [sym_unknown_builtin_statement] = STATE(2869), + [sym_return_statement] = STATE(2869), + [sym_break_statement] = STATE(2869), + [sym_continue_statement] = STATE(2869), + [sym_normal_statement] = STATE(2869), + [sym_setfiletype_statement] = STATE(2869), + [sym_options_statement] = STATE(2869), + [sym_startinsert_statement] = STATE(2869), + [sym_stopinsert_statement] = STATE(2869), + [sym_scriptencoding_statement] = STATE(2869), + [sym_comclear_statement] = STATE(2869), + [sym_delcommand_statement] = STATE(2869), + [sym_runtime_statement] = STATE(2869), + [sym_wincmd_statement] = STATE(2869), + [sym_source_statement] = STATE(2869), + [sym_global_statement] = STATE(2869), + [sym_filetype_statement] = STATE(2869), + [sym_colorscheme_statement] = STATE(2869), + [sym_lua_statement] = STATE(2869), + [sym_ruby_statement] = STATE(2869), + [sym_python_statement] = STATE(2869), + [sym_perl_statement] = STATE(2869), + [sym_for_loop] = STATE(2869), + [sym_while_loop] = STATE(2869), + [sym_if_statement] = STATE(2869), + [sym_try_statement] = STATE(2869), + [sym_throw_statement] = STATE(2869), + [sym_autocmd_statement] = STATE(2869), + [sym_augroup_statement] = STATE(2869), + [sym_bang_filter_statement] = STATE(2869), + [sym_let_statement] = STATE(2869), + [sym_const_statement] = STATE(2869), + [sym_set_statement] = STATE(2869), + [sym_setlocal_statement] = STATE(2869), + [sym_unlet_statement] = STATE(2869), + [sym_call_statement] = STATE(2869), + [sym_echo_statement] = STATE(2869), + [sym_echon_statement] = STATE(2869), + [sym_echohl_statement] = STATE(2869), + [sym_echomsg_statement] = STATE(2869), + [sym_echoerr_statement] = STATE(2869), + [sym_execute_statement] = STATE(2869), + [sym_silent_statement] = STATE(2869), + [sym_user_command] = STATE(2869), + [sym_function_definition] = STATE(2869), + [sym_range_statement] = STATE(2869), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2869), + [sym_map_statement] = STATE(2869), + [sym_highlight_statement] = STATE(2869), + [sym_syntax_statement] = STATE(2869), + [sym_sign_statement] = STATE(2869), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_PLUS_PLUSnested] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [86] = { + [sym__statement] = STATE(2772), + [sym_unknown_builtin_statement] = STATE(2772), + [sym_return_statement] = STATE(2772), + [sym_break_statement] = STATE(2772), + [sym_continue_statement] = STATE(2772), + [sym_normal_statement] = STATE(2772), + [sym_setfiletype_statement] = STATE(2772), + [sym_options_statement] = STATE(2772), + [sym_startinsert_statement] = STATE(2772), + [sym_stopinsert_statement] = STATE(2772), + [sym_scriptencoding_statement] = STATE(2772), + [sym_comclear_statement] = STATE(2772), + [sym_delcommand_statement] = STATE(2772), + [sym_runtime_statement] = STATE(2772), + [sym_wincmd_statement] = STATE(2772), + [sym_source_statement] = STATE(2772), + [sym_global_statement] = STATE(2772), + [sym_filetype_statement] = STATE(2772), + [sym_colorscheme_statement] = STATE(2772), + [sym_lua_statement] = STATE(2772), + [sym_ruby_statement] = STATE(2772), + [sym_python_statement] = STATE(2772), + [sym_perl_statement] = STATE(2772), + [sym_for_loop] = STATE(2772), + [sym_while_loop] = STATE(2772), + [sym_if_statement] = STATE(2772), + [sym_try_statement] = STATE(2772), + [sym_throw_statement] = STATE(2772), + [sym_autocmd_statement] = STATE(2772), + [sym_augroup_statement] = STATE(2772), + [sym_bang_filter_statement] = STATE(2772), + [sym_let_statement] = STATE(2772), + [sym_const_statement] = STATE(2772), + [sym_set_statement] = STATE(2772), + [sym_setlocal_statement] = STATE(2772), + [sym_unlet_statement] = STATE(2772), + [sym_call_statement] = STATE(2772), + [sym_echo_statement] = STATE(2772), + [sym_echon_statement] = STATE(2772), + [sym_echohl_statement] = STATE(2772), + [sym_echomsg_statement] = STATE(2772), + [sym_echoerr_statement] = STATE(2772), + [sym_execute_statement] = STATE(2772), + [sym_silent_statement] = STATE(2772), + [sym_user_command] = STATE(2772), + [sym_function_definition] = STATE(2772), + [sym_range_statement] = STATE(2772), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2772), + [sym_map_statement] = STATE(2772), + [sym_highlight_statement] = STATE(2772), + [sym_syntax_statement] = STATE(2772), + [sym_sign_statement] = STATE(2772), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_PLUS_PLUSnested] = ACTIONS(715), + [anon_sym_PLUS_PLUSnested] = ACTIONS(761), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -38730,651 +38563,1231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [83] = { - [sym__statement] = STATE(2644), - [sym_unknown_builtin_statement] = STATE(2644), - [sym_return_statement] = STATE(2644), - [sym_break_statement] = STATE(2644), - [sym_continue_statement] = STATE(2644), - [sym_normal_statement] = STATE(2644), - [sym_setfiletype_statement] = STATE(2644), - [sym_options_statement] = STATE(2644), - [sym_startinsert_statement] = STATE(2644), - [sym_stopinsert_statement] = STATE(2644), - [sym_scriptencoding_statement] = STATE(2644), - [sym_comclear_statement] = STATE(2644), - [sym_delcommand_statement] = STATE(2644), - [sym_runtime_statement] = STATE(2644), - [sym_wincmd_statement] = STATE(2644), - [sym_source_statement] = STATE(2644), - [sym_global_statement] = STATE(2644), - [sym_filetype_statement] = STATE(2644), - [sym_colorscheme_statement] = STATE(2644), - [sym_lua_statement] = STATE(2644), - [sym_ruby_statement] = STATE(2644), - [sym_python_statement] = STATE(2644), - [sym_perl_statement] = STATE(2644), - [sym_for_loop] = STATE(2644), - [sym_while_loop] = STATE(2644), - [sym_if_statement] = STATE(2644), - [sym_try_statement] = STATE(2644), - [sym_throw_statement] = STATE(2644), - [sym_autocmd_statement] = STATE(2644), - [sym_augroup_statement] = STATE(2644), - [sym_bang_filter_statement] = STATE(2644), - [sym_let_statement] = STATE(2644), - [sym_const_statement] = STATE(2644), - [sym_set_statement] = STATE(2644), - [sym_setlocal_statement] = STATE(2644), - [sym_unlet_statement] = STATE(2644), - [sym_call_statement] = STATE(2644), - [sym_echo_statement] = STATE(2644), - [sym_echon_statement] = STATE(2644), - [sym_echohl_statement] = STATE(2644), - [sym_echomsg_statement] = STATE(2644), - [sym_echoerr_statement] = STATE(2644), - [sym_execute_statement] = STATE(2644), - [sym_silent_statement] = STATE(2644), - [sym_user_command] = STATE(2644), - [sym_function_definition] = STATE(2644), - [sym_range_statement] = STATE(2644), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2644), - [sym_map_statement] = STATE(2644), - [sym_highlight_statement] = STATE(2644), - [sym_syntax_statement] = STATE(2644), - [sym_sign_statement] = STATE(2644), + [87] = { + [sym__statement] = STATE(2923), + [sym_unknown_builtin_statement] = STATE(2923), + [sym_return_statement] = STATE(2923), + [sym_break_statement] = STATE(2923), + [sym_continue_statement] = STATE(2923), + [sym_normal_statement] = STATE(2923), + [sym_setfiletype_statement] = STATE(2923), + [sym_options_statement] = STATE(2923), + [sym_startinsert_statement] = STATE(2923), + [sym_stopinsert_statement] = STATE(2923), + [sym_scriptencoding_statement] = STATE(2923), + [sym_comclear_statement] = STATE(2923), + [sym_delcommand_statement] = STATE(2923), + [sym_runtime_statement] = STATE(2923), + [sym_wincmd_statement] = STATE(2923), + [sym_source_statement] = STATE(2923), + [sym_global_statement] = STATE(2923), + [sym_filetype_statement] = STATE(2923), + [sym_colorscheme_statement] = STATE(2923), + [sym_lua_statement] = STATE(2923), + [sym_ruby_statement] = STATE(2923), + [sym_python_statement] = STATE(2923), + [sym_perl_statement] = STATE(2923), + [sym_for_loop] = STATE(2923), + [sym_while_loop] = STATE(2923), + [sym_if_statement] = STATE(2923), + [sym_try_statement] = STATE(2923), + [sym_throw_statement] = STATE(2923), + [sym_autocmd_statement] = STATE(2923), + [sym_augroup_statement] = STATE(2923), + [sym_bang_filter_statement] = STATE(2923), + [sym_let_statement] = STATE(2923), + [sym_const_statement] = STATE(2923), + [sym_set_statement] = STATE(2923), + [sym_setlocal_statement] = STATE(2923), + [sym_unlet_statement] = STATE(2923), + [sym_call_statement] = STATE(2923), + [sym_echo_statement] = STATE(2923), + [sym_echon_statement] = STATE(2923), + [sym_echohl_statement] = STATE(2923), + [sym_echomsg_statement] = STATE(2923), + [sym_echoerr_statement] = STATE(2923), + [sym_execute_statement] = STATE(2923), + [sym_silent_statement] = STATE(2923), + [sym_user_command] = STATE(2923), + [sym_function_definition] = STATE(2923), + [sym_range_statement] = STATE(2923), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2923), + [sym_map_statement] = STATE(2923), + [sym_highlight_statement] = STATE(2923), + [sym_syntax_statement] = STATE(2923), + [sym_sign_statement] = STATE(2923), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_PLUS_PLUSnested] = ACTIONS(523), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_bang] = ACTIONS(763), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [84] = { - [sym__statement] = STATE(2797), - [sym_unknown_builtin_statement] = STATE(2797), - [sym_return_statement] = STATE(2797), - [sym_break_statement] = STATE(2797), - [sym_continue_statement] = STATE(2797), - [sym_normal_statement] = STATE(2797), - [sym_setfiletype_statement] = STATE(2797), - [sym_options_statement] = STATE(2797), - [sym_startinsert_statement] = STATE(2797), - [sym_stopinsert_statement] = STATE(2797), - [sym_scriptencoding_statement] = STATE(2797), - [sym_comclear_statement] = STATE(2797), - [sym_delcommand_statement] = STATE(2797), - [sym_runtime_statement] = STATE(2797), - [sym_wincmd_statement] = STATE(2797), - [sym_source_statement] = STATE(2797), - [sym_global_statement] = STATE(2797), - [sym_filetype_statement] = STATE(2797), - [sym_colorscheme_statement] = STATE(2797), - [sym_lua_statement] = STATE(2797), - [sym_ruby_statement] = STATE(2797), - [sym_python_statement] = STATE(2797), - [sym_perl_statement] = STATE(2797), - [sym_for_loop] = STATE(2797), - [sym_while_loop] = STATE(2797), - [sym_if_statement] = STATE(2797), - [sym_try_statement] = STATE(2797), - [sym_throw_statement] = STATE(2797), - [sym_autocmd_statement] = STATE(2797), - [sym_augroup_statement] = STATE(2797), - [sym_bang_filter_statement] = STATE(2797), - [sym_let_statement] = STATE(2797), - [sym_const_statement] = STATE(2797), - [sym_set_statement] = STATE(2797), - [sym_setlocal_statement] = STATE(2797), - [sym_unlet_statement] = STATE(2797), - [sym_call_statement] = STATE(2797), - [sym_echo_statement] = STATE(2797), - [sym_echon_statement] = STATE(2797), - [sym_echohl_statement] = STATE(2797), - [sym_echomsg_statement] = STATE(2797), - [sym_echoerr_statement] = STATE(2797), - [sym_execute_statement] = STATE(2797), - [sym_silent_statement] = STATE(2797), - [sym_user_command] = STATE(2797), - [sym_function_definition] = STATE(2797), - [sym_range_statement] = STATE(2797), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2797), - [sym_map_statement] = STATE(2797), - [sym_highlight_statement] = STATE(2797), - [sym_syntax_statement] = STATE(2797), - [sym_sign_statement] = STATE(2797), + [88] = { + [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_comclear_statement] = STATE(2815), + [sym_delcommand_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_autocmd_statement] = STATE(2815), + [sym_augroup_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_user_command] = STATE(2815), + [sym_function_definition] = STATE(2815), + [sym_range_statement] = STATE(2815), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2815), + [sym_map_statement] = STATE(2815), + [sym_highlight_statement] = STATE(2815), + [sym_syntax_statement] = STATE(2815), + [sym_sign_statement] = STATE(2815), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_bang] = ACTIONS(753), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_PLUS_PLUSnested] = ACTIONS(687), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [85] = { - [sym__statement] = STATE(2666), - [sym_unknown_builtin_statement] = STATE(2666), - [sym_return_statement] = STATE(2666), - [sym_break_statement] = STATE(2666), - [sym_continue_statement] = STATE(2666), - [sym_normal_statement] = STATE(2666), - [sym_setfiletype_statement] = STATE(2666), - [sym_options_statement] = STATE(2666), - [sym_startinsert_statement] = STATE(2666), - [sym_stopinsert_statement] = STATE(2666), - [sym_scriptencoding_statement] = STATE(2666), - [sym_comclear_statement] = STATE(2666), - [sym_delcommand_statement] = STATE(2666), - [sym_runtime_statement] = STATE(2666), - [sym_wincmd_statement] = STATE(2666), - [sym_source_statement] = STATE(2666), - [sym_global_statement] = STATE(2666), - [sym_filetype_statement] = STATE(2666), - [sym_colorscheme_statement] = STATE(2666), - [sym_lua_statement] = STATE(2666), - [sym_ruby_statement] = STATE(2666), - [sym_python_statement] = STATE(2666), - [sym_perl_statement] = STATE(2666), - [sym_for_loop] = STATE(2666), - [sym_while_loop] = STATE(2666), - [sym_if_statement] = STATE(2666), - [sym_try_statement] = STATE(2666), - [sym_throw_statement] = STATE(2666), - [sym_autocmd_statement] = STATE(2666), - [sym_augroup_statement] = STATE(2666), - [sym_bang_filter_statement] = STATE(2666), - [sym_let_statement] = STATE(2666), - [sym_const_statement] = STATE(2666), - [sym_set_statement] = STATE(2666), - [sym_setlocal_statement] = STATE(2666), - [sym_unlet_statement] = STATE(2666), - [sym_call_statement] = STATE(2666), - [sym_echo_statement] = STATE(2666), - [sym_echon_statement] = STATE(2666), - [sym_echohl_statement] = STATE(2666), - [sym_echomsg_statement] = STATE(2666), - [sym_echoerr_statement] = STATE(2666), - [sym_execute_statement] = STATE(2666), - [sym_silent_statement] = STATE(2666), - [sym_user_command] = STATE(2666), - [sym_function_definition] = STATE(2666), - [sym_range_statement] = STATE(2666), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2666), - [sym_map_statement] = STATE(2666), - [sym_highlight_statement] = STATE(2666), - [sym_syntax_statement] = STATE(2666), - [sym_sign_statement] = STATE(2666), + [89] = { + [sym__statement] = STATE(2923), + [sym_unknown_builtin_statement] = STATE(2923), + [sym_return_statement] = STATE(2923), + [sym_break_statement] = STATE(2923), + [sym_continue_statement] = STATE(2923), + [sym_normal_statement] = STATE(2923), + [sym_setfiletype_statement] = STATE(2923), + [sym_options_statement] = STATE(2923), + [sym_startinsert_statement] = STATE(2923), + [sym_stopinsert_statement] = STATE(2923), + [sym_scriptencoding_statement] = STATE(2923), + [sym_comclear_statement] = STATE(2923), + [sym_delcommand_statement] = STATE(2923), + [sym_runtime_statement] = STATE(2923), + [sym_wincmd_statement] = STATE(2923), + [sym_source_statement] = STATE(2923), + [sym_global_statement] = STATE(2923), + [sym_filetype_statement] = STATE(2923), + [sym_colorscheme_statement] = STATE(2923), + [sym_lua_statement] = STATE(2923), + [sym_ruby_statement] = STATE(2923), + [sym_python_statement] = STATE(2923), + [sym_perl_statement] = STATE(2923), + [sym_for_loop] = STATE(2923), + [sym_while_loop] = STATE(2923), + [sym_if_statement] = STATE(2923), + [sym_try_statement] = STATE(2923), + [sym_throw_statement] = STATE(2923), + [sym_autocmd_statement] = STATE(2923), + [sym_augroup_statement] = STATE(2923), + [sym_bang_filter_statement] = STATE(2923), + [sym_let_statement] = STATE(2923), + [sym_const_statement] = STATE(2923), + [sym_set_statement] = STATE(2923), + [sym_setlocal_statement] = STATE(2923), + [sym_unlet_statement] = STATE(2923), + [sym_call_statement] = STATE(2923), + [sym_echo_statement] = STATE(2923), + [sym_echon_statement] = STATE(2923), + [sym_echohl_statement] = STATE(2923), + [sym_echomsg_statement] = STATE(2923), + [sym_echoerr_statement] = STATE(2923), + [sym_execute_statement] = STATE(2923), + [sym_silent_statement] = STATE(2923), + [sym_user_command] = STATE(2923), + [sym_function_definition] = STATE(2923), + [sym_range_statement] = STATE(2923), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2923), + [sym_map_statement] = STATE(2923), + [sym_highlight_statement] = STATE(2923), + [sym_syntax_statement] = STATE(2923), + [sym_sign_statement] = STATE(2923), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_bang] = ACTIONS(765), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [90] = { + [sym__statement] = STATE(2676), + [sym_unknown_builtin_statement] = STATE(2676), + [sym_return_statement] = STATE(2676), + [sym_break_statement] = STATE(2676), + [sym_continue_statement] = STATE(2676), + [sym_normal_statement] = STATE(2676), + [sym_setfiletype_statement] = STATE(2676), + [sym_options_statement] = STATE(2676), + [sym_startinsert_statement] = STATE(2676), + [sym_stopinsert_statement] = STATE(2676), + [sym_scriptencoding_statement] = STATE(2676), + [sym_comclear_statement] = STATE(2676), + [sym_delcommand_statement] = STATE(2676), + [sym_runtime_statement] = STATE(2676), + [sym_wincmd_statement] = STATE(2676), + [sym_source_statement] = STATE(2676), + [sym_global_statement] = STATE(2676), + [sym_filetype_statement] = STATE(2676), + [sym_colorscheme_statement] = STATE(2676), + [sym_lua_statement] = STATE(2676), + [sym_ruby_statement] = STATE(2676), + [sym_python_statement] = STATE(2676), + [sym_perl_statement] = STATE(2676), + [sym_for_loop] = STATE(2676), + [sym_while_loop] = STATE(2676), + [sym_if_statement] = STATE(2676), + [sym_try_statement] = STATE(2676), + [sym_throw_statement] = STATE(2676), + [sym_autocmd_statement] = STATE(2676), + [sym_augroup_statement] = STATE(2676), + [sym_bang_filter_statement] = STATE(2676), + [sym_let_statement] = STATE(2676), + [sym_const_statement] = STATE(2676), + [sym_set_statement] = STATE(2676), + [sym_setlocal_statement] = STATE(2676), + [sym_unlet_statement] = STATE(2676), + [sym_call_statement] = STATE(2676), + [sym_echo_statement] = STATE(2676), + [sym_echon_statement] = STATE(2676), + [sym_echohl_statement] = STATE(2676), + [sym_echomsg_statement] = STATE(2676), + [sym_echoerr_statement] = STATE(2676), + [sym_execute_statement] = STATE(2676), + [sym_silent_statement] = STATE(2676), + [sym_user_command] = STATE(2676), + [sym_function_definition] = STATE(2676), + [sym_range_statement] = STATE(2676), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2676), + [sym_map_statement] = STATE(2676), + [sym_highlight_statement] = STATE(2676), + [sym_syntax_statement] = STATE(2676), + [sym_sign_statement] = STATE(2676), + [aux_sym__statement_repeat1] = STATE(141), + [anon_sym_COLON] = ACTIONS(7), + [sym_command_name] = ACTIONS(9), + [anon_sym_PLUS_PLUSnested] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(11), + [sym_mark] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(17), + [anon_sym_DOT2] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DOLLAR] = ACTIONS(23), + [anon_sym_BSLASH_SLASH] = ACTIONS(25), + [anon_sym_BSLASH_QMARK] = ACTIONS(25), + [anon_sym_BSLASH_AMP] = ACTIONS(25), + [sym_integer_literal] = ACTIONS(27), + [sym_register] = ACTIONS(29), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(33), + [sym__for] = ACTIONS(35), + [sym__while] = ACTIONS(37), + [sym__if] = ACTIONS(39), + [sym__try] = ACTIONS(41), + [sym__const] = ACTIONS(43), + [sym__normal] = ACTIONS(45), + [sym__return] = ACTIONS(47), + [sym__perl] = ACTIONS(49), + [sym__lua] = ACTIONS(51), + [sym__ruby] = ACTIONS(53), + [sym__python] = ACTIONS(55), + [sym__throw] = ACTIONS(57), + [sym__execute] = ACTIONS(59), + [sym__autocmd] = ACTIONS(61), + [sym__silent] = ACTIONS(63), + [sym__echo] = ACTIONS(65), + [sym__echon] = ACTIONS(67), + [sym__echohl] = ACTIONS(69), + [sym__echomsg] = ACTIONS(71), + [sym__echoerr] = ACTIONS(73), + [sym__map] = ACTIONS(75), + [sym__nmap] = ACTIONS(75), + [sym__vmap] = ACTIONS(75), + [sym__xmap] = ACTIONS(75), + [sym__smap] = ACTIONS(75), + [sym__omap] = ACTIONS(75), + [sym__imap] = ACTIONS(75), + [sym__lmap] = ACTIONS(75), + [sym__cmap] = ACTIONS(75), + [sym__tmap] = ACTIONS(75), + [sym__noremap] = ACTIONS(75), + [sym__vnoremap] = ACTIONS(75), + [sym__nnoremap] = ACTIONS(75), + [sym__xnoremap] = ACTIONS(75), + [sym__snoremap] = ACTIONS(75), + [sym__onoremap] = ACTIONS(75), + [sym__inoremap] = ACTIONS(75), + [sym__lnoremap] = ACTIONS(75), + [sym__cnoremap] = ACTIONS(75), + [sym__tnoremap] = ACTIONS(75), + [sym__augroup] = ACTIONS(77), + [sym__highlight] = ACTIONS(79), + [sym__syntax] = ACTIONS(81), + [sym__set] = ACTIONS(83), + [sym__setlocal] = ACTIONS(85), + [sym__setfiletype] = ACTIONS(87), + [sym__browse] = ACTIONS(89), + [sym__options] = ACTIONS(91), + [sym__startinsert] = ACTIONS(93), + [sym__stopinsert] = ACTIONS(95), + [sym__scriptencoding] = ACTIONS(97), + [sym__source] = ACTIONS(99), + [sym__global] = ACTIONS(101), + [sym__colorscheme] = ACTIONS(103), + [sym__comclear] = ACTIONS(105), + [sym__delcommand] = ACTIONS(107), + [sym__runtime] = ACTIONS(109), + [sym__wincmd] = ACTIONS(111), + [sym__sign] = ACTIONS(113), + [sym__filetype] = ACTIONS(115), + [sym__let] = ACTIONS(117), + [sym__unlet] = ACTIONS(119), + [sym__call] = ACTIONS(121), + [sym__break] = ACTIONS(123), + [sym__continue] = ACTIONS(125), + [sym_unknown_command_name] = ACTIONS(127), + }, + [91] = { + [sym__statement] = STATE(2851), + [sym_unknown_builtin_statement] = STATE(2851), + [sym_return_statement] = STATE(2851), + [sym_break_statement] = STATE(2851), + [sym_continue_statement] = STATE(2851), + [sym_normal_statement] = STATE(2851), + [sym_setfiletype_statement] = STATE(2851), + [sym_options_statement] = STATE(2851), + [sym_startinsert_statement] = STATE(2851), + [sym_stopinsert_statement] = STATE(2851), + [sym_scriptencoding_statement] = STATE(2851), + [sym_comclear_statement] = STATE(2851), + [sym_delcommand_statement] = STATE(2851), + [sym_runtime_statement] = STATE(2851), + [sym_wincmd_statement] = STATE(2851), + [sym_source_statement] = STATE(2851), + [sym_global_statement] = STATE(2851), + [sym_filetype_statement] = STATE(2851), + [sym_colorscheme_statement] = STATE(2851), + [sym_lua_statement] = STATE(2851), + [sym_ruby_statement] = STATE(2851), + [sym_python_statement] = STATE(2851), + [sym_perl_statement] = STATE(2851), + [sym_for_loop] = STATE(2851), + [sym_while_loop] = STATE(2851), + [sym_if_statement] = STATE(2851), + [sym_try_statement] = STATE(2851), + [sym_throw_statement] = STATE(2851), + [sym_autocmd_statement] = STATE(2851), + [sym_augroup_statement] = STATE(2851), + [sym_bang_filter_statement] = STATE(2851), + [sym_let_statement] = STATE(2851), + [sym_const_statement] = STATE(2851), + [sym_set_statement] = STATE(2851), + [sym_setlocal_statement] = STATE(2851), + [sym_unlet_statement] = STATE(2851), + [sym_call_statement] = STATE(2851), + [sym_echo_statement] = STATE(2851), + [sym_echon_statement] = STATE(2851), + [sym_echohl_statement] = STATE(2851), + [sym_echomsg_statement] = STATE(2851), + [sym_echoerr_statement] = STATE(2851), + [sym_execute_statement] = STATE(2851), + [sym_silent_statement] = STATE(2851), + [sym_user_command] = STATE(2851), + [sym_function_definition] = STATE(2851), + [sym_range_statement] = STATE(2851), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2851), + [sym_map_statement] = STATE(2851), + [sym_highlight_statement] = STATE(2851), + [sym_syntax_statement] = STATE(2851), + [sym_sign_statement] = STATE(2851), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_PLUS_PLUSnested] = ACTIONS(703), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [92] = { + [sym__statement] = STATE(2889), + [sym_unknown_builtin_statement] = STATE(2889), + [sym_return_statement] = STATE(2889), + [sym_break_statement] = STATE(2889), + [sym_continue_statement] = STATE(2889), + [sym_normal_statement] = STATE(2889), + [sym_setfiletype_statement] = STATE(2889), + [sym_options_statement] = STATE(2889), + [sym_startinsert_statement] = STATE(2889), + [sym_stopinsert_statement] = STATE(2889), + [sym_scriptencoding_statement] = STATE(2889), + [sym_comclear_statement] = STATE(2889), + [sym_delcommand_statement] = STATE(2889), + [sym_runtime_statement] = STATE(2889), + [sym_wincmd_statement] = STATE(2889), + [sym_source_statement] = STATE(2889), + [sym_global_statement] = STATE(2889), + [sym_filetype_statement] = STATE(2889), + [sym_colorscheme_statement] = STATE(2889), + [sym_lua_statement] = STATE(2889), + [sym_ruby_statement] = STATE(2889), + [sym_python_statement] = STATE(2889), + [sym_perl_statement] = STATE(2889), + [sym_for_loop] = STATE(2889), + [sym_while_loop] = STATE(2889), + [sym_if_statement] = STATE(2889), + [sym_try_statement] = STATE(2889), + [sym_throw_statement] = STATE(2889), + [sym_autocmd_statement] = STATE(2889), + [sym_augroup_statement] = STATE(2889), + [sym_bang_filter_statement] = STATE(2889), + [sym_let_statement] = STATE(2889), + [sym_const_statement] = STATE(2889), + [sym_set_statement] = STATE(2889), + [sym_setlocal_statement] = STATE(2889), + [sym_unlet_statement] = STATE(2889), + [sym_call_statement] = STATE(2889), + [sym_echo_statement] = STATE(2889), + [sym_echon_statement] = STATE(2889), + [sym_echohl_statement] = STATE(2889), + [sym_echomsg_statement] = STATE(2889), + [sym_echoerr_statement] = STATE(2889), + [sym_execute_statement] = STATE(2889), + [sym_silent_statement] = STATE(2889), + [sym_user_command] = STATE(2889), + [sym_function_definition] = STATE(2889), + [sym_range_statement] = STATE(2889), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2889), + [sym_map_statement] = STATE(2889), + [sym_highlight_statement] = STATE(2889), + [sym_syntax_statement] = STATE(2889), + [sym_sign_statement] = STATE(2889), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_PLUS_PLUSnested] = ACTIONS(755), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_PLUS_PLUSnested] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [86] = { - [sym__statement] = STATE(2646), - [sym_unknown_builtin_statement] = STATE(2646), - [sym_return_statement] = STATE(2646), - [sym_break_statement] = STATE(2646), - [sym_continue_statement] = STATE(2646), - [sym_normal_statement] = STATE(2646), - [sym_setfiletype_statement] = STATE(2646), - [sym_options_statement] = STATE(2646), - [sym_startinsert_statement] = STATE(2646), - [sym_stopinsert_statement] = STATE(2646), - [sym_scriptencoding_statement] = STATE(2646), - [sym_comclear_statement] = STATE(2646), - [sym_delcommand_statement] = STATE(2646), - [sym_runtime_statement] = STATE(2646), - [sym_wincmd_statement] = STATE(2646), - [sym_source_statement] = STATE(2646), - [sym_global_statement] = STATE(2646), - [sym_filetype_statement] = STATE(2646), - [sym_colorscheme_statement] = STATE(2646), - [sym_lua_statement] = STATE(2646), - [sym_ruby_statement] = STATE(2646), - [sym_python_statement] = STATE(2646), - [sym_perl_statement] = STATE(2646), - [sym_for_loop] = STATE(2646), - [sym_while_loop] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_try_statement] = STATE(2646), - [sym_throw_statement] = STATE(2646), - [sym_autocmd_statement] = STATE(2646), - [sym_augroup_statement] = STATE(2646), - [sym_bang_filter_statement] = STATE(2646), - [sym_let_statement] = STATE(2646), - [sym_const_statement] = STATE(2646), - [sym_set_statement] = STATE(2646), - [sym_setlocal_statement] = STATE(2646), - [sym_unlet_statement] = STATE(2646), - [sym_call_statement] = STATE(2646), - [sym_echo_statement] = STATE(2646), - [sym_echon_statement] = STATE(2646), - [sym_echohl_statement] = STATE(2646), - [sym_echomsg_statement] = STATE(2646), - [sym_echoerr_statement] = STATE(2646), - [sym_execute_statement] = STATE(2646), - [sym_silent_statement] = STATE(2646), - [sym_user_command] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_range_statement] = STATE(2646), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2646), - [sym_map_statement] = STATE(2646), - [sym_highlight_statement] = STATE(2646), - [sym_syntax_statement] = STATE(2646), - [sym_sign_statement] = STATE(2646), + [93] = { + [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_comclear_statement] = STATE(2815), + [sym_delcommand_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_autocmd_statement] = STATE(2815), + [sym_augroup_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_user_command] = STATE(2815), + [sym_function_definition] = STATE(2815), + [sym_range_statement] = STATE(2815), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2815), + [sym_map_statement] = STATE(2815), + [sym_highlight_statement] = STATE(2815), + [sym_syntax_statement] = STATE(2815), + [sym_sign_statement] = STATE(2815), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_PLUS_PLUSnested] = ACTIONS(683), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [94] = { + [sym__statement] = STATE(2851), + [sym_unknown_builtin_statement] = STATE(2851), + [sym_return_statement] = STATE(2851), + [sym_break_statement] = STATE(2851), + [sym_continue_statement] = STATE(2851), + [sym_normal_statement] = STATE(2851), + [sym_setfiletype_statement] = STATE(2851), + [sym_options_statement] = STATE(2851), + [sym_startinsert_statement] = STATE(2851), + [sym_stopinsert_statement] = STATE(2851), + [sym_scriptencoding_statement] = STATE(2851), + [sym_comclear_statement] = STATE(2851), + [sym_delcommand_statement] = STATE(2851), + [sym_runtime_statement] = STATE(2851), + [sym_wincmd_statement] = STATE(2851), + [sym_source_statement] = STATE(2851), + [sym_global_statement] = STATE(2851), + [sym_filetype_statement] = STATE(2851), + [sym_colorscheme_statement] = STATE(2851), + [sym_lua_statement] = STATE(2851), + [sym_ruby_statement] = STATE(2851), + [sym_python_statement] = STATE(2851), + [sym_perl_statement] = STATE(2851), + [sym_for_loop] = STATE(2851), + [sym_while_loop] = STATE(2851), + [sym_if_statement] = STATE(2851), + [sym_try_statement] = STATE(2851), + [sym_throw_statement] = STATE(2851), + [sym_autocmd_statement] = STATE(2851), + [sym_augroup_statement] = STATE(2851), + [sym_bang_filter_statement] = STATE(2851), + [sym_let_statement] = STATE(2851), + [sym_const_statement] = STATE(2851), + [sym_set_statement] = STATE(2851), + [sym_setlocal_statement] = STATE(2851), + [sym_unlet_statement] = STATE(2851), + [sym_call_statement] = STATE(2851), + [sym_echo_statement] = STATE(2851), + [sym_echon_statement] = STATE(2851), + [sym_echohl_statement] = STATE(2851), + [sym_echomsg_statement] = STATE(2851), + [sym_echoerr_statement] = STATE(2851), + [sym_execute_statement] = STATE(2851), + [sym_silent_statement] = STATE(2851), + [sym_user_command] = STATE(2851), + [sym_function_definition] = STATE(2851), + [sym_range_statement] = STATE(2851), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2851), + [sym_map_statement] = STATE(2851), + [sym_highlight_statement] = STATE(2851), + [sym_syntax_statement] = STATE(2851), + [sym_sign_statement] = STATE(2851), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_PLUS_PLUSnested] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_PLUS_PLUSnested] = ACTIONS(639), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [87] = { - [sym__statement] = STATE(2689), - [sym_unknown_builtin_statement] = STATE(2689), - [sym_return_statement] = STATE(2689), - [sym_break_statement] = STATE(2689), - [sym_continue_statement] = STATE(2689), - [sym_normal_statement] = STATE(2689), - [sym_setfiletype_statement] = STATE(2689), - [sym_options_statement] = STATE(2689), - [sym_startinsert_statement] = STATE(2689), - [sym_stopinsert_statement] = STATE(2689), - [sym_scriptencoding_statement] = STATE(2689), - [sym_comclear_statement] = STATE(2689), - [sym_delcommand_statement] = STATE(2689), - [sym_runtime_statement] = STATE(2689), - [sym_wincmd_statement] = STATE(2689), - [sym_source_statement] = STATE(2689), - [sym_global_statement] = STATE(2689), - [sym_filetype_statement] = STATE(2689), - [sym_colorscheme_statement] = STATE(2689), - [sym_lua_statement] = STATE(2689), - [sym_ruby_statement] = STATE(2689), - [sym_python_statement] = STATE(2689), - [sym_perl_statement] = STATE(2689), - [sym_for_loop] = STATE(2689), - [sym_while_loop] = STATE(2689), - [sym_if_statement] = STATE(2689), - [sym_try_statement] = STATE(2689), - [sym_throw_statement] = STATE(2689), - [sym_autocmd_statement] = STATE(2689), - [sym_augroup_statement] = STATE(2689), - [sym_bang_filter_statement] = STATE(2689), - [sym_let_statement] = STATE(2689), - [sym_const_statement] = STATE(2689), - [sym_set_statement] = STATE(2689), - [sym_setlocal_statement] = STATE(2689), - [sym_unlet_statement] = STATE(2689), - [sym_call_statement] = STATE(2689), - [sym_echo_statement] = STATE(2689), - [sym_echon_statement] = STATE(2689), - [sym_echohl_statement] = STATE(2689), - [sym_echomsg_statement] = STATE(2689), - [sym_echoerr_statement] = STATE(2689), - [sym_execute_statement] = STATE(2689), - [sym_silent_statement] = STATE(2689), - [sym_user_command] = STATE(2689), - [sym_function_definition] = STATE(2689), - [sym_range_statement] = STATE(2689), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2689), - [sym_map_statement] = STATE(2689), - [sym_highlight_statement] = STATE(2689), - [sym_syntax_statement] = STATE(2689), - [sym_sign_statement] = STATE(2689), + [95] = { + [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_comclear_statement] = STATE(2673), + [sym_delcommand_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_autocmd_statement] = STATE(2673), + [sym_augroup_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_user_command] = STATE(2673), + [sym_function_definition] = STATE(2673), + [sym_range_statement] = STATE(2673), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2673), + [sym_map_statement] = STATE(2673), + [sym_highlight_statement] = STATE(2673), + [sym_syntax_statement] = STATE(2673), + [sym_sign_statement] = STATE(2673), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), + [anon_sym_PLUS_PLUSnested] = ACTIONS(695), [anon_sym_QMARK] = ACTIONS(11), - [sym_bang] = ACTIONS(757), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), [anon_sym_SLASH] = ACTIONS(17), @@ -39455,360 +39868,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [88] = { - [sym__statement] = STATE(2661), - [sym_unknown_builtin_statement] = STATE(2661), - [sym_return_statement] = STATE(2661), - [sym_break_statement] = STATE(2661), - [sym_continue_statement] = STATE(2661), - [sym_normal_statement] = STATE(2661), - [sym_setfiletype_statement] = STATE(2661), - [sym_options_statement] = STATE(2661), - [sym_startinsert_statement] = STATE(2661), - [sym_stopinsert_statement] = STATE(2661), - [sym_scriptencoding_statement] = STATE(2661), - [sym_comclear_statement] = STATE(2661), - [sym_delcommand_statement] = STATE(2661), - [sym_runtime_statement] = STATE(2661), - [sym_wincmd_statement] = STATE(2661), - [sym_source_statement] = STATE(2661), - [sym_global_statement] = STATE(2661), - [sym_filetype_statement] = STATE(2661), - [sym_colorscheme_statement] = STATE(2661), - [sym_lua_statement] = STATE(2661), - [sym_ruby_statement] = STATE(2661), - [sym_python_statement] = STATE(2661), - [sym_perl_statement] = STATE(2661), - [sym_for_loop] = STATE(2661), - [sym_while_loop] = STATE(2661), - [sym_if_statement] = STATE(2661), - [sym_try_statement] = STATE(2661), - [sym_throw_statement] = STATE(2661), - [sym_autocmd_statement] = STATE(2661), - [sym_augroup_statement] = STATE(2661), - [sym_bang_filter_statement] = STATE(2661), - [sym_let_statement] = STATE(2661), - [sym_const_statement] = STATE(2661), - [sym_set_statement] = STATE(2661), - [sym_setlocal_statement] = STATE(2661), - [sym_unlet_statement] = STATE(2661), - [sym_call_statement] = STATE(2661), - [sym_echo_statement] = STATE(2661), - [sym_echon_statement] = STATE(2661), - [sym_echohl_statement] = STATE(2661), - [sym_echomsg_statement] = STATE(2661), - [sym_echoerr_statement] = STATE(2661), - [sym_execute_statement] = STATE(2661), - [sym_silent_statement] = STATE(2661), - [sym_user_command] = STATE(2661), - [sym_function_definition] = STATE(2661), - [sym_range_statement] = STATE(2661), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2661), - [sym_map_statement] = STATE(2661), - [sym_highlight_statement] = STATE(2661), - [sym_syntax_statement] = STATE(2661), - [sym_sign_statement] = STATE(2661), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_PLUS_PLUSnested] = ACTIONS(759), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [89] = { - [sym__statement] = STATE(2591), - [sym_unknown_builtin_statement] = STATE(2591), - [sym_return_statement] = STATE(2591), - [sym_break_statement] = STATE(2591), - [sym_continue_statement] = STATE(2591), - [sym_normal_statement] = STATE(2591), - [sym_setfiletype_statement] = STATE(2591), - [sym_options_statement] = STATE(2591), - [sym_startinsert_statement] = STATE(2591), - [sym_stopinsert_statement] = STATE(2591), - [sym_scriptencoding_statement] = STATE(2591), - [sym_comclear_statement] = STATE(2591), - [sym_delcommand_statement] = STATE(2591), - [sym_runtime_statement] = STATE(2591), - [sym_wincmd_statement] = STATE(2591), - [sym_source_statement] = STATE(2591), - [sym_global_statement] = STATE(2591), - [sym_filetype_statement] = STATE(2591), - [sym_colorscheme_statement] = STATE(2591), - [sym_lua_statement] = STATE(2591), - [sym_ruby_statement] = STATE(2591), - [sym_python_statement] = STATE(2591), - [sym_perl_statement] = STATE(2591), - [sym_for_loop] = STATE(2591), - [sym_while_loop] = STATE(2591), - [sym_if_statement] = STATE(2591), - [sym_try_statement] = STATE(2591), - [sym_throw_statement] = STATE(2591), - [sym_autocmd_statement] = STATE(2591), - [sym_augroup_statement] = STATE(2591), - [sym_bang_filter_statement] = STATE(2591), - [sym_let_statement] = STATE(2591), - [sym_const_statement] = STATE(2591), - [sym_set_statement] = STATE(2591), - [sym_setlocal_statement] = STATE(2591), - [sym_unlet_statement] = STATE(2591), - [sym_call_statement] = STATE(2591), - [sym_echo_statement] = STATE(2591), - [sym_echon_statement] = STATE(2591), - [sym_echohl_statement] = STATE(2591), - [sym_echomsg_statement] = STATE(2591), - [sym_echoerr_statement] = STATE(2591), - [sym_execute_statement] = STATE(2591), - [sym_silent_statement] = STATE(2591), - [sym_user_command] = STATE(2591), - [sym_function_definition] = STATE(2591), - [sym_range_statement] = STATE(2591), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2591), - [sym_map_statement] = STATE(2591), - [sym_highlight_statement] = STATE(2591), - [sym_syntax_statement] = STATE(2591), - [sym_sign_statement] = STATE(2591), + [96] = { + [sym__statement] = STATE(2849), + [sym_unknown_builtin_statement] = STATE(2849), + [sym_return_statement] = STATE(2849), + [sym_break_statement] = STATE(2849), + [sym_continue_statement] = STATE(2849), + [sym_normal_statement] = STATE(2849), + [sym_setfiletype_statement] = STATE(2849), + [sym_options_statement] = STATE(2849), + [sym_startinsert_statement] = STATE(2849), + [sym_stopinsert_statement] = STATE(2849), + [sym_scriptencoding_statement] = STATE(2849), + [sym_comclear_statement] = STATE(2849), + [sym_delcommand_statement] = STATE(2849), + [sym_runtime_statement] = STATE(2849), + [sym_wincmd_statement] = STATE(2849), + [sym_source_statement] = STATE(2849), + [sym_global_statement] = STATE(2849), + [sym_filetype_statement] = STATE(2849), + [sym_colorscheme_statement] = STATE(2849), + [sym_lua_statement] = STATE(2849), + [sym_ruby_statement] = STATE(2849), + [sym_python_statement] = STATE(2849), + [sym_perl_statement] = STATE(2849), + [sym_for_loop] = STATE(2849), + [sym_while_loop] = STATE(2849), + [sym_if_statement] = STATE(2849), + [sym_try_statement] = STATE(2849), + [sym_throw_statement] = STATE(2849), + [sym_autocmd_statement] = STATE(2849), + [sym_augroup_statement] = STATE(2849), + [sym_bang_filter_statement] = STATE(2849), + [sym_let_statement] = STATE(2849), + [sym_const_statement] = STATE(2849), + [sym_set_statement] = STATE(2849), + [sym_setlocal_statement] = STATE(2849), + [sym_unlet_statement] = STATE(2849), + [sym_call_statement] = STATE(2849), + [sym_echo_statement] = STATE(2849), + [sym_echon_statement] = STATE(2849), + [sym_echohl_statement] = STATE(2849), + [sym_echomsg_statement] = STATE(2849), + [sym_echoerr_statement] = STATE(2849), + [sym_execute_statement] = STATE(2849), + [sym_silent_statement] = STATE(2849), + [sym_user_command] = STATE(2849), + [sym_function_definition] = STATE(2849), + [sym_range_statement] = STATE(2849), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2849), + [sym_map_statement] = STATE(2849), + [sym_highlight_statement] = STATE(2849), + [sym_syntax_statement] = STATE(2849), + [sym_sign_statement] = STATE(2849), [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_PLUS_PLUSnested] = ACTIONS(699), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_PLUS_PLUSnested] = ACTIONS(511), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [90] = { - [sym__statement] = STATE(2844), - [sym_unknown_builtin_statement] = STATE(2844), - [sym_return_statement] = STATE(2844), - [sym_break_statement] = STATE(2844), - [sym_continue_statement] = STATE(2844), - [sym_normal_statement] = STATE(2844), - [sym_setfiletype_statement] = STATE(2844), - [sym_options_statement] = STATE(2844), - [sym_startinsert_statement] = STATE(2844), - [sym_stopinsert_statement] = STATE(2844), - [sym_scriptencoding_statement] = STATE(2844), - [sym_comclear_statement] = STATE(2844), - [sym_delcommand_statement] = STATE(2844), - [sym_runtime_statement] = STATE(2844), - [sym_wincmd_statement] = STATE(2844), - [sym_source_statement] = STATE(2844), - [sym_global_statement] = STATE(2844), - [sym_filetype_statement] = STATE(2844), - [sym_colorscheme_statement] = STATE(2844), - [sym_lua_statement] = STATE(2844), - [sym_ruby_statement] = STATE(2844), - [sym_python_statement] = STATE(2844), - [sym_perl_statement] = STATE(2844), - [sym_for_loop] = STATE(2844), - [sym_while_loop] = STATE(2844), - [sym_if_statement] = STATE(2844), - [sym_try_statement] = STATE(2844), - [sym_throw_statement] = STATE(2844), - [sym_autocmd_statement] = STATE(2844), - [sym_augroup_statement] = STATE(2844), - [sym_bang_filter_statement] = STATE(2844), - [sym_let_statement] = STATE(2844), - [sym_const_statement] = STATE(2844), - [sym_set_statement] = STATE(2844), - [sym_setlocal_statement] = STATE(2844), - [sym_unlet_statement] = STATE(2844), - [sym_call_statement] = STATE(2844), - [sym_echo_statement] = STATE(2844), - [sym_echon_statement] = STATE(2844), - [sym_echohl_statement] = STATE(2844), - [sym_echomsg_statement] = STATE(2844), - [sym_echoerr_statement] = STATE(2844), - [sym_execute_statement] = STATE(2844), - [sym_silent_statement] = STATE(2844), - [sym_user_command] = STATE(2844), - [sym_function_definition] = STATE(2844), - [sym_range_statement] = STATE(2844), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2844), - [sym_map_statement] = STATE(2844), - [sym_highlight_statement] = STATE(2844), - [sym_syntax_statement] = STATE(2844), - [sym_sign_statement] = STATE(2844), + [97] = { + [sym__statement] = STATE(2793), + [sym_unknown_builtin_statement] = STATE(2793), + [sym_return_statement] = STATE(2793), + [sym_break_statement] = STATE(2793), + [sym_continue_statement] = STATE(2793), + [sym_normal_statement] = STATE(2793), + [sym_setfiletype_statement] = STATE(2793), + [sym_options_statement] = STATE(2793), + [sym_startinsert_statement] = STATE(2793), + [sym_stopinsert_statement] = STATE(2793), + [sym_scriptencoding_statement] = STATE(2793), + [sym_comclear_statement] = STATE(2793), + [sym_delcommand_statement] = STATE(2793), + [sym_runtime_statement] = STATE(2793), + [sym_wincmd_statement] = STATE(2793), + [sym_source_statement] = STATE(2793), + [sym_global_statement] = STATE(2793), + [sym_filetype_statement] = STATE(2793), + [sym_colorscheme_statement] = STATE(2793), + [sym_lua_statement] = STATE(2793), + [sym_ruby_statement] = STATE(2793), + [sym_python_statement] = STATE(2793), + [sym_perl_statement] = STATE(2793), + [sym_for_loop] = STATE(2793), + [sym_while_loop] = STATE(2793), + [sym_if_statement] = STATE(2793), + [sym_try_statement] = STATE(2793), + [sym_throw_statement] = STATE(2793), + [sym_autocmd_statement] = STATE(2793), + [sym_augroup_statement] = STATE(2793), + [sym_bang_filter_statement] = STATE(2793), + [sym_let_statement] = STATE(2793), + [sym_const_statement] = STATE(2793), + [sym_set_statement] = STATE(2793), + [sym_setlocal_statement] = STATE(2793), + [sym_unlet_statement] = STATE(2793), + [sym_call_statement] = STATE(2793), + [sym_echo_statement] = STATE(2793), + [sym_echon_statement] = STATE(2793), + [sym_echohl_statement] = STATE(2793), + [sym_echomsg_statement] = STATE(2793), + [sym_echoerr_statement] = STATE(2793), + [sym_execute_statement] = STATE(2793), + [sym_silent_statement] = STATE(2793), + [sym_user_command] = STATE(2793), + [sym_function_definition] = STATE(2793), + [sym_range_statement] = STATE(2793), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2793), + [sym_map_statement] = STATE(2793), + [sym_highlight_statement] = STATE(2793), + [sym_syntax_statement] = STATE(2793), + [sym_sign_statement] = STATE(2793), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_PLUS_PLUSnested] = ACTIONS(761), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -39890,360 +40157,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [91] = { - [sym__statement] = STATE(2664), - [sym_unknown_builtin_statement] = STATE(2664), - [sym_return_statement] = STATE(2664), - [sym_break_statement] = STATE(2664), - [sym_continue_statement] = STATE(2664), - [sym_normal_statement] = STATE(2664), - [sym_setfiletype_statement] = STATE(2664), - [sym_options_statement] = STATE(2664), - [sym_startinsert_statement] = STATE(2664), - [sym_stopinsert_statement] = STATE(2664), - [sym_scriptencoding_statement] = STATE(2664), - [sym_comclear_statement] = STATE(2664), - [sym_delcommand_statement] = STATE(2664), - [sym_runtime_statement] = STATE(2664), - [sym_wincmd_statement] = STATE(2664), - [sym_source_statement] = STATE(2664), - [sym_global_statement] = STATE(2664), - [sym_filetype_statement] = STATE(2664), - [sym_colorscheme_statement] = STATE(2664), - [sym_lua_statement] = STATE(2664), - [sym_ruby_statement] = STATE(2664), - [sym_python_statement] = STATE(2664), - [sym_perl_statement] = STATE(2664), - [sym_for_loop] = STATE(2664), - [sym_while_loop] = STATE(2664), - [sym_if_statement] = STATE(2664), - [sym_try_statement] = STATE(2664), - [sym_throw_statement] = STATE(2664), - [sym_autocmd_statement] = STATE(2664), - [sym_augroup_statement] = STATE(2664), - [sym_bang_filter_statement] = STATE(2664), - [sym_let_statement] = STATE(2664), - [sym_const_statement] = STATE(2664), - [sym_set_statement] = STATE(2664), - [sym_setlocal_statement] = STATE(2664), - [sym_unlet_statement] = STATE(2664), - [sym_call_statement] = STATE(2664), - [sym_echo_statement] = STATE(2664), - [sym_echon_statement] = STATE(2664), - [sym_echohl_statement] = STATE(2664), - [sym_echomsg_statement] = STATE(2664), - [sym_echoerr_statement] = STATE(2664), - [sym_execute_statement] = STATE(2664), - [sym_silent_statement] = STATE(2664), - [sym_user_command] = STATE(2664), - [sym_function_definition] = STATE(2664), - [sym_range_statement] = STATE(2664), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2664), - [sym_map_statement] = STATE(2664), - [sym_highlight_statement] = STATE(2664), - [sym_syntax_statement] = STATE(2664), - [sym_sign_statement] = STATE(2664), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_PLUS_PLUSnested] = ACTIONS(739), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [98] = { + [sym__statement] = STATE(2861), + [sym_unknown_builtin_statement] = STATE(2861), + [sym_return_statement] = STATE(2861), + [sym_break_statement] = STATE(2861), + [sym_continue_statement] = STATE(2861), + [sym_normal_statement] = STATE(2861), + [sym_setfiletype_statement] = STATE(2861), + [sym_options_statement] = STATE(2861), + [sym_startinsert_statement] = STATE(2861), + [sym_stopinsert_statement] = STATE(2861), + [sym_scriptencoding_statement] = STATE(2861), + [sym_comclear_statement] = STATE(2861), + [sym_delcommand_statement] = STATE(2861), + [sym_runtime_statement] = STATE(2861), + [sym_wincmd_statement] = STATE(2861), + [sym_source_statement] = STATE(2861), + [sym_global_statement] = STATE(2861), + [sym_filetype_statement] = STATE(2861), + [sym_colorscheme_statement] = STATE(2861), + [sym_lua_statement] = STATE(2861), + [sym_ruby_statement] = STATE(2861), + [sym_python_statement] = STATE(2861), + [sym_perl_statement] = STATE(2861), + [sym_for_loop] = STATE(2861), + [sym_while_loop] = STATE(2861), + [sym_if_statement] = STATE(2861), + [sym_try_statement] = STATE(2861), + [sym_throw_statement] = STATE(2861), + [sym_autocmd_statement] = STATE(2861), + [sym_augroup_statement] = STATE(2861), + [sym_bang_filter_statement] = STATE(2861), + [sym_let_statement] = STATE(2861), + [sym_const_statement] = STATE(2861), + [sym_set_statement] = STATE(2861), + [sym_setlocal_statement] = STATE(2861), + [sym_unlet_statement] = STATE(2861), + [sym_call_statement] = STATE(2861), + [sym_echo_statement] = STATE(2861), + [sym_echon_statement] = STATE(2861), + [sym_echohl_statement] = STATE(2861), + [sym_echomsg_statement] = STATE(2861), + [sym_echoerr_statement] = STATE(2861), + [sym_execute_statement] = STATE(2861), + [sym_silent_statement] = STATE(2861), + [sym_user_command] = STATE(2861), + [sym_function_definition] = STATE(2861), + [sym_range_statement] = STATE(2861), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2861), + [sym_map_statement] = STATE(2861), + [sym_highlight_statement] = STATE(2861), + [sym_syntax_statement] = STATE(2861), + [sym_sign_statement] = STATE(2861), + [aux_sym__statement_repeat1] = STATE(142), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [92] = { - [sym__statement] = STATE(2664), - [sym_unknown_builtin_statement] = STATE(2664), - [sym_return_statement] = STATE(2664), - [sym_break_statement] = STATE(2664), - [sym_continue_statement] = STATE(2664), - [sym_normal_statement] = STATE(2664), - [sym_setfiletype_statement] = STATE(2664), - [sym_options_statement] = STATE(2664), - [sym_startinsert_statement] = STATE(2664), - [sym_stopinsert_statement] = STATE(2664), - [sym_scriptencoding_statement] = STATE(2664), - [sym_comclear_statement] = STATE(2664), - [sym_delcommand_statement] = STATE(2664), - [sym_runtime_statement] = STATE(2664), - [sym_wincmd_statement] = STATE(2664), - [sym_source_statement] = STATE(2664), - [sym_global_statement] = STATE(2664), - [sym_filetype_statement] = STATE(2664), - [sym_colorscheme_statement] = STATE(2664), - [sym_lua_statement] = STATE(2664), - [sym_ruby_statement] = STATE(2664), - [sym_python_statement] = STATE(2664), - [sym_perl_statement] = STATE(2664), - [sym_for_loop] = STATE(2664), - [sym_while_loop] = STATE(2664), - [sym_if_statement] = STATE(2664), - [sym_try_statement] = STATE(2664), - [sym_throw_statement] = STATE(2664), - [sym_autocmd_statement] = STATE(2664), - [sym_augroup_statement] = STATE(2664), - [sym_bang_filter_statement] = STATE(2664), - [sym_let_statement] = STATE(2664), - [sym_const_statement] = STATE(2664), - [sym_set_statement] = STATE(2664), - [sym_setlocal_statement] = STATE(2664), - [sym_unlet_statement] = STATE(2664), - [sym_call_statement] = STATE(2664), - [sym_echo_statement] = STATE(2664), - [sym_echon_statement] = STATE(2664), - [sym_echohl_statement] = STATE(2664), - [sym_echomsg_statement] = STATE(2664), - [sym_echoerr_statement] = STATE(2664), - [sym_execute_statement] = STATE(2664), - [sym_silent_statement] = STATE(2664), - [sym_user_command] = STATE(2664), - [sym_function_definition] = STATE(2664), - [sym_range_statement] = STATE(2664), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2664), - [sym_map_statement] = STATE(2664), - [sym_highlight_statement] = STATE(2664), - [sym_syntax_statement] = STATE(2664), - [sym_sign_statement] = STATE(2664), - [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_PLUS_PLUSnested] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [99] = { + [sym__statement] = STATE(2903), + [sym_unknown_builtin_statement] = STATE(2903), + [sym_return_statement] = STATE(2903), + [sym_break_statement] = STATE(2903), + [sym_continue_statement] = STATE(2903), + [sym_normal_statement] = STATE(2903), + [sym_setfiletype_statement] = STATE(2903), + [sym_options_statement] = STATE(2903), + [sym_startinsert_statement] = STATE(2903), + [sym_stopinsert_statement] = STATE(2903), + [sym_scriptencoding_statement] = STATE(2903), + [sym_comclear_statement] = STATE(2903), + [sym_delcommand_statement] = STATE(2903), + [sym_runtime_statement] = STATE(2903), + [sym_wincmd_statement] = STATE(2903), + [sym_source_statement] = STATE(2903), + [sym_global_statement] = STATE(2903), + [sym_filetype_statement] = STATE(2903), + [sym_colorscheme_statement] = STATE(2903), + [sym_lua_statement] = STATE(2903), + [sym_ruby_statement] = STATE(2903), + [sym_python_statement] = STATE(2903), + [sym_perl_statement] = STATE(2903), + [sym_for_loop] = STATE(2903), + [sym_while_loop] = STATE(2903), + [sym_if_statement] = STATE(2903), + [sym_try_statement] = STATE(2903), + [sym_throw_statement] = STATE(2903), + [sym_autocmd_statement] = STATE(2903), + [sym_augroup_statement] = STATE(2903), + [sym_bang_filter_statement] = STATE(2903), + [sym_let_statement] = STATE(2903), + [sym_const_statement] = STATE(2903), + [sym_set_statement] = STATE(2903), + [sym_setlocal_statement] = STATE(2903), + [sym_unlet_statement] = STATE(2903), + [sym_call_statement] = STATE(2903), + [sym_echo_statement] = STATE(2903), + [sym_echon_statement] = STATE(2903), + [sym_echohl_statement] = STATE(2903), + [sym_echomsg_statement] = STATE(2903), + [sym_echoerr_statement] = STATE(2903), + [sym_execute_statement] = STATE(2903), + [sym_silent_statement] = STATE(2903), + [sym_user_command] = STATE(2903), + [sym_function_definition] = STATE(2903), + [sym_range_statement] = STATE(2903), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2903), + [sym_map_statement] = STATE(2903), + [sym_highlight_statement] = STATE(2903), + [sym_syntax_statement] = STATE(2903), + [sym_sign_statement] = STATE(2903), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [93] = { - [sym__statement] = STATE(2846), - [sym_unknown_builtin_statement] = STATE(2846), - [sym_return_statement] = STATE(2846), - [sym_break_statement] = STATE(2846), - [sym_continue_statement] = STATE(2846), - [sym_normal_statement] = STATE(2846), - [sym_setfiletype_statement] = STATE(2846), - [sym_options_statement] = STATE(2846), - [sym_startinsert_statement] = STATE(2846), - [sym_stopinsert_statement] = STATE(2846), - [sym_scriptencoding_statement] = STATE(2846), - [sym_comclear_statement] = STATE(2846), - [sym_delcommand_statement] = STATE(2846), - [sym_runtime_statement] = STATE(2846), - [sym_wincmd_statement] = STATE(2846), - [sym_source_statement] = STATE(2846), - [sym_global_statement] = STATE(2846), - [sym_filetype_statement] = STATE(2846), - [sym_colorscheme_statement] = STATE(2846), - [sym_lua_statement] = STATE(2846), - [sym_ruby_statement] = STATE(2846), - [sym_python_statement] = STATE(2846), - [sym_perl_statement] = STATE(2846), - [sym_for_loop] = STATE(2846), - [sym_while_loop] = STATE(2846), - [sym_if_statement] = STATE(2846), - [sym_try_statement] = STATE(2846), - [sym_throw_statement] = STATE(2846), - [sym_autocmd_statement] = STATE(2846), - [sym_augroup_statement] = STATE(2846), - [sym_bang_filter_statement] = STATE(2846), - [sym_let_statement] = STATE(2846), - [sym_const_statement] = STATE(2846), - [sym_set_statement] = STATE(2846), - [sym_setlocal_statement] = STATE(2846), - [sym_unlet_statement] = STATE(2846), - [sym_call_statement] = STATE(2846), - [sym_echo_statement] = STATE(2846), - [sym_echon_statement] = STATE(2846), - [sym_echohl_statement] = STATE(2846), - [sym_echomsg_statement] = STATE(2846), - [sym_echoerr_statement] = STATE(2846), - [sym_execute_statement] = STATE(2846), - [sym_silent_statement] = STATE(2846), - [sym_user_command] = STATE(2846), - [sym_function_definition] = STATE(2846), - [sym_range_statement] = STATE(2846), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2846), - [sym_map_statement] = STATE(2846), - [sym_highlight_statement] = STATE(2846), - [sym_syntax_statement] = STATE(2846), - [sym_sign_statement] = STATE(2846), + [100] = { + [sym__statement] = STATE(2876), + [sym_unknown_builtin_statement] = STATE(2876), + [sym_return_statement] = STATE(2876), + [sym_break_statement] = STATE(2876), + [sym_continue_statement] = STATE(2876), + [sym_normal_statement] = STATE(2876), + [sym_setfiletype_statement] = STATE(2876), + [sym_options_statement] = STATE(2876), + [sym_startinsert_statement] = STATE(2876), + [sym_stopinsert_statement] = STATE(2876), + [sym_scriptencoding_statement] = STATE(2876), + [sym_comclear_statement] = STATE(2876), + [sym_delcommand_statement] = STATE(2876), + [sym_runtime_statement] = STATE(2876), + [sym_wincmd_statement] = STATE(2876), + [sym_source_statement] = STATE(2876), + [sym_global_statement] = STATE(2876), + [sym_filetype_statement] = STATE(2876), + [sym_colorscheme_statement] = STATE(2876), + [sym_lua_statement] = STATE(2876), + [sym_ruby_statement] = STATE(2876), + [sym_python_statement] = STATE(2876), + [sym_perl_statement] = STATE(2876), + [sym_for_loop] = STATE(2876), + [sym_while_loop] = STATE(2876), + [sym_if_statement] = STATE(2876), + [sym_try_statement] = STATE(2876), + [sym_throw_statement] = STATE(2876), + [sym_autocmd_statement] = STATE(2876), + [sym_augroup_statement] = STATE(2876), + [sym_bang_filter_statement] = STATE(2876), + [sym_let_statement] = STATE(2876), + [sym_const_statement] = STATE(2876), + [sym_set_statement] = STATE(2876), + [sym_setlocal_statement] = STATE(2876), + [sym_unlet_statement] = STATE(2876), + [sym_call_statement] = STATE(2876), + [sym_echo_statement] = STATE(2876), + [sym_echon_statement] = STATE(2876), + [sym_echohl_statement] = STATE(2876), + [sym_echomsg_statement] = STATE(2876), + [sym_echoerr_statement] = STATE(2876), + [sym_execute_statement] = STATE(2876), + [sym_silent_statement] = STATE(2876), + [sym_user_command] = STATE(2876), + [sym_function_definition] = STATE(2876), + [sym_range_statement] = STATE(2876), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2876), + [sym_map_statement] = STATE(2876), + [sym_highlight_statement] = STATE(2876), + [sym_syntax_statement] = STATE(2876), + [sym_sign_statement] = STATE(2876), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), - [anon_sym_PLUS_PLUSnested] = ACTIONS(723), [anon_sym_QMARK] = ACTIONS(11), [sym_mark] = ACTIONS(13), [anon_sym_PERCENT] = ACTIONS(15), @@ -40325,1077 +40589,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [94] = { - [sym__statement] = STATE(2797), - [sym_unknown_builtin_statement] = STATE(2797), - [sym_return_statement] = STATE(2797), - [sym_break_statement] = STATE(2797), - [sym_continue_statement] = STATE(2797), - [sym_normal_statement] = STATE(2797), - [sym_setfiletype_statement] = STATE(2797), - [sym_options_statement] = STATE(2797), - [sym_startinsert_statement] = STATE(2797), - [sym_stopinsert_statement] = STATE(2797), - [sym_scriptencoding_statement] = STATE(2797), - [sym_comclear_statement] = STATE(2797), - [sym_delcommand_statement] = STATE(2797), - [sym_runtime_statement] = STATE(2797), - [sym_wincmd_statement] = STATE(2797), - [sym_source_statement] = STATE(2797), - [sym_global_statement] = STATE(2797), - [sym_filetype_statement] = STATE(2797), - [sym_colorscheme_statement] = STATE(2797), - [sym_lua_statement] = STATE(2797), - [sym_ruby_statement] = STATE(2797), - [sym_python_statement] = STATE(2797), - [sym_perl_statement] = STATE(2797), - [sym_for_loop] = STATE(2797), - [sym_while_loop] = STATE(2797), - [sym_if_statement] = STATE(2797), - [sym_try_statement] = STATE(2797), - [sym_throw_statement] = STATE(2797), - [sym_autocmd_statement] = STATE(2797), - [sym_augroup_statement] = STATE(2797), - [sym_bang_filter_statement] = STATE(2797), - [sym_let_statement] = STATE(2797), - [sym_const_statement] = STATE(2797), - [sym_set_statement] = STATE(2797), - [sym_setlocal_statement] = STATE(2797), - [sym_unlet_statement] = STATE(2797), - [sym_call_statement] = STATE(2797), - [sym_echo_statement] = STATE(2797), - [sym_echon_statement] = STATE(2797), - [sym_echohl_statement] = STATE(2797), - [sym_echomsg_statement] = STATE(2797), - [sym_echoerr_statement] = STATE(2797), - [sym_execute_statement] = STATE(2797), - [sym_silent_statement] = STATE(2797), - [sym_user_command] = STATE(2797), - [sym_function_definition] = STATE(2797), - [sym_range_statement] = STATE(2797), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2797), - [sym_map_statement] = STATE(2797), - [sym_highlight_statement] = STATE(2797), - [sym_syntax_statement] = STATE(2797), - [sym_sign_statement] = STATE(2797), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_bang] = ACTIONS(763), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [95] = { - [sym__statement] = STATE(2666), - [sym_unknown_builtin_statement] = STATE(2666), - [sym_return_statement] = STATE(2666), - [sym_break_statement] = STATE(2666), - [sym_continue_statement] = STATE(2666), - [sym_normal_statement] = STATE(2666), - [sym_setfiletype_statement] = STATE(2666), - [sym_options_statement] = STATE(2666), - [sym_startinsert_statement] = STATE(2666), - [sym_stopinsert_statement] = STATE(2666), - [sym_scriptencoding_statement] = STATE(2666), - [sym_comclear_statement] = STATE(2666), - [sym_delcommand_statement] = STATE(2666), - [sym_runtime_statement] = STATE(2666), - [sym_wincmd_statement] = STATE(2666), - [sym_source_statement] = STATE(2666), - [sym_global_statement] = STATE(2666), - [sym_filetype_statement] = STATE(2666), - [sym_colorscheme_statement] = STATE(2666), - [sym_lua_statement] = STATE(2666), - [sym_ruby_statement] = STATE(2666), - [sym_python_statement] = STATE(2666), - [sym_perl_statement] = STATE(2666), - [sym_for_loop] = STATE(2666), - [sym_while_loop] = STATE(2666), - [sym_if_statement] = STATE(2666), - [sym_try_statement] = STATE(2666), - [sym_throw_statement] = STATE(2666), - [sym_autocmd_statement] = STATE(2666), - [sym_augroup_statement] = STATE(2666), - [sym_bang_filter_statement] = STATE(2666), - [sym_let_statement] = STATE(2666), - [sym_const_statement] = STATE(2666), - [sym_set_statement] = STATE(2666), - [sym_setlocal_statement] = STATE(2666), - [sym_unlet_statement] = STATE(2666), - [sym_call_statement] = STATE(2666), - [sym_echo_statement] = STATE(2666), - [sym_echon_statement] = STATE(2666), - [sym_echohl_statement] = STATE(2666), - [sym_echomsg_statement] = STATE(2666), - [sym_echoerr_statement] = STATE(2666), - [sym_execute_statement] = STATE(2666), - [sym_silent_statement] = STATE(2666), - [sym_user_command] = STATE(2666), - [sym_function_definition] = STATE(2666), - [sym_range_statement] = STATE(2666), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2666), - [sym_map_statement] = STATE(2666), - [sym_highlight_statement] = STATE(2666), - [sym_syntax_statement] = STATE(2666), - [sym_sign_statement] = STATE(2666), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_PLUS_PLUSnested] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [96] = { - [sym__statement] = STATE(2684), - [sym_unknown_builtin_statement] = STATE(2684), - [sym_return_statement] = STATE(2684), - [sym_break_statement] = STATE(2684), - [sym_continue_statement] = STATE(2684), - [sym_normal_statement] = STATE(2684), - [sym_setfiletype_statement] = STATE(2684), - [sym_options_statement] = STATE(2684), - [sym_startinsert_statement] = STATE(2684), - [sym_stopinsert_statement] = STATE(2684), - [sym_scriptencoding_statement] = STATE(2684), - [sym_comclear_statement] = STATE(2684), - [sym_delcommand_statement] = STATE(2684), - [sym_runtime_statement] = STATE(2684), - [sym_wincmd_statement] = STATE(2684), - [sym_source_statement] = STATE(2684), - [sym_global_statement] = STATE(2684), - [sym_filetype_statement] = STATE(2684), - [sym_colorscheme_statement] = STATE(2684), - [sym_lua_statement] = STATE(2684), - [sym_ruby_statement] = STATE(2684), - [sym_python_statement] = STATE(2684), - [sym_perl_statement] = STATE(2684), - [sym_for_loop] = STATE(2684), - [sym_while_loop] = STATE(2684), - [sym_if_statement] = STATE(2684), - [sym_try_statement] = STATE(2684), - [sym_throw_statement] = STATE(2684), - [sym_autocmd_statement] = STATE(2684), - [sym_augroup_statement] = STATE(2684), - [sym_bang_filter_statement] = STATE(2684), - [sym_let_statement] = STATE(2684), - [sym_const_statement] = STATE(2684), - [sym_set_statement] = STATE(2684), - [sym_setlocal_statement] = STATE(2684), - [sym_unlet_statement] = STATE(2684), - [sym_call_statement] = STATE(2684), - [sym_echo_statement] = STATE(2684), - [sym_echon_statement] = STATE(2684), - [sym_echohl_statement] = STATE(2684), - [sym_echomsg_statement] = STATE(2684), - [sym_echoerr_statement] = STATE(2684), - [sym_execute_statement] = STATE(2684), - [sym_silent_statement] = STATE(2684), - [sym_user_command] = STATE(2684), - [sym_function_definition] = STATE(2684), - [sym_range_statement] = STATE(2684), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2684), - [sym_map_statement] = STATE(2684), - [sym_highlight_statement] = STATE(2684), - [sym_syntax_statement] = STATE(2684), - [sym_sign_statement] = STATE(2684), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_PLUS_PLUSnested] = ACTIONS(767), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [97] = { - [sym__statement] = STATE(2704), - [sym_unknown_builtin_statement] = STATE(2704), - [sym_return_statement] = STATE(2704), - [sym_break_statement] = STATE(2704), - [sym_continue_statement] = STATE(2704), - [sym_normal_statement] = STATE(2704), - [sym_setfiletype_statement] = STATE(2704), - [sym_options_statement] = STATE(2704), - [sym_startinsert_statement] = STATE(2704), - [sym_stopinsert_statement] = STATE(2704), - [sym_scriptencoding_statement] = STATE(2704), - [sym_comclear_statement] = STATE(2704), - [sym_delcommand_statement] = STATE(2704), - [sym_runtime_statement] = STATE(2704), - [sym_wincmd_statement] = STATE(2704), - [sym_source_statement] = STATE(2704), - [sym_global_statement] = STATE(2704), - [sym_filetype_statement] = STATE(2704), - [sym_colorscheme_statement] = STATE(2704), - [sym_lua_statement] = STATE(2704), - [sym_ruby_statement] = STATE(2704), - [sym_python_statement] = STATE(2704), - [sym_perl_statement] = STATE(2704), - [sym_for_loop] = STATE(2704), - [sym_while_loop] = STATE(2704), - [sym_if_statement] = STATE(2704), - [sym_try_statement] = STATE(2704), - [sym_throw_statement] = STATE(2704), - [sym_autocmd_statement] = STATE(2704), - [sym_augroup_statement] = STATE(2704), - [sym_bang_filter_statement] = STATE(2704), - [sym_let_statement] = STATE(2704), - [sym_const_statement] = STATE(2704), - [sym_set_statement] = STATE(2704), - [sym_setlocal_statement] = STATE(2704), - [sym_unlet_statement] = STATE(2704), - [sym_call_statement] = STATE(2704), - [sym_echo_statement] = STATE(2704), - [sym_echon_statement] = STATE(2704), - [sym_echohl_statement] = STATE(2704), - [sym_echomsg_statement] = STATE(2704), - [sym_echoerr_statement] = STATE(2704), - [sym_execute_statement] = STATE(2704), - [sym_silent_statement] = STATE(2704), - [sym_user_command] = STATE(2704), - [sym_function_definition] = STATE(2704), - [sym_range_statement] = STATE(2704), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2704), - [sym_map_statement] = STATE(2704), - [sym_highlight_statement] = STATE(2704), - [sym_syntax_statement] = STATE(2704), - [sym_sign_statement] = STATE(2704), - [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, - [98] = { - [sym__statement] = STATE(2646), - [sym_unknown_builtin_statement] = STATE(2646), - [sym_return_statement] = STATE(2646), - [sym_break_statement] = STATE(2646), - [sym_continue_statement] = STATE(2646), - [sym_normal_statement] = STATE(2646), - [sym_setfiletype_statement] = STATE(2646), - [sym_options_statement] = STATE(2646), - [sym_startinsert_statement] = STATE(2646), - [sym_stopinsert_statement] = STATE(2646), - [sym_scriptencoding_statement] = STATE(2646), - [sym_comclear_statement] = STATE(2646), - [sym_delcommand_statement] = STATE(2646), - [sym_runtime_statement] = STATE(2646), - [sym_wincmd_statement] = STATE(2646), - [sym_source_statement] = STATE(2646), - [sym_global_statement] = STATE(2646), - [sym_filetype_statement] = STATE(2646), - [sym_colorscheme_statement] = STATE(2646), - [sym_lua_statement] = STATE(2646), - [sym_ruby_statement] = STATE(2646), - [sym_python_statement] = STATE(2646), - [sym_perl_statement] = STATE(2646), - [sym_for_loop] = STATE(2646), - [sym_while_loop] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_try_statement] = STATE(2646), - [sym_throw_statement] = STATE(2646), - [sym_autocmd_statement] = STATE(2646), - [sym_augroup_statement] = STATE(2646), - [sym_bang_filter_statement] = STATE(2646), - [sym_let_statement] = STATE(2646), - [sym_const_statement] = STATE(2646), - [sym_set_statement] = STATE(2646), - [sym_setlocal_statement] = STATE(2646), - [sym_unlet_statement] = STATE(2646), - [sym_call_statement] = STATE(2646), - [sym_echo_statement] = STATE(2646), - [sym_echon_statement] = STATE(2646), - [sym_echohl_statement] = STATE(2646), - [sym_echomsg_statement] = STATE(2646), - [sym_echoerr_statement] = STATE(2646), - [sym_execute_statement] = STATE(2646), - [sym_silent_statement] = STATE(2646), - [sym_user_command] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_range_statement] = STATE(2646), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2646), - [sym_map_statement] = STATE(2646), - [sym_highlight_statement] = STATE(2646), - [sym_syntax_statement] = STATE(2646), - [sym_sign_statement] = STATE(2646), - [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, - [99] = { - [sym__statement] = STATE(2666), - [sym_unknown_builtin_statement] = STATE(2666), - [sym_return_statement] = STATE(2666), - [sym_break_statement] = STATE(2666), - [sym_continue_statement] = STATE(2666), - [sym_normal_statement] = STATE(2666), - [sym_setfiletype_statement] = STATE(2666), - [sym_options_statement] = STATE(2666), - [sym_startinsert_statement] = STATE(2666), - [sym_stopinsert_statement] = STATE(2666), - [sym_scriptencoding_statement] = STATE(2666), - [sym_comclear_statement] = STATE(2666), - [sym_delcommand_statement] = STATE(2666), - [sym_runtime_statement] = STATE(2666), - [sym_wincmd_statement] = STATE(2666), - [sym_source_statement] = STATE(2666), - [sym_global_statement] = STATE(2666), - [sym_filetype_statement] = STATE(2666), - [sym_colorscheme_statement] = STATE(2666), - [sym_lua_statement] = STATE(2666), - [sym_ruby_statement] = STATE(2666), - [sym_python_statement] = STATE(2666), - [sym_perl_statement] = STATE(2666), - [sym_for_loop] = STATE(2666), - [sym_while_loop] = STATE(2666), - [sym_if_statement] = STATE(2666), - [sym_try_statement] = STATE(2666), - [sym_throw_statement] = STATE(2666), - [sym_autocmd_statement] = STATE(2666), - [sym_augroup_statement] = STATE(2666), - [sym_bang_filter_statement] = STATE(2666), - [sym_let_statement] = STATE(2666), - [sym_const_statement] = STATE(2666), - [sym_set_statement] = STATE(2666), - [sym_setlocal_statement] = STATE(2666), - [sym_unlet_statement] = STATE(2666), - [sym_call_statement] = STATE(2666), - [sym_echo_statement] = STATE(2666), - [sym_echon_statement] = STATE(2666), - [sym_echohl_statement] = STATE(2666), - [sym_echomsg_statement] = STATE(2666), - [sym_echoerr_statement] = STATE(2666), - [sym_execute_statement] = STATE(2666), - [sym_silent_statement] = STATE(2666), - [sym_user_command] = STATE(2666), - [sym_function_definition] = STATE(2666), - [sym_range_statement] = STATE(2666), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2666), - [sym_map_statement] = STATE(2666), - [sym_highlight_statement] = STATE(2666), - [sym_syntax_statement] = STATE(2666), - [sym_sign_statement] = STATE(2666), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [100] = { - [sym__statement] = STATE(2591), - [sym_unknown_builtin_statement] = STATE(2591), - [sym_return_statement] = STATE(2591), - [sym_break_statement] = STATE(2591), - [sym_continue_statement] = STATE(2591), - [sym_normal_statement] = STATE(2591), - [sym_setfiletype_statement] = STATE(2591), - [sym_options_statement] = STATE(2591), - [sym_startinsert_statement] = STATE(2591), - [sym_stopinsert_statement] = STATE(2591), - [sym_scriptencoding_statement] = STATE(2591), - [sym_comclear_statement] = STATE(2591), - [sym_delcommand_statement] = STATE(2591), - [sym_runtime_statement] = STATE(2591), - [sym_wincmd_statement] = STATE(2591), - [sym_source_statement] = STATE(2591), - [sym_global_statement] = STATE(2591), - [sym_filetype_statement] = STATE(2591), - [sym_colorscheme_statement] = STATE(2591), - [sym_lua_statement] = STATE(2591), - [sym_ruby_statement] = STATE(2591), - [sym_python_statement] = STATE(2591), - [sym_perl_statement] = STATE(2591), - [sym_for_loop] = STATE(2591), - [sym_while_loop] = STATE(2591), - [sym_if_statement] = STATE(2591), - [sym_try_statement] = STATE(2591), - [sym_throw_statement] = STATE(2591), - [sym_autocmd_statement] = STATE(2591), - [sym_augroup_statement] = STATE(2591), - [sym_bang_filter_statement] = STATE(2591), - [sym_let_statement] = STATE(2591), - [sym_const_statement] = STATE(2591), - [sym_set_statement] = STATE(2591), - [sym_setlocal_statement] = STATE(2591), - [sym_unlet_statement] = STATE(2591), - [sym_call_statement] = STATE(2591), - [sym_echo_statement] = STATE(2591), - [sym_echon_statement] = STATE(2591), - [sym_echohl_statement] = STATE(2591), - [sym_echomsg_statement] = STATE(2591), - [sym_echoerr_statement] = STATE(2591), - [sym_execute_statement] = STATE(2591), - [sym_silent_statement] = STATE(2591), - [sym_user_command] = STATE(2591), - [sym_function_definition] = STATE(2591), - [sym_range_statement] = STATE(2591), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2591), - [sym_map_statement] = STATE(2591), - [sym_highlight_statement] = STATE(2591), - [sym_syntax_statement] = STATE(2591), - [sym_sign_statement] = STATE(2591), - [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, [101] = { - [sym__statement] = STATE(2886), - [sym_unknown_builtin_statement] = STATE(2886), - [sym_return_statement] = STATE(2886), - [sym_break_statement] = STATE(2886), - [sym_continue_statement] = STATE(2886), - [sym_normal_statement] = STATE(2886), - [sym_setfiletype_statement] = STATE(2886), - [sym_options_statement] = STATE(2886), - [sym_startinsert_statement] = STATE(2886), - [sym_stopinsert_statement] = STATE(2886), - [sym_scriptencoding_statement] = STATE(2886), - [sym_comclear_statement] = STATE(2886), - [sym_delcommand_statement] = STATE(2886), - [sym_runtime_statement] = STATE(2886), - [sym_wincmd_statement] = STATE(2886), - [sym_source_statement] = STATE(2886), - [sym_global_statement] = STATE(2886), - [sym_filetype_statement] = STATE(2886), - [sym_colorscheme_statement] = STATE(2886), - [sym_lua_statement] = STATE(2886), - [sym_ruby_statement] = STATE(2886), - [sym_python_statement] = STATE(2886), - [sym_perl_statement] = STATE(2886), - [sym_for_loop] = STATE(2886), - [sym_while_loop] = STATE(2886), - [sym_if_statement] = STATE(2886), - [sym_try_statement] = STATE(2886), - [sym_throw_statement] = STATE(2886), - [sym_autocmd_statement] = STATE(2886), - [sym_augroup_statement] = STATE(2886), - [sym_bang_filter_statement] = STATE(2886), - [sym_let_statement] = STATE(2886), - [sym_const_statement] = STATE(2886), - [sym_set_statement] = STATE(2886), - [sym_setlocal_statement] = STATE(2886), - [sym_unlet_statement] = STATE(2886), - [sym_call_statement] = STATE(2886), - [sym_echo_statement] = STATE(2886), - [sym_echon_statement] = STATE(2886), - [sym_echohl_statement] = STATE(2886), - [sym_echomsg_statement] = STATE(2886), - [sym_echoerr_statement] = STATE(2886), - [sym_execute_statement] = STATE(2886), - [sym_silent_statement] = STATE(2886), - [sym_user_command] = STATE(2886), - [sym_function_definition] = STATE(2886), - [sym_range_statement] = STATE(2886), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2886), - [sym_map_statement] = STATE(2886), - [sym_highlight_statement] = STATE(2886), - [sym_syntax_statement] = STATE(2886), - [sym_sign_statement] = STATE(2886), + [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_comclear_statement] = STATE(2673), + [sym_delcommand_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_autocmd_statement] = STATE(2673), + [sym_augroup_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_user_command] = STATE(2673), + [sym_function_definition] = STATE(2673), + [sym_range_statement] = STATE(2673), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2673), + [sym_map_statement] = STATE(2673), + [sym_highlight_statement] = STATE(2673), + [sym_syntax_statement] = STATE(2673), + [sym_sign_statement] = STATE(2673), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -41481,641 +40734,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [102] = { - [sym__statement] = STATE(2682), - [sym_unknown_builtin_statement] = STATE(2682), - [sym_return_statement] = STATE(2682), - [sym_break_statement] = STATE(2682), - [sym_continue_statement] = STATE(2682), - [sym_normal_statement] = STATE(2682), - [sym_setfiletype_statement] = STATE(2682), - [sym_options_statement] = STATE(2682), - [sym_startinsert_statement] = STATE(2682), - [sym_stopinsert_statement] = STATE(2682), - [sym_scriptencoding_statement] = STATE(2682), - [sym_comclear_statement] = STATE(2682), - [sym_delcommand_statement] = STATE(2682), - [sym_runtime_statement] = STATE(2682), - [sym_wincmd_statement] = STATE(2682), - [sym_source_statement] = STATE(2682), - [sym_global_statement] = STATE(2682), - [sym_filetype_statement] = STATE(2682), - [sym_colorscheme_statement] = STATE(2682), - [sym_lua_statement] = STATE(2682), - [sym_ruby_statement] = STATE(2682), - [sym_python_statement] = STATE(2682), - [sym_perl_statement] = STATE(2682), - [sym_for_loop] = STATE(2682), - [sym_while_loop] = STATE(2682), - [sym_if_statement] = STATE(2682), - [sym_try_statement] = STATE(2682), - [sym_throw_statement] = STATE(2682), - [sym_autocmd_statement] = STATE(2682), - [sym_augroup_statement] = STATE(2682), - [sym_bang_filter_statement] = STATE(2682), - [sym_let_statement] = STATE(2682), - [sym_const_statement] = STATE(2682), - [sym_set_statement] = STATE(2682), - [sym_setlocal_statement] = STATE(2682), - [sym_unlet_statement] = STATE(2682), - [sym_call_statement] = STATE(2682), - [sym_echo_statement] = STATE(2682), - [sym_echon_statement] = STATE(2682), - [sym_echohl_statement] = STATE(2682), - [sym_echomsg_statement] = STATE(2682), - [sym_echoerr_statement] = STATE(2682), - [sym_execute_statement] = STATE(2682), - [sym_silent_statement] = STATE(2682), - [sym_user_command] = STATE(2682), - [sym_function_definition] = STATE(2682), - [sym_range_statement] = STATE(2682), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2682), - [sym_map_statement] = STATE(2682), - [sym_highlight_statement] = STATE(2682), - [sym_syntax_statement] = STATE(2682), - [sym_sign_statement] = STATE(2682), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [103] = { - [sym__statement] = STATE(2684), - [sym_unknown_builtin_statement] = STATE(2684), - [sym_return_statement] = STATE(2684), - [sym_break_statement] = STATE(2684), - [sym_continue_statement] = STATE(2684), - [sym_normal_statement] = STATE(2684), - [sym_setfiletype_statement] = STATE(2684), - [sym_options_statement] = STATE(2684), - [sym_startinsert_statement] = STATE(2684), - [sym_stopinsert_statement] = STATE(2684), - [sym_scriptencoding_statement] = STATE(2684), - [sym_comclear_statement] = STATE(2684), - [sym_delcommand_statement] = STATE(2684), - [sym_runtime_statement] = STATE(2684), - [sym_wincmd_statement] = STATE(2684), - [sym_source_statement] = STATE(2684), - [sym_global_statement] = STATE(2684), - [sym_filetype_statement] = STATE(2684), - [sym_colorscheme_statement] = STATE(2684), - [sym_lua_statement] = STATE(2684), - [sym_ruby_statement] = STATE(2684), - [sym_python_statement] = STATE(2684), - [sym_perl_statement] = STATE(2684), - [sym_for_loop] = STATE(2684), - [sym_while_loop] = STATE(2684), - [sym_if_statement] = STATE(2684), - [sym_try_statement] = STATE(2684), - [sym_throw_statement] = STATE(2684), - [sym_autocmd_statement] = STATE(2684), - [sym_augroup_statement] = STATE(2684), - [sym_bang_filter_statement] = STATE(2684), - [sym_let_statement] = STATE(2684), - [sym_const_statement] = STATE(2684), - [sym_set_statement] = STATE(2684), - [sym_setlocal_statement] = STATE(2684), - [sym_unlet_statement] = STATE(2684), - [sym_call_statement] = STATE(2684), - [sym_echo_statement] = STATE(2684), - [sym_echon_statement] = STATE(2684), - [sym_echohl_statement] = STATE(2684), - [sym_echomsg_statement] = STATE(2684), - [sym_echoerr_statement] = STATE(2684), - [sym_execute_statement] = STATE(2684), - [sym_silent_statement] = STATE(2684), - [sym_user_command] = STATE(2684), - [sym_function_definition] = STATE(2684), - [sym_range_statement] = STATE(2684), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2684), - [sym_map_statement] = STATE(2684), - [sym_highlight_statement] = STATE(2684), - [sym_syntax_statement] = STATE(2684), - [sym_sign_statement] = STATE(2684), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [104] = { - [sym__statement] = STATE(2686), - [sym_unknown_builtin_statement] = STATE(2686), - [sym_return_statement] = STATE(2686), - [sym_break_statement] = STATE(2686), - [sym_continue_statement] = STATE(2686), - [sym_normal_statement] = STATE(2686), - [sym_setfiletype_statement] = STATE(2686), - [sym_options_statement] = STATE(2686), - [sym_startinsert_statement] = STATE(2686), - [sym_stopinsert_statement] = STATE(2686), - [sym_scriptencoding_statement] = STATE(2686), - [sym_comclear_statement] = STATE(2686), - [sym_delcommand_statement] = STATE(2686), - [sym_runtime_statement] = STATE(2686), - [sym_wincmd_statement] = STATE(2686), - [sym_source_statement] = STATE(2686), - [sym_global_statement] = STATE(2686), - [sym_filetype_statement] = STATE(2686), - [sym_colorscheme_statement] = STATE(2686), - [sym_lua_statement] = STATE(2686), - [sym_ruby_statement] = STATE(2686), - [sym_python_statement] = STATE(2686), - [sym_perl_statement] = STATE(2686), - [sym_for_loop] = STATE(2686), - [sym_while_loop] = STATE(2686), - [sym_if_statement] = STATE(2686), - [sym_try_statement] = STATE(2686), - [sym_throw_statement] = STATE(2686), - [sym_autocmd_statement] = STATE(2686), - [sym_augroup_statement] = STATE(2686), - [sym_bang_filter_statement] = STATE(2686), - [sym_let_statement] = STATE(2686), - [sym_const_statement] = STATE(2686), - [sym_set_statement] = STATE(2686), - [sym_setlocal_statement] = STATE(2686), - [sym_unlet_statement] = STATE(2686), - [sym_call_statement] = STATE(2686), - [sym_echo_statement] = STATE(2686), - [sym_echon_statement] = STATE(2686), - [sym_echohl_statement] = STATE(2686), - [sym_echomsg_statement] = STATE(2686), - [sym_echoerr_statement] = STATE(2686), - [sym_execute_statement] = STATE(2686), - [sym_silent_statement] = STATE(2686), - [sym_user_command] = STATE(2686), - [sym_function_definition] = STATE(2686), - [sym_range_statement] = STATE(2686), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2686), - [sym_map_statement] = STATE(2686), - [sym_highlight_statement] = STATE(2686), - [sym_syntax_statement] = STATE(2686), - [sym_sign_statement] = STATE(2686), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [105] = { - [sym__statement] = STATE(2697), - [sym_unknown_builtin_statement] = STATE(2697), - [sym_return_statement] = STATE(2697), - [sym_break_statement] = STATE(2697), - [sym_continue_statement] = STATE(2697), - [sym_normal_statement] = STATE(2697), - [sym_setfiletype_statement] = STATE(2697), - [sym_options_statement] = STATE(2697), - [sym_startinsert_statement] = STATE(2697), - [sym_stopinsert_statement] = STATE(2697), - [sym_scriptencoding_statement] = STATE(2697), - [sym_comclear_statement] = STATE(2697), - [sym_delcommand_statement] = STATE(2697), - [sym_runtime_statement] = STATE(2697), - [sym_wincmd_statement] = STATE(2697), - [sym_source_statement] = STATE(2697), - [sym_global_statement] = STATE(2697), - [sym_filetype_statement] = STATE(2697), - [sym_colorscheme_statement] = STATE(2697), - [sym_lua_statement] = STATE(2697), - [sym_ruby_statement] = STATE(2697), - [sym_python_statement] = STATE(2697), - [sym_perl_statement] = STATE(2697), - [sym_for_loop] = STATE(2697), - [sym_while_loop] = STATE(2697), - [sym_if_statement] = STATE(2697), - [sym_try_statement] = STATE(2697), - [sym_throw_statement] = STATE(2697), - [sym_autocmd_statement] = STATE(2697), - [sym_augroup_statement] = STATE(2697), - [sym_bang_filter_statement] = STATE(2697), - [sym_let_statement] = STATE(2697), - [sym_const_statement] = STATE(2697), - [sym_set_statement] = STATE(2697), - [sym_setlocal_statement] = STATE(2697), - [sym_unlet_statement] = STATE(2697), - [sym_call_statement] = STATE(2697), - [sym_echo_statement] = STATE(2697), - [sym_echon_statement] = STATE(2697), - [sym_echohl_statement] = STATE(2697), - [sym_echomsg_statement] = STATE(2697), - [sym_echoerr_statement] = STATE(2697), - [sym_execute_statement] = STATE(2697), - [sym_silent_statement] = STATE(2697), - [sym_user_command] = STATE(2697), - [sym_function_definition] = STATE(2697), - [sym_range_statement] = STATE(2697), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2697), - [sym_map_statement] = STATE(2697), - [sym_highlight_statement] = STATE(2697), - [sym_syntax_statement] = STATE(2697), - [sym_sign_statement] = STATE(2697), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [106] = { - [sym__statement] = STATE(2846), - [sym_unknown_builtin_statement] = STATE(2846), - [sym_return_statement] = STATE(2846), - [sym_break_statement] = STATE(2846), - [sym_continue_statement] = STATE(2846), - [sym_normal_statement] = STATE(2846), - [sym_setfiletype_statement] = STATE(2846), - [sym_options_statement] = STATE(2846), - [sym_startinsert_statement] = STATE(2846), - [sym_stopinsert_statement] = STATE(2846), - [sym_scriptencoding_statement] = STATE(2846), - [sym_comclear_statement] = STATE(2846), - [sym_delcommand_statement] = STATE(2846), - [sym_runtime_statement] = STATE(2846), - [sym_wincmd_statement] = STATE(2846), - [sym_source_statement] = STATE(2846), - [sym_global_statement] = STATE(2846), - [sym_filetype_statement] = STATE(2846), - [sym_colorscheme_statement] = STATE(2846), - [sym_lua_statement] = STATE(2846), - [sym_ruby_statement] = STATE(2846), - [sym_python_statement] = STATE(2846), - [sym_perl_statement] = STATE(2846), - [sym_for_loop] = STATE(2846), - [sym_while_loop] = STATE(2846), - [sym_if_statement] = STATE(2846), - [sym_try_statement] = STATE(2846), - [sym_throw_statement] = STATE(2846), - [sym_autocmd_statement] = STATE(2846), - [sym_augroup_statement] = STATE(2846), - [sym_bang_filter_statement] = STATE(2846), - [sym_let_statement] = STATE(2846), - [sym_const_statement] = STATE(2846), - [sym_set_statement] = STATE(2846), - [sym_setlocal_statement] = STATE(2846), - [sym_unlet_statement] = STATE(2846), - [sym_call_statement] = STATE(2846), - [sym_echo_statement] = STATE(2846), - [sym_echon_statement] = STATE(2846), - [sym_echohl_statement] = STATE(2846), - [sym_echomsg_statement] = STATE(2846), - [sym_echoerr_statement] = STATE(2846), - [sym_execute_statement] = STATE(2846), - [sym_silent_statement] = STATE(2846), - [sym_user_command] = STATE(2846), - [sym_function_definition] = STATE(2846), - [sym_range_statement] = STATE(2846), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2846), - [sym_map_statement] = STATE(2846), - [sym_highlight_statement] = STATE(2846), - [sym_syntax_statement] = STATE(2846), - [sym_sign_statement] = STATE(2846), + [sym__statement] = STATE(2780), + [sym_unknown_builtin_statement] = STATE(2780), + [sym_return_statement] = STATE(2780), + [sym_break_statement] = STATE(2780), + [sym_continue_statement] = STATE(2780), + [sym_normal_statement] = STATE(2780), + [sym_setfiletype_statement] = STATE(2780), + [sym_options_statement] = STATE(2780), + [sym_startinsert_statement] = STATE(2780), + [sym_stopinsert_statement] = STATE(2780), + [sym_scriptencoding_statement] = STATE(2780), + [sym_comclear_statement] = STATE(2780), + [sym_delcommand_statement] = STATE(2780), + [sym_runtime_statement] = STATE(2780), + [sym_wincmd_statement] = STATE(2780), + [sym_source_statement] = STATE(2780), + [sym_global_statement] = STATE(2780), + [sym_filetype_statement] = STATE(2780), + [sym_colorscheme_statement] = STATE(2780), + [sym_lua_statement] = STATE(2780), + [sym_ruby_statement] = STATE(2780), + [sym_python_statement] = STATE(2780), + [sym_perl_statement] = STATE(2780), + [sym_for_loop] = STATE(2780), + [sym_while_loop] = STATE(2780), + [sym_if_statement] = STATE(2780), + [sym_try_statement] = STATE(2780), + [sym_throw_statement] = STATE(2780), + [sym_autocmd_statement] = STATE(2780), + [sym_augroup_statement] = STATE(2780), + [sym_bang_filter_statement] = STATE(2780), + [sym_let_statement] = STATE(2780), + [sym_const_statement] = STATE(2780), + [sym_set_statement] = STATE(2780), + [sym_setlocal_statement] = STATE(2780), + [sym_unlet_statement] = STATE(2780), + [sym_call_statement] = STATE(2780), + [sym_echo_statement] = STATE(2780), + [sym_echon_statement] = STATE(2780), + [sym_echohl_statement] = STATE(2780), + [sym_echomsg_statement] = STATE(2780), + [sym_echoerr_statement] = STATE(2780), + [sym_execute_statement] = STATE(2780), + [sym_silent_statement] = STATE(2780), + [sym_user_command] = STATE(2780), + [sym_function_definition] = STATE(2780), + [sym_range_statement] = STATE(2780), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2780), + [sym_map_statement] = STATE(2780), + [sym_highlight_statement] = STATE(2780), + [sym_syntax_statement] = STATE(2780), + [sym_sign_statement] = STATE(2780), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -42200,498 +40877,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [107] = { - [sym__statement] = STATE(2653), - [sym_unknown_builtin_statement] = STATE(2653), - [sym_return_statement] = STATE(2653), - [sym_break_statement] = STATE(2653), - [sym_continue_statement] = STATE(2653), - [sym_normal_statement] = STATE(2653), - [sym_setfiletype_statement] = STATE(2653), - [sym_options_statement] = STATE(2653), - [sym_startinsert_statement] = STATE(2653), - [sym_stopinsert_statement] = STATE(2653), - [sym_scriptencoding_statement] = STATE(2653), - [sym_comclear_statement] = STATE(2653), - [sym_delcommand_statement] = STATE(2653), - [sym_runtime_statement] = STATE(2653), - [sym_wincmd_statement] = STATE(2653), - [sym_source_statement] = STATE(2653), - [sym_global_statement] = STATE(2653), - [sym_filetype_statement] = STATE(2653), - [sym_colorscheme_statement] = STATE(2653), - [sym_lua_statement] = STATE(2653), - [sym_ruby_statement] = STATE(2653), - [sym_python_statement] = STATE(2653), - [sym_perl_statement] = STATE(2653), - [sym_for_loop] = STATE(2653), - [sym_while_loop] = STATE(2653), - [sym_if_statement] = STATE(2653), - [sym_try_statement] = STATE(2653), - [sym_throw_statement] = STATE(2653), - [sym_autocmd_statement] = STATE(2653), - [sym_augroup_statement] = STATE(2653), - [sym_bang_filter_statement] = STATE(2653), - [sym_let_statement] = STATE(2653), - [sym_const_statement] = STATE(2653), - [sym_set_statement] = STATE(2653), - [sym_setlocal_statement] = STATE(2653), - [sym_unlet_statement] = STATE(2653), - [sym_call_statement] = STATE(2653), - [sym_echo_statement] = STATE(2653), - [sym_echon_statement] = STATE(2653), - [sym_echohl_statement] = STATE(2653), - [sym_echomsg_statement] = STATE(2653), - [sym_echoerr_statement] = STATE(2653), - [sym_execute_statement] = STATE(2653), - [sym_silent_statement] = STATE(2653), - [sym_user_command] = STATE(2653), - [sym_function_definition] = STATE(2653), - [sym_range_statement] = STATE(2653), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2653), - [sym_map_statement] = STATE(2653), - [sym_highlight_statement] = STATE(2653), - [sym_syntax_statement] = STATE(2653), - [sym_sign_statement] = STATE(2653), - [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, - [108] = { - [sym__statement] = STATE(2646), - [sym_unknown_builtin_statement] = STATE(2646), - [sym_return_statement] = STATE(2646), - [sym_break_statement] = STATE(2646), - [sym_continue_statement] = STATE(2646), - [sym_normal_statement] = STATE(2646), - [sym_setfiletype_statement] = STATE(2646), - [sym_options_statement] = STATE(2646), - [sym_startinsert_statement] = STATE(2646), - [sym_stopinsert_statement] = STATE(2646), - [sym_scriptencoding_statement] = STATE(2646), - [sym_comclear_statement] = STATE(2646), - [sym_delcommand_statement] = STATE(2646), - [sym_runtime_statement] = STATE(2646), - [sym_wincmd_statement] = STATE(2646), - [sym_source_statement] = STATE(2646), - [sym_global_statement] = STATE(2646), - [sym_filetype_statement] = STATE(2646), - [sym_colorscheme_statement] = STATE(2646), - [sym_lua_statement] = STATE(2646), - [sym_ruby_statement] = STATE(2646), - [sym_python_statement] = STATE(2646), - [sym_perl_statement] = STATE(2646), - [sym_for_loop] = STATE(2646), - [sym_while_loop] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_try_statement] = STATE(2646), - [sym_throw_statement] = STATE(2646), - [sym_autocmd_statement] = STATE(2646), - [sym_augroup_statement] = STATE(2646), - [sym_bang_filter_statement] = STATE(2646), - [sym_let_statement] = STATE(2646), - [sym_const_statement] = STATE(2646), - [sym_set_statement] = STATE(2646), - [sym_setlocal_statement] = STATE(2646), - [sym_unlet_statement] = STATE(2646), - [sym_call_statement] = STATE(2646), - [sym_echo_statement] = STATE(2646), - [sym_echon_statement] = STATE(2646), - [sym_echohl_statement] = STATE(2646), - [sym_echomsg_statement] = STATE(2646), - [sym_echoerr_statement] = STATE(2646), - [sym_execute_statement] = STATE(2646), - [sym_silent_statement] = STATE(2646), - [sym_user_command] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_range_statement] = STATE(2646), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2646), - [sym_map_statement] = STATE(2646), - [sym_highlight_statement] = STATE(2646), - [sym_syntax_statement] = STATE(2646), - [sym_sign_statement] = STATE(2646), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [109] = { - [sym__statement] = STATE(2661), - [sym_unknown_builtin_statement] = STATE(2661), - [sym_return_statement] = STATE(2661), - [sym_break_statement] = STATE(2661), - [sym_continue_statement] = STATE(2661), - [sym_normal_statement] = STATE(2661), - [sym_setfiletype_statement] = STATE(2661), - [sym_options_statement] = STATE(2661), - [sym_startinsert_statement] = STATE(2661), - [sym_stopinsert_statement] = STATE(2661), - [sym_scriptencoding_statement] = STATE(2661), - [sym_comclear_statement] = STATE(2661), - [sym_delcommand_statement] = STATE(2661), - [sym_runtime_statement] = STATE(2661), - [sym_wincmd_statement] = STATE(2661), - [sym_source_statement] = STATE(2661), - [sym_global_statement] = STATE(2661), - [sym_filetype_statement] = STATE(2661), - [sym_colorscheme_statement] = STATE(2661), - [sym_lua_statement] = STATE(2661), - [sym_ruby_statement] = STATE(2661), - [sym_python_statement] = STATE(2661), - [sym_perl_statement] = STATE(2661), - [sym_for_loop] = STATE(2661), - [sym_while_loop] = STATE(2661), - [sym_if_statement] = STATE(2661), - [sym_try_statement] = STATE(2661), - [sym_throw_statement] = STATE(2661), - [sym_autocmd_statement] = STATE(2661), - [sym_augroup_statement] = STATE(2661), - [sym_bang_filter_statement] = STATE(2661), - [sym_let_statement] = STATE(2661), - [sym_const_statement] = STATE(2661), - [sym_set_statement] = STATE(2661), - [sym_setlocal_statement] = STATE(2661), - [sym_unlet_statement] = STATE(2661), - [sym_call_statement] = STATE(2661), - [sym_echo_statement] = STATE(2661), - [sym_echon_statement] = STATE(2661), - [sym_echohl_statement] = STATE(2661), - [sym_echomsg_statement] = STATE(2661), - [sym_echoerr_statement] = STATE(2661), - [sym_execute_statement] = STATE(2661), - [sym_silent_statement] = STATE(2661), - [sym_user_command] = STATE(2661), - [sym_function_definition] = STATE(2661), - [sym_range_statement] = STATE(2661), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2661), - [sym_map_statement] = STATE(2661), - [sym_highlight_statement] = STATE(2661), - [sym_syntax_statement] = STATE(2661), - [sym_sign_statement] = STATE(2661), - [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, - [110] = { - [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_comclear_statement] = STATE(2733), - [sym_delcommand_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_autocmd_statement] = STATE(2733), - [sym_augroup_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_user_command] = STATE(2733), - [sym_function_definition] = STATE(2733), - [sym_range_statement] = STATE(2733), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2733), - [sym_map_statement] = STATE(2733), - [sym_highlight_statement] = STATE(2733), - [sym_syntax_statement] = STATE(2733), - [sym_sign_statement] = STATE(2733), + [103] = { + [sym__statement] = STATE(2772), + [sym_unknown_builtin_statement] = STATE(2772), + [sym_return_statement] = STATE(2772), + [sym_break_statement] = STATE(2772), + [sym_continue_statement] = STATE(2772), + [sym_normal_statement] = STATE(2772), + [sym_setfiletype_statement] = STATE(2772), + [sym_options_statement] = STATE(2772), + [sym_startinsert_statement] = STATE(2772), + [sym_stopinsert_statement] = STATE(2772), + [sym_scriptencoding_statement] = STATE(2772), + [sym_comclear_statement] = STATE(2772), + [sym_delcommand_statement] = STATE(2772), + [sym_runtime_statement] = STATE(2772), + [sym_wincmd_statement] = STATE(2772), + [sym_source_statement] = STATE(2772), + [sym_global_statement] = STATE(2772), + [sym_filetype_statement] = STATE(2772), + [sym_colorscheme_statement] = STATE(2772), + [sym_lua_statement] = STATE(2772), + [sym_ruby_statement] = STATE(2772), + [sym_python_statement] = STATE(2772), + [sym_perl_statement] = STATE(2772), + [sym_for_loop] = STATE(2772), + [sym_while_loop] = STATE(2772), + [sym_if_statement] = STATE(2772), + [sym_try_statement] = STATE(2772), + [sym_throw_statement] = STATE(2772), + [sym_autocmd_statement] = STATE(2772), + [sym_augroup_statement] = STATE(2772), + [sym_bang_filter_statement] = STATE(2772), + [sym_let_statement] = STATE(2772), + [sym_const_statement] = STATE(2772), + [sym_set_statement] = STATE(2772), + [sym_setlocal_statement] = STATE(2772), + [sym_unlet_statement] = STATE(2772), + [sym_call_statement] = STATE(2772), + [sym_echo_statement] = STATE(2772), + [sym_echon_statement] = STATE(2772), + [sym_echohl_statement] = STATE(2772), + [sym_echomsg_statement] = STATE(2772), + [sym_echoerr_statement] = STATE(2772), + [sym_execute_statement] = STATE(2772), + [sym_silent_statement] = STATE(2772), + [sym_user_command] = STATE(2772), + [sym_function_definition] = STATE(2772), + [sym_range_statement] = STATE(2772), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2772), + [sym_map_statement] = STATE(2772), + [sym_highlight_statement] = STATE(2772), + [sym_syntax_statement] = STATE(2772), + [sym_sign_statement] = STATE(2772), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -42776,786 +41021,930 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [111] = { - [sym__statement] = STATE(2644), - [sym_unknown_builtin_statement] = STATE(2644), - [sym_return_statement] = STATE(2644), - [sym_break_statement] = STATE(2644), - [sym_continue_statement] = STATE(2644), - [sym_normal_statement] = STATE(2644), - [sym_setfiletype_statement] = STATE(2644), - [sym_options_statement] = STATE(2644), - [sym_startinsert_statement] = STATE(2644), - [sym_stopinsert_statement] = STATE(2644), - [sym_scriptencoding_statement] = STATE(2644), - [sym_comclear_statement] = STATE(2644), - [sym_delcommand_statement] = STATE(2644), - [sym_runtime_statement] = STATE(2644), - [sym_wincmd_statement] = STATE(2644), - [sym_source_statement] = STATE(2644), - [sym_global_statement] = STATE(2644), - [sym_filetype_statement] = STATE(2644), - [sym_colorscheme_statement] = STATE(2644), - [sym_lua_statement] = STATE(2644), - [sym_ruby_statement] = STATE(2644), - [sym_python_statement] = STATE(2644), - [sym_perl_statement] = STATE(2644), - [sym_for_loop] = STATE(2644), - [sym_while_loop] = STATE(2644), - [sym_if_statement] = STATE(2644), - [sym_try_statement] = STATE(2644), - [sym_throw_statement] = STATE(2644), - [sym_autocmd_statement] = STATE(2644), - [sym_augroup_statement] = STATE(2644), - [sym_bang_filter_statement] = STATE(2644), - [sym_let_statement] = STATE(2644), - [sym_const_statement] = STATE(2644), - [sym_set_statement] = STATE(2644), - [sym_setlocal_statement] = STATE(2644), - [sym_unlet_statement] = STATE(2644), - [sym_call_statement] = STATE(2644), - [sym_echo_statement] = STATE(2644), - [sym_echon_statement] = STATE(2644), - [sym_echohl_statement] = STATE(2644), - [sym_echomsg_statement] = STATE(2644), - [sym_echoerr_statement] = STATE(2644), - [sym_execute_statement] = STATE(2644), - [sym_silent_statement] = STATE(2644), - [sym_user_command] = STATE(2644), - [sym_function_definition] = STATE(2644), - [sym_range_statement] = STATE(2644), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2644), - [sym_map_statement] = STATE(2644), - [sym_highlight_statement] = STATE(2644), - [sym_syntax_statement] = STATE(2644), - [sym_sign_statement] = STATE(2644), + [104] = { + [sym__statement] = STATE(2893), + [sym_unknown_builtin_statement] = STATE(2893), + [sym_return_statement] = STATE(2893), + [sym_break_statement] = STATE(2893), + [sym_continue_statement] = STATE(2893), + [sym_normal_statement] = STATE(2893), + [sym_setfiletype_statement] = STATE(2893), + [sym_options_statement] = STATE(2893), + [sym_startinsert_statement] = STATE(2893), + [sym_stopinsert_statement] = STATE(2893), + [sym_scriptencoding_statement] = STATE(2893), + [sym_comclear_statement] = STATE(2893), + [sym_delcommand_statement] = STATE(2893), + [sym_runtime_statement] = STATE(2893), + [sym_wincmd_statement] = STATE(2893), + [sym_source_statement] = STATE(2893), + [sym_global_statement] = STATE(2893), + [sym_filetype_statement] = STATE(2893), + [sym_colorscheme_statement] = STATE(2893), + [sym_lua_statement] = STATE(2893), + [sym_ruby_statement] = STATE(2893), + [sym_python_statement] = STATE(2893), + [sym_perl_statement] = STATE(2893), + [sym_for_loop] = STATE(2893), + [sym_while_loop] = STATE(2893), + [sym_if_statement] = STATE(2893), + [sym_try_statement] = STATE(2893), + [sym_throw_statement] = STATE(2893), + [sym_autocmd_statement] = STATE(2893), + [sym_augroup_statement] = STATE(2893), + [sym_bang_filter_statement] = STATE(2893), + [sym_let_statement] = STATE(2893), + [sym_const_statement] = STATE(2893), + [sym_set_statement] = STATE(2893), + [sym_setlocal_statement] = STATE(2893), + [sym_unlet_statement] = STATE(2893), + [sym_call_statement] = STATE(2893), + [sym_echo_statement] = STATE(2893), + [sym_echon_statement] = STATE(2893), + [sym_echohl_statement] = STATE(2893), + [sym_echomsg_statement] = STATE(2893), + [sym_echoerr_statement] = STATE(2893), + [sym_execute_statement] = STATE(2893), + [sym_silent_statement] = STATE(2893), + [sym_user_command] = STATE(2893), + [sym_function_definition] = STATE(2893), + [sym_range_statement] = STATE(2893), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2893), + [sym_map_statement] = STATE(2893), + [sym_highlight_statement] = STATE(2893), + [sym_syntax_statement] = STATE(2893), + [sym_sign_statement] = STATE(2893), [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [112] = { - [sym__statement] = STATE(2664), - [sym_unknown_builtin_statement] = STATE(2664), - [sym_return_statement] = STATE(2664), - [sym_break_statement] = STATE(2664), - [sym_continue_statement] = STATE(2664), - [sym_normal_statement] = STATE(2664), - [sym_setfiletype_statement] = STATE(2664), - [sym_options_statement] = STATE(2664), - [sym_startinsert_statement] = STATE(2664), - [sym_stopinsert_statement] = STATE(2664), - [sym_scriptencoding_statement] = STATE(2664), - [sym_comclear_statement] = STATE(2664), - [sym_delcommand_statement] = STATE(2664), - [sym_runtime_statement] = STATE(2664), - [sym_wincmd_statement] = STATE(2664), - [sym_source_statement] = STATE(2664), - [sym_global_statement] = STATE(2664), - [sym_filetype_statement] = STATE(2664), - [sym_colorscheme_statement] = STATE(2664), - [sym_lua_statement] = STATE(2664), - [sym_ruby_statement] = STATE(2664), - [sym_python_statement] = STATE(2664), - [sym_perl_statement] = STATE(2664), - [sym_for_loop] = STATE(2664), - [sym_while_loop] = STATE(2664), - [sym_if_statement] = STATE(2664), - [sym_try_statement] = STATE(2664), - [sym_throw_statement] = STATE(2664), - [sym_autocmd_statement] = STATE(2664), - [sym_augroup_statement] = STATE(2664), - [sym_bang_filter_statement] = STATE(2664), - [sym_let_statement] = STATE(2664), - [sym_const_statement] = STATE(2664), - [sym_set_statement] = STATE(2664), - [sym_setlocal_statement] = STATE(2664), - [sym_unlet_statement] = STATE(2664), - [sym_call_statement] = STATE(2664), - [sym_echo_statement] = STATE(2664), - [sym_echon_statement] = STATE(2664), - [sym_echohl_statement] = STATE(2664), - [sym_echomsg_statement] = STATE(2664), - [sym_echoerr_statement] = STATE(2664), - [sym_execute_statement] = STATE(2664), - [sym_silent_statement] = STATE(2664), - [sym_user_command] = STATE(2664), - [sym_function_definition] = STATE(2664), - [sym_range_statement] = STATE(2664), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2664), - [sym_map_statement] = STATE(2664), - [sym_highlight_statement] = STATE(2664), - [sym_syntax_statement] = STATE(2664), - [sym_sign_statement] = STATE(2664), - [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [105] = { + [sym__statement] = STATE(2889), + [sym_unknown_builtin_statement] = STATE(2889), + [sym_return_statement] = STATE(2889), + [sym_break_statement] = STATE(2889), + [sym_continue_statement] = STATE(2889), + [sym_normal_statement] = STATE(2889), + [sym_setfiletype_statement] = STATE(2889), + [sym_options_statement] = STATE(2889), + [sym_startinsert_statement] = STATE(2889), + [sym_stopinsert_statement] = STATE(2889), + [sym_scriptencoding_statement] = STATE(2889), + [sym_comclear_statement] = STATE(2889), + [sym_delcommand_statement] = STATE(2889), + [sym_runtime_statement] = STATE(2889), + [sym_wincmd_statement] = STATE(2889), + [sym_source_statement] = STATE(2889), + [sym_global_statement] = STATE(2889), + [sym_filetype_statement] = STATE(2889), + [sym_colorscheme_statement] = STATE(2889), + [sym_lua_statement] = STATE(2889), + [sym_ruby_statement] = STATE(2889), + [sym_python_statement] = STATE(2889), + [sym_perl_statement] = STATE(2889), + [sym_for_loop] = STATE(2889), + [sym_while_loop] = STATE(2889), + [sym_if_statement] = STATE(2889), + [sym_try_statement] = STATE(2889), + [sym_throw_statement] = STATE(2889), + [sym_autocmd_statement] = STATE(2889), + [sym_augroup_statement] = STATE(2889), + [sym_bang_filter_statement] = STATE(2889), + [sym_let_statement] = STATE(2889), + [sym_const_statement] = STATE(2889), + [sym_set_statement] = STATE(2889), + [sym_setlocal_statement] = STATE(2889), + [sym_unlet_statement] = STATE(2889), + [sym_call_statement] = STATE(2889), + [sym_echo_statement] = STATE(2889), + [sym_echon_statement] = STATE(2889), + [sym_echohl_statement] = STATE(2889), + [sym_echomsg_statement] = STATE(2889), + [sym_echoerr_statement] = STATE(2889), + [sym_execute_statement] = STATE(2889), + [sym_silent_statement] = STATE(2889), + [sym_user_command] = STATE(2889), + [sym_function_definition] = STATE(2889), + [sym_range_statement] = STATE(2889), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2889), + [sym_map_statement] = STATE(2889), + [sym_highlight_statement] = STATE(2889), + [sym_syntax_statement] = STATE(2889), + [sym_sign_statement] = STATE(2889), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [113] = { - [sym__statement] = STATE(2844), - [sym_unknown_builtin_statement] = STATE(2844), - [sym_return_statement] = STATE(2844), - [sym_break_statement] = STATE(2844), - [sym_continue_statement] = STATE(2844), - [sym_normal_statement] = STATE(2844), - [sym_setfiletype_statement] = STATE(2844), - [sym_options_statement] = STATE(2844), - [sym_startinsert_statement] = STATE(2844), - [sym_stopinsert_statement] = STATE(2844), - [sym_scriptencoding_statement] = STATE(2844), - [sym_comclear_statement] = STATE(2844), - [sym_delcommand_statement] = STATE(2844), - [sym_runtime_statement] = STATE(2844), - [sym_wincmd_statement] = STATE(2844), - [sym_source_statement] = STATE(2844), - [sym_global_statement] = STATE(2844), - [sym_filetype_statement] = STATE(2844), - [sym_colorscheme_statement] = STATE(2844), - [sym_lua_statement] = STATE(2844), - [sym_ruby_statement] = STATE(2844), - [sym_python_statement] = STATE(2844), - [sym_perl_statement] = STATE(2844), - [sym_for_loop] = STATE(2844), - [sym_while_loop] = STATE(2844), - [sym_if_statement] = STATE(2844), - [sym_try_statement] = STATE(2844), - [sym_throw_statement] = STATE(2844), - [sym_autocmd_statement] = STATE(2844), - [sym_augroup_statement] = STATE(2844), - [sym_bang_filter_statement] = STATE(2844), - [sym_let_statement] = STATE(2844), - [sym_const_statement] = STATE(2844), - [sym_set_statement] = STATE(2844), - [sym_setlocal_statement] = STATE(2844), - [sym_unlet_statement] = STATE(2844), - [sym_call_statement] = STATE(2844), - [sym_echo_statement] = STATE(2844), - [sym_echon_statement] = STATE(2844), - [sym_echohl_statement] = STATE(2844), - [sym_echomsg_statement] = STATE(2844), - [sym_echoerr_statement] = STATE(2844), - [sym_execute_statement] = STATE(2844), - [sym_silent_statement] = STATE(2844), - [sym_user_command] = STATE(2844), - [sym_function_definition] = STATE(2844), - [sym_range_statement] = STATE(2844), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2844), - [sym_map_statement] = STATE(2844), - [sym_highlight_statement] = STATE(2844), - [sym_syntax_statement] = STATE(2844), - [sym_sign_statement] = STATE(2844), - [aux_sym__statement_repeat1] = STATE(141), - [anon_sym_COLON] = ACTIONS(7), - [sym_command_name] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(11), - [sym_mark] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(15), - [anon_sym_SLASH] = ACTIONS(17), - [anon_sym_DOT2] = ACTIONS(19), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DOLLAR] = ACTIONS(23), - [anon_sym_BSLASH_SLASH] = ACTIONS(25), - [anon_sym_BSLASH_QMARK] = ACTIONS(25), - [anon_sym_BSLASH_AMP] = ACTIONS(25), - [sym_integer_literal] = ACTIONS(27), - [sym_register] = ACTIONS(29), + [106] = { + [sym__statement] = STATE(2887), + [sym_unknown_builtin_statement] = STATE(2887), + [sym_return_statement] = STATE(2887), + [sym_break_statement] = STATE(2887), + [sym_continue_statement] = STATE(2887), + [sym_normal_statement] = STATE(2887), + [sym_setfiletype_statement] = STATE(2887), + [sym_options_statement] = STATE(2887), + [sym_startinsert_statement] = STATE(2887), + [sym_stopinsert_statement] = STATE(2887), + [sym_scriptencoding_statement] = STATE(2887), + [sym_comclear_statement] = STATE(2887), + [sym_delcommand_statement] = STATE(2887), + [sym_runtime_statement] = STATE(2887), + [sym_wincmd_statement] = STATE(2887), + [sym_source_statement] = STATE(2887), + [sym_global_statement] = STATE(2887), + [sym_filetype_statement] = STATE(2887), + [sym_colorscheme_statement] = STATE(2887), + [sym_lua_statement] = STATE(2887), + [sym_ruby_statement] = STATE(2887), + [sym_python_statement] = STATE(2887), + [sym_perl_statement] = STATE(2887), + [sym_for_loop] = STATE(2887), + [sym_while_loop] = STATE(2887), + [sym_if_statement] = STATE(2887), + [sym_try_statement] = STATE(2887), + [sym_throw_statement] = STATE(2887), + [sym_autocmd_statement] = STATE(2887), + [sym_augroup_statement] = STATE(2887), + [sym_bang_filter_statement] = STATE(2887), + [sym_let_statement] = STATE(2887), + [sym_const_statement] = STATE(2887), + [sym_set_statement] = STATE(2887), + [sym_setlocal_statement] = STATE(2887), + [sym_unlet_statement] = STATE(2887), + [sym_call_statement] = STATE(2887), + [sym_echo_statement] = STATE(2887), + [sym_echon_statement] = STATE(2887), + [sym_echohl_statement] = STATE(2887), + [sym_echomsg_statement] = STATE(2887), + [sym_echoerr_statement] = STATE(2887), + [sym_execute_statement] = STATE(2887), + [sym_silent_statement] = STATE(2887), + [sym_user_command] = STATE(2887), + [sym_function_definition] = STATE(2887), + [sym_range_statement] = STATE(2887), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2887), + [sym_map_statement] = STATE(2887), + [sym_highlight_statement] = STATE(2887), + [sym_syntax_statement] = STATE(2887), + [sym_sign_statement] = STATE(2887), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(33), - [sym__for] = ACTIONS(35), - [sym__while] = ACTIONS(37), - [sym__if] = ACTIONS(39), - [sym__try] = ACTIONS(41), - [sym__const] = ACTIONS(43), - [sym__normal] = ACTIONS(45), - [sym__return] = ACTIONS(47), - [sym__perl] = ACTIONS(49), - [sym__lua] = ACTIONS(51), - [sym__ruby] = ACTIONS(53), - [sym__python] = ACTIONS(55), - [sym__throw] = ACTIONS(57), - [sym__execute] = ACTIONS(59), - [sym__autocmd] = ACTIONS(61), - [sym__silent] = ACTIONS(63), - [sym__echo] = ACTIONS(65), - [sym__echon] = ACTIONS(67), - [sym__echohl] = ACTIONS(69), - [sym__echomsg] = ACTIONS(71), - [sym__echoerr] = ACTIONS(73), - [sym__map] = ACTIONS(75), - [sym__nmap] = ACTIONS(75), - [sym__vmap] = ACTIONS(75), - [sym__xmap] = ACTIONS(75), - [sym__smap] = ACTIONS(75), - [sym__omap] = ACTIONS(75), - [sym__imap] = ACTIONS(75), - [sym__lmap] = ACTIONS(75), - [sym__cmap] = ACTIONS(75), - [sym__tmap] = ACTIONS(75), - [sym__noremap] = ACTIONS(75), - [sym__vnoremap] = ACTIONS(75), - [sym__nnoremap] = ACTIONS(75), - [sym__xnoremap] = ACTIONS(75), - [sym__snoremap] = ACTIONS(75), - [sym__onoremap] = ACTIONS(75), - [sym__inoremap] = ACTIONS(75), - [sym__lnoremap] = ACTIONS(75), - [sym__cnoremap] = ACTIONS(75), - [sym__tnoremap] = ACTIONS(75), - [sym__augroup] = ACTIONS(77), - [sym__highlight] = ACTIONS(79), - [sym__syntax] = ACTIONS(81), - [sym__set] = ACTIONS(83), - [sym__setlocal] = ACTIONS(85), - [sym__setfiletype] = ACTIONS(87), - [sym__browse] = ACTIONS(89), - [sym__options] = ACTIONS(91), - [sym__startinsert] = ACTIONS(93), - [sym__stopinsert] = ACTIONS(95), - [sym__scriptencoding] = ACTIONS(97), - [sym__source] = ACTIONS(99), - [sym__global] = ACTIONS(101), - [sym__colorscheme] = ACTIONS(103), - [sym__comclear] = ACTIONS(105), - [sym__delcommand] = ACTIONS(107), - [sym__runtime] = ACTIONS(109), - [sym__wincmd] = ACTIONS(111), - [sym__sign] = ACTIONS(113), - [sym__filetype] = ACTIONS(115), - [sym__let] = ACTIONS(117), - [sym__unlet] = ACTIONS(119), - [sym__call] = ACTIONS(121), - [sym__break] = ACTIONS(123), - [sym__continue] = ACTIONS(125), - [sym_unknown_command_name] = ACTIONS(127), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [114] = { - [sym__statement] = STATE(2664), - [sym_unknown_builtin_statement] = STATE(2664), - [sym_return_statement] = STATE(2664), - [sym_break_statement] = STATE(2664), - [sym_continue_statement] = STATE(2664), - [sym_normal_statement] = STATE(2664), - [sym_setfiletype_statement] = STATE(2664), - [sym_options_statement] = STATE(2664), - [sym_startinsert_statement] = STATE(2664), - [sym_stopinsert_statement] = STATE(2664), - [sym_scriptencoding_statement] = STATE(2664), - [sym_comclear_statement] = STATE(2664), - [sym_delcommand_statement] = STATE(2664), - [sym_runtime_statement] = STATE(2664), - [sym_wincmd_statement] = STATE(2664), - [sym_source_statement] = STATE(2664), - [sym_global_statement] = STATE(2664), - [sym_filetype_statement] = STATE(2664), - [sym_colorscheme_statement] = STATE(2664), - [sym_lua_statement] = STATE(2664), - [sym_ruby_statement] = STATE(2664), - [sym_python_statement] = STATE(2664), - [sym_perl_statement] = STATE(2664), - [sym_for_loop] = STATE(2664), - [sym_while_loop] = STATE(2664), - [sym_if_statement] = STATE(2664), - [sym_try_statement] = STATE(2664), - [sym_throw_statement] = STATE(2664), - [sym_autocmd_statement] = STATE(2664), - [sym_augroup_statement] = STATE(2664), - [sym_bang_filter_statement] = STATE(2664), - [sym_let_statement] = STATE(2664), - [sym_const_statement] = STATE(2664), - [sym_set_statement] = STATE(2664), - [sym_setlocal_statement] = STATE(2664), - [sym_unlet_statement] = STATE(2664), - [sym_call_statement] = STATE(2664), - [sym_echo_statement] = STATE(2664), - [sym_echon_statement] = STATE(2664), - [sym_echohl_statement] = STATE(2664), - [sym_echomsg_statement] = STATE(2664), - [sym_echoerr_statement] = STATE(2664), - [sym_execute_statement] = STATE(2664), - [sym_silent_statement] = STATE(2664), - [sym_user_command] = STATE(2664), - [sym_function_definition] = STATE(2664), - [sym_range_statement] = STATE(2664), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2664), - [sym_map_statement] = STATE(2664), - [sym_highlight_statement] = STATE(2664), - [sym_syntax_statement] = STATE(2664), - [sym_sign_statement] = STATE(2664), + [107] = { + [sym__statement] = STATE(3213), + [sym_unknown_builtin_statement] = STATE(3213), + [sym_return_statement] = STATE(3213), + [sym_break_statement] = STATE(3213), + [sym_continue_statement] = STATE(3213), + [sym_normal_statement] = STATE(3213), + [sym_setfiletype_statement] = STATE(3213), + [sym_options_statement] = STATE(3213), + [sym_startinsert_statement] = STATE(3213), + [sym_stopinsert_statement] = STATE(3213), + [sym_scriptencoding_statement] = STATE(3213), + [sym_comclear_statement] = STATE(3213), + [sym_delcommand_statement] = STATE(3213), + [sym_runtime_statement] = STATE(3213), + [sym_wincmd_statement] = STATE(3213), + [sym_source_statement] = STATE(3213), + [sym_global_statement] = STATE(3213), + [sym_filetype_statement] = STATE(3213), + [sym_colorscheme_statement] = STATE(3213), + [sym_lua_statement] = STATE(3213), + [sym_ruby_statement] = STATE(3213), + [sym_python_statement] = STATE(3213), + [sym_perl_statement] = STATE(3213), + [sym_for_loop] = STATE(3213), + [sym_while_loop] = STATE(3213), + [sym_if_statement] = STATE(3213), + [sym_try_statement] = STATE(3213), + [sym_throw_statement] = STATE(3213), + [sym_autocmd_statement] = STATE(3213), + [sym_augroup_statement] = STATE(3213), + [sym_bang_filter_statement] = STATE(3213), + [sym_let_statement] = STATE(3213), + [sym_const_statement] = STATE(3213), + [sym_set_statement] = STATE(3213), + [sym_setlocal_statement] = STATE(3213), + [sym_unlet_statement] = STATE(3213), + [sym_call_statement] = STATE(3213), + [sym_echo_statement] = STATE(3213), + [sym_echon_statement] = STATE(3213), + [sym_echohl_statement] = STATE(3213), + [sym_echomsg_statement] = STATE(3213), + [sym_echoerr_statement] = STATE(3213), + [sym_execute_statement] = STATE(3213), + [sym_silent_statement] = STATE(3213), + [sym_user_command] = STATE(3213), + [sym_function_definition] = STATE(3213), + [sym_range_statement] = STATE(3213), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(3213), + [sym_map_statement] = STATE(3213), + [sym_highlight_statement] = STATE(3213), + [sym_syntax_statement] = STATE(3213), + [sym_sign_statement] = STATE(3213), [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [115] = { - [sym__statement] = STATE(2591), - [sym_unknown_builtin_statement] = STATE(2591), - [sym_return_statement] = STATE(2591), - [sym_break_statement] = STATE(2591), - [sym_continue_statement] = STATE(2591), - [sym_normal_statement] = STATE(2591), - [sym_setfiletype_statement] = STATE(2591), - [sym_options_statement] = STATE(2591), - [sym_startinsert_statement] = STATE(2591), - [sym_stopinsert_statement] = STATE(2591), - [sym_scriptencoding_statement] = STATE(2591), - [sym_comclear_statement] = STATE(2591), - [sym_delcommand_statement] = STATE(2591), - [sym_runtime_statement] = STATE(2591), - [sym_wincmd_statement] = STATE(2591), - [sym_source_statement] = STATE(2591), - [sym_global_statement] = STATE(2591), - [sym_filetype_statement] = STATE(2591), - [sym_colorscheme_statement] = STATE(2591), - [sym_lua_statement] = STATE(2591), - [sym_ruby_statement] = STATE(2591), - [sym_python_statement] = STATE(2591), - [sym_perl_statement] = STATE(2591), - [sym_for_loop] = STATE(2591), - [sym_while_loop] = STATE(2591), - [sym_if_statement] = STATE(2591), - [sym_try_statement] = STATE(2591), - [sym_throw_statement] = STATE(2591), - [sym_autocmd_statement] = STATE(2591), - [sym_augroup_statement] = STATE(2591), - [sym_bang_filter_statement] = STATE(2591), - [sym_let_statement] = STATE(2591), - [sym_const_statement] = STATE(2591), - [sym_set_statement] = STATE(2591), - [sym_setlocal_statement] = STATE(2591), - [sym_unlet_statement] = STATE(2591), - [sym_call_statement] = STATE(2591), - [sym_echo_statement] = STATE(2591), - [sym_echon_statement] = STATE(2591), - [sym_echohl_statement] = STATE(2591), - [sym_echomsg_statement] = STATE(2591), - [sym_echoerr_statement] = STATE(2591), - [sym_execute_statement] = STATE(2591), - [sym_silent_statement] = STATE(2591), - [sym_user_command] = STATE(2591), - [sym_function_definition] = STATE(2591), - [sym_range_statement] = STATE(2591), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2591), - [sym_map_statement] = STATE(2591), - [sym_highlight_statement] = STATE(2591), - [sym_syntax_statement] = STATE(2591), - [sym_sign_statement] = STATE(2591), + [108] = { + [sym__statement] = STATE(2874), + [sym_unknown_builtin_statement] = STATE(2874), + [sym_return_statement] = STATE(2874), + [sym_break_statement] = STATE(2874), + [sym_continue_statement] = STATE(2874), + [sym_normal_statement] = STATE(2874), + [sym_setfiletype_statement] = STATE(2874), + [sym_options_statement] = STATE(2874), + [sym_startinsert_statement] = STATE(2874), + [sym_stopinsert_statement] = STATE(2874), + [sym_scriptencoding_statement] = STATE(2874), + [sym_comclear_statement] = STATE(2874), + [sym_delcommand_statement] = STATE(2874), + [sym_runtime_statement] = STATE(2874), + [sym_wincmd_statement] = STATE(2874), + [sym_source_statement] = STATE(2874), + [sym_global_statement] = STATE(2874), + [sym_filetype_statement] = STATE(2874), + [sym_colorscheme_statement] = STATE(2874), + [sym_lua_statement] = STATE(2874), + [sym_ruby_statement] = STATE(2874), + [sym_python_statement] = STATE(2874), + [sym_perl_statement] = STATE(2874), + [sym_for_loop] = STATE(2874), + [sym_while_loop] = STATE(2874), + [sym_if_statement] = STATE(2874), + [sym_try_statement] = STATE(2874), + [sym_throw_statement] = STATE(2874), + [sym_autocmd_statement] = STATE(2874), + [sym_augroup_statement] = STATE(2874), + [sym_bang_filter_statement] = STATE(2874), + [sym_let_statement] = STATE(2874), + [sym_const_statement] = STATE(2874), + [sym_set_statement] = STATE(2874), + [sym_setlocal_statement] = STATE(2874), + [sym_unlet_statement] = STATE(2874), + [sym_call_statement] = STATE(2874), + [sym_echo_statement] = STATE(2874), + [sym_echon_statement] = STATE(2874), + [sym_echohl_statement] = STATE(2874), + [sym_echomsg_statement] = STATE(2874), + [sym_echoerr_statement] = STATE(2874), + [sym_execute_statement] = STATE(2874), + [sym_silent_statement] = STATE(2874), + [sym_user_command] = STATE(2874), + [sym_function_definition] = STATE(2874), + [sym_range_statement] = STATE(2874), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2874), + [sym_map_statement] = STATE(2874), + [sym_highlight_statement] = STATE(2874), + [sym_syntax_statement] = STATE(2874), + [sym_sign_statement] = STATE(2874), [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [116] = { - [sym__statement] = STATE(2878), - [sym_unknown_builtin_statement] = STATE(2878), - [sym_return_statement] = STATE(2878), - [sym_break_statement] = STATE(2878), - [sym_continue_statement] = STATE(2878), - [sym_normal_statement] = STATE(2878), - [sym_setfiletype_statement] = STATE(2878), - [sym_options_statement] = STATE(2878), - [sym_startinsert_statement] = STATE(2878), - [sym_stopinsert_statement] = STATE(2878), - [sym_scriptencoding_statement] = STATE(2878), - [sym_comclear_statement] = STATE(2878), - [sym_delcommand_statement] = STATE(2878), - [sym_runtime_statement] = STATE(2878), - [sym_wincmd_statement] = STATE(2878), - [sym_source_statement] = STATE(2878), - [sym_global_statement] = STATE(2878), - [sym_filetype_statement] = STATE(2878), - [sym_colorscheme_statement] = STATE(2878), - [sym_lua_statement] = STATE(2878), - [sym_ruby_statement] = STATE(2878), - [sym_python_statement] = STATE(2878), - [sym_perl_statement] = STATE(2878), - [sym_for_loop] = STATE(2878), - [sym_while_loop] = STATE(2878), - [sym_if_statement] = STATE(2878), - [sym_try_statement] = STATE(2878), - [sym_throw_statement] = STATE(2878), - [sym_autocmd_statement] = STATE(2878), - [sym_augroup_statement] = STATE(2878), - [sym_bang_filter_statement] = STATE(2878), - [sym_let_statement] = STATE(2878), - [sym_const_statement] = STATE(2878), - [sym_set_statement] = STATE(2878), - [sym_setlocal_statement] = STATE(2878), - [sym_unlet_statement] = STATE(2878), - [sym_call_statement] = STATE(2878), - [sym_echo_statement] = STATE(2878), - [sym_echon_statement] = STATE(2878), - [sym_echohl_statement] = STATE(2878), - [sym_echomsg_statement] = STATE(2878), - [sym_echoerr_statement] = STATE(2878), - [sym_execute_statement] = STATE(2878), - [sym_silent_statement] = STATE(2878), - [sym_user_command] = STATE(2878), - [sym_function_definition] = STATE(2878), - [sym_range_statement] = STATE(2878), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2878), - [sym_map_statement] = STATE(2878), - [sym_highlight_statement] = STATE(2878), - [sym_syntax_statement] = STATE(2878), - [sym_sign_statement] = STATE(2878), + [109] = { + [sym__statement] = STATE(2870), + [sym_unknown_builtin_statement] = STATE(2870), + [sym_return_statement] = STATE(2870), + [sym_break_statement] = STATE(2870), + [sym_continue_statement] = STATE(2870), + [sym_normal_statement] = STATE(2870), + [sym_setfiletype_statement] = STATE(2870), + [sym_options_statement] = STATE(2870), + [sym_startinsert_statement] = STATE(2870), + [sym_stopinsert_statement] = STATE(2870), + [sym_scriptencoding_statement] = STATE(2870), + [sym_comclear_statement] = STATE(2870), + [sym_delcommand_statement] = STATE(2870), + [sym_runtime_statement] = STATE(2870), + [sym_wincmd_statement] = STATE(2870), + [sym_source_statement] = STATE(2870), + [sym_global_statement] = STATE(2870), + [sym_filetype_statement] = STATE(2870), + [sym_colorscheme_statement] = STATE(2870), + [sym_lua_statement] = STATE(2870), + [sym_ruby_statement] = STATE(2870), + [sym_python_statement] = STATE(2870), + [sym_perl_statement] = STATE(2870), + [sym_for_loop] = STATE(2870), + [sym_while_loop] = STATE(2870), + [sym_if_statement] = STATE(2870), + [sym_try_statement] = STATE(2870), + [sym_throw_statement] = STATE(2870), + [sym_autocmd_statement] = STATE(2870), + [sym_augroup_statement] = STATE(2870), + [sym_bang_filter_statement] = STATE(2870), + [sym_let_statement] = STATE(2870), + [sym_const_statement] = STATE(2870), + [sym_set_statement] = STATE(2870), + [sym_setlocal_statement] = STATE(2870), + [sym_unlet_statement] = STATE(2870), + [sym_call_statement] = STATE(2870), + [sym_echo_statement] = STATE(2870), + [sym_echon_statement] = STATE(2870), + [sym_echohl_statement] = STATE(2870), + [sym_echomsg_statement] = STATE(2870), + [sym_echoerr_statement] = STATE(2870), + [sym_execute_statement] = STATE(2870), + [sym_silent_statement] = STATE(2870), + [sym_user_command] = STATE(2870), + [sym_function_definition] = STATE(2870), + [sym_range_statement] = STATE(2870), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2870), + [sym_map_statement] = STATE(2870), + [sym_highlight_statement] = STATE(2870), + [sym_syntax_statement] = STATE(2870), + [sym_sign_statement] = STATE(2870), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [110] = { + [sym__statement] = STATE(2608), + [sym_unknown_builtin_statement] = STATE(2608), + [sym_return_statement] = STATE(2608), + [sym_break_statement] = STATE(2608), + [sym_continue_statement] = STATE(2608), + [sym_normal_statement] = STATE(2608), + [sym_setfiletype_statement] = STATE(2608), + [sym_options_statement] = STATE(2608), + [sym_startinsert_statement] = STATE(2608), + [sym_stopinsert_statement] = STATE(2608), + [sym_scriptencoding_statement] = STATE(2608), + [sym_comclear_statement] = STATE(2608), + [sym_delcommand_statement] = STATE(2608), + [sym_runtime_statement] = STATE(2608), + [sym_wincmd_statement] = STATE(2608), + [sym_source_statement] = STATE(2608), + [sym_global_statement] = STATE(2608), + [sym_filetype_statement] = STATE(2608), + [sym_colorscheme_statement] = STATE(2608), + [sym_lua_statement] = STATE(2608), + [sym_ruby_statement] = STATE(2608), + [sym_python_statement] = STATE(2608), + [sym_perl_statement] = STATE(2608), + [sym_for_loop] = STATE(2608), + [sym_while_loop] = STATE(2608), + [sym_if_statement] = STATE(2608), + [sym_try_statement] = STATE(2608), + [sym_throw_statement] = STATE(2608), + [sym_autocmd_statement] = STATE(2608), + [sym_augroup_statement] = STATE(2608), + [sym_bang_filter_statement] = STATE(2608), + [sym_let_statement] = STATE(2608), + [sym_const_statement] = STATE(2608), + [sym_set_statement] = STATE(2608), + [sym_setlocal_statement] = STATE(2608), + [sym_unlet_statement] = STATE(2608), + [sym_call_statement] = STATE(2608), + [sym_echo_statement] = STATE(2608), + [sym_echon_statement] = STATE(2608), + [sym_echohl_statement] = STATE(2608), + [sym_echomsg_statement] = STATE(2608), + [sym_echoerr_statement] = STATE(2608), + [sym_execute_statement] = STATE(2608), + [sym_silent_statement] = STATE(2608), + [sym_user_command] = STATE(2608), + [sym_function_definition] = STATE(2608), + [sym_range_statement] = STATE(2608), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2608), + [sym_map_statement] = STATE(2608), + [sym_highlight_statement] = STATE(2608), + [sym_syntax_statement] = STATE(2608), + [sym_sign_statement] = STATE(2608), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -43640,210 +42029,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [117] = { - [sym__statement] = STATE(2666), - [sym_unknown_builtin_statement] = STATE(2666), - [sym_return_statement] = STATE(2666), - [sym_break_statement] = STATE(2666), - [sym_continue_statement] = STATE(2666), - [sym_normal_statement] = STATE(2666), - [sym_setfiletype_statement] = STATE(2666), - [sym_options_statement] = STATE(2666), - [sym_startinsert_statement] = STATE(2666), - [sym_stopinsert_statement] = STATE(2666), - [sym_scriptencoding_statement] = STATE(2666), - [sym_comclear_statement] = STATE(2666), - [sym_delcommand_statement] = STATE(2666), - [sym_runtime_statement] = STATE(2666), - [sym_wincmd_statement] = STATE(2666), - [sym_source_statement] = STATE(2666), - [sym_global_statement] = STATE(2666), - [sym_filetype_statement] = STATE(2666), - [sym_colorscheme_statement] = STATE(2666), - [sym_lua_statement] = STATE(2666), - [sym_ruby_statement] = STATE(2666), - [sym_python_statement] = STATE(2666), - [sym_perl_statement] = STATE(2666), - [sym_for_loop] = STATE(2666), - [sym_while_loop] = STATE(2666), - [sym_if_statement] = STATE(2666), - [sym_try_statement] = STATE(2666), - [sym_throw_statement] = STATE(2666), - [sym_autocmd_statement] = STATE(2666), - [sym_augroup_statement] = STATE(2666), - [sym_bang_filter_statement] = STATE(2666), - [sym_let_statement] = STATE(2666), - [sym_const_statement] = STATE(2666), - [sym_set_statement] = STATE(2666), - [sym_setlocal_statement] = STATE(2666), - [sym_unlet_statement] = STATE(2666), - [sym_call_statement] = STATE(2666), - [sym_echo_statement] = STATE(2666), - [sym_echon_statement] = STATE(2666), - [sym_echohl_statement] = STATE(2666), - [sym_echomsg_statement] = STATE(2666), - [sym_echoerr_statement] = STATE(2666), - [sym_execute_statement] = STATE(2666), - [sym_silent_statement] = STATE(2666), - [sym_user_command] = STATE(2666), - [sym_function_definition] = STATE(2666), - [sym_range_statement] = STATE(2666), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2666), - [sym_map_statement] = STATE(2666), - [sym_highlight_statement] = STATE(2666), - [sym_syntax_statement] = STATE(2666), - [sym_sign_statement] = STATE(2666), + [111] = { + [sym__statement] = STATE(2874), + [sym_unknown_builtin_statement] = STATE(2874), + [sym_return_statement] = STATE(2874), + [sym_break_statement] = STATE(2874), + [sym_continue_statement] = STATE(2874), + [sym_normal_statement] = STATE(2874), + [sym_setfiletype_statement] = STATE(2874), + [sym_options_statement] = STATE(2874), + [sym_startinsert_statement] = STATE(2874), + [sym_stopinsert_statement] = STATE(2874), + [sym_scriptencoding_statement] = STATE(2874), + [sym_comclear_statement] = STATE(2874), + [sym_delcommand_statement] = STATE(2874), + [sym_runtime_statement] = STATE(2874), + [sym_wincmd_statement] = STATE(2874), + [sym_source_statement] = STATE(2874), + [sym_global_statement] = STATE(2874), + [sym_filetype_statement] = STATE(2874), + [sym_colorscheme_statement] = STATE(2874), + [sym_lua_statement] = STATE(2874), + [sym_ruby_statement] = STATE(2874), + [sym_python_statement] = STATE(2874), + [sym_perl_statement] = STATE(2874), + [sym_for_loop] = STATE(2874), + [sym_while_loop] = STATE(2874), + [sym_if_statement] = STATE(2874), + [sym_try_statement] = STATE(2874), + [sym_throw_statement] = STATE(2874), + [sym_autocmd_statement] = STATE(2874), + [sym_augroup_statement] = STATE(2874), + [sym_bang_filter_statement] = STATE(2874), + [sym_let_statement] = STATE(2874), + [sym_const_statement] = STATE(2874), + [sym_set_statement] = STATE(2874), + [sym_setlocal_statement] = STATE(2874), + [sym_unlet_statement] = STATE(2874), + [sym_call_statement] = STATE(2874), + [sym_echo_statement] = STATE(2874), + [sym_echon_statement] = STATE(2874), + [sym_echohl_statement] = STATE(2874), + [sym_echomsg_statement] = STATE(2874), + [sym_echoerr_statement] = STATE(2874), + [sym_execute_statement] = STATE(2874), + [sym_silent_statement] = STATE(2874), + [sym_user_command] = STATE(2874), + [sym_function_definition] = STATE(2874), + [sym_range_statement] = STATE(2874), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2874), + [sym_map_statement] = STATE(2874), + [sym_highlight_statement] = STATE(2874), + [sym_syntax_statement] = STATE(2874), + [sym_sign_statement] = STATE(2874), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, - [118] = { - [sym__statement] = STATE(2866), - [sym_unknown_builtin_statement] = STATE(2866), - [sym_return_statement] = STATE(2866), - [sym_break_statement] = STATE(2866), - [sym_continue_statement] = STATE(2866), - [sym_normal_statement] = STATE(2866), - [sym_setfiletype_statement] = STATE(2866), - [sym_options_statement] = STATE(2866), - [sym_startinsert_statement] = STATE(2866), - [sym_stopinsert_statement] = STATE(2866), - [sym_scriptencoding_statement] = STATE(2866), - [sym_comclear_statement] = STATE(2866), - [sym_delcommand_statement] = STATE(2866), - [sym_runtime_statement] = STATE(2866), - [sym_wincmd_statement] = STATE(2866), - [sym_source_statement] = STATE(2866), - [sym_global_statement] = STATE(2866), - [sym_filetype_statement] = STATE(2866), - [sym_colorscheme_statement] = STATE(2866), - [sym_lua_statement] = STATE(2866), - [sym_ruby_statement] = STATE(2866), - [sym_python_statement] = STATE(2866), - [sym_perl_statement] = STATE(2866), - [sym_for_loop] = STATE(2866), - [sym_while_loop] = STATE(2866), - [sym_if_statement] = STATE(2866), - [sym_try_statement] = STATE(2866), - [sym_throw_statement] = STATE(2866), - [sym_autocmd_statement] = STATE(2866), - [sym_augroup_statement] = STATE(2866), - [sym_bang_filter_statement] = STATE(2866), - [sym_let_statement] = STATE(2866), - [sym_const_statement] = STATE(2866), - [sym_set_statement] = STATE(2866), - [sym_setlocal_statement] = STATE(2866), - [sym_unlet_statement] = STATE(2866), - [sym_call_statement] = STATE(2866), - [sym_echo_statement] = STATE(2866), - [sym_echon_statement] = STATE(2866), - [sym_echohl_statement] = STATE(2866), - [sym_echomsg_statement] = STATE(2866), - [sym_echoerr_statement] = STATE(2866), - [sym_execute_statement] = STATE(2866), - [sym_silent_statement] = STATE(2866), - [sym_user_command] = STATE(2866), - [sym_function_definition] = STATE(2866), - [sym_range_statement] = STATE(2866), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2866), - [sym_map_statement] = STATE(2866), - [sym_highlight_statement] = STATE(2866), - [sym_syntax_statement] = STATE(2866), - [sym_sign_statement] = STATE(2866), + [112] = { + [sym__statement] = STATE(2676), + [sym_unknown_builtin_statement] = STATE(2676), + [sym_return_statement] = STATE(2676), + [sym_break_statement] = STATE(2676), + [sym_continue_statement] = STATE(2676), + [sym_normal_statement] = STATE(2676), + [sym_setfiletype_statement] = STATE(2676), + [sym_options_statement] = STATE(2676), + [sym_startinsert_statement] = STATE(2676), + [sym_stopinsert_statement] = STATE(2676), + [sym_scriptencoding_statement] = STATE(2676), + [sym_comclear_statement] = STATE(2676), + [sym_delcommand_statement] = STATE(2676), + [sym_runtime_statement] = STATE(2676), + [sym_wincmd_statement] = STATE(2676), + [sym_source_statement] = STATE(2676), + [sym_global_statement] = STATE(2676), + [sym_filetype_statement] = STATE(2676), + [sym_colorscheme_statement] = STATE(2676), + [sym_lua_statement] = STATE(2676), + [sym_ruby_statement] = STATE(2676), + [sym_python_statement] = STATE(2676), + [sym_perl_statement] = STATE(2676), + [sym_for_loop] = STATE(2676), + [sym_while_loop] = STATE(2676), + [sym_if_statement] = STATE(2676), + [sym_try_statement] = STATE(2676), + [sym_throw_statement] = STATE(2676), + [sym_autocmd_statement] = STATE(2676), + [sym_augroup_statement] = STATE(2676), + [sym_bang_filter_statement] = STATE(2676), + [sym_let_statement] = STATE(2676), + [sym_const_statement] = STATE(2676), + [sym_set_statement] = STATE(2676), + [sym_setlocal_statement] = STATE(2676), + [sym_unlet_statement] = STATE(2676), + [sym_call_statement] = STATE(2676), + [sym_echo_statement] = STATE(2676), + [sym_echon_statement] = STATE(2676), + [sym_echohl_statement] = STATE(2676), + [sym_echomsg_statement] = STATE(2676), + [sym_echoerr_statement] = STATE(2676), + [sym_execute_statement] = STATE(2676), + [sym_silent_statement] = STATE(2676), + [sym_user_command] = STATE(2676), + [sym_function_definition] = STATE(2676), + [sym_range_statement] = STATE(2676), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2676), + [sym_map_statement] = STATE(2676), + [sym_highlight_statement] = STATE(2676), + [sym_syntax_statement] = STATE(2676), + [sym_sign_statement] = STATE(2676), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -43928,66 +42317,498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [119] = { - [sym__statement] = STATE(2544), - [sym_unknown_builtin_statement] = STATE(2544), - [sym_return_statement] = STATE(2544), - [sym_break_statement] = STATE(2544), - [sym_continue_statement] = STATE(2544), - [sym_normal_statement] = STATE(2544), - [sym_setfiletype_statement] = STATE(2544), - [sym_options_statement] = STATE(2544), - [sym_startinsert_statement] = STATE(2544), - [sym_stopinsert_statement] = STATE(2544), - [sym_scriptencoding_statement] = STATE(2544), - [sym_comclear_statement] = STATE(2544), - [sym_delcommand_statement] = STATE(2544), - [sym_runtime_statement] = STATE(2544), - [sym_wincmd_statement] = STATE(2544), - [sym_source_statement] = STATE(2544), - [sym_global_statement] = STATE(2544), - [sym_filetype_statement] = STATE(2544), - [sym_colorscheme_statement] = STATE(2544), - [sym_lua_statement] = STATE(2544), - [sym_ruby_statement] = STATE(2544), - [sym_python_statement] = STATE(2544), - [sym_perl_statement] = STATE(2544), - [sym_for_loop] = STATE(2544), - [sym_while_loop] = STATE(2544), - [sym_if_statement] = STATE(2544), - [sym_try_statement] = STATE(2544), - [sym_throw_statement] = STATE(2544), - [sym_autocmd_statement] = STATE(2544), - [sym_augroup_statement] = STATE(2544), - [sym_bang_filter_statement] = STATE(2544), - [sym_let_statement] = STATE(2544), - [sym_const_statement] = STATE(2544), - [sym_set_statement] = STATE(2544), - [sym_setlocal_statement] = STATE(2544), - [sym_unlet_statement] = STATE(2544), - [sym_call_statement] = STATE(2544), - [sym_echo_statement] = STATE(2544), - [sym_echon_statement] = STATE(2544), - [sym_echohl_statement] = STATE(2544), - [sym_echomsg_statement] = STATE(2544), - [sym_echoerr_statement] = STATE(2544), - [sym_execute_statement] = STATE(2544), - [sym_silent_statement] = STATE(2544), - [sym_user_command] = STATE(2544), - [sym_function_definition] = STATE(2544), - [sym_range_statement] = STATE(2544), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2544), - [sym_map_statement] = STATE(2544), - [sym_highlight_statement] = STATE(2544), - [sym_syntax_statement] = STATE(2544), - [sym_sign_statement] = STATE(2544), + [113] = { + [sym__statement] = STATE(2869), + [sym_unknown_builtin_statement] = STATE(2869), + [sym_return_statement] = STATE(2869), + [sym_break_statement] = STATE(2869), + [sym_continue_statement] = STATE(2869), + [sym_normal_statement] = STATE(2869), + [sym_setfiletype_statement] = STATE(2869), + [sym_options_statement] = STATE(2869), + [sym_startinsert_statement] = STATE(2869), + [sym_stopinsert_statement] = STATE(2869), + [sym_scriptencoding_statement] = STATE(2869), + [sym_comclear_statement] = STATE(2869), + [sym_delcommand_statement] = STATE(2869), + [sym_runtime_statement] = STATE(2869), + [sym_wincmd_statement] = STATE(2869), + [sym_source_statement] = STATE(2869), + [sym_global_statement] = STATE(2869), + [sym_filetype_statement] = STATE(2869), + [sym_colorscheme_statement] = STATE(2869), + [sym_lua_statement] = STATE(2869), + [sym_ruby_statement] = STATE(2869), + [sym_python_statement] = STATE(2869), + [sym_perl_statement] = STATE(2869), + [sym_for_loop] = STATE(2869), + [sym_while_loop] = STATE(2869), + [sym_if_statement] = STATE(2869), + [sym_try_statement] = STATE(2869), + [sym_throw_statement] = STATE(2869), + [sym_autocmd_statement] = STATE(2869), + [sym_augroup_statement] = STATE(2869), + [sym_bang_filter_statement] = STATE(2869), + [sym_let_statement] = STATE(2869), + [sym_const_statement] = STATE(2869), + [sym_set_statement] = STATE(2869), + [sym_setlocal_statement] = STATE(2869), + [sym_unlet_statement] = STATE(2869), + [sym_call_statement] = STATE(2869), + [sym_echo_statement] = STATE(2869), + [sym_echon_statement] = STATE(2869), + [sym_echohl_statement] = STATE(2869), + [sym_echomsg_statement] = STATE(2869), + [sym_echoerr_statement] = STATE(2869), + [sym_execute_statement] = STATE(2869), + [sym_silent_statement] = STATE(2869), + [sym_user_command] = STATE(2869), + [sym_function_definition] = STATE(2869), + [sym_range_statement] = STATE(2869), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2869), + [sym_map_statement] = STATE(2869), + [sym_highlight_statement] = STATE(2869), + [sym_syntax_statement] = STATE(2869), + [sym_sign_statement] = STATE(2869), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [114] = { + [sym__statement] = STATE(2861), + [sym_unknown_builtin_statement] = STATE(2861), + [sym_return_statement] = STATE(2861), + [sym_break_statement] = STATE(2861), + [sym_continue_statement] = STATE(2861), + [sym_normal_statement] = STATE(2861), + [sym_setfiletype_statement] = STATE(2861), + [sym_options_statement] = STATE(2861), + [sym_startinsert_statement] = STATE(2861), + [sym_stopinsert_statement] = STATE(2861), + [sym_scriptencoding_statement] = STATE(2861), + [sym_comclear_statement] = STATE(2861), + [sym_delcommand_statement] = STATE(2861), + [sym_runtime_statement] = STATE(2861), + [sym_wincmd_statement] = STATE(2861), + [sym_source_statement] = STATE(2861), + [sym_global_statement] = STATE(2861), + [sym_filetype_statement] = STATE(2861), + [sym_colorscheme_statement] = STATE(2861), + [sym_lua_statement] = STATE(2861), + [sym_ruby_statement] = STATE(2861), + [sym_python_statement] = STATE(2861), + [sym_perl_statement] = STATE(2861), + [sym_for_loop] = STATE(2861), + [sym_while_loop] = STATE(2861), + [sym_if_statement] = STATE(2861), + [sym_try_statement] = STATE(2861), + [sym_throw_statement] = STATE(2861), + [sym_autocmd_statement] = STATE(2861), + [sym_augroup_statement] = STATE(2861), + [sym_bang_filter_statement] = STATE(2861), + [sym_let_statement] = STATE(2861), + [sym_const_statement] = STATE(2861), + [sym_set_statement] = STATE(2861), + [sym_setlocal_statement] = STATE(2861), + [sym_unlet_statement] = STATE(2861), + [sym_call_statement] = STATE(2861), + [sym_echo_statement] = STATE(2861), + [sym_echon_statement] = STATE(2861), + [sym_echohl_statement] = STATE(2861), + [sym_echomsg_statement] = STATE(2861), + [sym_echoerr_statement] = STATE(2861), + [sym_execute_statement] = STATE(2861), + [sym_silent_statement] = STATE(2861), + [sym_user_command] = STATE(2861), + [sym_function_definition] = STATE(2861), + [sym_range_statement] = STATE(2861), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2861), + [sym_map_statement] = STATE(2861), + [sym_highlight_statement] = STATE(2861), + [sym_syntax_statement] = STATE(2861), + [sym_sign_statement] = STATE(2861), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [115] = { + [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_comclear_statement] = STATE(2815), + [sym_delcommand_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_autocmd_statement] = STATE(2815), + [sym_augroup_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_user_command] = STATE(2815), + [sym_function_definition] = STATE(2815), + [sym_range_statement] = STATE(2815), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2815), + [sym_map_statement] = STATE(2815), + [sym_highlight_statement] = STATE(2815), + [sym_syntax_statement] = STATE(2815), + [sym_sign_statement] = STATE(2815), + [aux_sym__statement_repeat1] = STATE(142), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, + [116] = { + [sym__statement] = STATE(2760), + [sym_unknown_builtin_statement] = STATE(2760), + [sym_return_statement] = STATE(2760), + [sym_break_statement] = STATE(2760), + [sym_continue_statement] = STATE(2760), + [sym_normal_statement] = STATE(2760), + [sym_setfiletype_statement] = STATE(2760), + [sym_options_statement] = STATE(2760), + [sym_startinsert_statement] = STATE(2760), + [sym_stopinsert_statement] = STATE(2760), + [sym_scriptencoding_statement] = STATE(2760), + [sym_comclear_statement] = STATE(2760), + [sym_delcommand_statement] = STATE(2760), + [sym_runtime_statement] = STATE(2760), + [sym_wincmd_statement] = STATE(2760), + [sym_source_statement] = STATE(2760), + [sym_global_statement] = STATE(2760), + [sym_filetype_statement] = STATE(2760), + [sym_colorscheme_statement] = STATE(2760), + [sym_lua_statement] = STATE(2760), + [sym_ruby_statement] = STATE(2760), + [sym_python_statement] = STATE(2760), + [sym_perl_statement] = STATE(2760), + [sym_for_loop] = STATE(2760), + [sym_while_loop] = STATE(2760), + [sym_if_statement] = STATE(2760), + [sym_try_statement] = STATE(2760), + [sym_throw_statement] = STATE(2760), + [sym_autocmd_statement] = STATE(2760), + [sym_augroup_statement] = STATE(2760), + [sym_bang_filter_statement] = STATE(2760), + [sym_let_statement] = STATE(2760), + [sym_const_statement] = STATE(2760), + [sym_set_statement] = STATE(2760), + [sym_setlocal_statement] = STATE(2760), + [sym_unlet_statement] = STATE(2760), + [sym_call_statement] = STATE(2760), + [sym_echo_statement] = STATE(2760), + [sym_echon_statement] = STATE(2760), + [sym_echohl_statement] = STATE(2760), + [sym_echomsg_statement] = STATE(2760), + [sym_echoerr_statement] = STATE(2760), + [sym_execute_statement] = STATE(2760), + [sym_silent_statement] = STATE(2760), + [sym_user_command] = STATE(2760), + [sym_function_definition] = STATE(2760), + [sym_range_statement] = STATE(2760), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2760), + [sym_map_statement] = STATE(2760), + [sym_highlight_statement] = STATE(2760), + [sym_syntax_statement] = STATE(2760), + [sym_sign_statement] = STATE(2760), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -44072,7 +42893,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [120] = { + [117] = { + [sym__statement] = STATE(2868), + [sym_unknown_builtin_statement] = STATE(2868), + [sym_return_statement] = STATE(2868), + [sym_break_statement] = STATE(2868), + [sym_continue_statement] = STATE(2868), + [sym_normal_statement] = STATE(2868), + [sym_setfiletype_statement] = STATE(2868), + [sym_options_statement] = STATE(2868), + [sym_startinsert_statement] = STATE(2868), + [sym_stopinsert_statement] = STATE(2868), + [sym_scriptencoding_statement] = STATE(2868), + [sym_comclear_statement] = STATE(2868), + [sym_delcommand_statement] = STATE(2868), + [sym_runtime_statement] = STATE(2868), + [sym_wincmd_statement] = STATE(2868), + [sym_source_statement] = STATE(2868), + [sym_global_statement] = STATE(2868), + [sym_filetype_statement] = STATE(2868), + [sym_colorscheme_statement] = STATE(2868), + [sym_lua_statement] = STATE(2868), + [sym_ruby_statement] = STATE(2868), + [sym_python_statement] = STATE(2868), + [sym_perl_statement] = STATE(2868), + [sym_for_loop] = STATE(2868), + [sym_while_loop] = STATE(2868), + [sym_if_statement] = STATE(2868), + [sym_try_statement] = STATE(2868), + [sym_throw_statement] = STATE(2868), + [sym_autocmd_statement] = STATE(2868), + [sym_augroup_statement] = STATE(2868), + [sym_bang_filter_statement] = STATE(2868), + [sym_let_statement] = STATE(2868), + [sym_const_statement] = STATE(2868), + [sym_set_statement] = STATE(2868), + [sym_setlocal_statement] = STATE(2868), + [sym_unlet_statement] = STATE(2868), + [sym_call_statement] = STATE(2868), + [sym_echo_statement] = STATE(2868), + [sym_echon_statement] = STATE(2868), + [sym_echohl_statement] = STATE(2868), + [sym_echomsg_statement] = STATE(2868), + [sym_echoerr_statement] = STATE(2868), + [sym_execute_statement] = STATE(2868), + [sym_silent_statement] = STATE(2868), + [sym_user_command] = STATE(2868), + [sym_function_definition] = STATE(2868), + [sym_range_statement] = STATE(2868), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2868), + [sym_map_statement] = STATE(2868), + [sym_highlight_statement] = STATE(2868), + [sym_syntax_statement] = STATE(2868), + [sym_sign_statement] = STATE(2868), + [aux_sym__statement_repeat1] = STATE(142), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, + [118] = { [sym__statement] = STATE(2851), [sym_unknown_builtin_statement] = STATE(2851), [sym_return_statement] = STATE(2851), @@ -44120,18 +43085,594 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_user_command] = STATE(2851), [sym_function_definition] = STATE(2851), [sym_range_statement] = STATE(2851), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), [sym_register_statement] = STATE(2851), [sym_map_statement] = STATE(2851), [sym_highlight_statement] = STATE(2851), [sym_syntax_statement] = STATE(2851), [sym_sign_statement] = STATE(2851), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [119] = { + [sym__statement] = STATE(2724), + [sym_unknown_builtin_statement] = STATE(2724), + [sym_return_statement] = STATE(2724), + [sym_break_statement] = STATE(2724), + [sym_continue_statement] = STATE(2724), + [sym_normal_statement] = STATE(2724), + [sym_setfiletype_statement] = STATE(2724), + [sym_options_statement] = STATE(2724), + [sym_startinsert_statement] = STATE(2724), + [sym_stopinsert_statement] = STATE(2724), + [sym_scriptencoding_statement] = STATE(2724), + [sym_comclear_statement] = STATE(2724), + [sym_delcommand_statement] = STATE(2724), + [sym_runtime_statement] = STATE(2724), + [sym_wincmd_statement] = STATE(2724), + [sym_source_statement] = STATE(2724), + [sym_global_statement] = STATE(2724), + [sym_filetype_statement] = STATE(2724), + [sym_colorscheme_statement] = STATE(2724), + [sym_lua_statement] = STATE(2724), + [sym_ruby_statement] = STATE(2724), + [sym_python_statement] = STATE(2724), + [sym_perl_statement] = STATE(2724), + [sym_for_loop] = STATE(2724), + [sym_while_loop] = STATE(2724), + [sym_if_statement] = STATE(2724), + [sym_try_statement] = STATE(2724), + [sym_throw_statement] = STATE(2724), + [sym_autocmd_statement] = STATE(2724), + [sym_augroup_statement] = STATE(2724), + [sym_bang_filter_statement] = STATE(2724), + [sym_let_statement] = STATE(2724), + [sym_const_statement] = STATE(2724), + [sym_set_statement] = STATE(2724), + [sym_setlocal_statement] = STATE(2724), + [sym_unlet_statement] = STATE(2724), + [sym_call_statement] = STATE(2724), + [sym_echo_statement] = STATE(2724), + [sym_echon_statement] = STATE(2724), + [sym_echohl_statement] = STATE(2724), + [sym_echomsg_statement] = STATE(2724), + [sym_echoerr_statement] = STATE(2724), + [sym_execute_statement] = STATE(2724), + [sym_silent_statement] = STATE(2724), + [sym_user_command] = STATE(2724), + [sym_function_definition] = STATE(2724), + [sym_range_statement] = STATE(2724), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2724), + [sym_map_statement] = STATE(2724), + [sym_highlight_statement] = STATE(2724), + [sym_syntax_statement] = STATE(2724), + [sym_sign_statement] = STATE(2724), + [aux_sym__statement_repeat1] = STATE(142), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, + [120] = { + [sym__statement] = STATE(2849), + [sym_unknown_builtin_statement] = STATE(2849), + [sym_return_statement] = STATE(2849), + [sym_break_statement] = STATE(2849), + [sym_continue_statement] = STATE(2849), + [sym_normal_statement] = STATE(2849), + [sym_setfiletype_statement] = STATE(2849), + [sym_options_statement] = STATE(2849), + [sym_startinsert_statement] = STATE(2849), + [sym_stopinsert_statement] = STATE(2849), + [sym_scriptencoding_statement] = STATE(2849), + [sym_comclear_statement] = STATE(2849), + [sym_delcommand_statement] = STATE(2849), + [sym_runtime_statement] = STATE(2849), + [sym_wincmd_statement] = STATE(2849), + [sym_source_statement] = STATE(2849), + [sym_global_statement] = STATE(2849), + [sym_filetype_statement] = STATE(2849), + [sym_colorscheme_statement] = STATE(2849), + [sym_lua_statement] = STATE(2849), + [sym_ruby_statement] = STATE(2849), + [sym_python_statement] = STATE(2849), + [sym_perl_statement] = STATE(2849), + [sym_for_loop] = STATE(2849), + [sym_while_loop] = STATE(2849), + [sym_if_statement] = STATE(2849), + [sym_try_statement] = STATE(2849), + [sym_throw_statement] = STATE(2849), + [sym_autocmd_statement] = STATE(2849), + [sym_augroup_statement] = STATE(2849), + [sym_bang_filter_statement] = STATE(2849), + [sym_let_statement] = STATE(2849), + [sym_const_statement] = STATE(2849), + [sym_set_statement] = STATE(2849), + [sym_setlocal_statement] = STATE(2849), + [sym_unlet_statement] = STATE(2849), + [sym_call_statement] = STATE(2849), + [sym_echo_statement] = STATE(2849), + [sym_echon_statement] = STATE(2849), + [sym_echohl_statement] = STATE(2849), + [sym_echomsg_statement] = STATE(2849), + [sym_echoerr_statement] = STATE(2849), + [sym_execute_statement] = STATE(2849), + [sym_silent_statement] = STATE(2849), + [sym_user_command] = STATE(2849), + [sym_function_definition] = STATE(2849), + [sym_range_statement] = STATE(2849), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2849), + [sym_map_statement] = STATE(2849), + [sym_highlight_statement] = STATE(2849), + [sym_syntax_statement] = STATE(2849), + [sym_sign_statement] = STATE(2849), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [121] = { + [sym__statement] = STATE(2828), + [sym_unknown_builtin_statement] = STATE(2828), + [sym_return_statement] = STATE(2828), + [sym_break_statement] = STATE(2828), + [sym_continue_statement] = STATE(2828), + [sym_normal_statement] = STATE(2828), + [sym_setfiletype_statement] = STATE(2828), + [sym_options_statement] = STATE(2828), + [sym_startinsert_statement] = STATE(2828), + [sym_stopinsert_statement] = STATE(2828), + [sym_scriptencoding_statement] = STATE(2828), + [sym_comclear_statement] = STATE(2828), + [sym_delcommand_statement] = STATE(2828), + [sym_runtime_statement] = STATE(2828), + [sym_wincmd_statement] = STATE(2828), + [sym_source_statement] = STATE(2828), + [sym_global_statement] = STATE(2828), + [sym_filetype_statement] = STATE(2828), + [sym_colorscheme_statement] = STATE(2828), + [sym_lua_statement] = STATE(2828), + [sym_ruby_statement] = STATE(2828), + [sym_python_statement] = STATE(2828), + [sym_perl_statement] = STATE(2828), + [sym_for_loop] = STATE(2828), + [sym_while_loop] = STATE(2828), + [sym_if_statement] = STATE(2828), + [sym_try_statement] = STATE(2828), + [sym_throw_statement] = STATE(2828), + [sym_autocmd_statement] = STATE(2828), + [sym_augroup_statement] = STATE(2828), + [sym_bang_filter_statement] = STATE(2828), + [sym_let_statement] = STATE(2828), + [sym_const_statement] = STATE(2828), + [sym_set_statement] = STATE(2828), + [sym_setlocal_statement] = STATE(2828), + [sym_unlet_statement] = STATE(2828), + [sym_call_statement] = STATE(2828), + [sym_echo_statement] = STATE(2828), + [sym_echon_statement] = STATE(2828), + [sym_echohl_statement] = STATE(2828), + [sym_echomsg_statement] = STATE(2828), + [sym_echoerr_statement] = STATE(2828), + [sym_execute_statement] = STATE(2828), + [sym_silent_statement] = STATE(2828), + [sym_user_command] = STATE(2828), + [sym_function_definition] = STATE(2828), + [sym_range_statement] = STATE(2828), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2828), + [sym_map_statement] = STATE(2828), + [sym_highlight_statement] = STATE(2828), + [sym_syntax_statement] = STATE(2828), + [sym_sign_statement] = STATE(2828), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), + }, + [122] = { + [sym__statement] = STATE(2858), + [sym_unknown_builtin_statement] = STATE(2858), + [sym_return_statement] = STATE(2858), + [sym_break_statement] = STATE(2858), + [sym_continue_statement] = STATE(2858), + [sym_normal_statement] = STATE(2858), + [sym_setfiletype_statement] = STATE(2858), + [sym_options_statement] = STATE(2858), + [sym_startinsert_statement] = STATE(2858), + [sym_stopinsert_statement] = STATE(2858), + [sym_scriptencoding_statement] = STATE(2858), + [sym_comclear_statement] = STATE(2858), + [sym_delcommand_statement] = STATE(2858), + [sym_runtime_statement] = STATE(2858), + [sym_wincmd_statement] = STATE(2858), + [sym_source_statement] = STATE(2858), + [sym_global_statement] = STATE(2858), + [sym_filetype_statement] = STATE(2858), + [sym_colorscheme_statement] = STATE(2858), + [sym_lua_statement] = STATE(2858), + [sym_ruby_statement] = STATE(2858), + [sym_python_statement] = STATE(2858), + [sym_perl_statement] = STATE(2858), + [sym_for_loop] = STATE(2858), + [sym_while_loop] = STATE(2858), + [sym_if_statement] = STATE(2858), + [sym_try_statement] = STATE(2858), + [sym_throw_statement] = STATE(2858), + [sym_autocmd_statement] = STATE(2858), + [sym_augroup_statement] = STATE(2858), + [sym_bang_filter_statement] = STATE(2858), + [sym_let_statement] = STATE(2858), + [sym_const_statement] = STATE(2858), + [sym_set_statement] = STATE(2858), + [sym_setlocal_statement] = STATE(2858), + [sym_unlet_statement] = STATE(2858), + [sym_call_statement] = STATE(2858), + [sym_echo_statement] = STATE(2858), + [sym_echon_statement] = STATE(2858), + [sym_echohl_statement] = STATE(2858), + [sym_echomsg_statement] = STATE(2858), + [sym_echoerr_statement] = STATE(2858), + [sym_execute_statement] = STATE(2858), + [sym_silent_statement] = STATE(2858), + [sym_user_command] = STATE(2858), + [sym_function_definition] = STATE(2858), + [sym_range_statement] = STATE(2858), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2858), + [sym_map_statement] = STATE(2858), + [sym_highlight_statement] = STATE(2858), + [sym_syntax_statement] = STATE(2858), + [sym_sign_statement] = STATE(2858), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -44216,354 +43757,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [121] = { - [sym__statement] = STATE(2661), - [sym_unknown_builtin_statement] = STATE(2661), - [sym_return_statement] = STATE(2661), - [sym_break_statement] = STATE(2661), - [sym_continue_statement] = STATE(2661), - [sym_normal_statement] = STATE(2661), - [sym_setfiletype_statement] = STATE(2661), - [sym_options_statement] = STATE(2661), - [sym_startinsert_statement] = STATE(2661), - [sym_stopinsert_statement] = STATE(2661), - [sym_scriptencoding_statement] = STATE(2661), - [sym_comclear_statement] = STATE(2661), - [sym_delcommand_statement] = STATE(2661), - [sym_runtime_statement] = STATE(2661), - [sym_wincmd_statement] = STATE(2661), - [sym_source_statement] = STATE(2661), - [sym_global_statement] = STATE(2661), - [sym_filetype_statement] = STATE(2661), - [sym_colorscheme_statement] = STATE(2661), - [sym_lua_statement] = STATE(2661), - [sym_ruby_statement] = STATE(2661), - [sym_python_statement] = STATE(2661), - [sym_perl_statement] = STATE(2661), - [sym_for_loop] = STATE(2661), - [sym_while_loop] = STATE(2661), - [sym_if_statement] = STATE(2661), - [sym_try_statement] = STATE(2661), - [sym_throw_statement] = STATE(2661), - [sym_autocmd_statement] = STATE(2661), - [sym_augroup_statement] = STATE(2661), - [sym_bang_filter_statement] = STATE(2661), - [sym_let_statement] = STATE(2661), - [sym_const_statement] = STATE(2661), - [sym_set_statement] = STATE(2661), - [sym_setlocal_statement] = STATE(2661), - [sym_unlet_statement] = STATE(2661), - [sym_call_statement] = STATE(2661), - [sym_echo_statement] = STATE(2661), - [sym_echon_statement] = STATE(2661), - [sym_echohl_statement] = STATE(2661), - [sym_echomsg_statement] = STATE(2661), - [sym_echoerr_statement] = STATE(2661), - [sym_execute_statement] = STATE(2661), - [sym_silent_statement] = STATE(2661), - [sym_user_command] = STATE(2661), - [sym_function_definition] = STATE(2661), - [sym_range_statement] = STATE(2661), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2661), - [sym_map_statement] = STATE(2661), - [sym_highlight_statement] = STATE(2661), - [sym_syntax_statement] = STATE(2661), - [sym_sign_statement] = STATE(2661), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [122] = { - [sym__statement] = STATE(2644), - [sym_unknown_builtin_statement] = STATE(2644), - [sym_return_statement] = STATE(2644), - [sym_break_statement] = STATE(2644), - [sym_continue_statement] = STATE(2644), - [sym_normal_statement] = STATE(2644), - [sym_setfiletype_statement] = STATE(2644), - [sym_options_statement] = STATE(2644), - [sym_startinsert_statement] = STATE(2644), - [sym_stopinsert_statement] = STATE(2644), - [sym_scriptencoding_statement] = STATE(2644), - [sym_comclear_statement] = STATE(2644), - [sym_delcommand_statement] = STATE(2644), - [sym_runtime_statement] = STATE(2644), - [sym_wincmd_statement] = STATE(2644), - [sym_source_statement] = STATE(2644), - [sym_global_statement] = STATE(2644), - [sym_filetype_statement] = STATE(2644), - [sym_colorscheme_statement] = STATE(2644), - [sym_lua_statement] = STATE(2644), - [sym_ruby_statement] = STATE(2644), - [sym_python_statement] = STATE(2644), - [sym_perl_statement] = STATE(2644), - [sym_for_loop] = STATE(2644), - [sym_while_loop] = STATE(2644), - [sym_if_statement] = STATE(2644), - [sym_try_statement] = STATE(2644), - [sym_throw_statement] = STATE(2644), - [sym_autocmd_statement] = STATE(2644), - [sym_augroup_statement] = STATE(2644), - [sym_bang_filter_statement] = STATE(2644), - [sym_let_statement] = STATE(2644), - [sym_const_statement] = STATE(2644), - [sym_set_statement] = STATE(2644), - [sym_setlocal_statement] = STATE(2644), - [sym_unlet_statement] = STATE(2644), - [sym_call_statement] = STATE(2644), - [sym_echo_statement] = STATE(2644), - [sym_echon_statement] = STATE(2644), - [sym_echohl_statement] = STATE(2644), - [sym_echomsg_statement] = STATE(2644), - [sym_echoerr_statement] = STATE(2644), - [sym_execute_statement] = STATE(2644), - [sym_silent_statement] = STATE(2644), - [sym_user_command] = STATE(2644), - [sym_function_definition] = STATE(2644), - [sym_range_statement] = STATE(2644), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2644), - [sym_map_statement] = STATE(2644), - [sym_highlight_statement] = STATE(2644), - [sym_syntax_statement] = STATE(2644), - [sym_sign_statement] = STATE(2644), - [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, [123] = { - [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_comclear_statement] = STATE(2833), - [sym_delcommand_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_autocmd_statement] = STATE(2833), - [sym_augroup_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_user_command] = STATE(2833), - [sym_function_definition] = STATE(2833), - [sym_range_statement] = STATE(2833), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2833), - [sym_map_statement] = STATE(2833), - [sym_highlight_statement] = STATE(2833), - [sym_syntax_statement] = STATE(2833), - [sym_sign_statement] = STATE(2833), + [sym__statement] = STATE(2853), + [sym_unknown_builtin_statement] = STATE(2853), + [sym_return_statement] = STATE(2853), + [sym_break_statement] = STATE(2853), + [sym_continue_statement] = STATE(2853), + [sym_normal_statement] = STATE(2853), + [sym_setfiletype_statement] = STATE(2853), + [sym_options_statement] = STATE(2853), + [sym_startinsert_statement] = STATE(2853), + [sym_stopinsert_statement] = STATE(2853), + [sym_scriptencoding_statement] = STATE(2853), + [sym_comclear_statement] = STATE(2853), + [sym_delcommand_statement] = STATE(2853), + [sym_runtime_statement] = STATE(2853), + [sym_wincmd_statement] = STATE(2853), + [sym_source_statement] = STATE(2853), + [sym_global_statement] = STATE(2853), + [sym_filetype_statement] = STATE(2853), + [sym_colorscheme_statement] = STATE(2853), + [sym_lua_statement] = STATE(2853), + [sym_ruby_statement] = STATE(2853), + [sym_python_statement] = STATE(2853), + [sym_perl_statement] = STATE(2853), + [sym_for_loop] = STATE(2853), + [sym_while_loop] = STATE(2853), + [sym_if_statement] = STATE(2853), + [sym_try_statement] = STATE(2853), + [sym_throw_statement] = STATE(2853), + [sym_autocmd_statement] = STATE(2853), + [sym_augroup_statement] = STATE(2853), + [sym_bang_filter_statement] = STATE(2853), + [sym_let_statement] = STATE(2853), + [sym_const_statement] = STATE(2853), + [sym_set_statement] = STATE(2853), + [sym_setlocal_statement] = STATE(2853), + [sym_unlet_statement] = STATE(2853), + [sym_call_statement] = STATE(2853), + [sym_echo_statement] = STATE(2853), + [sym_echon_statement] = STATE(2853), + [sym_echohl_statement] = STATE(2853), + [sym_echomsg_statement] = STATE(2853), + [sym_echoerr_statement] = STATE(2853), + [sym_execute_statement] = STATE(2853), + [sym_silent_statement] = STATE(2853), + [sym_user_command] = STATE(2853), + [sym_function_definition] = STATE(2853), + [sym_range_statement] = STATE(2853), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2853), + [sym_map_statement] = STATE(2853), + [sym_highlight_statement] = STATE(2853), + [sym_syntax_statement] = STATE(2853), + [sym_sign_statement] = STATE(2853), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -44649,209 +43902,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [124] = { - [sym__statement] = STATE(2704), - [sym_unknown_builtin_statement] = STATE(2704), - [sym_return_statement] = STATE(2704), - [sym_break_statement] = STATE(2704), - [sym_continue_statement] = STATE(2704), - [sym_normal_statement] = STATE(2704), - [sym_setfiletype_statement] = STATE(2704), - [sym_options_statement] = STATE(2704), - [sym_startinsert_statement] = STATE(2704), - [sym_stopinsert_statement] = STATE(2704), - [sym_scriptencoding_statement] = STATE(2704), - [sym_comclear_statement] = STATE(2704), - [sym_delcommand_statement] = STATE(2704), - [sym_runtime_statement] = STATE(2704), - [sym_wincmd_statement] = STATE(2704), - [sym_source_statement] = STATE(2704), - [sym_global_statement] = STATE(2704), - [sym_filetype_statement] = STATE(2704), - [sym_colorscheme_statement] = STATE(2704), - [sym_lua_statement] = STATE(2704), - [sym_ruby_statement] = STATE(2704), - [sym_python_statement] = STATE(2704), - [sym_perl_statement] = STATE(2704), - [sym_for_loop] = STATE(2704), - [sym_while_loop] = STATE(2704), - [sym_if_statement] = STATE(2704), - [sym_try_statement] = STATE(2704), - [sym_throw_statement] = STATE(2704), - [sym_autocmd_statement] = STATE(2704), - [sym_augroup_statement] = STATE(2704), - [sym_bang_filter_statement] = STATE(2704), - [sym_let_statement] = STATE(2704), - [sym_const_statement] = STATE(2704), - [sym_set_statement] = STATE(2704), - [sym_setlocal_statement] = STATE(2704), - [sym_unlet_statement] = STATE(2704), - [sym_call_statement] = STATE(2704), - [sym_echo_statement] = STATE(2704), - [sym_echon_statement] = STATE(2704), - [sym_echohl_statement] = STATE(2704), - [sym_echomsg_statement] = STATE(2704), - [sym_echoerr_statement] = STATE(2704), - [sym_execute_statement] = STATE(2704), - [sym_silent_statement] = STATE(2704), - [sym_user_command] = STATE(2704), - [sym_function_definition] = STATE(2704), - [sym_range_statement] = STATE(2704), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2704), - [sym_map_statement] = STATE(2704), - [sym_highlight_statement] = STATE(2704), - [sym_syntax_statement] = STATE(2704), - [sym_sign_statement] = STATE(2704), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [sym__statement] = STATE(2870), + [sym_unknown_builtin_statement] = STATE(2870), + [sym_return_statement] = STATE(2870), + [sym_break_statement] = STATE(2870), + [sym_continue_statement] = STATE(2870), + [sym_normal_statement] = STATE(2870), + [sym_setfiletype_statement] = STATE(2870), + [sym_options_statement] = STATE(2870), + [sym_startinsert_statement] = STATE(2870), + [sym_stopinsert_statement] = STATE(2870), + [sym_scriptencoding_statement] = STATE(2870), + [sym_comclear_statement] = STATE(2870), + [sym_delcommand_statement] = STATE(2870), + [sym_runtime_statement] = STATE(2870), + [sym_wincmd_statement] = STATE(2870), + [sym_source_statement] = STATE(2870), + [sym_global_statement] = STATE(2870), + [sym_filetype_statement] = STATE(2870), + [sym_colorscheme_statement] = STATE(2870), + [sym_lua_statement] = STATE(2870), + [sym_ruby_statement] = STATE(2870), + [sym_python_statement] = STATE(2870), + [sym_perl_statement] = STATE(2870), + [sym_for_loop] = STATE(2870), + [sym_while_loop] = STATE(2870), + [sym_if_statement] = STATE(2870), + [sym_try_statement] = STATE(2870), + [sym_throw_statement] = STATE(2870), + [sym_autocmd_statement] = STATE(2870), + [sym_augroup_statement] = STATE(2870), + [sym_bang_filter_statement] = STATE(2870), + [sym_let_statement] = STATE(2870), + [sym_const_statement] = STATE(2870), + [sym_set_statement] = STATE(2870), + [sym_setlocal_statement] = STATE(2870), + [sym_unlet_statement] = STATE(2870), + [sym_call_statement] = STATE(2870), + [sym_echo_statement] = STATE(2870), + [sym_echon_statement] = STATE(2870), + [sym_echohl_statement] = STATE(2870), + [sym_echomsg_statement] = STATE(2870), + [sym_echoerr_statement] = STATE(2870), + [sym_execute_statement] = STATE(2870), + [sym_silent_statement] = STATE(2870), + [sym_user_command] = STATE(2870), + [sym_function_definition] = STATE(2870), + [sym_range_statement] = STATE(2870), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2870), + [sym_map_statement] = STATE(2870), + [sym_highlight_statement] = STATE(2870), + [sym_syntax_statement] = STATE(2870), + [sym_sign_statement] = STATE(2870), + [aux_sym__statement_repeat1] = STATE(142), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, [125] = { - [sym__statement] = STATE(2829), - [sym_unknown_builtin_statement] = STATE(2829), - [sym_return_statement] = STATE(2829), - [sym_break_statement] = STATE(2829), - [sym_continue_statement] = STATE(2829), - [sym_normal_statement] = STATE(2829), - [sym_setfiletype_statement] = STATE(2829), - [sym_options_statement] = STATE(2829), - [sym_startinsert_statement] = STATE(2829), - [sym_stopinsert_statement] = STATE(2829), - [sym_scriptencoding_statement] = STATE(2829), - [sym_comclear_statement] = STATE(2829), - [sym_delcommand_statement] = STATE(2829), - [sym_runtime_statement] = STATE(2829), - [sym_wincmd_statement] = STATE(2829), - [sym_source_statement] = STATE(2829), - [sym_global_statement] = STATE(2829), - [sym_filetype_statement] = STATE(2829), - [sym_colorscheme_statement] = STATE(2829), - [sym_lua_statement] = STATE(2829), - [sym_ruby_statement] = STATE(2829), - [sym_python_statement] = STATE(2829), - [sym_perl_statement] = STATE(2829), - [sym_for_loop] = STATE(2829), - [sym_while_loop] = STATE(2829), - [sym_if_statement] = STATE(2829), - [sym_try_statement] = STATE(2829), - [sym_throw_statement] = STATE(2829), - [sym_autocmd_statement] = STATE(2829), - [sym_augroup_statement] = STATE(2829), - [sym_bang_filter_statement] = STATE(2829), - [sym_let_statement] = STATE(2829), - [sym_const_statement] = STATE(2829), - [sym_set_statement] = STATE(2829), - [sym_setlocal_statement] = STATE(2829), - [sym_unlet_statement] = STATE(2829), - [sym_call_statement] = STATE(2829), - [sym_echo_statement] = STATE(2829), - [sym_echon_statement] = STATE(2829), - [sym_echohl_statement] = STATE(2829), - [sym_echomsg_statement] = STATE(2829), - [sym_echoerr_statement] = STATE(2829), - [sym_execute_statement] = STATE(2829), - [sym_silent_statement] = STATE(2829), - [sym_user_command] = STATE(2829), - [sym_function_definition] = STATE(2829), - [sym_range_statement] = STATE(2829), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2829), - [sym_map_statement] = STATE(2829), - [sym_highlight_statement] = STATE(2829), - [sym_syntax_statement] = STATE(2829), - [sym_sign_statement] = STATE(2829), + [sym__statement] = STATE(2887), + [sym_unknown_builtin_statement] = STATE(2887), + [sym_return_statement] = STATE(2887), + [sym_break_statement] = STATE(2887), + [sym_continue_statement] = STATE(2887), + [sym_normal_statement] = STATE(2887), + [sym_setfiletype_statement] = STATE(2887), + [sym_options_statement] = STATE(2887), + [sym_startinsert_statement] = STATE(2887), + [sym_stopinsert_statement] = STATE(2887), + [sym_scriptencoding_statement] = STATE(2887), + [sym_comclear_statement] = STATE(2887), + [sym_delcommand_statement] = STATE(2887), + [sym_runtime_statement] = STATE(2887), + [sym_wincmd_statement] = STATE(2887), + [sym_source_statement] = STATE(2887), + [sym_global_statement] = STATE(2887), + [sym_filetype_statement] = STATE(2887), + [sym_colorscheme_statement] = STATE(2887), + [sym_lua_statement] = STATE(2887), + [sym_ruby_statement] = STATE(2887), + [sym_python_statement] = STATE(2887), + [sym_perl_statement] = STATE(2887), + [sym_for_loop] = STATE(2887), + [sym_while_loop] = STATE(2887), + [sym_if_statement] = STATE(2887), + [sym_try_statement] = STATE(2887), + [sym_throw_statement] = STATE(2887), + [sym_autocmd_statement] = STATE(2887), + [sym_augroup_statement] = STATE(2887), + [sym_bang_filter_statement] = STATE(2887), + [sym_let_statement] = STATE(2887), + [sym_const_statement] = STATE(2887), + [sym_set_statement] = STATE(2887), + [sym_setlocal_statement] = STATE(2887), + [sym_unlet_statement] = STATE(2887), + [sym_call_statement] = STATE(2887), + [sym_echo_statement] = STATE(2887), + [sym_echon_statement] = STATE(2887), + [sym_echohl_statement] = STATE(2887), + [sym_echomsg_statement] = STATE(2887), + [sym_echoerr_statement] = STATE(2887), + [sym_execute_statement] = STATE(2887), + [sym_silent_statement] = STATE(2887), + [sym_user_command] = STATE(2887), + [sym_function_definition] = STATE(2887), + [sym_range_statement] = STATE(2887), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2887), + [sym_map_statement] = STATE(2887), + [sym_highlight_statement] = STATE(2887), + [sym_syntax_statement] = STATE(2887), + [sym_sign_statement] = STATE(2887), + [aux_sym__statement_repeat1] = STATE(142), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, + [126] = { + [sym__statement] = STATE(2647), + [sym_unknown_builtin_statement] = STATE(2647), + [sym_return_statement] = STATE(2647), + [sym_break_statement] = STATE(2647), + [sym_continue_statement] = STATE(2647), + [sym_normal_statement] = STATE(2647), + [sym_setfiletype_statement] = STATE(2647), + [sym_options_statement] = STATE(2647), + [sym_startinsert_statement] = STATE(2647), + [sym_stopinsert_statement] = STATE(2647), + [sym_scriptencoding_statement] = STATE(2647), + [sym_comclear_statement] = STATE(2647), + [sym_delcommand_statement] = STATE(2647), + [sym_runtime_statement] = STATE(2647), + [sym_wincmd_statement] = STATE(2647), + [sym_source_statement] = STATE(2647), + [sym_global_statement] = STATE(2647), + [sym_filetype_statement] = STATE(2647), + [sym_colorscheme_statement] = STATE(2647), + [sym_lua_statement] = STATE(2647), + [sym_ruby_statement] = STATE(2647), + [sym_python_statement] = STATE(2647), + [sym_perl_statement] = STATE(2647), + [sym_for_loop] = STATE(2647), + [sym_while_loop] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_try_statement] = STATE(2647), + [sym_throw_statement] = STATE(2647), + [sym_autocmd_statement] = STATE(2647), + [sym_augroup_statement] = STATE(2647), + [sym_bang_filter_statement] = STATE(2647), + [sym_let_statement] = STATE(2647), + [sym_const_statement] = STATE(2647), + [sym_set_statement] = STATE(2647), + [sym_setlocal_statement] = STATE(2647), + [sym_unlet_statement] = STATE(2647), + [sym_call_statement] = STATE(2647), + [sym_echo_statement] = STATE(2647), + [sym_echon_statement] = STATE(2647), + [sym_echohl_statement] = STATE(2647), + [sym_echomsg_statement] = STATE(2647), + [sym_echoerr_statement] = STATE(2647), + [sym_execute_statement] = STATE(2647), + [sym_silent_statement] = STATE(2647), + [sym_user_command] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_range_statement] = STATE(2647), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2647), + [sym_map_statement] = STATE(2647), + [sym_highlight_statement] = STATE(2647), + [sym_syntax_statement] = STATE(2647), + [sym_sign_statement] = STATE(2647), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -44936,642 +44333,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [126] = { - [sym__statement] = STATE(2682), - [sym_unknown_builtin_statement] = STATE(2682), - [sym_return_statement] = STATE(2682), - [sym_break_statement] = STATE(2682), - [sym_continue_statement] = STATE(2682), - [sym_normal_statement] = STATE(2682), - [sym_setfiletype_statement] = STATE(2682), - [sym_options_statement] = STATE(2682), - [sym_startinsert_statement] = STATE(2682), - [sym_stopinsert_statement] = STATE(2682), - [sym_scriptencoding_statement] = STATE(2682), - [sym_comclear_statement] = STATE(2682), - [sym_delcommand_statement] = STATE(2682), - [sym_runtime_statement] = STATE(2682), - [sym_wincmd_statement] = STATE(2682), - [sym_source_statement] = STATE(2682), - [sym_global_statement] = STATE(2682), - [sym_filetype_statement] = STATE(2682), - [sym_colorscheme_statement] = STATE(2682), - [sym_lua_statement] = STATE(2682), - [sym_ruby_statement] = STATE(2682), - [sym_python_statement] = STATE(2682), - [sym_perl_statement] = STATE(2682), - [sym_for_loop] = STATE(2682), - [sym_while_loop] = STATE(2682), - [sym_if_statement] = STATE(2682), - [sym_try_statement] = STATE(2682), - [sym_throw_statement] = STATE(2682), - [sym_autocmd_statement] = STATE(2682), - [sym_augroup_statement] = STATE(2682), - [sym_bang_filter_statement] = STATE(2682), - [sym_let_statement] = STATE(2682), - [sym_const_statement] = STATE(2682), - [sym_set_statement] = STATE(2682), - [sym_setlocal_statement] = STATE(2682), - [sym_unlet_statement] = STATE(2682), - [sym_call_statement] = STATE(2682), - [sym_echo_statement] = STATE(2682), - [sym_echon_statement] = STATE(2682), - [sym_echohl_statement] = STATE(2682), - [sym_echomsg_statement] = STATE(2682), - [sym_echoerr_statement] = STATE(2682), - [sym_execute_statement] = STATE(2682), - [sym_silent_statement] = STATE(2682), - [sym_user_command] = STATE(2682), - [sym_function_definition] = STATE(2682), - [sym_range_statement] = STATE(2682), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2682), - [sym_map_statement] = STATE(2682), - [sym_highlight_statement] = STATE(2682), - [sym_syntax_statement] = STATE(2682), - [sym_sign_statement] = STATE(2682), - [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, [127] = { - [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_comclear_statement] = STATE(2706), - [sym_delcommand_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_autocmd_statement] = STATE(2706), - [sym_augroup_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_user_command] = STATE(2706), - [sym_function_definition] = STATE(2706), - [sym_range_statement] = STATE(2706), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2706), - [sym_map_statement] = STATE(2706), - [sym_highlight_statement] = STATE(2706), - [sym_syntax_statement] = STATE(2706), - [sym_sign_statement] = STATE(2706), + [sym__statement] = STATE(2828), + [sym_unknown_builtin_statement] = STATE(2828), + [sym_return_statement] = STATE(2828), + [sym_break_statement] = STATE(2828), + [sym_continue_statement] = STATE(2828), + [sym_normal_statement] = STATE(2828), + [sym_setfiletype_statement] = STATE(2828), + [sym_options_statement] = STATE(2828), + [sym_startinsert_statement] = STATE(2828), + [sym_stopinsert_statement] = STATE(2828), + [sym_scriptencoding_statement] = STATE(2828), + [sym_comclear_statement] = STATE(2828), + [sym_delcommand_statement] = STATE(2828), + [sym_runtime_statement] = STATE(2828), + [sym_wincmd_statement] = STATE(2828), + [sym_source_statement] = STATE(2828), + [sym_global_statement] = STATE(2828), + [sym_filetype_statement] = STATE(2828), + [sym_colorscheme_statement] = STATE(2828), + [sym_lua_statement] = STATE(2828), + [sym_ruby_statement] = STATE(2828), + [sym_python_statement] = STATE(2828), + [sym_perl_statement] = STATE(2828), + [sym_for_loop] = STATE(2828), + [sym_while_loop] = STATE(2828), + [sym_if_statement] = STATE(2828), + [sym_try_statement] = STATE(2828), + [sym_throw_statement] = STATE(2828), + [sym_autocmd_statement] = STATE(2828), + [sym_augroup_statement] = STATE(2828), + [sym_bang_filter_statement] = STATE(2828), + [sym_let_statement] = STATE(2828), + [sym_const_statement] = STATE(2828), + [sym_set_statement] = STATE(2828), + [sym_setlocal_statement] = STATE(2828), + [sym_unlet_statement] = STATE(2828), + [sym_call_statement] = STATE(2828), + [sym_echo_statement] = STATE(2828), + [sym_echon_statement] = STATE(2828), + [sym_echohl_statement] = STATE(2828), + [sym_echomsg_statement] = STATE(2828), + [sym_echoerr_statement] = STATE(2828), + [sym_execute_statement] = STATE(2828), + [sym_silent_statement] = STATE(2828), + [sym_user_command] = STATE(2828), + [sym_function_definition] = STATE(2828), + [sym_range_statement] = STATE(2828), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2828), + [sym_map_statement] = STATE(2828), + [sym_highlight_statement] = STATE(2828), + [sym_syntax_statement] = STATE(2828), + [sym_sign_statement] = STATE(2828), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, [128] = { - [sym__statement] = STATE(2616), - [sym_unknown_builtin_statement] = STATE(2616), - [sym_return_statement] = STATE(2616), - [sym_break_statement] = STATE(2616), - [sym_continue_statement] = STATE(2616), - [sym_normal_statement] = STATE(2616), - [sym_setfiletype_statement] = STATE(2616), - [sym_options_statement] = STATE(2616), - [sym_startinsert_statement] = STATE(2616), - [sym_stopinsert_statement] = STATE(2616), - [sym_scriptencoding_statement] = STATE(2616), - [sym_comclear_statement] = STATE(2616), - [sym_delcommand_statement] = STATE(2616), - [sym_runtime_statement] = STATE(2616), - [sym_wincmd_statement] = STATE(2616), - [sym_source_statement] = STATE(2616), - [sym_global_statement] = STATE(2616), - [sym_filetype_statement] = STATE(2616), - [sym_colorscheme_statement] = STATE(2616), - [sym_lua_statement] = STATE(2616), - [sym_ruby_statement] = STATE(2616), - [sym_python_statement] = STATE(2616), - [sym_perl_statement] = STATE(2616), - [sym_for_loop] = STATE(2616), - [sym_while_loop] = STATE(2616), - [sym_if_statement] = STATE(2616), - [sym_try_statement] = STATE(2616), - [sym_throw_statement] = STATE(2616), - [sym_autocmd_statement] = STATE(2616), - [sym_augroup_statement] = STATE(2616), - [sym_bang_filter_statement] = STATE(2616), - [sym_let_statement] = STATE(2616), - [sym_const_statement] = STATE(2616), - [sym_set_statement] = STATE(2616), - [sym_setlocal_statement] = STATE(2616), - [sym_unlet_statement] = STATE(2616), - [sym_call_statement] = STATE(2616), - [sym_echo_statement] = STATE(2616), - [sym_echon_statement] = STATE(2616), - [sym_echohl_statement] = STATE(2616), - [sym_echomsg_statement] = STATE(2616), - [sym_echoerr_statement] = STATE(2616), - [sym_execute_statement] = STATE(2616), - [sym_silent_statement] = STATE(2616), - [sym_user_command] = STATE(2616), - [sym_function_definition] = STATE(2616), - [sym_range_statement] = STATE(2616), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2616), - [sym_map_statement] = STATE(2616), - [sym_highlight_statement] = STATE(2616), - [sym_syntax_statement] = STATE(2616), - [sym_sign_statement] = STATE(2616), - [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), - }, - [129] = { - [sym__statement] = STATE(3217), - [sym_unknown_builtin_statement] = STATE(3217), - [sym_return_statement] = STATE(3217), - [sym_break_statement] = STATE(3217), - [sym_continue_statement] = STATE(3217), - [sym_normal_statement] = STATE(3217), - [sym_setfiletype_statement] = STATE(3217), - [sym_options_statement] = STATE(3217), - [sym_startinsert_statement] = STATE(3217), - [sym_stopinsert_statement] = STATE(3217), - [sym_scriptencoding_statement] = STATE(3217), - [sym_comclear_statement] = STATE(3217), - [sym_delcommand_statement] = STATE(3217), - [sym_runtime_statement] = STATE(3217), - [sym_wincmd_statement] = STATE(3217), - [sym_source_statement] = STATE(3217), - [sym_global_statement] = STATE(3217), - [sym_filetype_statement] = STATE(3217), - [sym_colorscheme_statement] = STATE(3217), - [sym_lua_statement] = STATE(3217), - [sym_ruby_statement] = STATE(3217), - [sym_python_statement] = STATE(3217), - [sym_perl_statement] = STATE(3217), - [sym_for_loop] = STATE(3217), - [sym_while_loop] = STATE(3217), - [sym_if_statement] = STATE(3217), - [sym_try_statement] = STATE(3217), - [sym_throw_statement] = STATE(3217), - [sym_autocmd_statement] = STATE(3217), - [sym_augroup_statement] = STATE(3217), - [sym_bang_filter_statement] = STATE(3217), - [sym_let_statement] = STATE(3217), - [sym_const_statement] = STATE(3217), - [sym_set_statement] = STATE(3217), - [sym_setlocal_statement] = STATE(3217), - [sym_unlet_statement] = STATE(3217), - [sym_call_statement] = STATE(3217), - [sym_echo_statement] = STATE(3217), - [sym_echon_statement] = STATE(3217), - [sym_echohl_statement] = STATE(3217), - [sym_echomsg_statement] = STATE(3217), - [sym_echoerr_statement] = STATE(3217), - [sym_execute_statement] = STATE(3217), - [sym_silent_statement] = STATE(3217), - [sym_user_command] = STATE(3217), - [sym_function_definition] = STATE(3217), - [sym_range_statement] = STATE(3217), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(3217), - [sym_map_statement] = STATE(3217), - [sym_highlight_statement] = STATE(3217), - [sym_syntax_statement] = STATE(3217), - [sym_sign_statement] = STATE(3217), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), - [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), - }, - [130] = { - [sym__statement] = STATE(2857), - [sym_unknown_builtin_statement] = STATE(2857), - [sym_return_statement] = STATE(2857), - [sym_break_statement] = STATE(2857), - [sym_continue_statement] = STATE(2857), - [sym_normal_statement] = STATE(2857), - [sym_setfiletype_statement] = STATE(2857), - [sym_options_statement] = STATE(2857), - [sym_startinsert_statement] = STATE(2857), - [sym_stopinsert_statement] = STATE(2857), - [sym_scriptencoding_statement] = STATE(2857), - [sym_comclear_statement] = STATE(2857), - [sym_delcommand_statement] = STATE(2857), - [sym_runtime_statement] = STATE(2857), - [sym_wincmd_statement] = STATE(2857), - [sym_source_statement] = STATE(2857), - [sym_global_statement] = STATE(2857), - [sym_filetype_statement] = STATE(2857), - [sym_colorscheme_statement] = STATE(2857), - [sym_lua_statement] = STATE(2857), - [sym_ruby_statement] = STATE(2857), - [sym_python_statement] = STATE(2857), - [sym_perl_statement] = STATE(2857), - [sym_for_loop] = STATE(2857), - [sym_while_loop] = STATE(2857), - [sym_if_statement] = STATE(2857), - [sym_try_statement] = STATE(2857), - [sym_throw_statement] = STATE(2857), - [sym_autocmd_statement] = STATE(2857), - [sym_augroup_statement] = STATE(2857), - [sym_bang_filter_statement] = STATE(2857), - [sym_let_statement] = STATE(2857), - [sym_const_statement] = STATE(2857), - [sym_set_statement] = STATE(2857), - [sym_setlocal_statement] = STATE(2857), - [sym_unlet_statement] = STATE(2857), - [sym_call_statement] = STATE(2857), - [sym_echo_statement] = STATE(2857), - [sym_echon_statement] = STATE(2857), - [sym_echohl_statement] = STATE(2857), - [sym_echomsg_statement] = STATE(2857), - [sym_echoerr_statement] = STATE(2857), - [sym_execute_statement] = STATE(2857), - [sym_silent_statement] = STATE(2857), - [sym_user_command] = STATE(2857), - [sym_function_definition] = STATE(2857), - [sym_range_statement] = STATE(2857), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2857), - [sym_map_statement] = STATE(2857), - [sym_highlight_statement] = STATE(2857), - [sym_syntax_statement] = STATE(2857), - [sym_sign_statement] = STATE(2857), + [sym__statement] = STATE(2842), + [sym_unknown_builtin_statement] = STATE(2842), + [sym_return_statement] = STATE(2842), + [sym_break_statement] = STATE(2842), + [sym_continue_statement] = STATE(2842), + [sym_normal_statement] = STATE(2842), + [sym_setfiletype_statement] = STATE(2842), + [sym_options_statement] = STATE(2842), + [sym_startinsert_statement] = STATE(2842), + [sym_stopinsert_statement] = STATE(2842), + [sym_scriptencoding_statement] = STATE(2842), + [sym_comclear_statement] = STATE(2842), + [sym_delcommand_statement] = STATE(2842), + [sym_runtime_statement] = STATE(2842), + [sym_wincmd_statement] = STATE(2842), + [sym_source_statement] = STATE(2842), + [sym_global_statement] = STATE(2842), + [sym_filetype_statement] = STATE(2842), + [sym_colorscheme_statement] = STATE(2842), + [sym_lua_statement] = STATE(2842), + [sym_ruby_statement] = STATE(2842), + [sym_python_statement] = STATE(2842), + [sym_perl_statement] = STATE(2842), + [sym_for_loop] = STATE(2842), + [sym_while_loop] = STATE(2842), + [sym_if_statement] = STATE(2842), + [sym_try_statement] = STATE(2842), + [sym_throw_statement] = STATE(2842), + [sym_autocmd_statement] = STATE(2842), + [sym_augroup_statement] = STATE(2842), + [sym_bang_filter_statement] = STATE(2842), + [sym_let_statement] = STATE(2842), + [sym_const_statement] = STATE(2842), + [sym_set_statement] = STATE(2842), + [sym_setlocal_statement] = STATE(2842), + [sym_unlet_statement] = STATE(2842), + [sym_call_statement] = STATE(2842), + [sym_echo_statement] = STATE(2842), + [sym_echon_statement] = STATE(2842), + [sym_echohl_statement] = STATE(2842), + [sym_echomsg_statement] = STATE(2842), + [sym_echoerr_statement] = STATE(2842), + [sym_execute_statement] = STATE(2842), + [sym_silent_statement] = STATE(2842), + [sym_user_command] = STATE(2842), + [sym_function_definition] = STATE(2842), + [sym_range_statement] = STATE(2842), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2842), + [sym_map_statement] = STATE(2842), + [sym_highlight_statement] = STATE(2842), + [sym_syntax_statement] = STATE(2842), + [sym_sign_statement] = STATE(2842), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -45656,354 +44621,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, - [131] = { - [sym__statement] = STATE(2684), - [sym_unknown_builtin_statement] = STATE(2684), - [sym_return_statement] = STATE(2684), - [sym_break_statement] = STATE(2684), - [sym_continue_statement] = STATE(2684), - [sym_normal_statement] = STATE(2684), - [sym_setfiletype_statement] = STATE(2684), - [sym_options_statement] = STATE(2684), - [sym_startinsert_statement] = STATE(2684), - [sym_stopinsert_statement] = STATE(2684), - [sym_scriptencoding_statement] = STATE(2684), - [sym_comclear_statement] = STATE(2684), - [sym_delcommand_statement] = STATE(2684), - [sym_runtime_statement] = STATE(2684), - [sym_wincmd_statement] = STATE(2684), - [sym_source_statement] = STATE(2684), - [sym_global_statement] = STATE(2684), - [sym_filetype_statement] = STATE(2684), - [sym_colorscheme_statement] = STATE(2684), - [sym_lua_statement] = STATE(2684), - [sym_ruby_statement] = STATE(2684), - [sym_python_statement] = STATE(2684), - [sym_perl_statement] = STATE(2684), - [sym_for_loop] = STATE(2684), - [sym_while_loop] = STATE(2684), - [sym_if_statement] = STATE(2684), - [sym_try_statement] = STATE(2684), - [sym_throw_statement] = STATE(2684), - [sym_autocmd_statement] = STATE(2684), - [sym_augroup_statement] = STATE(2684), - [sym_bang_filter_statement] = STATE(2684), - [sym_let_statement] = STATE(2684), - [sym_const_statement] = STATE(2684), - [sym_set_statement] = STATE(2684), - [sym_setlocal_statement] = STATE(2684), - [sym_unlet_statement] = STATE(2684), - [sym_call_statement] = STATE(2684), - [sym_echo_statement] = STATE(2684), - [sym_echon_statement] = STATE(2684), - [sym_echohl_statement] = STATE(2684), - [sym_echomsg_statement] = STATE(2684), - [sym_echoerr_statement] = STATE(2684), - [sym_execute_statement] = STATE(2684), - [sym_silent_statement] = STATE(2684), - [sym_user_command] = STATE(2684), - [sym_function_definition] = STATE(2684), - [sym_range_statement] = STATE(2684), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2684), - [sym_map_statement] = STATE(2684), - [sym_highlight_statement] = STATE(2684), - [sym_syntax_statement] = STATE(2684), - [sym_sign_statement] = STATE(2684), - [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [129] = { + [sym__statement] = STATE(3250), + [sym_unknown_builtin_statement] = STATE(3250), + [sym_return_statement] = STATE(3250), + [sym_break_statement] = STATE(3250), + [sym_continue_statement] = STATE(3250), + [sym_normal_statement] = STATE(3250), + [sym_setfiletype_statement] = STATE(3250), + [sym_options_statement] = STATE(3250), + [sym_startinsert_statement] = STATE(3250), + [sym_stopinsert_statement] = STATE(3250), + [sym_scriptencoding_statement] = STATE(3250), + [sym_comclear_statement] = STATE(3250), + [sym_delcommand_statement] = STATE(3250), + [sym_runtime_statement] = STATE(3250), + [sym_wincmd_statement] = STATE(3250), + [sym_source_statement] = STATE(3250), + [sym_global_statement] = STATE(3250), + [sym_filetype_statement] = STATE(3250), + [sym_colorscheme_statement] = STATE(3250), + [sym_lua_statement] = STATE(3250), + [sym_ruby_statement] = STATE(3250), + [sym_python_statement] = STATE(3250), + [sym_perl_statement] = STATE(3250), + [sym_for_loop] = STATE(3250), + [sym_while_loop] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_try_statement] = STATE(3250), + [sym_throw_statement] = STATE(3250), + [sym_autocmd_statement] = STATE(3250), + [sym_augroup_statement] = STATE(3250), + [sym_bang_filter_statement] = STATE(3250), + [sym_let_statement] = STATE(3250), + [sym_const_statement] = STATE(3250), + [sym_set_statement] = STATE(3250), + [sym_setlocal_statement] = STATE(3250), + [sym_unlet_statement] = STATE(3250), + [sym_call_statement] = STATE(3250), + [sym_echo_statement] = STATE(3250), + [sym_echon_statement] = STATE(3250), + [sym_echohl_statement] = STATE(3250), + [sym_echomsg_statement] = STATE(3250), + [sym_echoerr_statement] = STATE(3250), + [sym_execute_statement] = STATE(3250), + [sym_silent_statement] = STATE(3250), + [sym_user_command] = STATE(3250), + [sym_function_definition] = STATE(3250), + [sym_range_statement] = STATE(3250), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(3250), + [sym_map_statement] = STATE(3250), + [sym_highlight_statement] = STATE(3250), + [sym_syntax_statement] = STATE(3250), + [sym_sign_statement] = STATE(3250), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [132] = { - [sym__statement] = STATE(2653), - [sym_unknown_builtin_statement] = STATE(2653), - [sym_return_statement] = STATE(2653), - [sym_break_statement] = STATE(2653), - [sym_continue_statement] = STATE(2653), - [sym_normal_statement] = STATE(2653), - [sym_setfiletype_statement] = STATE(2653), - [sym_options_statement] = STATE(2653), - [sym_startinsert_statement] = STATE(2653), - [sym_stopinsert_statement] = STATE(2653), - [sym_scriptencoding_statement] = STATE(2653), - [sym_comclear_statement] = STATE(2653), - [sym_delcommand_statement] = STATE(2653), - [sym_runtime_statement] = STATE(2653), - [sym_wincmd_statement] = STATE(2653), - [sym_source_statement] = STATE(2653), - [sym_global_statement] = STATE(2653), - [sym_filetype_statement] = STATE(2653), - [sym_colorscheme_statement] = STATE(2653), - [sym_lua_statement] = STATE(2653), - [sym_ruby_statement] = STATE(2653), - [sym_python_statement] = STATE(2653), - [sym_perl_statement] = STATE(2653), - [sym_for_loop] = STATE(2653), - [sym_while_loop] = STATE(2653), - [sym_if_statement] = STATE(2653), - [sym_try_statement] = STATE(2653), - [sym_throw_statement] = STATE(2653), - [sym_autocmd_statement] = STATE(2653), - [sym_augroup_statement] = STATE(2653), - [sym_bang_filter_statement] = STATE(2653), - [sym_let_statement] = STATE(2653), - [sym_const_statement] = STATE(2653), - [sym_set_statement] = STATE(2653), - [sym_setlocal_statement] = STATE(2653), - [sym_unlet_statement] = STATE(2653), - [sym_call_statement] = STATE(2653), - [sym_echo_statement] = STATE(2653), - [sym_echon_statement] = STATE(2653), - [sym_echohl_statement] = STATE(2653), - [sym_echomsg_statement] = STATE(2653), - [sym_echoerr_statement] = STATE(2653), - [sym_execute_statement] = STATE(2653), - [sym_silent_statement] = STATE(2653), - [sym_user_command] = STATE(2653), - [sym_function_definition] = STATE(2653), - [sym_range_statement] = STATE(2653), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2653), - [sym_map_statement] = STATE(2653), - [sym_highlight_statement] = STATE(2653), - [sym_syntax_statement] = STATE(2653), - [sym_sign_statement] = STATE(2653), + [130] = { + [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_comclear_statement] = STATE(2815), + [sym_delcommand_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_autocmd_statement] = STATE(2815), + [sym_augroup_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_user_command] = STATE(2815), + [sym_function_definition] = STATE(2815), + [sym_range_statement] = STATE(2815), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2815), + [sym_map_statement] = STATE(2815), + [sym_highlight_statement] = STATE(2815), + [sym_syntax_statement] = STATE(2815), + [sym_sign_statement] = STATE(2815), [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, - [133] = { - [sym__statement] = STATE(2824), - [sym_unknown_builtin_statement] = STATE(2824), - [sym_return_statement] = STATE(2824), - [sym_break_statement] = STATE(2824), - [sym_continue_statement] = STATE(2824), - [sym_normal_statement] = STATE(2824), - [sym_setfiletype_statement] = STATE(2824), - [sym_options_statement] = STATE(2824), - [sym_startinsert_statement] = STATE(2824), - [sym_stopinsert_statement] = STATE(2824), - [sym_scriptencoding_statement] = STATE(2824), - [sym_comclear_statement] = STATE(2824), - [sym_delcommand_statement] = STATE(2824), - [sym_runtime_statement] = STATE(2824), - [sym_wincmd_statement] = STATE(2824), - [sym_source_statement] = STATE(2824), - [sym_global_statement] = STATE(2824), - [sym_filetype_statement] = STATE(2824), - [sym_colorscheme_statement] = STATE(2824), - [sym_lua_statement] = STATE(2824), - [sym_ruby_statement] = STATE(2824), - [sym_python_statement] = STATE(2824), - [sym_perl_statement] = STATE(2824), - [sym_for_loop] = STATE(2824), - [sym_while_loop] = STATE(2824), - [sym_if_statement] = STATE(2824), - [sym_try_statement] = STATE(2824), - [sym_throw_statement] = STATE(2824), - [sym_autocmd_statement] = STATE(2824), - [sym_augroup_statement] = STATE(2824), - [sym_bang_filter_statement] = STATE(2824), - [sym_let_statement] = STATE(2824), - [sym_const_statement] = STATE(2824), - [sym_set_statement] = STATE(2824), - [sym_setlocal_statement] = STATE(2824), - [sym_unlet_statement] = STATE(2824), - [sym_call_statement] = STATE(2824), - [sym_echo_statement] = STATE(2824), - [sym_echon_statement] = STATE(2824), - [sym_echohl_statement] = STATE(2824), - [sym_echomsg_statement] = STATE(2824), - [sym_echoerr_statement] = STATE(2824), - [sym_execute_statement] = STATE(2824), - [sym_silent_statement] = STATE(2824), - [sym_user_command] = STATE(2824), - [sym_function_definition] = STATE(2824), - [sym_range_statement] = STATE(2824), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2824), - [sym_map_statement] = STATE(2824), - [sym_highlight_statement] = STATE(2824), - [sym_syntax_statement] = STATE(2824), - [sym_sign_statement] = STATE(2824), + [131] = { + [sym__statement] = STATE(2739), + [sym_unknown_builtin_statement] = STATE(2739), + [sym_return_statement] = STATE(2739), + [sym_break_statement] = STATE(2739), + [sym_continue_statement] = STATE(2739), + [sym_normal_statement] = STATE(2739), + [sym_setfiletype_statement] = STATE(2739), + [sym_options_statement] = STATE(2739), + [sym_startinsert_statement] = STATE(2739), + [sym_stopinsert_statement] = STATE(2739), + [sym_scriptencoding_statement] = STATE(2739), + [sym_comclear_statement] = STATE(2739), + [sym_delcommand_statement] = STATE(2739), + [sym_runtime_statement] = STATE(2739), + [sym_wincmd_statement] = STATE(2739), + [sym_source_statement] = STATE(2739), + [sym_global_statement] = STATE(2739), + [sym_filetype_statement] = STATE(2739), + [sym_colorscheme_statement] = STATE(2739), + [sym_lua_statement] = STATE(2739), + [sym_ruby_statement] = STATE(2739), + [sym_python_statement] = STATE(2739), + [sym_perl_statement] = STATE(2739), + [sym_for_loop] = STATE(2739), + [sym_while_loop] = STATE(2739), + [sym_if_statement] = STATE(2739), + [sym_try_statement] = STATE(2739), + [sym_throw_statement] = STATE(2739), + [sym_autocmd_statement] = STATE(2739), + [sym_augroup_statement] = STATE(2739), + [sym_bang_filter_statement] = STATE(2739), + [sym_let_statement] = STATE(2739), + [sym_const_statement] = STATE(2739), + [sym_set_statement] = STATE(2739), + [sym_setlocal_statement] = STATE(2739), + [sym_unlet_statement] = STATE(2739), + [sym_call_statement] = STATE(2739), + [sym_echo_statement] = STATE(2739), + [sym_echon_statement] = STATE(2739), + [sym_echohl_statement] = STATE(2739), + [sym_echomsg_statement] = STATE(2739), + [sym_echoerr_statement] = STATE(2739), + [sym_execute_statement] = STATE(2739), + [sym_silent_statement] = STATE(2739), + [sym_user_command] = STATE(2739), + [sym_function_definition] = STATE(2739), + [sym_range_statement] = STATE(2739), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2739), + [sym_map_statement] = STATE(2739), + [sym_highlight_statement] = STATE(2739), + [sym_syntax_statement] = STATE(2739), + [sym_sign_statement] = STATE(2739), [aux_sym__statement_repeat1] = STATE(141), [anon_sym_COLON] = ACTIONS(7), [sym_command_name] = ACTIONS(9), @@ -46088,1072 +45053,1360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(125), [sym_unknown_command_name] = ACTIONS(127), }, + [132] = { + [sym__statement] = STATE(2851), + [sym_unknown_builtin_statement] = STATE(2851), + [sym_return_statement] = STATE(2851), + [sym_break_statement] = STATE(2851), + [sym_continue_statement] = STATE(2851), + [sym_normal_statement] = STATE(2851), + [sym_setfiletype_statement] = STATE(2851), + [sym_options_statement] = STATE(2851), + [sym_startinsert_statement] = STATE(2851), + [sym_stopinsert_statement] = STATE(2851), + [sym_scriptencoding_statement] = STATE(2851), + [sym_comclear_statement] = STATE(2851), + [sym_delcommand_statement] = STATE(2851), + [sym_runtime_statement] = STATE(2851), + [sym_wincmd_statement] = STATE(2851), + [sym_source_statement] = STATE(2851), + [sym_global_statement] = STATE(2851), + [sym_filetype_statement] = STATE(2851), + [sym_colorscheme_statement] = STATE(2851), + [sym_lua_statement] = STATE(2851), + [sym_ruby_statement] = STATE(2851), + [sym_python_statement] = STATE(2851), + [sym_perl_statement] = STATE(2851), + [sym_for_loop] = STATE(2851), + [sym_while_loop] = STATE(2851), + [sym_if_statement] = STATE(2851), + [sym_try_statement] = STATE(2851), + [sym_throw_statement] = STATE(2851), + [sym_autocmd_statement] = STATE(2851), + [sym_augroup_statement] = STATE(2851), + [sym_bang_filter_statement] = STATE(2851), + [sym_let_statement] = STATE(2851), + [sym_const_statement] = STATE(2851), + [sym_set_statement] = STATE(2851), + [sym_setlocal_statement] = STATE(2851), + [sym_unlet_statement] = STATE(2851), + [sym_call_statement] = STATE(2851), + [sym_echo_statement] = STATE(2851), + [sym_echon_statement] = STATE(2851), + [sym_echohl_statement] = STATE(2851), + [sym_echomsg_statement] = STATE(2851), + [sym_echoerr_statement] = STATE(2851), + [sym_execute_statement] = STATE(2851), + [sym_silent_statement] = STATE(2851), + [sym_user_command] = STATE(2851), + [sym_function_definition] = STATE(2851), + [sym_range_statement] = STATE(2851), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2851), + [sym_map_statement] = STATE(2851), + [sym_highlight_statement] = STATE(2851), + [sym_syntax_statement] = STATE(2851), + [sym_sign_statement] = STATE(2851), + [aux_sym__statement_repeat1] = STATE(142), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, + [133] = { + [sym__statement] = STATE(2849), + [sym_unknown_builtin_statement] = STATE(2849), + [sym_return_statement] = STATE(2849), + [sym_break_statement] = STATE(2849), + [sym_continue_statement] = STATE(2849), + [sym_normal_statement] = STATE(2849), + [sym_setfiletype_statement] = STATE(2849), + [sym_options_statement] = STATE(2849), + [sym_startinsert_statement] = STATE(2849), + [sym_stopinsert_statement] = STATE(2849), + [sym_scriptencoding_statement] = STATE(2849), + [sym_comclear_statement] = STATE(2849), + [sym_delcommand_statement] = STATE(2849), + [sym_runtime_statement] = STATE(2849), + [sym_wincmd_statement] = STATE(2849), + [sym_source_statement] = STATE(2849), + [sym_global_statement] = STATE(2849), + [sym_filetype_statement] = STATE(2849), + [sym_colorscheme_statement] = STATE(2849), + [sym_lua_statement] = STATE(2849), + [sym_ruby_statement] = STATE(2849), + [sym_python_statement] = STATE(2849), + [sym_perl_statement] = STATE(2849), + [sym_for_loop] = STATE(2849), + [sym_while_loop] = STATE(2849), + [sym_if_statement] = STATE(2849), + [sym_try_statement] = STATE(2849), + [sym_throw_statement] = STATE(2849), + [sym_autocmd_statement] = STATE(2849), + [sym_augroup_statement] = STATE(2849), + [sym_bang_filter_statement] = STATE(2849), + [sym_let_statement] = STATE(2849), + [sym_const_statement] = STATE(2849), + [sym_set_statement] = STATE(2849), + [sym_setlocal_statement] = STATE(2849), + [sym_unlet_statement] = STATE(2849), + [sym_call_statement] = STATE(2849), + [sym_echo_statement] = STATE(2849), + [sym_echon_statement] = STATE(2849), + [sym_echohl_statement] = STATE(2849), + [sym_echomsg_statement] = STATE(2849), + [sym_echoerr_statement] = STATE(2849), + [sym_execute_statement] = STATE(2849), + [sym_silent_statement] = STATE(2849), + [sym_user_command] = STATE(2849), + [sym_function_definition] = STATE(2849), + [sym_range_statement] = STATE(2849), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2849), + [sym_map_statement] = STATE(2849), + [sym_highlight_statement] = STATE(2849), + [sym_syntax_statement] = STATE(2849), + [sym_sign_statement] = STATE(2849), + [aux_sym__statement_repeat1] = STATE(142), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), + [sym__line_continuation] = ACTIONS(3), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), + }, [134] = { - [sym__statement] = STATE(2827), - [sym_unknown_builtin_statement] = STATE(2827), - [sym_return_statement] = STATE(2827), - [sym_break_statement] = STATE(2827), - [sym_continue_statement] = STATE(2827), - [sym_normal_statement] = STATE(2827), - [sym_setfiletype_statement] = STATE(2827), - [sym_options_statement] = STATE(2827), - [sym_startinsert_statement] = STATE(2827), - [sym_stopinsert_statement] = STATE(2827), - [sym_scriptencoding_statement] = STATE(2827), - [sym_comclear_statement] = STATE(2827), - [sym_delcommand_statement] = STATE(2827), - [sym_runtime_statement] = STATE(2827), - [sym_wincmd_statement] = STATE(2827), - [sym_source_statement] = STATE(2827), - [sym_global_statement] = STATE(2827), - [sym_filetype_statement] = STATE(2827), - [sym_colorscheme_statement] = STATE(2827), - [sym_lua_statement] = STATE(2827), - [sym_ruby_statement] = STATE(2827), - [sym_python_statement] = STATE(2827), - [sym_perl_statement] = STATE(2827), - [sym_for_loop] = STATE(2827), - [sym_while_loop] = STATE(2827), - [sym_if_statement] = STATE(2827), - [sym_try_statement] = STATE(2827), - [sym_throw_statement] = STATE(2827), - [sym_autocmd_statement] = STATE(2827), - [sym_augroup_statement] = STATE(2827), - [sym_bang_filter_statement] = STATE(2827), - [sym_let_statement] = STATE(2827), - [sym_const_statement] = STATE(2827), - [sym_set_statement] = STATE(2827), - [sym_setlocal_statement] = STATE(2827), - [sym_unlet_statement] = STATE(2827), - [sym_call_statement] = STATE(2827), - [sym_echo_statement] = STATE(2827), - [sym_echon_statement] = STATE(2827), - [sym_echohl_statement] = STATE(2827), - [sym_echomsg_statement] = STATE(2827), - [sym_echoerr_statement] = STATE(2827), - [sym_execute_statement] = STATE(2827), - [sym_silent_statement] = STATE(2827), - [sym_user_command] = STATE(2827), - [sym_function_definition] = STATE(2827), - [sym_range_statement] = STATE(2827), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2827), - [sym_map_statement] = STATE(2827), - [sym_highlight_statement] = STATE(2827), - [sym_syntax_statement] = STATE(2827), - [sym_sign_statement] = STATE(2827), - [aux_sym__statement_repeat1] = STATE(141), - [anon_sym_COLON] = ACTIONS(7), - [sym_command_name] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(11), - [sym_mark] = ACTIONS(13), - [anon_sym_PERCENT] = ACTIONS(15), - [anon_sym_SLASH] = ACTIONS(17), - [anon_sym_DOT2] = ACTIONS(19), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DOLLAR] = ACTIONS(23), - [anon_sym_BSLASH_SLASH] = ACTIONS(25), - [anon_sym_BSLASH_QMARK] = ACTIONS(25), - [anon_sym_BSLASH_AMP] = ACTIONS(25), - [sym_integer_literal] = ACTIONS(27), - [sym_register] = ACTIONS(29), + [sym__statement] = STATE(2724), + [sym_unknown_builtin_statement] = STATE(2724), + [sym_return_statement] = STATE(2724), + [sym_break_statement] = STATE(2724), + [sym_continue_statement] = STATE(2724), + [sym_normal_statement] = STATE(2724), + [sym_setfiletype_statement] = STATE(2724), + [sym_options_statement] = STATE(2724), + [sym_startinsert_statement] = STATE(2724), + [sym_stopinsert_statement] = STATE(2724), + [sym_scriptencoding_statement] = STATE(2724), + [sym_comclear_statement] = STATE(2724), + [sym_delcommand_statement] = STATE(2724), + [sym_runtime_statement] = STATE(2724), + [sym_wincmd_statement] = STATE(2724), + [sym_source_statement] = STATE(2724), + [sym_global_statement] = STATE(2724), + [sym_filetype_statement] = STATE(2724), + [sym_colorscheme_statement] = STATE(2724), + [sym_lua_statement] = STATE(2724), + [sym_ruby_statement] = STATE(2724), + [sym_python_statement] = STATE(2724), + [sym_perl_statement] = STATE(2724), + [sym_for_loop] = STATE(2724), + [sym_while_loop] = STATE(2724), + [sym_if_statement] = STATE(2724), + [sym_try_statement] = STATE(2724), + [sym_throw_statement] = STATE(2724), + [sym_autocmd_statement] = STATE(2724), + [sym_augroup_statement] = STATE(2724), + [sym_bang_filter_statement] = STATE(2724), + [sym_let_statement] = STATE(2724), + [sym_const_statement] = STATE(2724), + [sym_set_statement] = STATE(2724), + [sym_setlocal_statement] = STATE(2724), + [sym_unlet_statement] = STATE(2724), + [sym_call_statement] = STATE(2724), + [sym_echo_statement] = STATE(2724), + [sym_echon_statement] = STATE(2724), + [sym_echohl_statement] = STATE(2724), + [sym_echomsg_statement] = STATE(2724), + [sym_echoerr_statement] = STATE(2724), + [sym_execute_statement] = STATE(2724), + [sym_silent_statement] = STATE(2724), + [sym_user_command] = STATE(2724), + [sym_function_definition] = STATE(2724), + [sym_range_statement] = STATE(2724), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2724), + [sym_map_statement] = STATE(2724), + [sym_highlight_statement] = STATE(2724), + [sym_syntax_statement] = STATE(2724), + [sym_sign_statement] = STATE(2724), + [aux_sym__statement_repeat1] = STATE(140), + [anon_sym_COLON] = ACTIONS(503), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(33), - [sym__for] = ACTIONS(35), - [sym__while] = ACTIONS(37), - [sym__if] = ACTIONS(39), - [sym__try] = ACTIONS(41), - [sym__const] = ACTIONS(43), - [sym__normal] = ACTIONS(45), - [sym__return] = ACTIONS(47), - [sym__perl] = ACTIONS(49), - [sym__lua] = ACTIONS(51), - [sym__ruby] = ACTIONS(53), - [sym__python] = ACTIONS(55), - [sym__throw] = ACTIONS(57), - [sym__execute] = ACTIONS(59), - [sym__autocmd] = ACTIONS(61), - [sym__silent] = ACTIONS(63), - [sym__echo] = ACTIONS(65), - [sym__echon] = ACTIONS(67), - [sym__echohl] = ACTIONS(69), - [sym__echomsg] = ACTIONS(71), - [sym__echoerr] = ACTIONS(73), - [sym__map] = ACTIONS(75), - [sym__nmap] = ACTIONS(75), - [sym__vmap] = ACTIONS(75), - [sym__xmap] = ACTIONS(75), - [sym__smap] = ACTIONS(75), - [sym__omap] = ACTIONS(75), - [sym__imap] = ACTIONS(75), - [sym__lmap] = ACTIONS(75), - [sym__cmap] = ACTIONS(75), - [sym__tmap] = ACTIONS(75), - [sym__noremap] = ACTIONS(75), - [sym__vnoremap] = ACTIONS(75), - [sym__nnoremap] = ACTIONS(75), - [sym__xnoremap] = ACTIONS(75), - [sym__snoremap] = ACTIONS(75), - [sym__onoremap] = ACTIONS(75), - [sym__inoremap] = ACTIONS(75), - [sym__lnoremap] = ACTIONS(75), - [sym__cnoremap] = ACTIONS(75), - [sym__tnoremap] = ACTIONS(75), - [sym__augroup] = ACTIONS(77), - [sym__highlight] = ACTIONS(79), - [sym__syntax] = ACTIONS(81), - [sym__set] = ACTIONS(83), - [sym__setlocal] = ACTIONS(85), - [sym__setfiletype] = ACTIONS(87), - [sym__browse] = ACTIONS(89), - [sym__options] = ACTIONS(91), - [sym__startinsert] = ACTIONS(93), - [sym__stopinsert] = ACTIONS(95), - [sym__scriptencoding] = ACTIONS(97), - [sym__source] = ACTIONS(99), - [sym__global] = ACTIONS(101), - [sym__colorscheme] = ACTIONS(103), - [sym__comclear] = ACTIONS(105), - [sym__delcommand] = ACTIONS(107), - [sym__runtime] = ACTIONS(109), - [sym__wincmd] = ACTIONS(111), - [sym__sign] = ACTIONS(113), - [sym__filetype] = ACTIONS(115), - [sym__let] = ACTIONS(117), - [sym__unlet] = ACTIONS(119), - [sym__call] = ACTIONS(121), - [sym__break] = ACTIONS(123), - [sym__continue] = ACTIONS(125), - [sym_unknown_command_name] = ACTIONS(127), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, [135] = { - [sym__statement] = STATE(2592), - [sym_unknown_builtin_statement] = STATE(2592), - [sym_return_statement] = STATE(2592), - [sym_break_statement] = STATE(2592), - [sym_continue_statement] = STATE(2592), - [sym_normal_statement] = STATE(2592), - [sym_setfiletype_statement] = STATE(2592), - [sym_options_statement] = STATE(2592), - [sym_startinsert_statement] = STATE(2592), - [sym_stopinsert_statement] = STATE(2592), - [sym_scriptencoding_statement] = STATE(2592), - [sym_comclear_statement] = STATE(2592), - [sym_delcommand_statement] = STATE(2592), - [sym_runtime_statement] = STATE(2592), - [sym_wincmd_statement] = STATE(2592), - [sym_source_statement] = STATE(2592), - [sym_global_statement] = STATE(2592), - [sym_filetype_statement] = STATE(2592), - [sym_colorscheme_statement] = STATE(2592), - [sym_lua_statement] = STATE(2592), - [sym_ruby_statement] = STATE(2592), - [sym_python_statement] = STATE(2592), - [sym_perl_statement] = STATE(2592), - [sym_for_loop] = STATE(2592), - [sym_while_loop] = STATE(2592), - [sym_if_statement] = STATE(2592), - [sym_try_statement] = STATE(2592), - [sym_throw_statement] = STATE(2592), - [sym_autocmd_statement] = STATE(2592), - [sym_augroup_statement] = STATE(2592), - [sym_bang_filter_statement] = STATE(2592), - [sym_let_statement] = STATE(2592), - [sym_const_statement] = STATE(2592), - [sym_set_statement] = STATE(2592), - [sym_setlocal_statement] = STATE(2592), - [sym_unlet_statement] = STATE(2592), - [sym_call_statement] = STATE(2592), - [sym_echo_statement] = STATE(2592), - [sym_echon_statement] = STATE(2592), - [sym_echohl_statement] = STATE(2592), - [sym_echomsg_statement] = STATE(2592), - [sym_echoerr_statement] = STATE(2592), - [sym_execute_statement] = STATE(2592), - [sym_silent_statement] = STATE(2592), - [sym_user_command] = STATE(2592), - [sym_function_definition] = STATE(2592), - [sym_range_statement] = STATE(2592), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2592), - [sym_map_statement] = STATE(2592), - [sym_highlight_statement] = STATE(2592), - [sym_syntax_statement] = STATE(2592), - [sym_sign_statement] = STATE(2592), + [sym__statement] = STATE(2889), + [sym_unknown_builtin_statement] = STATE(2889), + [sym_return_statement] = STATE(2889), + [sym_break_statement] = STATE(2889), + [sym_continue_statement] = STATE(2889), + [sym_normal_statement] = STATE(2889), + [sym_setfiletype_statement] = STATE(2889), + [sym_options_statement] = STATE(2889), + [sym_startinsert_statement] = STATE(2889), + [sym_stopinsert_statement] = STATE(2889), + [sym_scriptencoding_statement] = STATE(2889), + [sym_comclear_statement] = STATE(2889), + [sym_delcommand_statement] = STATE(2889), + [sym_runtime_statement] = STATE(2889), + [sym_wincmd_statement] = STATE(2889), + [sym_source_statement] = STATE(2889), + [sym_global_statement] = STATE(2889), + [sym_filetype_statement] = STATE(2889), + [sym_colorscheme_statement] = STATE(2889), + [sym_lua_statement] = STATE(2889), + [sym_ruby_statement] = STATE(2889), + [sym_python_statement] = STATE(2889), + [sym_perl_statement] = STATE(2889), + [sym_for_loop] = STATE(2889), + [sym_while_loop] = STATE(2889), + [sym_if_statement] = STATE(2889), + [sym_try_statement] = STATE(2889), + [sym_throw_statement] = STATE(2889), + [sym_autocmd_statement] = STATE(2889), + [sym_augroup_statement] = STATE(2889), + [sym_bang_filter_statement] = STATE(2889), + [sym_let_statement] = STATE(2889), + [sym_const_statement] = STATE(2889), + [sym_set_statement] = STATE(2889), + [sym_setlocal_statement] = STATE(2889), + [sym_unlet_statement] = STATE(2889), + [sym_call_statement] = STATE(2889), + [sym_echo_statement] = STATE(2889), + [sym_echon_statement] = STATE(2889), + [sym_echohl_statement] = STATE(2889), + [sym_echomsg_statement] = STATE(2889), + [sym_echoerr_statement] = STATE(2889), + [sym_execute_statement] = STATE(2889), + [sym_silent_statement] = STATE(2889), + [sym_user_command] = STATE(2889), + [sym_function_definition] = STATE(2889), + [sym_range_statement] = STATE(2889), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2889), + [sym_map_statement] = STATE(2889), + [sym_highlight_statement] = STATE(2889), + [sym_syntax_statement] = STATE(2889), + [sym_sign_statement] = STATE(2889), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, [136] = { - [sym__statement] = STATE(2616), - [sym_unknown_builtin_statement] = STATE(2616), - [sym_return_statement] = STATE(2616), - [sym_break_statement] = STATE(2616), - [sym_continue_statement] = STATE(2616), - [sym_normal_statement] = STATE(2616), - [sym_setfiletype_statement] = STATE(2616), - [sym_options_statement] = STATE(2616), - [sym_startinsert_statement] = STATE(2616), - [sym_stopinsert_statement] = STATE(2616), - [sym_scriptencoding_statement] = STATE(2616), - [sym_comclear_statement] = STATE(2616), - [sym_delcommand_statement] = STATE(2616), - [sym_runtime_statement] = STATE(2616), - [sym_wincmd_statement] = STATE(2616), - [sym_source_statement] = STATE(2616), - [sym_global_statement] = STATE(2616), - [sym_filetype_statement] = STATE(2616), - [sym_colorscheme_statement] = STATE(2616), - [sym_lua_statement] = STATE(2616), - [sym_ruby_statement] = STATE(2616), - [sym_python_statement] = STATE(2616), - [sym_perl_statement] = STATE(2616), - [sym_for_loop] = STATE(2616), - [sym_while_loop] = STATE(2616), - [sym_if_statement] = STATE(2616), - [sym_try_statement] = STATE(2616), - [sym_throw_statement] = STATE(2616), - [sym_autocmd_statement] = STATE(2616), - [sym_augroup_statement] = STATE(2616), - [sym_bang_filter_statement] = STATE(2616), - [sym_let_statement] = STATE(2616), - [sym_const_statement] = STATE(2616), - [sym_set_statement] = STATE(2616), - [sym_setlocal_statement] = STATE(2616), - [sym_unlet_statement] = STATE(2616), - [sym_call_statement] = STATE(2616), - [sym_echo_statement] = STATE(2616), - [sym_echon_statement] = STATE(2616), - [sym_echohl_statement] = STATE(2616), - [sym_echomsg_statement] = STATE(2616), - [sym_echoerr_statement] = STATE(2616), - [sym_execute_statement] = STATE(2616), - [sym_silent_statement] = STATE(2616), - [sym_user_command] = STATE(2616), - [sym_function_definition] = STATE(2616), - [sym_range_statement] = STATE(2616), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2616), - [sym_map_statement] = STATE(2616), - [sym_highlight_statement] = STATE(2616), - [sym_syntax_statement] = STATE(2616), - [sym_sign_statement] = STATE(2616), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [sym__statement] = STATE(2719), + [sym_unknown_builtin_statement] = STATE(2719), + [sym_return_statement] = STATE(2719), + [sym_break_statement] = STATE(2719), + [sym_continue_statement] = STATE(2719), + [sym_normal_statement] = STATE(2719), + [sym_setfiletype_statement] = STATE(2719), + [sym_options_statement] = STATE(2719), + [sym_startinsert_statement] = STATE(2719), + [sym_stopinsert_statement] = STATE(2719), + [sym_scriptencoding_statement] = STATE(2719), + [sym_comclear_statement] = STATE(2719), + [sym_delcommand_statement] = STATE(2719), + [sym_runtime_statement] = STATE(2719), + [sym_wincmd_statement] = STATE(2719), + [sym_source_statement] = STATE(2719), + [sym_global_statement] = STATE(2719), + [sym_filetype_statement] = STATE(2719), + [sym_colorscheme_statement] = STATE(2719), + [sym_lua_statement] = STATE(2719), + [sym_ruby_statement] = STATE(2719), + [sym_python_statement] = STATE(2719), + [sym_perl_statement] = STATE(2719), + [sym_for_loop] = STATE(2719), + [sym_while_loop] = STATE(2719), + [sym_if_statement] = STATE(2719), + [sym_try_statement] = STATE(2719), + [sym_throw_statement] = STATE(2719), + [sym_autocmd_statement] = STATE(2719), + [sym_augroup_statement] = STATE(2719), + [sym_bang_filter_statement] = STATE(2719), + [sym_let_statement] = STATE(2719), + [sym_const_statement] = STATE(2719), + [sym_set_statement] = STATE(2719), + [sym_setlocal_statement] = STATE(2719), + [sym_unlet_statement] = STATE(2719), + [sym_call_statement] = STATE(2719), + [sym_echo_statement] = STATE(2719), + [sym_echon_statement] = STATE(2719), + [sym_echohl_statement] = STATE(2719), + [sym_echomsg_statement] = STATE(2719), + [sym_echoerr_statement] = STATE(2719), + [sym_execute_statement] = STATE(2719), + [sym_silent_statement] = STATE(2719), + [sym_user_command] = STATE(2719), + [sym_function_definition] = STATE(2719), + [sym_range_statement] = STATE(2719), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2719), + [sym_map_statement] = STATE(2719), + [sym_highlight_statement] = STATE(2719), + [sym_syntax_statement] = STATE(2719), + [sym_sign_statement] = STATE(2719), + [aux_sym__statement_repeat1] = STATE(142), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, [137] = { - [sym__statement] = STATE(2686), - [sym_unknown_builtin_statement] = STATE(2686), - [sym_return_statement] = STATE(2686), - [sym_break_statement] = STATE(2686), - [sym_continue_statement] = STATE(2686), - [sym_normal_statement] = STATE(2686), - [sym_setfiletype_statement] = STATE(2686), - [sym_options_statement] = STATE(2686), - [sym_startinsert_statement] = STATE(2686), - [sym_stopinsert_statement] = STATE(2686), - [sym_scriptencoding_statement] = STATE(2686), - [sym_comclear_statement] = STATE(2686), - [sym_delcommand_statement] = STATE(2686), - [sym_runtime_statement] = STATE(2686), - [sym_wincmd_statement] = STATE(2686), - [sym_source_statement] = STATE(2686), - [sym_global_statement] = STATE(2686), - [sym_filetype_statement] = STATE(2686), - [sym_colorscheme_statement] = STATE(2686), - [sym_lua_statement] = STATE(2686), - [sym_ruby_statement] = STATE(2686), - [sym_python_statement] = STATE(2686), - [sym_perl_statement] = STATE(2686), - [sym_for_loop] = STATE(2686), - [sym_while_loop] = STATE(2686), - [sym_if_statement] = STATE(2686), - [sym_try_statement] = STATE(2686), - [sym_throw_statement] = STATE(2686), - [sym_autocmd_statement] = STATE(2686), - [sym_augroup_statement] = STATE(2686), - [sym_bang_filter_statement] = STATE(2686), - [sym_let_statement] = STATE(2686), - [sym_const_statement] = STATE(2686), - [sym_set_statement] = STATE(2686), - [sym_setlocal_statement] = STATE(2686), - [sym_unlet_statement] = STATE(2686), - [sym_call_statement] = STATE(2686), - [sym_echo_statement] = STATE(2686), - [sym_echon_statement] = STATE(2686), - [sym_echohl_statement] = STATE(2686), - [sym_echomsg_statement] = STATE(2686), - [sym_echoerr_statement] = STATE(2686), - [sym_execute_statement] = STATE(2686), - [sym_silent_statement] = STATE(2686), - [sym_user_command] = STATE(2686), - [sym_function_definition] = STATE(2686), - [sym_range_statement] = STATE(2686), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2686), - [sym_map_statement] = STATE(2686), - [sym_highlight_statement] = STATE(2686), - [sym_syntax_statement] = STATE(2686), - [sym_sign_statement] = STATE(2686), + [sym__statement] = STATE(2869), + [sym_unknown_builtin_statement] = STATE(2869), + [sym_return_statement] = STATE(2869), + [sym_break_statement] = STATE(2869), + [sym_continue_statement] = STATE(2869), + [sym_normal_statement] = STATE(2869), + [sym_setfiletype_statement] = STATE(2869), + [sym_options_statement] = STATE(2869), + [sym_startinsert_statement] = STATE(2869), + [sym_stopinsert_statement] = STATE(2869), + [sym_scriptencoding_statement] = STATE(2869), + [sym_comclear_statement] = STATE(2869), + [sym_delcommand_statement] = STATE(2869), + [sym_runtime_statement] = STATE(2869), + [sym_wincmd_statement] = STATE(2869), + [sym_source_statement] = STATE(2869), + [sym_global_statement] = STATE(2869), + [sym_filetype_statement] = STATE(2869), + [sym_colorscheme_statement] = STATE(2869), + [sym_lua_statement] = STATE(2869), + [sym_ruby_statement] = STATE(2869), + [sym_python_statement] = STATE(2869), + [sym_perl_statement] = STATE(2869), + [sym_for_loop] = STATE(2869), + [sym_while_loop] = STATE(2869), + [sym_if_statement] = STATE(2869), + [sym_try_statement] = STATE(2869), + [sym_throw_statement] = STATE(2869), + [sym_autocmd_statement] = STATE(2869), + [sym_augroup_statement] = STATE(2869), + [sym_bang_filter_statement] = STATE(2869), + [sym_let_statement] = STATE(2869), + [sym_const_statement] = STATE(2869), + [sym_set_statement] = STATE(2869), + [sym_setlocal_statement] = STATE(2869), + [sym_unlet_statement] = STATE(2869), + [sym_call_statement] = STATE(2869), + [sym_echo_statement] = STATE(2869), + [sym_echon_statement] = STATE(2869), + [sym_echohl_statement] = STATE(2869), + [sym_echomsg_statement] = STATE(2869), + [sym_echoerr_statement] = STATE(2869), + [sym_execute_statement] = STATE(2869), + [sym_silent_statement] = STATE(2869), + [sym_user_command] = STATE(2869), + [sym_function_definition] = STATE(2869), + [sym_range_statement] = STATE(2869), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2869), + [sym_map_statement] = STATE(2869), + [sym_highlight_statement] = STATE(2869), + [sym_syntax_statement] = STATE(2869), + [sym_sign_statement] = STATE(2869), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, [138] = { - [sym__statement] = STATE(2697), - [sym_unknown_builtin_statement] = STATE(2697), - [sym_return_statement] = STATE(2697), - [sym_break_statement] = STATE(2697), - [sym_continue_statement] = STATE(2697), - [sym_normal_statement] = STATE(2697), - [sym_setfiletype_statement] = STATE(2697), - [sym_options_statement] = STATE(2697), - [sym_startinsert_statement] = STATE(2697), - [sym_stopinsert_statement] = STATE(2697), - [sym_scriptencoding_statement] = STATE(2697), - [sym_comclear_statement] = STATE(2697), - [sym_delcommand_statement] = STATE(2697), - [sym_runtime_statement] = STATE(2697), - [sym_wincmd_statement] = STATE(2697), - [sym_source_statement] = STATE(2697), - [sym_global_statement] = STATE(2697), - [sym_filetype_statement] = STATE(2697), - [sym_colorscheme_statement] = STATE(2697), - [sym_lua_statement] = STATE(2697), - [sym_ruby_statement] = STATE(2697), - [sym_python_statement] = STATE(2697), - [sym_perl_statement] = STATE(2697), - [sym_for_loop] = STATE(2697), - [sym_while_loop] = STATE(2697), - [sym_if_statement] = STATE(2697), - [sym_try_statement] = STATE(2697), - [sym_throw_statement] = STATE(2697), - [sym_autocmd_statement] = STATE(2697), - [sym_augroup_statement] = STATE(2697), - [sym_bang_filter_statement] = STATE(2697), - [sym_let_statement] = STATE(2697), - [sym_const_statement] = STATE(2697), - [sym_set_statement] = STATE(2697), - [sym_setlocal_statement] = STATE(2697), - [sym_unlet_statement] = STATE(2697), - [sym_call_statement] = STATE(2697), - [sym_echo_statement] = STATE(2697), - [sym_echon_statement] = STATE(2697), - [sym_echohl_statement] = STATE(2697), - [sym_echomsg_statement] = STATE(2697), - [sym_echoerr_statement] = STATE(2697), - [sym_execute_statement] = STATE(2697), - [sym_silent_statement] = STATE(2697), - [sym_user_command] = STATE(2697), - [sym_function_definition] = STATE(2697), - [sym_range_statement] = STATE(2697), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2697), - [sym_map_statement] = STATE(2697), - [sym_highlight_statement] = STATE(2697), - [sym_syntax_statement] = STATE(2697), - [sym_sign_statement] = STATE(2697), + [sym__statement] = STATE(2893), + [sym_unknown_builtin_statement] = STATE(2893), + [sym_return_statement] = STATE(2893), + [sym_break_statement] = STATE(2893), + [sym_continue_statement] = STATE(2893), + [sym_normal_statement] = STATE(2893), + [sym_setfiletype_statement] = STATE(2893), + [sym_options_statement] = STATE(2893), + [sym_startinsert_statement] = STATE(2893), + [sym_stopinsert_statement] = STATE(2893), + [sym_scriptencoding_statement] = STATE(2893), + [sym_comclear_statement] = STATE(2893), + [sym_delcommand_statement] = STATE(2893), + [sym_runtime_statement] = STATE(2893), + [sym_wincmd_statement] = STATE(2893), + [sym_source_statement] = STATE(2893), + [sym_global_statement] = STATE(2893), + [sym_filetype_statement] = STATE(2893), + [sym_colorscheme_statement] = STATE(2893), + [sym_lua_statement] = STATE(2893), + [sym_ruby_statement] = STATE(2893), + [sym_python_statement] = STATE(2893), + [sym_perl_statement] = STATE(2893), + [sym_for_loop] = STATE(2893), + [sym_while_loop] = STATE(2893), + [sym_if_statement] = STATE(2893), + [sym_try_statement] = STATE(2893), + [sym_throw_statement] = STATE(2893), + [sym_autocmd_statement] = STATE(2893), + [sym_augroup_statement] = STATE(2893), + [sym_bang_filter_statement] = STATE(2893), + [sym_let_statement] = STATE(2893), + [sym_const_statement] = STATE(2893), + [sym_set_statement] = STATE(2893), + [sym_setlocal_statement] = STATE(2893), + [sym_unlet_statement] = STATE(2893), + [sym_call_statement] = STATE(2893), + [sym_echo_statement] = STATE(2893), + [sym_echon_statement] = STATE(2893), + [sym_echohl_statement] = STATE(2893), + [sym_echomsg_statement] = STATE(2893), + [sym_echoerr_statement] = STATE(2893), + [sym_execute_statement] = STATE(2893), + [sym_silent_statement] = STATE(2893), + [sym_user_command] = STATE(2893), + [sym_function_definition] = STATE(2893), + [sym_range_statement] = STATE(2893), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2893), + [sym_map_statement] = STATE(2893), + [sym_highlight_statement] = STATE(2893), + [sym_syntax_statement] = STATE(2893), + [sym_sign_statement] = STATE(2893), [aux_sym__statement_repeat1] = STATE(142), - [anon_sym_COLON] = ACTIONS(517), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, [139] = { - [sym__statement] = STATE(2906), - [sym_unknown_builtin_statement] = STATE(2906), - [sym_return_statement] = STATE(2906), - [sym_break_statement] = STATE(2906), - [sym_continue_statement] = STATE(2906), - [sym_normal_statement] = STATE(2906), - [sym_setfiletype_statement] = STATE(2906), - [sym_options_statement] = STATE(2906), - [sym_startinsert_statement] = STATE(2906), - [sym_stopinsert_statement] = STATE(2906), - [sym_scriptencoding_statement] = STATE(2906), - [sym_comclear_statement] = STATE(2906), - [sym_delcommand_statement] = STATE(2906), - [sym_runtime_statement] = STATE(2906), - [sym_wincmd_statement] = STATE(2906), - [sym_source_statement] = STATE(2906), - [sym_global_statement] = STATE(2906), - [sym_filetype_statement] = STATE(2906), - [sym_colorscheme_statement] = STATE(2906), - [sym_lua_statement] = STATE(2906), - [sym_ruby_statement] = STATE(2906), - [sym_python_statement] = STATE(2906), - [sym_perl_statement] = STATE(2906), - [sym_for_loop] = STATE(2906), - [sym_while_loop] = STATE(2906), - [sym_if_statement] = STATE(2906), - [sym_try_statement] = STATE(2906), - [sym_throw_statement] = STATE(2906), - [sym_autocmd_statement] = STATE(2906), - [sym_augroup_statement] = STATE(2906), - [sym_bang_filter_statement] = STATE(2906), - [sym_let_statement] = STATE(2906), - [sym_const_statement] = STATE(2906), - [sym_set_statement] = STATE(2906), - [sym_setlocal_statement] = STATE(2906), - [sym_unlet_statement] = STATE(2906), - [sym_call_statement] = STATE(2906), - [sym_echo_statement] = STATE(2906), - [sym_echon_statement] = STATE(2906), - [sym_echohl_statement] = STATE(2906), - [sym_echomsg_statement] = STATE(2906), - [sym_echoerr_statement] = STATE(2906), - [sym_execute_statement] = STATE(2906), - [sym_silent_statement] = STATE(2906), - [sym_user_command] = STATE(2906), - [sym_function_definition] = STATE(2906), - [sym_range_statement] = STATE(2906), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2906), - [sym_map_statement] = STATE(2906), - [sym_highlight_statement] = STATE(2906), - [sym_syntax_statement] = STATE(2906), - [sym_sign_statement] = STATE(2906), - [aux_sym__statement_repeat1] = STATE(140), - [anon_sym_COLON] = ACTIONS(653), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [sym__statement] = STATE(2903), + [sym_unknown_builtin_statement] = STATE(2903), + [sym_return_statement] = STATE(2903), + [sym_break_statement] = STATE(2903), + [sym_continue_statement] = STATE(2903), + [sym_normal_statement] = STATE(2903), + [sym_setfiletype_statement] = STATE(2903), + [sym_options_statement] = STATE(2903), + [sym_startinsert_statement] = STATE(2903), + [sym_stopinsert_statement] = STATE(2903), + [sym_scriptencoding_statement] = STATE(2903), + [sym_comclear_statement] = STATE(2903), + [sym_delcommand_statement] = STATE(2903), + [sym_runtime_statement] = STATE(2903), + [sym_wincmd_statement] = STATE(2903), + [sym_source_statement] = STATE(2903), + [sym_global_statement] = STATE(2903), + [sym_filetype_statement] = STATE(2903), + [sym_colorscheme_statement] = STATE(2903), + [sym_lua_statement] = STATE(2903), + [sym_ruby_statement] = STATE(2903), + [sym_python_statement] = STATE(2903), + [sym_perl_statement] = STATE(2903), + [sym_for_loop] = STATE(2903), + [sym_while_loop] = STATE(2903), + [sym_if_statement] = STATE(2903), + [sym_try_statement] = STATE(2903), + [sym_throw_statement] = STATE(2903), + [sym_autocmd_statement] = STATE(2903), + [sym_augroup_statement] = STATE(2903), + [sym_bang_filter_statement] = STATE(2903), + [sym_let_statement] = STATE(2903), + [sym_const_statement] = STATE(2903), + [sym_set_statement] = STATE(2903), + [sym_setlocal_statement] = STATE(2903), + [sym_unlet_statement] = STATE(2903), + [sym_call_statement] = STATE(2903), + [sym_echo_statement] = STATE(2903), + [sym_echon_statement] = STATE(2903), + [sym_echohl_statement] = STATE(2903), + [sym_echomsg_statement] = STATE(2903), + [sym_echoerr_statement] = STATE(2903), + [sym_execute_statement] = STATE(2903), + [sym_silent_statement] = STATE(2903), + [sym_user_command] = STATE(2903), + [sym_function_definition] = STATE(2903), + [sym_range_statement] = STATE(2903), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2903), + [sym_map_statement] = STATE(2903), + [sym_highlight_statement] = STATE(2903), + [sym_syntax_statement] = STATE(2903), + [sym_sign_statement] = STATE(2903), + [aux_sym__statement_repeat1] = STATE(142), + [anon_sym_COLON] = ACTIONS(633), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, [140] = { - [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_comclear_statement] = STATE(2715), - [sym_delcommand_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_autocmd_statement] = STATE(2715), - [sym_augroup_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_user_command] = STATE(2715), - [sym_function_definition] = STATE(2715), - [sym_range_statement] = STATE(2715), - [sym__range] = STATE(2070), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1976), - [sym_current_line] = STATE(1976), - [sym_next_line] = STATE(1976), - [sym_last_line] = STATE(1976), - [sym_previous_pattern] = STATE(1976), - [sym_register_statement] = STATE(2715), - [sym_map_statement] = STATE(2715), - [sym_highlight_statement] = STATE(2715), - [sym_syntax_statement] = STATE(2715), - [sym_sign_statement] = STATE(2715), + [sym_unknown_builtin_statement] = STATE(2757), + [sym_return_statement] = STATE(2757), + [sym_break_statement] = STATE(2757), + [sym_continue_statement] = STATE(2757), + [sym_normal_statement] = STATE(2757), + [sym_setfiletype_statement] = STATE(2757), + [sym_options_statement] = STATE(2757), + [sym_startinsert_statement] = STATE(2757), + [sym_stopinsert_statement] = STATE(2757), + [sym_scriptencoding_statement] = STATE(2757), + [sym_comclear_statement] = STATE(2757), + [sym_delcommand_statement] = STATE(2757), + [sym_runtime_statement] = STATE(2757), + [sym_wincmd_statement] = STATE(2757), + [sym_source_statement] = STATE(2757), + [sym_global_statement] = STATE(2757), + [sym_filetype_statement] = STATE(2757), + [sym_colorscheme_statement] = STATE(2757), + [sym_lua_statement] = STATE(2757), + [sym_ruby_statement] = STATE(2757), + [sym_python_statement] = STATE(2757), + [sym_perl_statement] = STATE(2757), + [sym_for_loop] = STATE(2757), + [sym_while_loop] = STATE(2757), + [sym_if_statement] = STATE(2757), + [sym_try_statement] = STATE(2757), + [sym_throw_statement] = STATE(2757), + [sym_autocmd_statement] = STATE(2757), + [sym_augroup_statement] = STATE(2757), + [sym_bang_filter_statement] = STATE(2757), + [sym_let_statement] = STATE(2757), + [sym_const_statement] = STATE(2757), + [sym_set_statement] = STATE(2757), + [sym_setlocal_statement] = STATE(2757), + [sym_unlet_statement] = STATE(2757), + [sym_call_statement] = STATE(2757), + [sym_echo_statement] = STATE(2757), + [sym_echon_statement] = STATE(2757), + [sym_echohl_statement] = STATE(2757), + [sym_echomsg_statement] = STATE(2757), + [sym_echoerr_statement] = STATE(2757), + [sym_execute_statement] = STATE(2757), + [sym_silent_statement] = STATE(2757), + [sym_user_command] = STATE(2757), + [sym_function_definition] = STATE(2757), + [sym_range_statement] = STATE(2757), + [sym__range] = STATE(2123), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(2060), + [sym_current_line] = STATE(2060), + [sym_next_line] = STATE(2060), + [sym_last_line] = STATE(2060), + [sym_previous_pattern] = STATE(2060), + [sym_register_statement] = STATE(2757), + [sym_map_statement] = STATE(2757), + [sym_highlight_statement] = STATE(2757), + [sym_syntax_statement] = STATE(2757), + [sym_sign_statement] = STATE(2757), [aux_sym__statement_repeat1] = STATE(263), [anon_sym_COLON] = ACTIONS(769), - [sym_command_name] = ACTIONS(655), - [anon_sym_QMARK] = ACTIONS(661), - [sym_mark] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [sym_command_name] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(513), + [sym_mark] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(667), - [sym__silent] = ACTIONS(669), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(671), - [sym__nmap] = ACTIONS(671), - [sym__vmap] = ACTIONS(671), - [sym__xmap] = ACTIONS(671), - [sym__smap] = ACTIONS(671), - [sym__omap] = ACTIONS(671), - [sym__imap] = ACTIONS(671), - [sym__lmap] = ACTIONS(671), - [sym__cmap] = ACTIONS(671), - [sym__tmap] = ACTIONS(671), - [sym__noremap] = ACTIONS(671), - [sym__vnoremap] = ACTIONS(671), - [sym__nnoremap] = ACTIONS(671), - [sym__xnoremap] = ACTIONS(671), - [sym__snoremap] = ACTIONS(671), - [sym__onoremap] = ACTIONS(671), - [sym__inoremap] = ACTIONS(671), - [sym__lnoremap] = ACTIONS(671), - [sym__cnoremap] = ACTIONS(671), - [sym__tnoremap] = ACTIONS(671), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(673), - [sym__syntax] = ACTIONS(675), - [sym__set] = ACTIONS(677), - [sym__setlocal] = ACTIONS(679), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(681), - [sym__global] = ACTIONS(683), - [sym__colorscheme] = ACTIONS(685), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(687), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(689), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(691), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(561), + [sym__silent] = ACTIONS(563), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(575), + [sym__nmap] = ACTIONS(575), + [sym__vmap] = ACTIONS(575), + [sym__xmap] = ACTIONS(575), + [sym__smap] = ACTIONS(575), + [sym__omap] = ACTIONS(575), + [sym__imap] = ACTIONS(575), + [sym__lmap] = ACTIONS(575), + [sym__cmap] = ACTIONS(575), + [sym__tmap] = ACTIONS(575), + [sym__noremap] = ACTIONS(575), + [sym__vnoremap] = ACTIONS(575), + [sym__nnoremap] = ACTIONS(575), + [sym__xnoremap] = ACTIONS(575), + [sym__snoremap] = ACTIONS(575), + [sym__onoremap] = ACTIONS(575), + [sym__inoremap] = ACTIONS(575), + [sym__lnoremap] = ACTIONS(575), + [sym__cnoremap] = ACTIONS(575), + [sym__tnoremap] = ACTIONS(575), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(579), + [sym__syntax] = ACTIONS(581), + [sym__set] = ACTIONS(583), + [sym__setlocal] = ACTIONS(585), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(599), + [sym__global] = ACTIONS(601), + [sym__colorscheme] = ACTIONS(603), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(609), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(613), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(627), }, [141] = { - [sym_unknown_builtin_statement] = STATE(2806), - [sym_return_statement] = STATE(2806), - [sym_break_statement] = STATE(2806), - [sym_continue_statement] = STATE(2806), - [sym_normal_statement] = STATE(2806), - [sym_setfiletype_statement] = STATE(2806), - [sym_options_statement] = STATE(2806), - [sym_startinsert_statement] = STATE(2806), - [sym_stopinsert_statement] = STATE(2806), - [sym_scriptencoding_statement] = STATE(2806), - [sym_comclear_statement] = STATE(2806), - [sym_delcommand_statement] = STATE(2806), - [sym_runtime_statement] = STATE(2806), - [sym_wincmd_statement] = STATE(2806), - [sym_source_statement] = STATE(2806), - [sym_global_statement] = STATE(2806), - [sym_filetype_statement] = STATE(2806), - [sym_colorscheme_statement] = STATE(2806), - [sym_lua_statement] = STATE(2806), - [sym_ruby_statement] = STATE(2806), - [sym_python_statement] = STATE(2806), - [sym_perl_statement] = STATE(2806), - [sym_for_loop] = STATE(2806), - [sym_while_loop] = STATE(2806), - [sym_if_statement] = STATE(2806), - [sym_try_statement] = STATE(2806), - [sym_throw_statement] = STATE(2806), - [sym_autocmd_statement] = STATE(2806), - [sym_augroup_statement] = STATE(2806), - [sym_bang_filter_statement] = STATE(2806), - [sym_let_statement] = STATE(2806), - [sym_const_statement] = STATE(2806), - [sym_set_statement] = STATE(2806), - [sym_setlocal_statement] = STATE(2806), - [sym_unlet_statement] = STATE(2806), - [sym_call_statement] = STATE(2806), - [sym_echo_statement] = STATE(2806), - [sym_echon_statement] = STATE(2806), - [sym_echohl_statement] = STATE(2806), - [sym_echomsg_statement] = STATE(2806), - [sym_echoerr_statement] = STATE(2806), - [sym_execute_statement] = STATE(2806), - [sym_silent_statement] = STATE(2806), - [sym_user_command] = STATE(2806), - [sym_function_definition] = STATE(2806), - [sym_range_statement] = STATE(2806), - [sym__range] = STATE(1998), - [sym__range_explicit] = STATE(2058), - [sym__range_marker] = STATE(1859), - [sym_current_line] = STATE(1859), - [sym_next_line] = STATE(1859), - [sym_last_line] = STATE(1859), - [sym_previous_pattern] = STATE(1859), - [sym_register_statement] = STATE(2806), - [sym_map_statement] = STATE(2806), - [sym_highlight_statement] = STATE(2806), - [sym_syntax_statement] = STATE(2806), - [sym_sign_statement] = STATE(2806), + [sym_unknown_builtin_statement] = STATE(2709), + [sym_return_statement] = STATE(2709), + [sym_break_statement] = STATE(2709), + [sym_continue_statement] = STATE(2709), + [sym_normal_statement] = STATE(2709), + [sym_setfiletype_statement] = STATE(2709), + [sym_options_statement] = STATE(2709), + [sym_startinsert_statement] = STATE(2709), + [sym_stopinsert_statement] = STATE(2709), + [sym_scriptencoding_statement] = STATE(2709), + [sym_comclear_statement] = STATE(2709), + [sym_delcommand_statement] = STATE(2709), + [sym_runtime_statement] = STATE(2709), + [sym_wincmd_statement] = STATE(2709), + [sym_source_statement] = STATE(2709), + [sym_global_statement] = STATE(2709), + [sym_filetype_statement] = STATE(2709), + [sym_colorscheme_statement] = STATE(2709), + [sym_lua_statement] = STATE(2709), + [sym_ruby_statement] = STATE(2709), + [sym_python_statement] = STATE(2709), + [sym_perl_statement] = STATE(2709), + [sym_for_loop] = STATE(2709), + [sym_while_loop] = STATE(2709), + [sym_if_statement] = STATE(2709), + [sym_try_statement] = STATE(2709), + [sym_throw_statement] = STATE(2709), + [sym_autocmd_statement] = STATE(2709), + [sym_augroup_statement] = STATE(2709), + [sym_bang_filter_statement] = STATE(2709), + [sym_let_statement] = STATE(2709), + [sym_const_statement] = STATE(2709), + [sym_set_statement] = STATE(2709), + [sym_setlocal_statement] = STATE(2709), + [sym_unlet_statement] = STATE(2709), + [sym_call_statement] = STATE(2709), + [sym_echo_statement] = STATE(2709), + [sym_echon_statement] = STATE(2709), + [sym_echohl_statement] = STATE(2709), + [sym_echomsg_statement] = STATE(2709), + [sym_echoerr_statement] = STATE(2709), + [sym_execute_statement] = STATE(2709), + [sym_silent_statement] = STATE(2709), + [sym_user_command] = STATE(2709), + [sym_function_definition] = STATE(2709), + [sym_range_statement] = STATE(2709), + [sym__range] = STATE(2034), + [sym__range_explicit] = STATE(2103), + [sym__range_marker] = STATE(1873), + [sym_current_line] = STATE(1873), + [sym_next_line] = STATE(1873), + [sym_last_line] = STATE(1873), + [sym_previous_pattern] = STATE(1873), + [sym_register_statement] = STATE(2709), + [sym_map_statement] = STATE(2709), + [sym_highlight_statement] = STATE(2709), + [sym_syntax_statement] = STATE(2709), + [sym_sign_statement] = STATE(2709), [aux_sym__statement_repeat1] = STATE(263), [anon_sym_COLON] = ACTIONS(769), [sym_command_name] = ACTIONS(9), @@ -47239,147 +46492,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(127), }, [142] = { - [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_comclear_statement] = STATE(2715), - [sym_delcommand_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_autocmd_statement] = STATE(2715), - [sym_augroup_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_user_command] = STATE(2715), - [sym_function_definition] = STATE(2715), - [sym_range_statement] = STATE(2715), - [sym__range] = STATE(2008), - [sym__range_explicit] = STATE(2047), - [sym__range_marker] = STATE(1849), - [sym_current_line] = STATE(1849), - [sym_next_line] = STATE(1849), - [sym_last_line] = STATE(1849), - [sym_previous_pattern] = STATE(1849), - [sym_register_statement] = STATE(2715), - [sym_map_statement] = STATE(2715), - [sym_highlight_statement] = STATE(2715), - [sym_syntax_statement] = STATE(2715), - [sym_sign_statement] = STATE(2715), + [sym_unknown_builtin_statement] = STATE(2757), + [sym_return_statement] = STATE(2757), + [sym_break_statement] = STATE(2757), + [sym_continue_statement] = STATE(2757), + [sym_normal_statement] = STATE(2757), + [sym_setfiletype_statement] = STATE(2757), + [sym_options_statement] = STATE(2757), + [sym_startinsert_statement] = STATE(2757), + [sym_stopinsert_statement] = STATE(2757), + [sym_scriptencoding_statement] = STATE(2757), + [sym_comclear_statement] = STATE(2757), + [sym_delcommand_statement] = STATE(2757), + [sym_runtime_statement] = STATE(2757), + [sym_wincmd_statement] = STATE(2757), + [sym_source_statement] = STATE(2757), + [sym_global_statement] = STATE(2757), + [sym_filetype_statement] = STATE(2757), + [sym_colorscheme_statement] = STATE(2757), + [sym_lua_statement] = STATE(2757), + [sym_ruby_statement] = STATE(2757), + [sym_python_statement] = STATE(2757), + [sym_perl_statement] = STATE(2757), + [sym_for_loop] = STATE(2757), + [sym_while_loop] = STATE(2757), + [sym_if_statement] = STATE(2757), + [sym_try_statement] = STATE(2757), + [sym_throw_statement] = STATE(2757), + [sym_autocmd_statement] = STATE(2757), + [sym_augroup_statement] = STATE(2757), + [sym_bang_filter_statement] = STATE(2757), + [sym_let_statement] = STATE(2757), + [sym_const_statement] = STATE(2757), + [sym_set_statement] = STATE(2757), + [sym_setlocal_statement] = STATE(2757), + [sym_unlet_statement] = STATE(2757), + [sym_call_statement] = STATE(2757), + [sym_echo_statement] = STATE(2757), + [sym_echon_statement] = STATE(2757), + [sym_echohl_statement] = STATE(2757), + [sym_echomsg_statement] = STATE(2757), + [sym_echoerr_statement] = STATE(2757), + [sym_execute_statement] = STATE(2757), + [sym_silent_statement] = STATE(2757), + [sym_user_command] = STATE(2757), + [sym_function_definition] = STATE(2757), + [sym_range_statement] = STATE(2757), + [sym__range] = STATE(2049), + [sym__range_explicit] = STATE(2067), + [sym__range_marker] = STATE(1852), + [sym_current_line] = STATE(1852), + [sym_next_line] = STATE(1852), + [sym_last_line] = STATE(1852), + [sym_previous_pattern] = STATE(1852), + [sym_register_statement] = STATE(2757), + [sym_map_statement] = STATE(2757), + [sym_highlight_statement] = STATE(2757), + [sym_syntax_statement] = STATE(2757), + [sym_sign_statement] = STATE(2757), [aux_sym__statement_repeat1] = STATE(263), [anon_sym_COLON] = ACTIONS(769), - [sym_command_name] = ACTIONS(519), - [anon_sym_QMARK] = ACTIONS(525), - [sym_mark] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT2] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(537), - [anon_sym_BSLASH_SLASH] = ACTIONS(539), - [anon_sym_BSLASH_QMARK] = ACTIONS(539), - [anon_sym_BSLASH_AMP] = ACTIONS(539), - [sym_integer_literal] = ACTIONS(541), - [sym_register] = ACTIONS(543), + [sym_command_name] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(641), + [sym_mark] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_DOT2] = ACTIONS(521), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(525), + [anon_sym_BSLASH_SLASH] = ACTIONS(527), + [anon_sym_BSLASH_QMARK] = ACTIONS(527), + [anon_sym_BSLASH_AMP] = ACTIONS(527), + [sym_integer_literal] = ACTIONS(529), + [sym_register] = ACTIONS(531), [sym__line_continuation] = ACTIONS(3), - [sym__function] = ACTIONS(545), - [sym__for] = ACTIONS(547), - [sym__while] = ACTIONS(549), - [sym__if] = ACTIONS(551), - [sym__try] = ACTIONS(553), - [sym__const] = ACTIONS(555), - [sym__normal] = ACTIONS(557), - [sym__return] = ACTIONS(559), - [sym__perl] = ACTIONS(561), - [sym__lua] = ACTIONS(563), - [sym__ruby] = ACTIONS(565), - [sym__python] = ACTIONS(567), - [sym__throw] = ACTIONS(569), - [sym__execute] = ACTIONS(571), - [sym__autocmd] = ACTIONS(573), - [sym__silent] = ACTIONS(575), - [sym__echo] = ACTIONS(577), - [sym__echon] = ACTIONS(579), - [sym__echohl] = ACTIONS(581), - [sym__echomsg] = ACTIONS(583), - [sym__echoerr] = ACTIONS(585), - [sym__map] = ACTIONS(587), - [sym__nmap] = ACTIONS(587), - [sym__vmap] = ACTIONS(587), - [sym__xmap] = ACTIONS(587), - [sym__smap] = ACTIONS(587), - [sym__omap] = ACTIONS(587), - [sym__imap] = ACTIONS(587), - [sym__lmap] = ACTIONS(587), - [sym__cmap] = ACTIONS(587), - [sym__tmap] = ACTIONS(587), - [sym__noremap] = ACTIONS(587), - [sym__vnoremap] = ACTIONS(587), - [sym__nnoremap] = ACTIONS(587), - [sym__xnoremap] = ACTIONS(587), - [sym__snoremap] = ACTIONS(587), - [sym__onoremap] = ACTIONS(587), - [sym__inoremap] = ACTIONS(587), - [sym__lnoremap] = ACTIONS(587), - [sym__cnoremap] = ACTIONS(587), - [sym__tnoremap] = ACTIONS(587), - [sym__augroup] = ACTIONS(589), - [sym__highlight] = ACTIONS(591), - [sym__syntax] = ACTIONS(593), - [sym__set] = ACTIONS(595), - [sym__setlocal] = ACTIONS(597), - [sym__setfiletype] = ACTIONS(599), - [sym__browse] = ACTIONS(601), - [sym__options] = ACTIONS(603), - [sym__startinsert] = ACTIONS(605), - [sym__stopinsert] = ACTIONS(607), - [sym__scriptencoding] = ACTIONS(609), - [sym__source] = ACTIONS(611), - [sym__global] = ACTIONS(613), - [sym__colorscheme] = ACTIONS(615), - [sym__comclear] = ACTIONS(617), - [sym__delcommand] = ACTIONS(619), - [sym__runtime] = ACTIONS(621), - [sym__wincmd] = ACTIONS(623), - [sym__sign] = ACTIONS(625), - [sym__filetype] = ACTIONS(627), - [sym__let] = ACTIONS(629), - [sym__unlet] = ACTIONS(631), - [sym__call] = ACTIONS(633), - [sym__break] = ACTIONS(635), - [sym__continue] = ACTIONS(637), - [sym_unknown_command_name] = ACTIONS(639), + [sym__function] = ACTIONS(533), + [sym__for] = ACTIONS(535), + [sym__while] = ACTIONS(537), + [sym__if] = ACTIONS(539), + [sym__try] = ACTIONS(541), + [sym__const] = ACTIONS(543), + [sym__normal] = ACTIONS(545), + [sym__return] = ACTIONS(547), + [sym__perl] = ACTIONS(549), + [sym__lua] = ACTIONS(551), + [sym__ruby] = ACTIONS(553), + [sym__python] = ACTIONS(555), + [sym__throw] = ACTIONS(557), + [sym__execute] = ACTIONS(559), + [sym__autocmd] = ACTIONS(647), + [sym__silent] = ACTIONS(649), + [sym__echo] = ACTIONS(565), + [sym__echon] = ACTIONS(567), + [sym__echohl] = ACTIONS(569), + [sym__echomsg] = ACTIONS(571), + [sym__echoerr] = ACTIONS(573), + [sym__map] = ACTIONS(651), + [sym__nmap] = ACTIONS(651), + [sym__vmap] = ACTIONS(651), + [sym__xmap] = ACTIONS(651), + [sym__smap] = ACTIONS(651), + [sym__omap] = ACTIONS(651), + [sym__imap] = ACTIONS(651), + [sym__lmap] = ACTIONS(651), + [sym__cmap] = ACTIONS(651), + [sym__tmap] = ACTIONS(651), + [sym__noremap] = ACTIONS(651), + [sym__vnoremap] = ACTIONS(651), + [sym__nnoremap] = ACTIONS(651), + [sym__xnoremap] = ACTIONS(651), + [sym__snoremap] = ACTIONS(651), + [sym__onoremap] = ACTIONS(651), + [sym__inoremap] = ACTIONS(651), + [sym__lnoremap] = ACTIONS(651), + [sym__cnoremap] = ACTIONS(651), + [sym__tnoremap] = ACTIONS(651), + [sym__augroup] = ACTIONS(577), + [sym__highlight] = ACTIONS(653), + [sym__syntax] = ACTIONS(655), + [sym__set] = ACTIONS(657), + [sym__setlocal] = ACTIONS(659), + [sym__setfiletype] = ACTIONS(587), + [sym__browse] = ACTIONS(589), + [sym__options] = ACTIONS(591), + [sym__startinsert] = ACTIONS(593), + [sym__stopinsert] = ACTIONS(595), + [sym__scriptencoding] = ACTIONS(597), + [sym__source] = ACTIONS(661), + [sym__global] = ACTIONS(663), + [sym__colorscheme] = ACTIONS(665), + [sym__comclear] = ACTIONS(605), + [sym__delcommand] = ACTIONS(607), + [sym__runtime] = ACTIONS(667), + [sym__wincmd] = ACTIONS(611), + [sym__sign] = ACTIONS(669), + [sym__filetype] = ACTIONS(615), + [sym__let] = ACTIONS(617), + [sym__unlet] = ACTIONS(619), + [sym__call] = ACTIONS(621), + [sym__break] = ACTIONS(623), + [sym__continue] = ACTIONS(625), + [sym_unknown_command_name] = ACTIONS(671), }, [143] = { [anon_sym_COLON] = ACTIONS(771), @@ -47418,7 +46671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(774), [anon_sym_BANG_TILDE] = ACTIONS(774), [sym_integer_literal] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_LBRACK2] = ACTIONS(771), [aux_sym_pattern_multi_token1] = ACTIONS(776), [aux_sym_pattern_multi_token2] = ACTIONS(776), [aux_sym_pattern_multi_token3] = ACTIONS(776), @@ -47538,7 +46791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(774), [anon_sym_BANG_TILDE] = ACTIONS(774), [sym_integer_literal] = ACTIONS(774), - [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_LBRACK2] = ACTIONS(771), [aux_sym_pattern_multi_token1] = ACTIONS(776), [aux_sym_pattern_multi_token2] = ACTIONS(776), [aux_sym_pattern_multi_token3] = ACTIONS(776), @@ -47654,7 +46907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(785), [anon_sym_BANG_TILDE] = ACTIONS(785), [sym_integer_literal] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_LBRACK2] = ACTIONS(785), [sym_register] = ACTIONS(785), [sym__newline_or_pipe] = ACTIONS(785), [sym__line_continuation] = ACTIONS(3), @@ -47731,13 +46984,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(785), }, [146] = { - [sym__immediate_curly_braces_name_expression] = STATE(146), - [aux_sym_identifier_repeat1] = STATE(146), + [sym__immediate_curly_braces_name_expression] = STATE(147), + [aux_sym_identifier_repeat1] = STATE(147), [anon_sym_COLON] = ACTIONS(793), [anon_sym_DOT] = ACTIONS(795), [sym_command_name] = ACTIONS(795), - [anon_sym_LBRACE2] = ACTIONS(797), - [aux_sym_identifier_token2] = ACTIONS(800), + [anon_sym_LBRACE2] = ACTIONS(789), + [aux_sym_identifier_token2] = ACTIONS(797), [anon_sym_QMARK] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(793), [sym_mark] = ACTIONS(793), @@ -47765,7 +47018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(793), [anon_sym_BANG_TILDE] = ACTIONS(793), [sym_integer_literal] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_LBRACK2] = ACTIONS(793), [sym_register] = ACTIONS(793), [sym__newline_or_pipe] = ACTIONS(793), [sym__line_continuation] = ACTIONS(3), @@ -47842,224 +47095,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(793), }, [147] = { - [sym__immediate_curly_braces_name_expression] = STATE(145), - [aux_sym_identifier_repeat1] = STATE(145), - [anon_sym_COLON] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(805), - [sym_command_name] = ACTIONS(805), - [anon_sym_LBRACE2] = ACTIONS(789), - [aux_sym_identifier_token2] = ACTIONS(807), - [anon_sym_QMARK] = ACTIONS(803), - [anon_sym_LPAREN] = ACTIONS(803), - [sym_mark] = ACTIONS(803), - [anon_sym_PERCENT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_DOT2] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_SLASH] = ACTIONS(803), - [anon_sym_BSLASH_QMARK] = ACTIONS(803), - [anon_sym_BSLASH_AMP] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(805), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_DOT_DOT] = ACTIONS(803), - [anon_sym_is] = ACTIONS(805), - [anon_sym_isnot] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(803), - [anon_sym_BANG_EQ] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(805), - [anon_sym_GT_EQ] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(803), - [anon_sym_BANG_TILDE] = ACTIONS(803), - [sym_integer_literal] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(803), - [sym_register] = ACTIONS(803), - [sym__newline_or_pipe] = ACTIONS(803), + [sym__immediate_curly_braces_name_expression] = STATE(147), + [aux_sym_identifier_repeat1] = STATE(147), + [anon_sym_COLON] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(801), + [sym_command_name] = ACTIONS(801), + [anon_sym_LBRACE2] = ACTIONS(803), + [aux_sym_identifier_token2] = ACTIONS(806), + [anon_sym_QMARK] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(799), + [sym_mark] = ACTIONS(799), + [anon_sym_PERCENT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(799), + [anon_sym_DOT2] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_SLASH] = ACTIONS(799), + [anon_sym_BSLASH_QMARK] = ACTIONS(799), + [anon_sym_BSLASH_AMP] = ACTIONS(799), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(799), + [anon_sym_is] = ACTIONS(801), + [anon_sym_isnot] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(799), + [anon_sym_BANG_EQ] = ACTIONS(799), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(799), + [anon_sym_LT_EQ] = ACTIONS(799), + [anon_sym_EQ_TILDE] = ACTIONS(799), + [anon_sym_BANG_TILDE] = ACTIONS(799), + [sym_integer_literal] = ACTIONS(801), + [anon_sym_LBRACK2] = ACTIONS(799), + [sym_register] = ACTIONS(799), + [sym__newline_or_pipe] = ACTIONS(799), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(803), - [sym__function] = ACTIONS(803), - [sym__for] = ACTIONS(803), - [sym__while] = ACTIONS(803), - [sym__if] = ACTIONS(803), - [sym__elseif] = ACTIONS(803), - [sym__else] = ACTIONS(803), - [sym__endif] = ACTIONS(803), - [sym__try] = ACTIONS(803), - [sym__const] = ACTIONS(803), - [sym__normal] = ACTIONS(803), - [sym__return] = ACTIONS(803), - [sym__perl] = ACTIONS(803), - [sym__lua] = ACTIONS(803), - [sym__ruby] = ACTIONS(803), - [sym__python] = ACTIONS(803), - [sym__throw] = ACTIONS(803), - [sym__execute] = ACTIONS(803), - [sym__autocmd] = ACTIONS(803), - [sym__silent] = ACTIONS(803), - [sym__echo] = ACTIONS(803), - [sym__echon] = ACTIONS(803), - [sym__echohl] = ACTIONS(803), - [sym__echomsg] = ACTIONS(803), - [sym__echoerr] = ACTIONS(803), - [sym__map] = ACTIONS(803), - [sym__nmap] = ACTIONS(803), - [sym__vmap] = ACTIONS(803), - [sym__xmap] = ACTIONS(803), - [sym__smap] = ACTIONS(803), - [sym__omap] = ACTIONS(803), - [sym__imap] = ACTIONS(803), - [sym__lmap] = ACTIONS(803), - [sym__cmap] = ACTIONS(803), - [sym__tmap] = ACTIONS(803), - [sym__noremap] = ACTIONS(803), - [sym__vnoremap] = ACTIONS(803), - [sym__nnoremap] = ACTIONS(803), - [sym__xnoremap] = ACTIONS(803), - [sym__snoremap] = ACTIONS(803), - [sym__onoremap] = ACTIONS(803), - [sym__inoremap] = ACTIONS(803), - [sym__lnoremap] = ACTIONS(803), - [sym__cnoremap] = ACTIONS(803), - [sym__tnoremap] = ACTIONS(803), - [sym__augroup] = ACTIONS(803), - [sym__highlight] = ACTIONS(803), - [sym__syntax] = ACTIONS(803), - [sym__set] = ACTIONS(803), - [sym__setlocal] = ACTIONS(803), - [sym__setfiletype] = ACTIONS(803), - [sym__browse] = ACTIONS(803), - [sym__options] = ACTIONS(803), - [sym__startinsert] = ACTIONS(803), - [sym__stopinsert] = ACTIONS(803), - [sym__scriptencoding] = ACTIONS(803), - [sym__source] = ACTIONS(803), - [sym__global] = ACTIONS(803), - [sym__colorscheme] = ACTIONS(803), - [sym__comclear] = ACTIONS(803), - [sym__delcommand] = ACTIONS(803), - [sym__runtime] = ACTIONS(803), - [sym__wincmd] = ACTIONS(803), - [sym__sign] = ACTIONS(803), - [sym__filetype] = ACTIONS(803), - [sym__let] = ACTIONS(803), - [sym__unlet] = ACTIONS(803), - [sym__call] = ACTIONS(803), - [sym__break] = ACTIONS(803), - [sym__continue] = ACTIONS(803), - [sym_unknown_command_name] = ACTIONS(803), + [sym_comment] = ACTIONS(799), + [sym__function] = ACTIONS(799), + [sym__for] = ACTIONS(799), + [sym__while] = ACTIONS(799), + [sym__if] = ACTIONS(799), + [sym__elseif] = ACTIONS(799), + [sym__else] = ACTIONS(799), + [sym__endif] = ACTIONS(799), + [sym__try] = ACTIONS(799), + [sym__const] = ACTIONS(799), + [sym__normal] = ACTIONS(799), + [sym__return] = ACTIONS(799), + [sym__perl] = ACTIONS(799), + [sym__lua] = ACTIONS(799), + [sym__ruby] = ACTIONS(799), + [sym__python] = ACTIONS(799), + [sym__throw] = ACTIONS(799), + [sym__execute] = ACTIONS(799), + [sym__autocmd] = ACTIONS(799), + [sym__silent] = ACTIONS(799), + [sym__echo] = ACTIONS(799), + [sym__echon] = ACTIONS(799), + [sym__echohl] = ACTIONS(799), + [sym__echomsg] = ACTIONS(799), + [sym__echoerr] = ACTIONS(799), + [sym__map] = ACTIONS(799), + [sym__nmap] = ACTIONS(799), + [sym__vmap] = ACTIONS(799), + [sym__xmap] = ACTIONS(799), + [sym__smap] = ACTIONS(799), + [sym__omap] = ACTIONS(799), + [sym__imap] = ACTIONS(799), + [sym__lmap] = ACTIONS(799), + [sym__cmap] = ACTIONS(799), + [sym__tmap] = ACTIONS(799), + [sym__noremap] = ACTIONS(799), + [sym__vnoremap] = ACTIONS(799), + [sym__nnoremap] = ACTIONS(799), + [sym__xnoremap] = ACTIONS(799), + [sym__snoremap] = ACTIONS(799), + [sym__onoremap] = ACTIONS(799), + [sym__inoremap] = ACTIONS(799), + [sym__lnoremap] = ACTIONS(799), + [sym__cnoremap] = ACTIONS(799), + [sym__tnoremap] = ACTIONS(799), + [sym__augroup] = ACTIONS(799), + [sym__highlight] = ACTIONS(799), + [sym__syntax] = ACTIONS(799), + [sym__set] = ACTIONS(799), + [sym__setlocal] = ACTIONS(799), + [sym__setfiletype] = ACTIONS(799), + [sym__browse] = ACTIONS(799), + [sym__options] = ACTIONS(799), + [sym__startinsert] = ACTIONS(799), + [sym__stopinsert] = ACTIONS(799), + [sym__scriptencoding] = ACTIONS(799), + [sym__source] = ACTIONS(799), + [sym__global] = ACTIONS(799), + [sym__colorscheme] = ACTIONS(799), + [sym__comclear] = ACTIONS(799), + [sym__delcommand] = ACTIONS(799), + [sym__runtime] = ACTIONS(799), + [sym__wincmd] = ACTIONS(799), + [sym__sign] = ACTIONS(799), + [sym__filetype] = ACTIONS(799), + [sym__let] = ACTIONS(799), + [sym__unlet] = ACTIONS(799), + [sym__call] = ACTIONS(799), + [sym__break] = ACTIONS(799), + [sym__continue] = ACTIONS(799), + [sym_unknown_command_name] = ACTIONS(799), }, [148] = { - [sym__immediate_curly_braces_name_expression] = STATE(152), - [aux_sym_identifier_repeat1] = STATE(152), - [anon_sym_COLON] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(805), - [sym_command_name] = ACTIONS(805), + [sym__immediate_curly_braces_name_expression] = STATE(150), + [aux_sym_identifier_repeat1] = STATE(150), + [anon_sym_COLON] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(787), + [sym_command_name] = ACTIONS(787), [anon_sym_LBRACE2] = ACTIONS(809), [aux_sym_identifier_token2] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(803), - [anon_sym_LPAREN] = ACTIONS(803), - [sym_mark] = ACTIONS(803), - [anon_sym_PERCENT] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(803), - [anon_sym_DOT2] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(803), - [anon_sym_BSLASH_SLASH] = ACTIONS(803), - [anon_sym_BSLASH_QMARK] = ACTIONS(803), - [anon_sym_BSLASH_AMP] = ACTIONS(803), - [anon_sym_LT2] = ACTIONS(805), - [anon_sym_STAR2] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_DOT_DOT] = ACTIONS(803), - [anon_sym_is] = ACTIONS(805), - [anon_sym_isnot] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(803), - [anon_sym_BANG_EQ] = ACTIONS(803), - [anon_sym_GT2] = ACTIONS(805), - [anon_sym_GT_EQ] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(803), - [anon_sym_BANG_TILDE] = ACTIONS(803), - [sym_integer_literal] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(803), - [sym_register] = ACTIONS(803), - [sym__newline_or_pipe] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(785), + [sym_mark] = ACTIONS(785), + [anon_sym_PERCENT] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(785), + [anon_sym_DOT2] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(787), + [anon_sym_DOLLAR] = ACTIONS(785), + [anon_sym_BSLASH_SLASH] = ACTIONS(785), + [anon_sym_BSLASH_QMARK] = ACTIONS(785), + [anon_sym_BSLASH_AMP] = ACTIONS(785), + [anon_sym_LT2] = ACTIONS(787), + [anon_sym_STAR2] = ACTIONS(785), + [anon_sym_PIPE_PIPE] = ACTIONS(785), + [anon_sym_AMP_AMP] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DOT_DOT] = ACTIONS(785), + [anon_sym_is] = ACTIONS(787), + [anon_sym_isnot] = ACTIONS(787), + [anon_sym_EQ_EQ] = ACTIONS(785), + [anon_sym_BANG_EQ] = ACTIONS(785), + [anon_sym_GT2] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(785), + [anon_sym_LT_EQ] = ACTIONS(785), + [anon_sym_EQ_TILDE] = ACTIONS(785), + [anon_sym_BANG_TILDE] = ACTIONS(785), + [sym_integer_literal] = ACTIONS(787), + [anon_sym_LBRACK2] = ACTIONS(785), + [sym_register] = ACTIONS(785), + [sym__newline_or_pipe] = ACTIONS(785), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(803), - [sym__function] = ACTIONS(803), - [sym__for] = ACTIONS(803), - [sym__endfor] = ACTIONS(803), - [sym__while] = ACTIONS(803), - [sym__if] = ACTIONS(803), - [sym__try] = ACTIONS(803), - [sym__const] = ACTIONS(803), - [sym__normal] = ACTIONS(803), - [sym__return] = ACTIONS(803), - [sym__perl] = ACTIONS(803), - [sym__lua] = ACTIONS(803), - [sym__ruby] = ACTIONS(803), - [sym__python] = ACTIONS(803), - [sym__throw] = ACTIONS(803), - [sym__execute] = ACTIONS(803), - [sym__autocmd] = ACTIONS(803), - [sym__silent] = ACTIONS(803), - [sym__echo] = ACTIONS(803), - [sym__echon] = ACTIONS(803), - [sym__echohl] = ACTIONS(803), - [sym__echomsg] = ACTIONS(803), - [sym__echoerr] = ACTIONS(803), - [sym__map] = ACTIONS(803), - [sym__nmap] = ACTIONS(803), - [sym__vmap] = ACTIONS(803), - [sym__xmap] = ACTIONS(803), - [sym__smap] = ACTIONS(803), - [sym__omap] = ACTIONS(803), - [sym__imap] = ACTIONS(803), - [sym__lmap] = ACTIONS(803), - [sym__cmap] = ACTIONS(803), - [sym__tmap] = ACTIONS(803), - [sym__noremap] = ACTIONS(803), - [sym__vnoremap] = ACTIONS(803), - [sym__nnoremap] = ACTIONS(803), - [sym__xnoremap] = ACTIONS(803), - [sym__snoremap] = ACTIONS(803), - [sym__onoremap] = ACTIONS(803), - [sym__inoremap] = ACTIONS(803), - [sym__lnoremap] = ACTIONS(803), - [sym__cnoremap] = ACTIONS(803), - [sym__tnoremap] = ACTIONS(803), - [sym__augroup] = ACTIONS(803), - [sym__highlight] = ACTIONS(803), - [sym__syntax] = ACTIONS(803), - [sym__set] = ACTIONS(803), - [sym__setlocal] = ACTIONS(803), - [sym__setfiletype] = ACTIONS(803), - [sym__browse] = ACTIONS(803), - [sym__options] = ACTIONS(803), - [sym__startinsert] = ACTIONS(803), - [sym__stopinsert] = ACTIONS(803), - [sym__scriptencoding] = ACTIONS(803), - [sym__source] = ACTIONS(803), - [sym__global] = ACTIONS(803), - [sym__colorscheme] = ACTIONS(803), - [sym__comclear] = ACTIONS(803), - [sym__delcommand] = ACTIONS(803), - [sym__runtime] = ACTIONS(803), - [sym__wincmd] = ACTIONS(803), - [sym__sign] = ACTIONS(803), - [sym__filetype] = ACTIONS(803), - [sym__let] = ACTIONS(803), - [sym__unlet] = ACTIONS(803), - [sym__call] = ACTIONS(803), - [sym__break] = ACTIONS(803), - [sym__continue] = ACTIONS(803), - [sym_unknown_command_name] = ACTIONS(803), + [sym_comment] = ACTIONS(785), + [sym__function] = ACTIONS(785), + [sym__for] = ACTIONS(785), + [sym__endfor] = ACTIONS(785), + [sym__while] = ACTIONS(785), + [sym__if] = ACTIONS(785), + [sym__try] = ACTIONS(785), + [sym__const] = ACTIONS(785), + [sym__normal] = ACTIONS(785), + [sym__return] = ACTIONS(785), + [sym__perl] = ACTIONS(785), + [sym__lua] = ACTIONS(785), + [sym__ruby] = ACTIONS(785), + [sym__python] = ACTIONS(785), + [sym__throw] = ACTIONS(785), + [sym__execute] = ACTIONS(785), + [sym__autocmd] = ACTIONS(785), + [sym__silent] = ACTIONS(785), + [sym__echo] = ACTIONS(785), + [sym__echon] = ACTIONS(785), + [sym__echohl] = ACTIONS(785), + [sym__echomsg] = ACTIONS(785), + [sym__echoerr] = ACTIONS(785), + [sym__map] = ACTIONS(785), + [sym__nmap] = ACTIONS(785), + [sym__vmap] = ACTIONS(785), + [sym__xmap] = ACTIONS(785), + [sym__smap] = ACTIONS(785), + [sym__omap] = ACTIONS(785), + [sym__imap] = ACTIONS(785), + [sym__lmap] = ACTIONS(785), + [sym__cmap] = ACTIONS(785), + [sym__tmap] = ACTIONS(785), + [sym__noremap] = ACTIONS(785), + [sym__vnoremap] = ACTIONS(785), + [sym__nnoremap] = ACTIONS(785), + [sym__xnoremap] = ACTIONS(785), + [sym__snoremap] = ACTIONS(785), + [sym__onoremap] = ACTIONS(785), + [sym__inoremap] = ACTIONS(785), + [sym__lnoremap] = ACTIONS(785), + [sym__cnoremap] = ACTIONS(785), + [sym__tnoremap] = ACTIONS(785), + [sym__augroup] = ACTIONS(785), + [sym__highlight] = ACTIONS(785), + [sym__syntax] = ACTIONS(785), + [sym__set] = ACTIONS(785), + [sym__setlocal] = ACTIONS(785), + [sym__setfiletype] = ACTIONS(785), + [sym__browse] = ACTIONS(785), + [sym__options] = ACTIONS(785), + [sym__startinsert] = ACTIONS(785), + [sym__stopinsert] = ACTIONS(785), + [sym__scriptencoding] = ACTIONS(785), + [sym__source] = ACTIONS(785), + [sym__global] = ACTIONS(785), + [sym__colorscheme] = ACTIONS(785), + [sym__comclear] = ACTIONS(785), + [sym__delcommand] = ACTIONS(785), + [sym__runtime] = ACTIONS(785), + [sym__wincmd] = ACTIONS(785), + [sym__sign] = ACTIONS(785), + [sym__filetype] = ACTIONS(785), + [sym__let] = ACTIONS(785), + [sym__unlet] = ACTIONS(785), + [sym__call] = ACTIONS(785), + [sym__break] = ACTIONS(785), + [sym__continue] = ACTIONS(785), + [sym_unknown_command_name] = ACTIONS(785), }, [149] = { [anon_sym_COLON] = ACTIONS(813), @@ -48094,7 +47347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(813), [anon_sym_BANG_TILDE] = ACTIONS(813), [sym_integer_literal] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_LBRACK2] = ACTIONS(813), [sym_register] = ACTIONS(813), [sym__newline_or_pipe] = ACTIONS(813), [sym__line_continuation] = ACTIONS(3), @@ -48171,13 +47424,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(813), }, [150] = { - [sym__immediate_curly_braces_name_expression] = STATE(150), - [aux_sym_identifier_repeat1] = STATE(150), + [sym__immediate_curly_braces_name_expression] = STATE(152), + [aux_sym_identifier_repeat1] = STATE(152), [anon_sym_COLON] = ACTIONS(793), [anon_sym_DOT] = ACTIONS(795), [sym_command_name] = ACTIONS(795), - [anon_sym_LBRACE2] = ACTIONS(817), - [aux_sym_identifier_token2] = ACTIONS(820), + [anon_sym_LBRACE2] = ACTIONS(809), + [aux_sym_identifier_token2] = ACTIONS(817), [anon_sym_QMARK] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(793), [sym_mark] = ACTIONS(793), @@ -48205,7 +47458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(793), [anon_sym_BANG_TILDE] = ACTIONS(793), [sym_integer_literal] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_LBRACK2] = ACTIONS(793), [sym_register] = ACTIONS(793), [sym__newline_or_pipe] = ACTIONS(793), [sym__line_continuation] = ACTIONS(3), @@ -48280,331 +47533,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(793), }, [151] = { - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(825), - [sym_command_name] = ACTIONS(825), - [anon_sym_LBRACE2] = ACTIONS(823), - [aux_sym_identifier_token2] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [sym_mark] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_BSLASH_SLASH] = ACTIONS(823), - [anon_sym_BSLASH_QMARK] = ACTIONS(823), - [anon_sym_BSLASH_AMP] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(825), - [anon_sym_STAR2] = ACTIONS(823), - [anon_sym_PIPE_PIPE] = ACTIONS(823), - [anon_sym_AMP_AMP] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(825), - [anon_sym_DOT_DOT] = ACTIONS(823), - [anon_sym_is] = ACTIONS(825), - [anon_sym_isnot] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_GT2] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(823), - [sym_register] = ACTIONS(823), - [sym__newline_or_pipe] = ACTIONS(823), + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(821), + [sym_command_name] = ACTIONS(821), + [aux_sym_argument_token1] = ACTIONS(823), + [aux_sym_argument_token2] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(819), + [sym_mark] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_DOT2] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_BSLASH_SLASH] = ACTIONS(819), + [anon_sym_BSLASH_QMARK] = ACTIONS(819), + [anon_sym_BSLASH_AMP] = ACTIONS(819), + [anon_sym_LT2] = ACTIONS(821), + [anon_sym_STAR2] = ACTIONS(819), + [anon_sym_PIPE_PIPE] = ACTIONS(819), + [anon_sym_AMP_AMP] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_DOT_DOT] = ACTIONS(819), + [anon_sym_is] = ACTIONS(821), + [anon_sym_isnot] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(819), + [anon_sym_BANG_EQ] = ACTIONS(819), + [anon_sym_GT2] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(819), + [anon_sym_LT_EQ] = ACTIONS(819), + [anon_sym_EQ_TILDE] = ACTIONS(819), + [anon_sym_BANG_TILDE] = ACTIONS(819), + [sym_integer_literal] = ACTIONS(821), + [anon_sym_LBRACK2] = ACTIONS(819), + [sym_register] = ACTIONS(819), + [sym__newline_or_pipe] = ACTIONS(819), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(823), - [sym__function] = ACTIONS(823), - [sym__for] = ACTIONS(823), - [sym__while] = ACTIONS(823), - [sym__if] = ACTIONS(823), - [sym__elseif] = ACTIONS(823), - [sym__else] = ACTIONS(823), - [sym__endif] = ACTIONS(823), - [sym__try] = ACTIONS(823), - [sym__const] = ACTIONS(823), - [sym__normal] = ACTIONS(823), - [sym__return] = ACTIONS(823), - [sym__perl] = ACTIONS(823), - [sym__lua] = ACTIONS(823), - [sym__ruby] = ACTIONS(823), - [sym__python] = ACTIONS(823), - [sym__throw] = ACTIONS(823), - [sym__execute] = ACTIONS(823), - [sym__autocmd] = ACTIONS(823), - [sym__silent] = ACTIONS(823), - [sym__echo] = ACTIONS(823), - [sym__echon] = ACTIONS(823), - [sym__echohl] = ACTIONS(823), - [sym__echomsg] = ACTIONS(823), - [sym__echoerr] = ACTIONS(823), - [sym__map] = ACTIONS(823), - [sym__nmap] = ACTIONS(823), - [sym__vmap] = ACTIONS(823), - [sym__xmap] = ACTIONS(823), - [sym__smap] = ACTIONS(823), - [sym__omap] = ACTIONS(823), - [sym__imap] = ACTIONS(823), - [sym__lmap] = ACTIONS(823), - [sym__cmap] = ACTIONS(823), - [sym__tmap] = ACTIONS(823), - [sym__noremap] = ACTIONS(823), - [sym__vnoremap] = ACTIONS(823), - [sym__nnoremap] = ACTIONS(823), - [sym__xnoremap] = ACTIONS(823), - [sym__snoremap] = ACTIONS(823), - [sym__onoremap] = ACTIONS(823), - [sym__inoremap] = ACTIONS(823), - [sym__lnoremap] = ACTIONS(823), - [sym__cnoremap] = ACTIONS(823), - [sym__tnoremap] = ACTIONS(823), - [sym__augroup] = ACTIONS(823), - [sym__highlight] = ACTIONS(823), - [sym__syntax] = ACTIONS(823), - [sym__set] = ACTIONS(823), - [sym__setlocal] = ACTIONS(823), - [sym__setfiletype] = ACTIONS(823), - [sym__browse] = ACTIONS(823), - [sym__options] = ACTIONS(823), - [sym__startinsert] = ACTIONS(823), - [sym__stopinsert] = ACTIONS(823), - [sym__scriptencoding] = ACTIONS(823), - [sym__source] = ACTIONS(823), - [sym__global] = ACTIONS(823), - [sym__colorscheme] = ACTIONS(823), - [sym__comclear] = ACTIONS(823), - [sym__delcommand] = ACTIONS(823), - [sym__runtime] = ACTIONS(823), - [sym__wincmd] = ACTIONS(823), - [sym__sign] = ACTIONS(823), - [sym__filetype] = ACTIONS(823), - [sym__let] = ACTIONS(823), - [sym__unlet] = ACTIONS(823), - [sym__call] = ACTIONS(823), - [sym__break] = ACTIONS(823), - [sym__continue] = ACTIONS(823), - [sym_unknown_command_name] = ACTIONS(823), + [sym_comment] = ACTIONS(819), + [sym__function] = ACTIONS(819), + [sym__for] = ACTIONS(819), + [sym__while] = ACTIONS(819), + [sym__if] = ACTIONS(819), + [sym__elseif] = ACTIONS(819), + [sym__else] = ACTIONS(819), + [sym__endif] = ACTIONS(819), + [sym__try] = ACTIONS(819), + [sym__const] = ACTIONS(819), + [sym__normal] = ACTIONS(819), + [sym__return] = ACTIONS(819), + [sym__perl] = ACTIONS(819), + [sym__lua] = ACTIONS(819), + [sym__ruby] = ACTIONS(819), + [sym__python] = ACTIONS(819), + [sym__throw] = ACTIONS(819), + [sym__execute] = ACTIONS(819), + [sym__autocmd] = ACTIONS(819), + [sym__silent] = ACTIONS(819), + [sym__echo] = ACTIONS(819), + [sym__echon] = ACTIONS(819), + [sym__echohl] = ACTIONS(819), + [sym__echomsg] = ACTIONS(819), + [sym__echoerr] = ACTIONS(819), + [sym__map] = ACTIONS(819), + [sym__nmap] = ACTIONS(819), + [sym__vmap] = ACTIONS(819), + [sym__xmap] = ACTIONS(819), + [sym__smap] = ACTIONS(819), + [sym__omap] = ACTIONS(819), + [sym__imap] = ACTIONS(819), + [sym__lmap] = ACTIONS(819), + [sym__cmap] = ACTIONS(819), + [sym__tmap] = ACTIONS(819), + [sym__noremap] = ACTIONS(819), + [sym__vnoremap] = ACTIONS(819), + [sym__nnoremap] = ACTIONS(819), + [sym__xnoremap] = ACTIONS(819), + [sym__snoremap] = ACTIONS(819), + [sym__onoremap] = ACTIONS(819), + [sym__inoremap] = ACTIONS(819), + [sym__lnoremap] = ACTIONS(819), + [sym__cnoremap] = ACTIONS(819), + [sym__tnoremap] = ACTIONS(819), + [sym__augroup] = ACTIONS(819), + [sym__highlight] = ACTIONS(819), + [sym__syntax] = ACTIONS(819), + [sym__set] = ACTIONS(819), + [sym__setlocal] = ACTIONS(819), + [sym__setfiletype] = ACTIONS(819), + [sym__browse] = ACTIONS(819), + [sym__options] = ACTIONS(819), + [sym__startinsert] = ACTIONS(819), + [sym__stopinsert] = ACTIONS(819), + [sym__scriptencoding] = ACTIONS(819), + [sym__source] = ACTIONS(819), + [sym__global] = ACTIONS(819), + [sym__colorscheme] = ACTIONS(819), + [sym__comclear] = ACTIONS(819), + [sym__delcommand] = ACTIONS(819), + [sym__runtime] = ACTIONS(819), + [sym__wincmd] = ACTIONS(819), + [sym__sign] = ACTIONS(819), + [sym__filetype] = ACTIONS(819), + [sym__let] = ACTIONS(819), + [sym__unlet] = ACTIONS(819), + [sym__call] = ACTIONS(819), + [sym__break] = ACTIONS(819), + [sym__continue] = ACTIONS(819), + [sym_unknown_command_name] = ACTIONS(819), }, [152] = { - [sym__immediate_curly_braces_name_expression] = STATE(150), - [aux_sym_identifier_repeat1] = STATE(150), - [anon_sym_COLON] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(787), - [sym_command_name] = ACTIONS(787), - [anon_sym_LBRACE2] = ACTIONS(809), - [aux_sym_identifier_token2] = ACTIONS(827), - [anon_sym_QMARK] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(785), - [sym_mark] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(785), - [anon_sym_DOT2] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_BSLASH_SLASH] = ACTIONS(785), - [anon_sym_BSLASH_QMARK] = ACTIONS(785), - [anon_sym_BSLASH_AMP] = ACTIONS(785), - [anon_sym_LT2] = ACTIONS(787), - [anon_sym_STAR2] = ACTIONS(785), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DOT_DOT] = ACTIONS(785), - [anon_sym_is] = ACTIONS(787), - [anon_sym_isnot] = ACTIONS(787), - [anon_sym_EQ_EQ] = ACTIONS(785), - [anon_sym_BANG_EQ] = ACTIONS(785), - [anon_sym_GT2] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_EQ_TILDE] = ACTIONS(785), - [anon_sym_BANG_TILDE] = ACTIONS(785), - [sym_integer_literal] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(785), - [sym_register] = ACTIONS(785), - [sym__newline_or_pipe] = ACTIONS(785), + [sym__immediate_curly_braces_name_expression] = STATE(152), + [aux_sym_identifier_repeat1] = STATE(152), + [anon_sym_COLON] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(801), + [sym_command_name] = ACTIONS(801), + [anon_sym_LBRACE2] = ACTIONS(827), + [aux_sym_identifier_token2] = ACTIONS(830), + [anon_sym_QMARK] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(799), + [sym_mark] = ACTIONS(799), + [anon_sym_PERCENT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(799), + [anon_sym_DOT2] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_SLASH] = ACTIONS(799), + [anon_sym_BSLASH_QMARK] = ACTIONS(799), + [anon_sym_BSLASH_AMP] = ACTIONS(799), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_STAR2] = ACTIONS(799), + [anon_sym_PIPE_PIPE] = ACTIONS(799), + [anon_sym_AMP_AMP] = ACTIONS(799), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(799), + [anon_sym_is] = ACTIONS(801), + [anon_sym_isnot] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(799), + [anon_sym_BANG_EQ] = ACTIONS(799), + [anon_sym_GT2] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(799), + [anon_sym_LT_EQ] = ACTIONS(799), + [anon_sym_EQ_TILDE] = ACTIONS(799), + [anon_sym_BANG_TILDE] = ACTIONS(799), + [sym_integer_literal] = ACTIONS(801), + [anon_sym_LBRACK2] = ACTIONS(799), + [sym_register] = ACTIONS(799), + [sym__newline_or_pipe] = ACTIONS(799), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(785), - [sym__function] = ACTIONS(785), - [sym__for] = ACTIONS(785), - [sym__endfor] = ACTIONS(785), - [sym__while] = ACTIONS(785), - [sym__if] = ACTIONS(785), - [sym__try] = ACTIONS(785), - [sym__const] = ACTIONS(785), - [sym__normal] = ACTIONS(785), - [sym__return] = ACTIONS(785), - [sym__perl] = ACTIONS(785), - [sym__lua] = ACTIONS(785), - [sym__ruby] = ACTIONS(785), - [sym__python] = ACTIONS(785), - [sym__throw] = ACTIONS(785), - [sym__execute] = ACTIONS(785), - [sym__autocmd] = ACTIONS(785), - [sym__silent] = ACTIONS(785), - [sym__echo] = ACTIONS(785), - [sym__echon] = ACTIONS(785), - [sym__echohl] = ACTIONS(785), - [sym__echomsg] = ACTIONS(785), - [sym__echoerr] = ACTIONS(785), - [sym__map] = ACTIONS(785), - [sym__nmap] = ACTIONS(785), - [sym__vmap] = ACTIONS(785), - [sym__xmap] = ACTIONS(785), - [sym__smap] = ACTIONS(785), - [sym__omap] = ACTIONS(785), - [sym__imap] = ACTIONS(785), - [sym__lmap] = ACTIONS(785), - [sym__cmap] = ACTIONS(785), - [sym__tmap] = ACTIONS(785), - [sym__noremap] = ACTIONS(785), - [sym__vnoremap] = ACTIONS(785), - [sym__nnoremap] = ACTIONS(785), - [sym__xnoremap] = ACTIONS(785), - [sym__snoremap] = ACTIONS(785), - [sym__onoremap] = ACTIONS(785), - [sym__inoremap] = ACTIONS(785), - [sym__lnoremap] = ACTIONS(785), - [sym__cnoremap] = ACTIONS(785), - [sym__tnoremap] = ACTIONS(785), - [sym__augroup] = ACTIONS(785), - [sym__highlight] = ACTIONS(785), - [sym__syntax] = ACTIONS(785), - [sym__set] = ACTIONS(785), - [sym__setlocal] = ACTIONS(785), - [sym__setfiletype] = ACTIONS(785), - [sym__browse] = ACTIONS(785), - [sym__options] = ACTIONS(785), - [sym__startinsert] = ACTIONS(785), - [sym__stopinsert] = ACTIONS(785), - [sym__scriptencoding] = ACTIONS(785), - [sym__source] = ACTIONS(785), - [sym__global] = ACTIONS(785), - [sym__colorscheme] = ACTIONS(785), - [sym__comclear] = ACTIONS(785), - [sym__delcommand] = ACTIONS(785), - [sym__runtime] = ACTIONS(785), - [sym__wincmd] = ACTIONS(785), - [sym__sign] = ACTIONS(785), - [sym__filetype] = ACTIONS(785), - [sym__let] = ACTIONS(785), - [sym__unlet] = ACTIONS(785), - [sym__call] = ACTIONS(785), - [sym__break] = ACTIONS(785), - [sym__continue] = ACTIONS(785), - [sym_unknown_command_name] = ACTIONS(785), + [sym_comment] = ACTIONS(799), + [sym__function] = ACTIONS(799), + [sym__for] = ACTIONS(799), + [sym__endfor] = ACTIONS(799), + [sym__while] = ACTIONS(799), + [sym__if] = ACTIONS(799), + [sym__try] = ACTIONS(799), + [sym__const] = ACTIONS(799), + [sym__normal] = ACTIONS(799), + [sym__return] = ACTIONS(799), + [sym__perl] = ACTIONS(799), + [sym__lua] = ACTIONS(799), + [sym__ruby] = ACTIONS(799), + [sym__python] = ACTIONS(799), + [sym__throw] = ACTIONS(799), + [sym__execute] = ACTIONS(799), + [sym__autocmd] = ACTIONS(799), + [sym__silent] = ACTIONS(799), + [sym__echo] = ACTIONS(799), + [sym__echon] = ACTIONS(799), + [sym__echohl] = ACTIONS(799), + [sym__echomsg] = ACTIONS(799), + [sym__echoerr] = ACTIONS(799), + [sym__map] = ACTIONS(799), + [sym__nmap] = ACTIONS(799), + [sym__vmap] = ACTIONS(799), + [sym__xmap] = ACTIONS(799), + [sym__smap] = ACTIONS(799), + [sym__omap] = ACTIONS(799), + [sym__imap] = ACTIONS(799), + [sym__lmap] = ACTIONS(799), + [sym__cmap] = ACTIONS(799), + [sym__tmap] = ACTIONS(799), + [sym__noremap] = ACTIONS(799), + [sym__vnoremap] = ACTIONS(799), + [sym__nnoremap] = ACTIONS(799), + [sym__xnoremap] = ACTIONS(799), + [sym__snoremap] = ACTIONS(799), + [sym__onoremap] = ACTIONS(799), + [sym__inoremap] = ACTIONS(799), + [sym__lnoremap] = ACTIONS(799), + [sym__cnoremap] = ACTIONS(799), + [sym__tnoremap] = ACTIONS(799), + [sym__augroup] = ACTIONS(799), + [sym__highlight] = ACTIONS(799), + [sym__syntax] = ACTIONS(799), + [sym__set] = ACTIONS(799), + [sym__setlocal] = ACTIONS(799), + [sym__setfiletype] = ACTIONS(799), + [sym__browse] = ACTIONS(799), + [sym__options] = ACTIONS(799), + [sym__startinsert] = ACTIONS(799), + [sym__stopinsert] = ACTIONS(799), + [sym__scriptencoding] = ACTIONS(799), + [sym__source] = ACTIONS(799), + [sym__global] = ACTIONS(799), + [sym__colorscheme] = ACTIONS(799), + [sym__comclear] = ACTIONS(799), + [sym__delcommand] = ACTIONS(799), + [sym__runtime] = ACTIONS(799), + [sym__wincmd] = ACTIONS(799), + [sym__sign] = ACTIONS(799), + [sym__filetype] = ACTIONS(799), + [sym__let] = ACTIONS(799), + [sym__unlet] = ACTIONS(799), + [sym__call] = ACTIONS(799), + [sym__break] = ACTIONS(799), + [sym__continue] = ACTIONS(799), + [sym_unknown_command_name] = ACTIONS(799), }, [153] = { - [anon_sym_COLON] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(831), - [sym_command_name] = ACTIONS(831), - [aux_sym_argument_token1] = ACTIONS(833), - [aux_sym_argument_token2] = ACTIONS(835), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [sym_mark] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT2] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_BSLASH_SLASH] = ACTIONS(829), - [anon_sym_BSLASH_QMARK] = ACTIONS(829), - [anon_sym_BSLASH_AMP] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(831), - [anon_sym_STAR2] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_is] = ACTIONS(831), - [anon_sym_isnot] = ACTIONS(831), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_GT2] = ACTIONS(831), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [sym_integer_literal] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(829), - [sym_register] = ACTIONS(829), - [sym__newline_or_pipe] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(833), + [anon_sym_DOT] = ACTIONS(835), + [sym_command_name] = ACTIONS(835), + [anon_sym_LBRACE2] = ACTIONS(833), + [aux_sym_identifier_token2] = ACTIONS(835), + [anon_sym_QMARK] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(833), + [sym_mark] = ACTIONS(833), + [anon_sym_PERCENT] = ACTIONS(833), + [anon_sym_SLASH] = ACTIONS(833), + [anon_sym_DOT2] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_BSLASH_SLASH] = ACTIONS(833), + [anon_sym_BSLASH_QMARK] = ACTIONS(833), + [anon_sym_BSLASH_AMP] = ACTIONS(833), + [anon_sym_LT2] = ACTIONS(835), + [anon_sym_STAR2] = ACTIONS(833), + [anon_sym_PIPE_PIPE] = ACTIONS(833), + [anon_sym_AMP_AMP] = ACTIONS(833), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_DOT_DOT] = ACTIONS(833), + [anon_sym_is] = ACTIONS(835), + [anon_sym_isnot] = ACTIONS(835), + [anon_sym_EQ_EQ] = ACTIONS(833), + [anon_sym_BANG_EQ] = ACTIONS(833), + [anon_sym_GT2] = ACTIONS(835), + [anon_sym_GT_EQ] = ACTIONS(833), + [anon_sym_LT_EQ] = ACTIONS(833), + [anon_sym_EQ_TILDE] = ACTIONS(833), + [anon_sym_BANG_TILDE] = ACTIONS(833), + [sym_integer_literal] = ACTIONS(835), + [anon_sym_LBRACK2] = ACTIONS(833), + [sym_register] = ACTIONS(833), + [sym__newline_or_pipe] = ACTIONS(833), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(829), - [sym__function] = ACTIONS(829), - [sym__for] = ACTIONS(829), - [sym__while] = ACTIONS(829), - [sym__if] = ACTIONS(829), - [sym__elseif] = ACTIONS(829), - [sym__else] = ACTIONS(829), - [sym__endif] = ACTIONS(829), - [sym__try] = ACTIONS(829), - [sym__const] = ACTIONS(829), - [sym__normal] = ACTIONS(829), - [sym__return] = ACTIONS(829), - [sym__perl] = ACTIONS(829), - [sym__lua] = ACTIONS(829), - [sym__ruby] = ACTIONS(829), - [sym__python] = ACTIONS(829), - [sym__throw] = ACTIONS(829), - [sym__execute] = ACTIONS(829), - [sym__autocmd] = ACTIONS(829), - [sym__silent] = ACTIONS(829), - [sym__echo] = ACTIONS(829), - [sym__echon] = ACTIONS(829), - [sym__echohl] = ACTIONS(829), - [sym__echomsg] = ACTIONS(829), - [sym__echoerr] = ACTIONS(829), - [sym__map] = ACTIONS(829), - [sym__nmap] = ACTIONS(829), - [sym__vmap] = ACTIONS(829), - [sym__xmap] = ACTIONS(829), - [sym__smap] = ACTIONS(829), - [sym__omap] = ACTIONS(829), - [sym__imap] = ACTIONS(829), - [sym__lmap] = ACTIONS(829), - [sym__cmap] = ACTIONS(829), - [sym__tmap] = ACTIONS(829), - [sym__noremap] = ACTIONS(829), - [sym__vnoremap] = ACTIONS(829), - [sym__nnoremap] = ACTIONS(829), - [sym__xnoremap] = ACTIONS(829), - [sym__snoremap] = ACTIONS(829), - [sym__onoremap] = ACTIONS(829), - [sym__inoremap] = ACTIONS(829), - [sym__lnoremap] = ACTIONS(829), - [sym__cnoremap] = ACTIONS(829), - [sym__tnoremap] = ACTIONS(829), - [sym__augroup] = ACTIONS(829), - [sym__highlight] = ACTIONS(829), - [sym__syntax] = ACTIONS(829), - [sym__set] = ACTIONS(829), - [sym__setlocal] = ACTIONS(829), - [sym__setfiletype] = ACTIONS(829), - [sym__browse] = ACTIONS(829), - [sym__options] = ACTIONS(829), - [sym__startinsert] = ACTIONS(829), - [sym__stopinsert] = ACTIONS(829), - [sym__scriptencoding] = ACTIONS(829), - [sym__source] = ACTIONS(829), - [sym__global] = ACTIONS(829), - [sym__colorscheme] = ACTIONS(829), - [sym__comclear] = ACTIONS(829), - [sym__delcommand] = ACTIONS(829), - [sym__runtime] = ACTIONS(829), - [sym__wincmd] = ACTIONS(829), - [sym__sign] = ACTIONS(829), - [sym__filetype] = ACTIONS(829), - [sym__let] = ACTIONS(829), - [sym__unlet] = ACTIONS(829), - [sym__call] = ACTIONS(829), - [sym__break] = ACTIONS(829), - [sym__continue] = ACTIONS(829), - [sym_unknown_command_name] = ACTIONS(829), + [sym_comment] = ACTIONS(833), + [sym__function] = ACTIONS(833), + [sym__for] = ACTIONS(833), + [sym__while] = ACTIONS(833), + [sym__if] = ACTIONS(833), + [sym__elseif] = ACTIONS(833), + [sym__else] = ACTIONS(833), + [sym__endif] = ACTIONS(833), + [sym__try] = ACTIONS(833), + [sym__const] = ACTIONS(833), + [sym__normal] = ACTIONS(833), + [sym__return] = ACTIONS(833), + [sym__perl] = ACTIONS(833), + [sym__lua] = ACTIONS(833), + [sym__ruby] = ACTIONS(833), + [sym__python] = ACTIONS(833), + [sym__throw] = ACTIONS(833), + [sym__execute] = ACTIONS(833), + [sym__autocmd] = ACTIONS(833), + [sym__silent] = ACTIONS(833), + [sym__echo] = ACTIONS(833), + [sym__echon] = ACTIONS(833), + [sym__echohl] = ACTIONS(833), + [sym__echomsg] = ACTIONS(833), + [sym__echoerr] = ACTIONS(833), + [sym__map] = ACTIONS(833), + [sym__nmap] = ACTIONS(833), + [sym__vmap] = ACTIONS(833), + [sym__xmap] = ACTIONS(833), + [sym__smap] = ACTIONS(833), + [sym__omap] = ACTIONS(833), + [sym__imap] = ACTIONS(833), + [sym__lmap] = ACTIONS(833), + [sym__cmap] = ACTIONS(833), + [sym__tmap] = ACTIONS(833), + [sym__noremap] = ACTIONS(833), + [sym__vnoremap] = ACTIONS(833), + [sym__nnoremap] = ACTIONS(833), + [sym__xnoremap] = ACTIONS(833), + [sym__snoremap] = ACTIONS(833), + [sym__onoremap] = ACTIONS(833), + [sym__inoremap] = ACTIONS(833), + [sym__lnoremap] = ACTIONS(833), + [sym__cnoremap] = ACTIONS(833), + [sym__tnoremap] = ACTIONS(833), + [sym__augroup] = ACTIONS(833), + [sym__highlight] = ACTIONS(833), + [sym__syntax] = ACTIONS(833), + [sym__set] = ACTIONS(833), + [sym__setlocal] = ACTIONS(833), + [sym__setfiletype] = ACTIONS(833), + [sym__browse] = ACTIONS(833), + [sym__options] = ACTIONS(833), + [sym__startinsert] = ACTIONS(833), + [sym__stopinsert] = ACTIONS(833), + [sym__scriptencoding] = ACTIONS(833), + [sym__source] = ACTIONS(833), + [sym__global] = ACTIONS(833), + [sym__colorscheme] = ACTIONS(833), + [sym__comclear] = ACTIONS(833), + [sym__delcommand] = ACTIONS(833), + [sym__runtime] = ACTIONS(833), + [sym__wincmd] = ACTIONS(833), + [sym__sign] = ACTIONS(833), + [sym__filetype] = ACTIONS(833), + [sym__let] = ACTIONS(833), + [sym__unlet] = ACTIONS(833), + [sym__call] = ACTIONS(833), + [sym__break] = ACTIONS(833), + [sym__continue] = ACTIONS(833), + [sym_unknown_command_name] = ACTIONS(833), }, [154] = { [anon_sym_COLON] = ACTIONS(837), @@ -48637,7 +47890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(837), [anon_sym_BANG_TILDE] = ACTIONS(837), [sym_integer_literal] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_LBRACK2] = ACTIONS(837), [sym_register] = ACTIONS(837), [sym__newline_or_pipe] = ACTIONS(837), [sym__line_continuation] = ACTIONS(3), @@ -48744,7 +47997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(841), [anon_sym_BANG_TILDE] = ACTIONS(841), [sym_integer_literal] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(841), + [anon_sym_LBRACK2] = ACTIONS(841), [sym_register] = ACTIONS(841), [sym__newline_or_pipe] = ACTIONS(841), [sym__line_continuation] = ACTIONS(3), @@ -48822,25 +48075,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [156] = { [anon_sym_COLON] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(129), [sym_command_name] = ACTIONS(845), [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(133), [sym_mark] = ACTIONS(845), - [anon_sym_PERCENT] = ACTIONS(845), - [anon_sym_SLASH] = ACTIONS(845), - [anon_sym_DOT2] = ACTIONS(847), - [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DOT2] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DOLLAR] = ACTIONS(845), [anon_sym_BSLASH_SLASH] = ACTIONS(845), [anon_sym_BSLASH_QMARK] = ACTIONS(845), [anon_sym_BSLASH_AMP] = ACTIONS(845), [anon_sym_LT2] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(845), + [anon_sym_STAR2] = ACTIONS(145), [anon_sym_PIPE_PIPE] = ACTIONS(845), [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_DOT_DOT] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_DOT_DOT] = ACTIONS(153), [anon_sym_is] = ACTIONS(847), [anon_sym_isnot] = ACTIONS(845), [anon_sym_EQ_EQ] = ACTIONS(845), @@ -48851,7 +48104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(845), [anon_sym_BANG_TILDE] = ACTIONS(845), [sym_integer_literal] = ACTIONS(845), - [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_LBRACK2] = ACTIONS(161), [sym_register] = ACTIONS(845), [sym__newline_or_pipe] = ACTIONS(845), [sym__line_continuation] = ACTIONS(3), @@ -48958,7 +48211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(849), [anon_sym_BANG_TILDE] = ACTIONS(849), [sym_integer_literal] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LBRACK2] = ACTIONS(849), [sym_register] = ACTIONS(849), [sym__newline_or_pipe] = ACTIONS(849), [sym__line_continuation] = ACTIONS(3), @@ -49035,37 +48288,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(849), }, [158] = { + [anon_sym_COLON] = ACTIONS(845), + [anon_sym_DOT] = ACTIONS(129), + [sym_command_name] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(133), + [sym_mark] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DOT2] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_BSLASH_SLASH] = ACTIONS(845), + [anon_sym_BSLASH_QMARK] = ACTIONS(845), + [anon_sym_BSLASH_AMP] = ACTIONS(845), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_DOT_DOT] = ACTIONS(845), + [anon_sym_is] = ACTIONS(847), + [anon_sym_isnot] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(845), + [anon_sym_BANG_TILDE] = ACTIONS(845), + [sym_integer_literal] = ACTIONS(845), + [anon_sym_LBRACK2] = ACTIONS(161), + [sym_register] = ACTIONS(845), + [sym__newline_or_pipe] = ACTIONS(845), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(845), + [sym__function] = ACTIONS(845), + [sym__for] = ACTIONS(845), + [sym__while] = ACTIONS(845), + [sym__if] = ACTIONS(845), + [sym__elseif] = ACTIONS(845), + [sym__else] = ACTIONS(845), + [sym__endif] = ACTIONS(845), + [sym__try] = ACTIONS(845), + [sym__const] = ACTIONS(845), + [sym__normal] = ACTIONS(845), + [sym__return] = ACTIONS(845), + [sym__perl] = ACTIONS(845), + [sym__lua] = ACTIONS(845), + [sym__ruby] = ACTIONS(845), + [sym__python] = ACTIONS(845), + [sym__throw] = ACTIONS(845), + [sym__execute] = ACTIONS(845), + [sym__autocmd] = ACTIONS(845), + [sym__silent] = ACTIONS(845), + [sym__echo] = ACTIONS(845), + [sym__echon] = ACTIONS(845), + [sym__echohl] = ACTIONS(845), + [sym__echomsg] = ACTIONS(845), + [sym__echoerr] = ACTIONS(845), + [sym__map] = ACTIONS(845), + [sym__nmap] = ACTIONS(845), + [sym__vmap] = ACTIONS(845), + [sym__xmap] = ACTIONS(845), + [sym__smap] = ACTIONS(845), + [sym__omap] = ACTIONS(845), + [sym__imap] = ACTIONS(845), + [sym__lmap] = ACTIONS(845), + [sym__cmap] = ACTIONS(845), + [sym__tmap] = ACTIONS(845), + [sym__noremap] = ACTIONS(845), + [sym__vnoremap] = ACTIONS(845), + [sym__nnoremap] = ACTIONS(845), + [sym__xnoremap] = ACTIONS(845), + [sym__snoremap] = ACTIONS(845), + [sym__onoremap] = ACTIONS(845), + [sym__inoremap] = ACTIONS(845), + [sym__lnoremap] = ACTIONS(845), + [sym__cnoremap] = ACTIONS(845), + [sym__tnoremap] = ACTIONS(845), + [sym__augroup] = ACTIONS(845), + [sym__highlight] = ACTIONS(845), + [sym__syntax] = ACTIONS(845), + [sym__set] = ACTIONS(845), + [sym__setlocal] = ACTIONS(845), + [sym__setfiletype] = ACTIONS(845), + [sym__browse] = ACTIONS(845), + [sym__options] = ACTIONS(845), + [sym__startinsert] = ACTIONS(845), + [sym__stopinsert] = ACTIONS(845), + [sym__scriptencoding] = ACTIONS(845), + [sym__source] = ACTIONS(845), + [sym__global] = ACTIONS(845), + [sym__colorscheme] = ACTIONS(845), + [sym__comclear] = ACTIONS(845), + [sym__delcommand] = ACTIONS(845), + [sym__runtime] = ACTIONS(845), + [sym__wincmd] = ACTIONS(845), + [sym__sign] = ACTIONS(845), + [sym__filetype] = ACTIONS(845), + [sym__let] = ACTIONS(845), + [sym__unlet] = ACTIONS(845), + [sym__call] = ACTIONS(845), + [sym__break] = ACTIONS(845), + [sym__continue] = ACTIONS(845), + [sym_unknown_command_name] = ACTIONS(845), + }, + [159] = { [anon_sym_COLON] = ACTIONS(853), - [anon_sym_DOT] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(129), [sym_command_name] = ACTIONS(853), [anon_sym_QMARK] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(133), [sym_mark] = ACTIONS(853), - [anon_sym_PERCENT] = ACTIONS(853), - [anon_sym_SLASH] = ACTIONS(853), - [anon_sym_DOT2] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DOT2] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DOLLAR] = ACTIONS(853), [anon_sym_BSLASH_SLASH] = ACTIONS(853), [anon_sym_BSLASH_QMARK] = ACTIONS(853), [anon_sym_BSLASH_AMP] = ACTIONS(853), - [anon_sym_LT2] = ACTIONS(855), - [anon_sym_STAR2] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DOT_DOT] = ACTIONS(853), - [anon_sym_is] = ACTIONS(855), - [anon_sym_isnot] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_GT2] = ACTIONS(855), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_EQ_TILDE] = ACTIONS(853), - [anon_sym_BANG_TILDE] = ACTIONS(853), + [anon_sym_LT2] = ACTIONS(143), + [anon_sym_STAR2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(147), + [anon_sym_AMP_AMP] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_DOT_DOT] = ACTIONS(153), + [anon_sym_is] = ACTIONS(155), + [anon_sym_isnot] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_GT2] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), [sym_integer_literal] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_LBRACK2] = ACTIONS(161), [sym_register] = ACTIONS(853), [sym__newline_or_pipe] = ACTIONS(853), [sym__line_continuation] = ACTIONS(3), @@ -49141,863 +48501,970 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(853), [sym_unknown_command_name] = ACTIONS(853), }, - [159] = { - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_DOT] = ACTIONS(859), - [sym_command_name] = ACTIONS(857), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(857), - [sym_mark] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_DOT2] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DOLLAR] = ACTIONS(857), - [anon_sym_BSLASH_SLASH] = ACTIONS(857), - [anon_sym_BSLASH_QMARK] = ACTIONS(857), - [anon_sym_BSLASH_AMP] = ACTIONS(857), - [anon_sym_LT2] = ACTIONS(859), - [anon_sym_STAR2] = ACTIONS(857), - [anon_sym_PIPE_PIPE] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_DOT_DOT] = ACTIONS(857), - [anon_sym_is] = ACTIONS(859), - [anon_sym_isnot] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_GT2] = ACTIONS(859), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_EQ_TILDE] = ACTIONS(857), - [anon_sym_BANG_TILDE] = ACTIONS(857), - [sym_integer_literal] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(857), - [sym_register] = ACTIONS(857), - [sym__newline_or_pipe] = ACTIONS(857), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(857), - [sym__function] = ACTIONS(857), - [sym__for] = ACTIONS(857), - [sym__while] = ACTIONS(857), - [sym__if] = ACTIONS(857), - [sym__elseif] = ACTIONS(857), - [sym__else] = ACTIONS(857), - [sym__endif] = ACTIONS(857), - [sym__try] = ACTIONS(857), - [sym__const] = ACTIONS(857), - [sym__normal] = ACTIONS(857), - [sym__return] = ACTIONS(857), - [sym__perl] = ACTIONS(857), - [sym__lua] = ACTIONS(857), - [sym__ruby] = ACTIONS(857), - [sym__python] = ACTIONS(857), - [sym__throw] = ACTIONS(857), - [sym__execute] = ACTIONS(857), - [sym__autocmd] = ACTIONS(857), - [sym__silent] = ACTIONS(857), - [sym__echo] = ACTIONS(857), - [sym__echon] = ACTIONS(857), - [sym__echohl] = ACTIONS(857), - [sym__echomsg] = ACTIONS(857), - [sym__echoerr] = ACTIONS(857), - [sym__map] = ACTIONS(857), - [sym__nmap] = ACTIONS(857), - [sym__vmap] = ACTIONS(857), - [sym__xmap] = ACTIONS(857), - [sym__smap] = ACTIONS(857), - [sym__omap] = ACTIONS(857), - [sym__imap] = ACTIONS(857), - [sym__lmap] = ACTIONS(857), - [sym__cmap] = ACTIONS(857), - [sym__tmap] = ACTIONS(857), - [sym__noremap] = ACTIONS(857), - [sym__vnoremap] = ACTIONS(857), - [sym__nnoremap] = ACTIONS(857), - [sym__xnoremap] = ACTIONS(857), - [sym__snoremap] = ACTIONS(857), - [sym__onoremap] = ACTIONS(857), - [sym__inoremap] = ACTIONS(857), - [sym__lnoremap] = ACTIONS(857), - [sym__cnoremap] = ACTIONS(857), - [sym__tnoremap] = ACTIONS(857), - [sym__augroup] = ACTIONS(857), - [sym__highlight] = ACTIONS(857), - [sym__syntax] = ACTIONS(857), - [sym__set] = ACTIONS(857), - [sym__setlocal] = ACTIONS(857), - [sym__setfiletype] = ACTIONS(857), - [sym__browse] = ACTIONS(857), - [sym__options] = ACTIONS(857), - [sym__startinsert] = ACTIONS(857), - [sym__stopinsert] = ACTIONS(857), - [sym__scriptencoding] = ACTIONS(857), - [sym__source] = ACTIONS(857), - [sym__global] = ACTIONS(857), - [sym__colorscheme] = ACTIONS(857), - [sym__comclear] = ACTIONS(857), - [sym__delcommand] = ACTIONS(857), - [sym__runtime] = ACTIONS(857), - [sym__wincmd] = ACTIONS(857), - [sym__sign] = ACTIONS(857), - [sym__filetype] = ACTIONS(857), - [sym__let] = ACTIONS(857), - [sym__unlet] = ACTIONS(857), - [sym__call] = ACTIONS(857), - [sym__break] = ACTIONS(857), - [sym__continue] = ACTIONS(857), - [sym_unknown_command_name] = ACTIONS(857), - }, [160] = { - [anon_sym_COLON] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(831), - [sym_command_name] = ACTIONS(831), - [aux_sym_argument_token1] = ACTIONS(861), - [aux_sym_argument_token2] = ACTIONS(863), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [sym_mark] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT2] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_BSLASH_SLASH] = ACTIONS(829), - [anon_sym_BSLASH_QMARK] = ACTIONS(829), - [anon_sym_BSLASH_AMP] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(831), - [anon_sym_STAR2] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_is] = ACTIONS(831), - [anon_sym_isnot] = ACTIONS(831), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_GT2] = ACTIONS(831), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [sym_integer_literal] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(829), - [sym_register] = ACTIONS(829), - [sym__newline_or_pipe] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(857), + [sym_command_name] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [sym_mark] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_BSLASH_SLASH] = ACTIONS(855), + [anon_sym_BSLASH_QMARK] = ACTIONS(855), + [anon_sym_BSLASH_AMP] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(857), + [anon_sym_STAR2] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(857), + [anon_sym_DOT_DOT] = ACTIONS(855), + [anon_sym_is] = ACTIONS(857), + [anon_sym_isnot] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_GT2] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [sym_integer_literal] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(855), + [sym_register] = ACTIONS(855), + [sym__newline_or_pipe] = ACTIONS(855), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(829), - [sym__function] = ACTIONS(829), - [sym__for] = ACTIONS(829), - [sym__endfor] = ACTIONS(829), - [sym__while] = ACTIONS(829), - [sym__if] = ACTIONS(829), - [sym__try] = ACTIONS(829), - [sym__const] = ACTIONS(829), - [sym__normal] = ACTIONS(829), - [sym__return] = ACTIONS(829), - [sym__perl] = ACTIONS(829), - [sym__lua] = ACTIONS(829), - [sym__ruby] = ACTIONS(829), - [sym__python] = ACTIONS(829), - [sym__throw] = ACTIONS(829), - [sym__execute] = ACTIONS(829), - [sym__autocmd] = ACTIONS(829), - [sym__silent] = ACTIONS(829), - [sym__echo] = ACTIONS(829), - [sym__echon] = ACTIONS(829), - [sym__echohl] = ACTIONS(829), - [sym__echomsg] = ACTIONS(829), - [sym__echoerr] = ACTIONS(829), - [sym__map] = ACTIONS(829), - [sym__nmap] = ACTIONS(829), - [sym__vmap] = ACTIONS(829), - [sym__xmap] = ACTIONS(829), - [sym__smap] = ACTIONS(829), - [sym__omap] = ACTIONS(829), - [sym__imap] = ACTIONS(829), - [sym__lmap] = ACTIONS(829), - [sym__cmap] = ACTIONS(829), - [sym__tmap] = ACTIONS(829), - [sym__noremap] = ACTIONS(829), - [sym__vnoremap] = ACTIONS(829), - [sym__nnoremap] = ACTIONS(829), - [sym__xnoremap] = ACTIONS(829), - [sym__snoremap] = ACTIONS(829), - [sym__onoremap] = ACTIONS(829), - [sym__inoremap] = ACTIONS(829), - [sym__lnoremap] = ACTIONS(829), - [sym__cnoremap] = ACTIONS(829), - [sym__tnoremap] = ACTIONS(829), - [sym__augroup] = ACTIONS(829), - [sym__highlight] = ACTIONS(829), - [sym__syntax] = ACTIONS(829), - [sym__set] = ACTIONS(829), - [sym__setlocal] = ACTIONS(829), - [sym__setfiletype] = ACTIONS(829), - [sym__browse] = ACTIONS(829), - [sym__options] = ACTIONS(829), - [sym__startinsert] = ACTIONS(829), - [sym__stopinsert] = ACTIONS(829), - [sym__scriptencoding] = ACTIONS(829), - [sym__source] = ACTIONS(829), - [sym__global] = ACTIONS(829), - [sym__colorscheme] = ACTIONS(829), - [sym__comclear] = ACTIONS(829), - [sym__delcommand] = ACTIONS(829), - [sym__runtime] = ACTIONS(829), - [sym__wincmd] = ACTIONS(829), - [sym__sign] = ACTIONS(829), - [sym__filetype] = ACTIONS(829), - [sym__let] = ACTIONS(829), - [sym__unlet] = ACTIONS(829), - [sym__call] = ACTIONS(829), - [sym__break] = ACTIONS(829), - [sym__continue] = ACTIONS(829), - [sym_unknown_command_name] = ACTIONS(829), + [sym_comment] = ACTIONS(855), + [sym__function] = ACTIONS(855), + [sym__for] = ACTIONS(855), + [sym__while] = ACTIONS(855), + [sym__if] = ACTIONS(855), + [sym__elseif] = ACTIONS(855), + [sym__else] = ACTIONS(855), + [sym__endif] = ACTIONS(855), + [sym__try] = ACTIONS(855), + [sym__const] = ACTIONS(855), + [sym__normal] = ACTIONS(855), + [sym__return] = ACTIONS(855), + [sym__perl] = ACTIONS(855), + [sym__lua] = ACTIONS(855), + [sym__ruby] = ACTIONS(855), + [sym__python] = ACTIONS(855), + [sym__throw] = ACTIONS(855), + [sym__execute] = ACTIONS(855), + [sym__autocmd] = ACTIONS(855), + [sym__silent] = ACTIONS(855), + [sym__echo] = ACTIONS(855), + [sym__echon] = ACTIONS(855), + [sym__echohl] = ACTIONS(855), + [sym__echomsg] = ACTIONS(855), + [sym__echoerr] = ACTIONS(855), + [sym__map] = ACTIONS(855), + [sym__nmap] = ACTIONS(855), + [sym__vmap] = ACTIONS(855), + [sym__xmap] = ACTIONS(855), + [sym__smap] = ACTIONS(855), + [sym__omap] = ACTIONS(855), + [sym__imap] = ACTIONS(855), + [sym__lmap] = ACTIONS(855), + [sym__cmap] = ACTIONS(855), + [sym__tmap] = ACTIONS(855), + [sym__noremap] = ACTIONS(855), + [sym__vnoremap] = ACTIONS(855), + [sym__nnoremap] = ACTIONS(855), + [sym__xnoremap] = ACTIONS(855), + [sym__snoremap] = ACTIONS(855), + [sym__onoremap] = ACTIONS(855), + [sym__inoremap] = ACTIONS(855), + [sym__lnoremap] = ACTIONS(855), + [sym__cnoremap] = ACTIONS(855), + [sym__tnoremap] = ACTIONS(855), + [sym__augroup] = ACTIONS(855), + [sym__highlight] = ACTIONS(855), + [sym__syntax] = ACTIONS(855), + [sym__set] = ACTIONS(855), + [sym__setlocal] = ACTIONS(855), + [sym__setfiletype] = ACTIONS(855), + [sym__browse] = ACTIONS(855), + [sym__options] = ACTIONS(855), + [sym__startinsert] = ACTIONS(855), + [sym__stopinsert] = ACTIONS(855), + [sym__scriptencoding] = ACTIONS(855), + [sym__source] = ACTIONS(855), + [sym__global] = ACTIONS(855), + [sym__colorscheme] = ACTIONS(855), + [sym__comclear] = ACTIONS(855), + [sym__delcommand] = ACTIONS(855), + [sym__runtime] = ACTIONS(855), + [sym__wincmd] = ACTIONS(855), + [sym__sign] = ACTIONS(855), + [sym__filetype] = ACTIONS(855), + [sym__let] = ACTIONS(855), + [sym__unlet] = ACTIONS(855), + [sym__call] = ACTIONS(855), + [sym__break] = ACTIONS(855), + [sym__continue] = ACTIONS(855), + [sym_unknown_command_name] = ACTIONS(855), }, [161] = { - [anon_sym_COLON] = ACTIONS(865), - [anon_sym_DOT] = ACTIONS(867), - [sym_command_name] = ACTIONS(865), - [anon_sym_QMARK] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [sym_mark] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_DOT2] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(865), - [anon_sym_BSLASH_SLASH] = ACTIONS(865), - [anon_sym_BSLASH_QMARK] = ACTIONS(865), - [anon_sym_BSLASH_AMP] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(867), - [anon_sym_STAR2] = ACTIONS(865), - [anon_sym_PIPE_PIPE] = ACTIONS(865), - [anon_sym_AMP_AMP] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(865), - [anon_sym_is] = ACTIONS(867), - [anon_sym_isnot] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_GT2] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [sym_integer_literal] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [sym_register] = ACTIONS(865), - [sym__newline_or_pipe] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(861), + [sym_command_name] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(859), + [sym_mark] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_DOT2] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_BSLASH_SLASH] = ACTIONS(859), + [anon_sym_BSLASH_QMARK] = ACTIONS(859), + [anon_sym_BSLASH_AMP] = ACTIONS(859), + [anon_sym_LT2] = ACTIONS(861), + [anon_sym_STAR2] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(859), + [anon_sym_is] = ACTIONS(861), + [anon_sym_isnot] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_GT2] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_EQ_TILDE] = ACTIONS(859), + [anon_sym_BANG_TILDE] = ACTIONS(859), + [sym_integer_literal] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(859), + [sym_register] = ACTIONS(859), + [sym__newline_or_pipe] = ACTIONS(859), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(865), - [sym__function] = ACTIONS(865), - [sym__for] = ACTIONS(865), - [sym__while] = ACTIONS(865), - [sym__if] = ACTIONS(865), - [sym__elseif] = ACTIONS(865), - [sym__else] = ACTIONS(865), - [sym__endif] = ACTIONS(865), - [sym__try] = ACTIONS(865), - [sym__const] = ACTIONS(865), - [sym__normal] = ACTIONS(865), - [sym__return] = ACTIONS(865), - [sym__perl] = ACTIONS(865), - [sym__lua] = ACTIONS(865), - [sym__ruby] = ACTIONS(865), - [sym__python] = ACTIONS(865), - [sym__throw] = ACTIONS(865), - [sym__execute] = ACTIONS(865), - [sym__autocmd] = ACTIONS(865), - [sym__silent] = ACTIONS(865), - [sym__echo] = ACTIONS(865), - [sym__echon] = ACTIONS(865), - [sym__echohl] = ACTIONS(865), - [sym__echomsg] = ACTIONS(865), - [sym__echoerr] = ACTIONS(865), - [sym__map] = ACTIONS(865), - [sym__nmap] = ACTIONS(865), - [sym__vmap] = ACTIONS(865), - [sym__xmap] = ACTIONS(865), - [sym__smap] = ACTIONS(865), - [sym__omap] = ACTIONS(865), - [sym__imap] = ACTIONS(865), - [sym__lmap] = ACTIONS(865), - [sym__cmap] = ACTIONS(865), - [sym__tmap] = ACTIONS(865), - [sym__noremap] = ACTIONS(865), - [sym__vnoremap] = ACTIONS(865), - [sym__nnoremap] = ACTIONS(865), - [sym__xnoremap] = ACTIONS(865), - [sym__snoremap] = ACTIONS(865), - [sym__onoremap] = ACTIONS(865), - [sym__inoremap] = ACTIONS(865), - [sym__lnoremap] = ACTIONS(865), - [sym__cnoremap] = ACTIONS(865), - [sym__tnoremap] = ACTIONS(865), - [sym__augroup] = ACTIONS(865), - [sym__highlight] = ACTIONS(865), - [sym__syntax] = ACTIONS(865), - [sym__set] = ACTIONS(865), - [sym__setlocal] = ACTIONS(865), - [sym__setfiletype] = ACTIONS(865), - [sym__browse] = ACTIONS(865), - [sym__options] = ACTIONS(865), - [sym__startinsert] = ACTIONS(865), - [sym__stopinsert] = ACTIONS(865), - [sym__scriptencoding] = ACTIONS(865), - [sym__source] = ACTIONS(865), - [sym__global] = ACTIONS(865), - [sym__colorscheme] = ACTIONS(865), - [sym__comclear] = ACTIONS(865), - [sym__delcommand] = ACTIONS(865), - [sym__runtime] = ACTIONS(865), - [sym__wincmd] = ACTIONS(865), - [sym__sign] = ACTIONS(865), - [sym__filetype] = ACTIONS(865), - [sym__let] = ACTIONS(865), - [sym__unlet] = ACTIONS(865), - [sym__call] = ACTIONS(865), - [sym__break] = ACTIONS(865), - [sym__continue] = ACTIONS(865), - [sym_unknown_command_name] = ACTIONS(865), + [sym_comment] = ACTIONS(859), + [sym__function] = ACTIONS(859), + [sym__for] = ACTIONS(859), + [sym__while] = ACTIONS(859), + [sym__if] = ACTIONS(859), + [sym__elseif] = ACTIONS(859), + [sym__else] = ACTIONS(859), + [sym__endif] = ACTIONS(859), + [sym__try] = ACTIONS(859), + [sym__const] = ACTIONS(859), + [sym__normal] = ACTIONS(859), + [sym__return] = ACTIONS(859), + [sym__perl] = ACTIONS(859), + [sym__lua] = ACTIONS(859), + [sym__ruby] = ACTIONS(859), + [sym__python] = ACTIONS(859), + [sym__throw] = ACTIONS(859), + [sym__execute] = ACTIONS(859), + [sym__autocmd] = ACTIONS(859), + [sym__silent] = ACTIONS(859), + [sym__echo] = ACTIONS(859), + [sym__echon] = ACTIONS(859), + [sym__echohl] = ACTIONS(859), + [sym__echomsg] = ACTIONS(859), + [sym__echoerr] = ACTIONS(859), + [sym__map] = ACTIONS(859), + [sym__nmap] = ACTIONS(859), + [sym__vmap] = ACTIONS(859), + [sym__xmap] = ACTIONS(859), + [sym__smap] = ACTIONS(859), + [sym__omap] = ACTIONS(859), + [sym__imap] = ACTIONS(859), + [sym__lmap] = ACTIONS(859), + [sym__cmap] = ACTIONS(859), + [sym__tmap] = ACTIONS(859), + [sym__noremap] = ACTIONS(859), + [sym__vnoremap] = ACTIONS(859), + [sym__nnoremap] = ACTIONS(859), + [sym__xnoremap] = ACTIONS(859), + [sym__snoremap] = ACTIONS(859), + [sym__onoremap] = ACTIONS(859), + [sym__inoremap] = ACTIONS(859), + [sym__lnoremap] = ACTIONS(859), + [sym__cnoremap] = ACTIONS(859), + [sym__tnoremap] = ACTIONS(859), + [sym__augroup] = ACTIONS(859), + [sym__highlight] = ACTIONS(859), + [sym__syntax] = ACTIONS(859), + [sym__set] = ACTIONS(859), + [sym__setlocal] = ACTIONS(859), + [sym__setfiletype] = ACTIONS(859), + [sym__browse] = ACTIONS(859), + [sym__options] = ACTIONS(859), + [sym__startinsert] = ACTIONS(859), + [sym__stopinsert] = ACTIONS(859), + [sym__scriptencoding] = ACTIONS(859), + [sym__source] = ACTIONS(859), + [sym__global] = ACTIONS(859), + [sym__colorscheme] = ACTIONS(859), + [sym__comclear] = ACTIONS(859), + [sym__delcommand] = ACTIONS(859), + [sym__runtime] = ACTIONS(859), + [sym__wincmd] = ACTIONS(859), + [sym__sign] = ACTIONS(859), + [sym__filetype] = ACTIONS(859), + [sym__let] = ACTIONS(859), + [sym__unlet] = ACTIONS(859), + [sym__call] = ACTIONS(859), + [sym__break] = ACTIONS(859), + [sym__continue] = ACTIONS(859), + [sym_unknown_command_name] = ACTIONS(859), }, [162] = { - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_DOT] = ACTIONS(871), - [sym_command_name] = ACTIONS(869), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [sym_mark] = ACTIONS(869), - [anon_sym_PERCENT] = ACTIONS(869), - [anon_sym_SLASH] = ACTIONS(869), - [anon_sym_DOT2] = ACTIONS(871), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DOLLAR] = ACTIONS(869), - [anon_sym_BSLASH_SLASH] = ACTIONS(869), - [anon_sym_BSLASH_QMARK] = ACTIONS(869), - [anon_sym_BSLASH_AMP] = ACTIONS(869), - [anon_sym_LT2] = ACTIONS(871), - [anon_sym_STAR2] = ACTIONS(869), - [anon_sym_PIPE_PIPE] = ACTIONS(869), - [anon_sym_AMP_AMP] = ACTIONS(869), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_DOT_DOT] = ACTIONS(869), - [anon_sym_is] = ACTIONS(871), - [anon_sym_isnot] = ACTIONS(869), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_GT2] = ACTIONS(871), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_EQ_TILDE] = ACTIONS(869), - [anon_sym_BANG_TILDE] = ACTIONS(869), - [sym_integer_literal] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [sym_register] = ACTIONS(869), - [sym__newline_or_pipe] = ACTIONS(869), + [anon_sym_COLON] = ACTIONS(845), + [anon_sym_DOT] = ACTIONS(129), + [sym_command_name] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(133), + [sym_mark] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(845), + [anon_sym_SLASH] = ACTIONS(845), + [anon_sym_DOT2] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_BSLASH_SLASH] = ACTIONS(845), + [anon_sym_BSLASH_QMARK] = ACTIONS(845), + [anon_sym_BSLASH_AMP] = ACTIONS(845), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_DOT_DOT] = ACTIONS(845), + [anon_sym_is] = ACTIONS(847), + [anon_sym_isnot] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(845), + [anon_sym_BANG_TILDE] = ACTIONS(845), + [sym_integer_literal] = ACTIONS(845), + [anon_sym_LBRACK2] = ACTIONS(161), + [sym_register] = ACTIONS(845), + [sym__newline_or_pipe] = ACTIONS(845), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(869), - [sym__function] = ACTIONS(869), - [sym__for] = ACTIONS(869), - [sym__while] = ACTIONS(869), - [sym__if] = ACTIONS(869), - [sym__elseif] = ACTIONS(869), - [sym__else] = ACTIONS(869), - [sym__endif] = ACTIONS(869), - [sym__try] = ACTIONS(869), - [sym__const] = ACTIONS(869), - [sym__normal] = ACTIONS(869), - [sym__return] = ACTIONS(869), - [sym__perl] = ACTIONS(869), - [sym__lua] = ACTIONS(869), - [sym__ruby] = ACTIONS(869), - [sym__python] = ACTIONS(869), - [sym__throw] = ACTIONS(869), - [sym__execute] = ACTIONS(869), - [sym__autocmd] = ACTIONS(869), - [sym__silent] = ACTIONS(869), - [sym__echo] = ACTIONS(869), - [sym__echon] = ACTIONS(869), - [sym__echohl] = ACTIONS(869), - [sym__echomsg] = ACTIONS(869), - [sym__echoerr] = ACTIONS(869), - [sym__map] = ACTIONS(869), - [sym__nmap] = ACTIONS(869), - [sym__vmap] = ACTIONS(869), - [sym__xmap] = ACTIONS(869), - [sym__smap] = ACTIONS(869), - [sym__omap] = ACTIONS(869), - [sym__imap] = ACTIONS(869), - [sym__lmap] = ACTIONS(869), - [sym__cmap] = ACTIONS(869), - [sym__tmap] = ACTIONS(869), - [sym__noremap] = ACTIONS(869), - [sym__vnoremap] = ACTIONS(869), - [sym__nnoremap] = ACTIONS(869), - [sym__xnoremap] = ACTIONS(869), - [sym__snoremap] = ACTIONS(869), - [sym__onoremap] = ACTIONS(869), - [sym__inoremap] = ACTIONS(869), - [sym__lnoremap] = ACTIONS(869), - [sym__cnoremap] = ACTIONS(869), - [sym__tnoremap] = ACTIONS(869), - [sym__augroup] = ACTIONS(869), - [sym__highlight] = ACTIONS(869), - [sym__syntax] = ACTIONS(869), - [sym__set] = ACTIONS(869), - [sym__setlocal] = ACTIONS(869), - [sym__setfiletype] = ACTIONS(869), - [sym__browse] = ACTIONS(869), - [sym__options] = ACTIONS(869), - [sym__startinsert] = ACTIONS(869), - [sym__stopinsert] = ACTIONS(869), - [sym__scriptencoding] = ACTIONS(869), - [sym__source] = ACTIONS(869), - [sym__global] = ACTIONS(869), - [sym__colorscheme] = ACTIONS(869), - [sym__comclear] = ACTIONS(869), - [sym__delcommand] = ACTIONS(869), - [sym__runtime] = ACTIONS(869), - [sym__wincmd] = ACTIONS(869), - [sym__sign] = ACTIONS(869), - [sym__filetype] = ACTIONS(869), - [sym__let] = ACTIONS(869), - [sym__unlet] = ACTIONS(869), - [sym__call] = ACTIONS(869), - [sym__break] = ACTIONS(869), - [sym__continue] = ACTIONS(869), - [sym_unknown_command_name] = ACTIONS(869), + [sym_comment] = ACTIONS(845), + [sym__function] = ACTIONS(845), + [sym__for] = ACTIONS(845), + [sym__while] = ACTIONS(845), + [sym__if] = ACTIONS(845), + [sym__elseif] = ACTIONS(845), + [sym__else] = ACTIONS(845), + [sym__endif] = ACTIONS(845), + [sym__try] = ACTIONS(845), + [sym__const] = ACTIONS(845), + [sym__normal] = ACTIONS(845), + [sym__return] = ACTIONS(845), + [sym__perl] = ACTIONS(845), + [sym__lua] = ACTIONS(845), + [sym__ruby] = ACTIONS(845), + [sym__python] = ACTIONS(845), + [sym__throw] = ACTIONS(845), + [sym__execute] = ACTIONS(845), + [sym__autocmd] = ACTIONS(845), + [sym__silent] = ACTIONS(845), + [sym__echo] = ACTIONS(845), + [sym__echon] = ACTIONS(845), + [sym__echohl] = ACTIONS(845), + [sym__echomsg] = ACTIONS(845), + [sym__echoerr] = ACTIONS(845), + [sym__map] = ACTIONS(845), + [sym__nmap] = ACTIONS(845), + [sym__vmap] = ACTIONS(845), + [sym__xmap] = ACTIONS(845), + [sym__smap] = ACTIONS(845), + [sym__omap] = ACTIONS(845), + [sym__imap] = ACTIONS(845), + [sym__lmap] = ACTIONS(845), + [sym__cmap] = ACTIONS(845), + [sym__tmap] = ACTIONS(845), + [sym__noremap] = ACTIONS(845), + [sym__vnoremap] = ACTIONS(845), + [sym__nnoremap] = ACTIONS(845), + [sym__xnoremap] = ACTIONS(845), + [sym__snoremap] = ACTIONS(845), + [sym__onoremap] = ACTIONS(845), + [sym__inoremap] = ACTIONS(845), + [sym__lnoremap] = ACTIONS(845), + [sym__cnoremap] = ACTIONS(845), + [sym__tnoremap] = ACTIONS(845), + [sym__augroup] = ACTIONS(845), + [sym__highlight] = ACTIONS(845), + [sym__syntax] = ACTIONS(845), + [sym__set] = ACTIONS(845), + [sym__setlocal] = ACTIONS(845), + [sym__setfiletype] = ACTIONS(845), + [sym__browse] = ACTIONS(845), + [sym__options] = ACTIONS(845), + [sym__startinsert] = ACTIONS(845), + [sym__stopinsert] = ACTIONS(845), + [sym__scriptencoding] = ACTIONS(845), + [sym__source] = ACTIONS(845), + [sym__global] = ACTIONS(845), + [sym__colorscheme] = ACTIONS(845), + [sym__comclear] = ACTIONS(845), + [sym__delcommand] = ACTIONS(845), + [sym__runtime] = ACTIONS(845), + [sym__wincmd] = ACTIONS(845), + [sym__sign] = ACTIONS(845), + [sym__filetype] = ACTIONS(845), + [sym__let] = ACTIONS(845), + [sym__unlet] = ACTIONS(845), + [sym__call] = ACTIONS(845), + [sym__break] = ACTIONS(845), + [sym__continue] = ACTIONS(845), + [sym_unknown_command_name] = ACTIONS(845), }, [163] = { - [anon_sym_COLON] = ACTIONS(873), - [anon_sym_DOT] = ACTIONS(875), - [sym_command_name] = ACTIONS(873), - [anon_sym_QMARK] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(873), - [sym_mark] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(873), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_DOT2] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(873), - [anon_sym_BSLASH_SLASH] = ACTIONS(873), - [anon_sym_BSLASH_QMARK] = ACTIONS(873), - [anon_sym_BSLASH_AMP] = ACTIONS(873), - [anon_sym_LT2] = ACTIONS(875), - [anon_sym_STAR2] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_DOT_DOT] = ACTIONS(873), - [anon_sym_is] = ACTIONS(875), - [anon_sym_isnot] = ACTIONS(873), - [anon_sym_EQ_EQ] = ACTIONS(873), - [anon_sym_BANG_EQ] = ACTIONS(873), - [anon_sym_GT2] = ACTIONS(875), - [anon_sym_GT_EQ] = ACTIONS(873), - [anon_sym_LT_EQ] = ACTIONS(873), - [anon_sym_EQ_TILDE] = ACTIONS(873), - [anon_sym_BANG_TILDE] = ACTIONS(873), - [sym_integer_literal] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(873), - [sym_register] = ACTIONS(873), - [sym__newline_or_pipe] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(865), + [sym_command_name] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(863), + [sym_mark] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_DOT2] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_BSLASH_SLASH] = ACTIONS(863), + [anon_sym_BSLASH_QMARK] = ACTIONS(863), + [anon_sym_BSLASH_AMP] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(865), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_is] = ACTIONS(865), + [anon_sym_isnot] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_EQ_TILDE] = ACTIONS(863), + [anon_sym_BANG_TILDE] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(863), + [anon_sym_LBRACK2] = ACTIONS(863), + [sym_register] = ACTIONS(863), + [sym__newline_or_pipe] = ACTIONS(863), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(873), - [sym__function] = ACTIONS(873), - [sym__for] = ACTIONS(873), - [sym__while] = ACTIONS(873), - [sym__if] = ACTIONS(873), - [sym__elseif] = ACTIONS(873), - [sym__else] = ACTIONS(873), - [sym__endif] = ACTIONS(873), - [sym__try] = ACTIONS(873), - [sym__const] = ACTIONS(873), - [sym__normal] = ACTIONS(873), - [sym__return] = ACTIONS(873), - [sym__perl] = ACTIONS(873), - [sym__lua] = ACTIONS(873), - [sym__ruby] = ACTIONS(873), - [sym__python] = ACTIONS(873), - [sym__throw] = ACTIONS(873), - [sym__execute] = ACTIONS(873), - [sym__autocmd] = ACTIONS(873), - [sym__silent] = ACTIONS(873), - [sym__echo] = ACTIONS(873), - [sym__echon] = ACTIONS(873), - [sym__echohl] = ACTIONS(873), - [sym__echomsg] = ACTIONS(873), - [sym__echoerr] = ACTIONS(873), - [sym__map] = ACTIONS(873), - [sym__nmap] = ACTIONS(873), - [sym__vmap] = ACTIONS(873), - [sym__xmap] = ACTIONS(873), - [sym__smap] = ACTIONS(873), - [sym__omap] = ACTIONS(873), - [sym__imap] = ACTIONS(873), - [sym__lmap] = ACTIONS(873), - [sym__cmap] = ACTIONS(873), - [sym__tmap] = ACTIONS(873), - [sym__noremap] = ACTIONS(873), - [sym__vnoremap] = ACTIONS(873), - [sym__nnoremap] = ACTIONS(873), - [sym__xnoremap] = ACTIONS(873), - [sym__snoremap] = ACTIONS(873), - [sym__onoremap] = ACTIONS(873), - [sym__inoremap] = ACTIONS(873), - [sym__lnoremap] = ACTIONS(873), - [sym__cnoremap] = ACTIONS(873), - [sym__tnoremap] = ACTIONS(873), - [sym__augroup] = ACTIONS(873), - [sym__highlight] = ACTIONS(873), - [sym__syntax] = ACTIONS(873), - [sym__set] = ACTIONS(873), - [sym__setlocal] = ACTIONS(873), - [sym__setfiletype] = ACTIONS(873), - [sym__browse] = ACTIONS(873), - [sym__options] = ACTIONS(873), - [sym__startinsert] = ACTIONS(873), - [sym__stopinsert] = ACTIONS(873), - [sym__scriptencoding] = ACTIONS(873), - [sym__source] = ACTIONS(873), - [sym__global] = ACTIONS(873), - [sym__colorscheme] = ACTIONS(873), - [sym__comclear] = ACTIONS(873), - [sym__delcommand] = ACTIONS(873), - [sym__runtime] = ACTIONS(873), - [sym__wincmd] = ACTIONS(873), - [sym__sign] = ACTIONS(873), - [sym__filetype] = ACTIONS(873), - [sym__let] = ACTIONS(873), - [sym__unlet] = ACTIONS(873), - [sym__call] = ACTIONS(873), - [sym__break] = ACTIONS(873), - [sym__continue] = ACTIONS(873), - [sym_unknown_command_name] = ACTIONS(873), + [sym_comment] = ACTIONS(863), + [sym__function] = ACTIONS(863), + [sym__for] = ACTIONS(863), + [sym__while] = ACTIONS(863), + [sym__if] = ACTIONS(863), + [sym__elseif] = ACTIONS(863), + [sym__else] = ACTIONS(863), + [sym__endif] = ACTIONS(863), + [sym__try] = ACTIONS(863), + [sym__const] = ACTIONS(863), + [sym__normal] = ACTIONS(863), + [sym__return] = ACTIONS(863), + [sym__perl] = ACTIONS(863), + [sym__lua] = ACTIONS(863), + [sym__ruby] = ACTIONS(863), + [sym__python] = ACTIONS(863), + [sym__throw] = ACTIONS(863), + [sym__execute] = ACTIONS(863), + [sym__autocmd] = ACTIONS(863), + [sym__silent] = ACTIONS(863), + [sym__echo] = ACTIONS(863), + [sym__echon] = ACTIONS(863), + [sym__echohl] = ACTIONS(863), + [sym__echomsg] = ACTIONS(863), + [sym__echoerr] = ACTIONS(863), + [sym__map] = ACTIONS(863), + [sym__nmap] = ACTIONS(863), + [sym__vmap] = ACTIONS(863), + [sym__xmap] = ACTIONS(863), + [sym__smap] = ACTIONS(863), + [sym__omap] = ACTIONS(863), + [sym__imap] = ACTIONS(863), + [sym__lmap] = ACTIONS(863), + [sym__cmap] = ACTIONS(863), + [sym__tmap] = ACTIONS(863), + [sym__noremap] = ACTIONS(863), + [sym__vnoremap] = ACTIONS(863), + [sym__nnoremap] = ACTIONS(863), + [sym__xnoremap] = ACTIONS(863), + [sym__snoremap] = ACTIONS(863), + [sym__onoremap] = ACTIONS(863), + [sym__inoremap] = ACTIONS(863), + [sym__lnoremap] = ACTIONS(863), + [sym__cnoremap] = ACTIONS(863), + [sym__tnoremap] = ACTIONS(863), + [sym__augroup] = ACTIONS(863), + [sym__highlight] = ACTIONS(863), + [sym__syntax] = ACTIONS(863), + [sym__set] = ACTIONS(863), + [sym__setlocal] = ACTIONS(863), + [sym__setfiletype] = ACTIONS(863), + [sym__browse] = ACTIONS(863), + [sym__options] = ACTIONS(863), + [sym__startinsert] = ACTIONS(863), + [sym__stopinsert] = ACTIONS(863), + [sym__scriptencoding] = ACTIONS(863), + [sym__source] = ACTIONS(863), + [sym__global] = ACTIONS(863), + [sym__colorscheme] = ACTIONS(863), + [sym__comclear] = ACTIONS(863), + [sym__delcommand] = ACTIONS(863), + [sym__runtime] = ACTIONS(863), + [sym__wincmd] = ACTIONS(863), + [sym__sign] = ACTIONS(863), + [sym__filetype] = ACTIONS(863), + [sym__let] = ACTIONS(863), + [sym__unlet] = ACTIONS(863), + [sym__call] = ACTIONS(863), + [sym__break] = ACTIONS(863), + [sym__continue] = ACTIONS(863), + [sym_unknown_command_name] = ACTIONS(863), }, [164] = { - [anon_sym_COLON] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(879), - [sym_command_name] = ACTIONS(877), - [anon_sym_QMARK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(877), - [sym_mark] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_DOT2] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_BSLASH_SLASH] = ACTIONS(877), - [anon_sym_BSLASH_QMARK] = ACTIONS(877), - [anon_sym_BSLASH_AMP] = ACTIONS(877), - [anon_sym_LT2] = ACTIONS(879), - [anon_sym_STAR2] = ACTIONS(877), - [anon_sym_PIPE_PIPE] = ACTIONS(877), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(877), - [anon_sym_is] = ACTIONS(879), - [anon_sym_isnot] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_GT2] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_EQ_TILDE] = ACTIONS(877), - [anon_sym_BANG_TILDE] = ACTIONS(877), - [sym_integer_literal] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [sym_register] = ACTIONS(877), - [sym__newline_or_pipe] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(869), + [sym_command_name] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [sym_mark] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_DOT2] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_BSLASH_SLASH] = ACTIONS(867), + [anon_sym_BSLASH_QMARK] = ACTIONS(867), + [anon_sym_BSLASH_AMP] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(869), + [anon_sym_STAR2] = ACTIONS(867), + [anon_sym_PIPE_PIPE] = ACTIONS(867), + [anon_sym_AMP_AMP] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(869), + [anon_sym_DOT_DOT] = ACTIONS(867), + [anon_sym_is] = ACTIONS(869), + [anon_sym_isnot] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_GT2] = ACTIONS(869), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_EQ_TILDE] = ACTIONS(867), + [anon_sym_BANG_TILDE] = ACTIONS(867), + [sym_integer_literal] = ACTIONS(867), + [anon_sym_LBRACK2] = ACTIONS(867), + [sym_register] = ACTIONS(867), + [sym__newline_or_pipe] = ACTIONS(867), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(877), - [sym__function] = ACTIONS(877), - [sym__for] = ACTIONS(877), - [sym__while] = ACTIONS(877), - [sym__if] = ACTIONS(877), - [sym__elseif] = ACTIONS(877), - [sym__else] = ACTIONS(877), - [sym__endif] = ACTIONS(877), - [sym__try] = ACTIONS(877), - [sym__const] = ACTIONS(877), - [sym__normal] = ACTIONS(877), - [sym__return] = ACTIONS(877), - [sym__perl] = ACTIONS(877), - [sym__lua] = ACTIONS(877), - [sym__ruby] = ACTIONS(877), - [sym__python] = ACTIONS(877), - [sym__throw] = ACTIONS(877), - [sym__execute] = ACTIONS(877), - [sym__autocmd] = ACTIONS(877), - [sym__silent] = ACTIONS(877), - [sym__echo] = ACTIONS(877), - [sym__echon] = ACTIONS(877), - [sym__echohl] = ACTIONS(877), - [sym__echomsg] = ACTIONS(877), - [sym__echoerr] = ACTIONS(877), - [sym__map] = ACTIONS(877), - [sym__nmap] = ACTIONS(877), - [sym__vmap] = ACTIONS(877), - [sym__xmap] = ACTIONS(877), - [sym__smap] = ACTIONS(877), - [sym__omap] = ACTIONS(877), - [sym__imap] = ACTIONS(877), - [sym__lmap] = ACTIONS(877), - [sym__cmap] = ACTIONS(877), - [sym__tmap] = ACTIONS(877), - [sym__noremap] = ACTIONS(877), - [sym__vnoremap] = ACTIONS(877), - [sym__nnoremap] = ACTIONS(877), - [sym__xnoremap] = ACTIONS(877), - [sym__snoremap] = ACTIONS(877), - [sym__onoremap] = ACTIONS(877), - [sym__inoremap] = ACTIONS(877), - [sym__lnoremap] = ACTIONS(877), - [sym__cnoremap] = ACTIONS(877), - [sym__tnoremap] = ACTIONS(877), - [sym__augroup] = ACTIONS(877), - [sym__highlight] = ACTIONS(877), - [sym__syntax] = ACTIONS(877), - [sym__set] = ACTIONS(877), - [sym__setlocal] = ACTIONS(877), - [sym__setfiletype] = ACTIONS(877), - [sym__browse] = ACTIONS(877), - [sym__options] = ACTIONS(877), - [sym__startinsert] = ACTIONS(877), - [sym__stopinsert] = ACTIONS(877), - [sym__scriptencoding] = ACTIONS(877), - [sym__source] = ACTIONS(877), - [sym__global] = ACTIONS(877), - [sym__colorscheme] = ACTIONS(877), - [sym__comclear] = ACTIONS(877), - [sym__delcommand] = ACTIONS(877), - [sym__runtime] = ACTIONS(877), - [sym__wincmd] = ACTIONS(877), - [sym__sign] = ACTIONS(877), - [sym__filetype] = ACTIONS(877), - [sym__let] = ACTIONS(877), - [sym__unlet] = ACTIONS(877), - [sym__call] = ACTIONS(877), - [sym__break] = ACTIONS(877), - [sym__continue] = ACTIONS(877), - [sym_unknown_command_name] = ACTIONS(877), + [sym_comment] = ACTIONS(867), + [sym__function] = ACTIONS(867), + [sym__for] = ACTIONS(867), + [sym__while] = ACTIONS(867), + [sym__if] = ACTIONS(867), + [sym__elseif] = ACTIONS(867), + [sym__else] = ACTIONS(867), + [sym__endif] = ACTIONS(867), + [sym__try] = ACTIONS(867), + [sym__const] = ACTIONS(867), + [sym__normal] = ACTIONS(867), + [sym__return] = ACTIONS(867), + [sym__perl] = ACTIONS(867), + [sym__lua] = ACTIONS(867), + [sym__ruby] = ACTIONS(867), + [sym__python] = ACTIONS(867), + [sym__throw] = ACTIONS(867), + [sym__execute] = ACTIONS(867), + [sym__autocmd] = ACTIONS(867), + [sym__silent] = ACTIONS(867), + [sym__echo] = ACTIONS(867), + [sym__echon] = ACTIONS(867), + [sym__echohl] = ACTIONS(867), + [sym__echomsg] = ACTIONS(867), + [sym__echoerr] = ACTIONS(867), + [sym__map] = ACTIONS(867), + [sym__nmap] = ACTIONS(867), + [sym__vmap] = ACTIONS(867), + [sym__xmap] = ACTIONS(867), + [sym__smap] = ACTIONS(867), + [sym__omap] = ACTIONS(867), + [sym__imap] = ACTIONS(867), + [sym__lmap] = ACTIONS(867), + [sym__cmap] = ACTIONS(867), + [sym__tmap] = ACTIONS(867), + [sym__noremap] = ACTIONS(867), + [sym__vnoremap] = ACTIONS(867), + [sym__nnoremap] = ACTIONS(867), + [sym__xnoremap] = ACTIONS(867), + [sym__snoremap] = ACTIONS(867), + [sym__onoremap] = ACTIONS(867), + [sym__inoremap] = ACTIONS(867), + [sym__lnoremap] = ACTIONS(867), + [sym__cnoremap] = ACTIONS(867), + [sym__tnoremap] = ACTIONS(867), + [sym__augroup] = ACTIONS(867), + [sym__highlight] = ACTIONS(867), + [sym__syntax] = ACTIONS(867), + [sym__set] = ACTIONS(867), + [sym__setlocal] = ACTIONS(867), + [sym__setfiletype] = ACTIONS(867), + [sym__browse] = ACTIONS(867), + [sym__options] = ACTIONS(867), + [sym__startinsert] = ACTIONS(867), + [sym__stopinsert] = ACTIONS(867), + [sym__scriptencoding] = ACTIONS(867), + [sym__source] = ACTIONS(867), + [sym__global] = ACTIONS(867), + [sym__colorscheme] = ACTIONS(867), + [sym__comclear] = ACTIONS(867), + [sym__delcommand] = ACTIONS(867), + [sym__runtime] = ACTIONS(867), + [sym__wincmd] = ACTIONS(867), + [sym__sign] = ACTIONS(867), + [sym__filetype] = ACTIONS(867), + [sym__let] = ACTIONS(867), + [sym__unlet] = ACTIONS(867), + [sym__call] = ACTIONS(867), + [sym__break] = ACTIONS(867), + [sym__continue] = ACTIONS(867), + [sym_unknown_command_name] = ACTIONS(867), }, [165] = { - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_DOT] = ACTIONS(883), - [sym_command_name] = ACTIONS(881), - [anon_sym_QMARK] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(881), - [sym_mark] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(881), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_DOT2] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(881), - [anon_sym_BSLASH_SLASH] = ACTIONS(881), - [anon_sym_BSLASH_QMARK] = ACTIONS(881), - [anon_sym_BSLASH_AMP] = ACTIONS(881), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_STAR2] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(881), - [anon_sym_is] = ACTIONS(883), - [anon_sym_isnot] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_GT2] = ACTIONS(883), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_EQ_TILDE] = ACTIONS(881), - [anon_sym_BANG_TILDE] = ACTIONS(881), - [sym_integer_literal] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(881), - [sym_register] = ACTIONS(881), - [sym__newline_or_pipe] = ACTIONS(881), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_DOT] = ACTIONS(873), + [sym_command_name] = ACTIONS(871), + [anon_sym_QMARK] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(871), + [sym_mark] = ACTIONS(871), + [anon_sym_PERCENT] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(871), + [anon_sym_DOT2] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DOLLAR] = ACTIONS(871), + [anon_sym_BSLASH_SLASH] = ACTIONS(871), + [anon_sym_BSLASH_QMARK] = ACTIONS(871), + [anon_sym_BSLASH_AMP] = ACTIONS(871), + [anon_sym_LT2] = ACTIONS(873), + [anon_sym_STAR2] = ACTIONS(871), + [anon_sym_PIPE_PIPE] = ACTIONS(871), + [anon_sym_AMP_AMP] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT_DOT] = ACTIONS(871), + [anon_sym_is] = ACTIONS(873), + [anon_sym_isnot] = ACTIONS(871), + [anon_sym_EQ_EQ] = ACTIONS(871), + [anon_sym_BANG_EQ] = ACTIONS(871), + [anon_sym_GT2] = ACTIONS(873), + [anon_sym_GT_EQ] = ACTIONS(871), + [anon_sym_LT_EQ] = ACTIONS(871), + [anon_sym_EQ_TILDE] = ACTIONS(871), + [anon_sym_BANG_TILDE] = ACTIONS(871), + [sym_integer_literal] = ACTIONS(871), + [anon_sym_LBRACK2] = ACTIONS(871), + [sym_register] = ACTIONS(871), + [sym__newline_or_pipe] = ACTIONS(871), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(881), - [sym__function] = ACTIONS(881), - [sym__for] = ACTIONS(881), - [sym__while] = ACTIONS(881), - [sym__if] = ACTIONS(881), - [sym__elseif] = ACTIONS(881), - [sym__else] = ACTIONS(881), - [sym__endif] = ACTIONS(881), - [sym__try] = ACTIONS(881), - [sym__const] = ACTIONS(881), - [sym__normal] = ACTIONS(881), - [sym__return] = ACTIONS(881), - [sym__perl] = ACTIONS(881), - [sym__lua] = ACTIONS(881), - [sym__ruby] = ACTIONS(881), - [sym__python] = ACTIONS(881), - [sym__throw] = ACTIONS(881), - [sym__execute] = ACTIONS(881), - [sym__autocmd] = ACTIONS(881), - [sym__silent] = ACTIONS(881), - [sym__echo] = ACTIONS(881), - [sym__echon] = ACTIONS(881), - [sym__echohl] = ACTIONS(881), - [sym__echomsg] = ACTIONS(881), - [sym__echoerr] = ACTIONS(881), - [sym__map] = ACTIONS(881), - [sym__nmap] = ACTIONS(881), - [sym__vmap] = ACTIONS(881), - [sym__xmap] = ACTIONS(881), - [sym__smap] = ACTIONS(881), - [sym__omap] = ACTIONS(881), - [sym__imap] = ACTIONS(881), - [sym__lmap] = ACTIONS(881), - [sym__cmap] = ACTIONS(881), - [sym__tmap] = ACTIONS(881), - [sym__noremap] = ACTIONS(881), - [sym__vnoremap] = ACTIONS(881), - [sym__nnoremap] = ACTIONS(881), - [sym__xnoremap] = ACTIONS(881), - [sym__snoremap] = ACTIONS(881), - [sym__onoremap] = ACTIONS(881), - [sym__inoremap] = ACTIONS(881), - [sym__lnoremap] = ACTIONS(881), - [sym__cnoremap] = ACTIONS(881), - [sym__tnoremap] = ACTIONS(881), - [sym__augroup] = ACTIONS(881), - [sym__highlight] = ACTIONS(881), - [sym__syntax] = ACTIONS(881), - [sym__set] = ACTIONS(881), - [sym__setlocal] = ACTIONS(881), - [sym__setfiletype] = ACTIONS(881), - [sym__browse] = ACTIONS(881), - [sym__options] = ACTIONS(881), - [sym__startinsert] = ACTIONS(881), - [sym__stopinsert] = ACTIONS(881), - [sym__scriptencoding] = ACTIONS(881), - [sym__source] = ACTIONS(881), - [sym__global] = ACTIONS(881), - [sym__colorscheme] = ACTIONS(881), - [sym__comclear] = ACTIONS(881), - [sym__delcommand] = ACTIONS(881), - [sym__runtime] = ACTIONS(881), - [sym__wincmd] = ACTIONS(881), - [sym__sign] = ACTIONS(881), - [sym__filetype] = ACTIONS(881), - [sym__let] = ACTIONS(881), - [sym__unlet] = ACTIONS(881), - [sym__call] = ACTIONS(881), - [sym__break] = ACTIONS(881), - [sym__continue] = ACTIONS(881), - [sym_unknown_command_name] = ACTIONS(881), + [sym_comment] = ACTIONS(871), + [sym__function] = ACTIONS(871), + [sym__for] = ACTIONS(871), + [sym__while] = ACTIONS(871), + [sym__if] = ACTIONS(871), + [sym__elseif] = ACTIONS(871), + [sym__else] = ACTIONS(871), + [sym__endif] = ACTIONS(871), + [sym__try] = ACTIONS(871), + [sym__const] = ACTIONS(871), + [sym__normal] = ACTIONS(871), + [sym__return] = ACTIONS(871), + [sym__perl] = ACTIONS(871), + [sym__lua] = ACTIONS(871), + [sym__ruby] = ACTIONS(871), + [sym__python] = ACTIONS(871), + [sym__throw] = ACTIONS(871), + [sym__execute] = ACTIONS(871), + [sym__autocmd] = ACTIONS(871), + [sym__silent] = ACTIONS(871), + [sym__echo] = ACTIONS(871), + [sym__echon] = ACTIONS(871), + [sym__echohl] = ACTIONS(871), + [sym__echomsg] = ACTIONS(871), + [sym__echoerr] = ACTIONS(871), + [sym__map] = ACTIONS(871), + [sym__nmap] = ACTIONS(871), + [sym__vmap] = ACTIONS(871), + [sym__xmap] = ACTIONS(871), + [sym__smap] = ACTIONS(871), + [sym__omap] = ACTIONS(871), + [sym__imap] = ACTIONS(871), + [sym__lmap] = ACTIONS(871), + [sym__cmap] = ACTIONS(871), + [sym__tmap] = ACTIONS(871), + [sym__noremap] = ACTIONS(871), + [sym__vnoremap] = ACTIONS(871), + [sym__nnoremap] = ACTIONS(871), + [sym__xnoremap] = ACTIONS(871), + [sym__snoremap] = ACTIONS(871), + [sym__onoremap] = ACTIONS(871), + [sym__inoremap] = ACTIONS(871), + [sym__lnoremap] = ACTIONS(871), + [sym__cnoremap] = ACTIONS(871), + [sym__tnoremap] = ACTIONS(871), + [sym__augroup] = ACTIONS(871), + [sym__highlight] = ACTIONS(871), + [sym__syntax] = ACTIONS(871), + [sym__set] = ACTIONS(871), + [sym__setlocal] = ACTIONS(871), + [sym__setfiletype] = ACTIONS(871), + [sym__browse] = ACTIONS(871), + [sym__options] = ACTIONS(871), + [sym__startinsert] = ACTIONS(871), + [sym__stopinsert] = ACTIONS(871), + [sym__scriptencoding] = ACTIONS(871), + [sym__source] = ACTIONS(871), + [sym__global] = ACTIONS(871), + [sym__colorscheme] = ACTIONS(871), + [sym__comclear] = ACTIONS(871), + [sym__delcommand] = ACTIONS(871), + [sym__runtime] = ACTIONS(871), + [sym__wincmd] = ACTIONS(871), + [sym__sign] = ACTIONS(871), + [sym__filetype] = ACTIONS(871), + [sym__let] = ACTIONS(871), + [sym__unlet] = ACTIONS(871), + [sym__call] = ACTIONS(871), + [sym__break] = ACTIONS(871), + [sym__continue] = ACTIONS(871), + [sym_unknown_command_name] = ACTIONS(871), }, [166] = { - [anon_sym_COLON] = ACTIONS(885), - [anon_sym_DOT] = ACTIONS(129), - [sym_command_name] = ACTIONS(885), - [anon_sym_QMARK] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(133), - [sym_mark] = ACTIONS(885), - [anon_sym_PERCENT] = ACTIONS(145), - [anon_sym_SLASH] = ACTIONS(145), - [anon_sym_DOT2] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_BSLASH_SLASH] = ACTIONS(885), - [anon_sym_BSLASH_QMARK] = ACTIONS(885), - [anon_sym_BSLASH_AMP] = ACTIONS(885), - [anon_sym_LT2] = ACTIONS(143), - [anon_sym_STAR2] = ACTIONS(145), - [anon_sym_PIPE_PIPE] = ACTIONS(147), - [anon_sym_AMP_AMP] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_DOT_DOT] = ACTIONS(153), - [anon_sym_is] = ACTIONS(155), - [anon_sym_isnot] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(159), - [anon_sym_BANG_EQ] = ACTIONS(159), - [anon_sym_GT2] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(159), - [anon_sym_LT_EQ] = ACTIONS(159), - [anon_sym_EQ_TILDE] = ACTIONS(159), - [anon_sym_BANG_TILDE] = ACTIONS(159), - [sym_integer_literal] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(161), - [sym_register] = ACTIONS(885), - [sym__newline_or_pipe] = ACTIONS(885), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(877), + [sym_command_name] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [sym_mark] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_DOT2] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_BSLASH_SLASH] = ACTIONS(875), + [anon_sym_BSLASH_QMARK] = ACTIONS(875), + [anon_sym_BSLASH_AMP] = ACTIONS(875), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_STAR2] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_DOT_DOT] = ACTIONS(875), + [anon_sym_is] = ACTIONS(877), + [anon_sym_isnot] = ACTIONS(875), + [anon_sym_EQ_EQ] = ACTIONS(875), + [anon_sym_BANG_EQ] = ACTIONS(875), + [anon_sym_GT2] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(875), + [anon_sym_LT_EQ] = ACTIONS(875), + [anon_sym_EQ_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(875), + [sym_integer_literal] = ACTIONS(875), + [anon_sym_LBRACK2] = ACTIONS(875), + [sym_register] = ACTIONS(875), + [sym__newline_or_pipe] = ACTIONS(875), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(885), - [sym__function] = ACTIONS(885), - [sym__for] = ACTIONS(885), - [sym__while] = ACTIONS(885), - [sym__if] = ACTIONS(885), - [sym__elseif] = ACTIONS(885), - [sym__else] = ACTIONS(885), - [sym__endif] = ACTIONS(885), - [sym__try] = ACTIONS(885), - [sym__const] = ACTIONS(885), - [sym__normal] = ACTIONS(885), - [sym__return] = ACTIONS(885), - [sym__perl] = ACTIONS(885), - [sym__lua] = ACTIONS(885), - [sym__ruby] = ACTIONS(885), - [sym__python] = ACTIONS(885), - [sym__throw] = ACTIONS(885), - [sym__execute] = ACTIONS(885), - [sym__autocmd] = ACTIONS(885), - [sym__silent] = ACTIONS(885), - [sym__echo] = ACTIONS(885), - [sym__echon] = ACTIONS(885), - [sym__echohl] = ACTIONS(885), - [sym__echomsg] = ACTIONS(885), - [sym__echoerr] = ACTIONS(885), - [sym__map] = ACTIONS(885), - [sym__nmap] = ACTIONS(885), - [sym__vmap] = ACTIONS(885), - [sym__xmap] = ACTIONS(885), - [sym__smap] = ACTIONS(885), - [sym__omap] = ACTIONS(885), - [sym__imap] = ACTIONS(885), - [sym__lmap] = ACTIONS(885), - [sym__cmap] = ACTIONS(885), - [sym__tmap] = ACTIONS(885), - [sym__noremap] = ACTIONS(885), - [sym__vnoremap] = ACTIONS(885), - [sym__nnoremap] = ACTIONS(885), - [sym__xnoremap] = ACTIONS(885), - [sym__snoremap] = ACTIONS(885), - [sym__onoremap] = ACTIONS(885), - [sym__inoremap] = ACTIONS(885), - [sym__lnoremap] = ACTIONS(885), - [sym__cnoremap] = ACTIONS(885), - [sym__tnoremap] = ACTIONS(885), - [sym__augroup] = ACTIONS(885), - [sym__highlight] = ACTIONS(885), - [sym__syntax] = ACTIONS(885), - [sym__set] = ACTIONS(885), - [sym__setlocal] = ACTIONS(885), - [sym__setfiletype] = ACTIONS(885), - [sym__browse] = ACTIONS(885), - [sym__options] = ACTIONS(885), - [sym__startinsert] = ACTIONS(885), - [sym__stopinsert] = ACTIONS(885), - [sym__scriptencoding] = ACTIONS(885), - [sym__source] = ACTIONS(885), - [sym__global] = ACTIONS(885), - [sym__colorscheme] = ACTIONS(885), - [sym__comclear] = ACTIONS(885), - [sym__delcommand] = ACTIONS(885), - [sym__runtime] = ACTIONS(885), - [sym__wincmd] = ACTIONS(885), - [sym__sign] = ACTIONS(885), - [sym__filetype] = ACTIONS(885), - [sym__let] = ACTIONS(885), - [sym__unlet] = ACTIONS(885), - [sym__call] = ACTIONS(885), - [sym__break] = ACTIONS(885), - [sym__continue] = ACTIONS(885), - [sym_unknown_command_name] = ACTIONS(885), + [sym_comment] = ACTIONS(875), + [sym__function] = ACTIONS(875), + [sym__for] = ACTIONS(875), + [sym__while] = ACTIONS(875), + [sym__if] = ACTIONS(875), + [sym__elseif] = ACTIONS(875), + [sym__else] = ACTIONS(875), + [sym__endif] = ACTIONS(875), + [sym__try] = ACTIONS(875), + [sym__const] = ACTIONS(875), + [sym__normal] = ACTIONS(875), + [sym__return] = ACTIONS(875), + [sym__perl] = ACTIONS(875), + [sym__lua] = ACTIONS(875), + [sym__ruby] = ACTIONS(875), + [sym__python] = ACTIONS(875), + [sym__throw] = ACTIONS(875), + [sym__execute] = ACTIONS(875), + [sym__autocmd] = ACTIONS(875), + [sym__silent] = ACTIONS(875), + [sym__echo] = ACTIONS(875), + [sym__echon] = ACTIONS(875), + [sym__echohl] = ACTIONS(875), + [sym__echomsg] = ACTIONS(875), + [sym__echoerr] = ACTIONS(875), + [sym__map] = ACTIONS(875), + [sym__nmap] = ACTIONS(875), + [sym__vmap] = ACTIONS(875), + [sym__xmap] = ACTIONS(875), + [sym__smap] = ACTIONS(875), + [sym__omap] = ACTIONS(875), + [sym__imap] = ACTIONS(875), + [sym__lmap] = ACTIONS(875), + [sym__cmap] = ACTIONS(875), + [sym__tmap] = ACTIONS(875), + [sym__noremap] = ACTIONS(875), + [sym__vnoremap] = ACTIONS(875), + [sym__nnoremap] = ACTIONS(875), + [sym__xnoremap] = ACTIONS(875), + [sym__snoremap] = ACTIONS(875), + [sym__onoremap] = ACTIONS(875), + [sym__inoremap] = ACTIONS(875), + [sym__lnoremap] = ACTIONS(875), + [sym__cnoremap] = ACTIONS(875), + [sym__tnoremap] = ACTIONS(875), + [sym__augroup] = ACTIONS(875), + [sym__highlight] = ACTIONS(875), + [sym__syntax] = ACTIONS(875), + [sym__set] = ACTIONS(875), + [sym__setlocal] = ACTIONS(875), + [sym__setfiletype] = ACTIONS(875), + [sym__browse] = ACTIONS(875), + [sym__options] = ACTIONS(875), + [sym__startinsert] = ACTIONS(875), + [sym__stopinsert] = ACTIONS(875), + [sym__scriptencoding] = ACTIONS(875), + [sym__source] = ACTIONS(875), + [sym__global] = ACTIONS(875), + [sym__colorscheme] = ACTIONS(875), + [sym__comclear] = ACTIONS(875), + [sym__delcommand] = ACTIONS(875), + [sym__runtime] = ACTIONS(875), + [sym__wincmd] = ACTIONS(875), + [sym__sign] = ACTIONS(875), + [sym__filetype] = ACTIONS(875), + [sym__let] = ACTIONS(875), + [sym__unlet] = ACTIONS(875), + [sym__call] = ACTIONS(875), + [sym__break] = ACTIONS(875), + [sym__continue] = ACTIONS(875), + [sym_unknown_command_name] = ACTIONS(875), }, [167] = { + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_DOT] = ACTIONS(881), + [sym_command_name] = ACTIONS(879), + [anon_sym_QMARK] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(879), + [sym_mark] = ACTIONS(879), + [anon_sym_PERCENT] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_DOT2] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_BSLASH_SLASH] = ACTIONS(879), + [anon_sym_BSLASH_QMARK] = ACTIONS(879), + [anon_sym_BSLASH_AMP] = ACTIONS(879), + [anon_sym_LT2] = ACTIONS(881), + [anon_sym_STAR2] = ACTIONS(879), + [anon_sym_PIPE_PIPE] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_DOT_DOT] = ACTIONS(879), + [anon_sym_is] = ACTIONS(881), + [anon_sym_isnot] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_GT2] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(879), + [anon_sym_LT_EQ] = ACTIONS(879), + [anon_sym_EQ_TILDE] = ACTIONS(879), + [anon_sym_BANG_TILDE] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(879), + [anon_sym_LBRACK2] = ACTIONS(879), + [sym_register] = ACTIONS(879), + [sym__newline_or_pipe] = ACTIONS(879), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(879), + [sym__function] = ACTIONS(879), + [sym__for] = ACTIONS(879), + [sym__while] = ACTIONS(879), + [sym__if] = ACTIONS(879), + [sym__elseif] = ACTIONS(879), + [sym__else] = ACTIONS(879), + [sym__endif] = ACTIONS(879), + [sym__try] = ACTIONS(879), + [sym__const] = ACTIONS(879), + [sym__normal] = ACTIONS(879), + [sym__return] = ACTIONS(879), + [sym__perl] = ACTIONS(879), + [sym__lua] = ACTIONS(879), + [sym__ruby] = ACTIONS(879), + [sym__python] = ACTIONS(879), + [sym__throw] = ACTIONS(879), + [sym__execute] = ACTIONS(879), + [sym__autocmd] = ACTIONS(879), + [sym__silent] = ACTIONS(879), + [sym__echo] = ACTIONS(879), + [sym__echon] = ACTIONS(879), + [sym__echohl] = ACTIONS(879), + [sym__echomsg] = ACTIONS(879), + [sym__echoerr] = ACTIONS(879), + [sym__map] = ACTIONS(879), + [sym__nmap] = ACTIONS(879), + [sym__vmap] = ACTIONS(879), + [sym__xmap] = ACTIONS(879), + [sym__smap] = ACTIONS(879), + [sym__omap] = ACTIONS(879), + [sym__imap] = ACTIONS(879), + [sym__lmap] = ACTIONS(879), + [sym__cmap] = ACTIONS(879), + [sym__tmap] = ACTIONS(879), + [sym__noremap] = ACTIONS(879), + [sym__vnoremap] = ACTIONS(879), + [sym__nnoremap] = ACTIONS(879), + [sym__xnoremap] = ACTIONS(879), + [sym__snoremap] = ACTIONS(879), + [sym__onoremap] = ACTIONS(879), + [sym__inoremap] = ACTIONS(879), + [sym__lnoremap] = ACTIONS(879), + [sym__cnoremap] = ACTIONS(879), + [sym__tnoremap] = ACTIONS(879), + [sym__augroup] = ACTIONS(879), + [sym__highlight] = ACTIONS(879), + [sym__syntax] = ACTIONS(879), + [sym__set] = ACTIONS(879), + [sym__setlocal] = ACTIONS(879), + [sym__setfiletype] = ACTIONS(879), + [sym__browse] = ACTIONS(879), + [sym__options] = ACTIONS(879), + [sym__startinsert] = ACTIONS(879), + [sym__stopinsert] = ACTIONS(879), + [sym__scriptencoding] = ACTIONS(879), + [sym__source] = ACTIONS(879), + [sym__global] = ACTIONS(879), + [sym__colorscheme] = ACTIONS(879), + [sym__comclear] = ACTIONS(879), + [sym__delcommand] = ACTIONS(879), + [sym__runtime] = ACTIONS(879), + [sym__wincmd] = ACTIONS(879), + [sym__sign] = ACTIONS(879), + [sym__filetype] = ACTIONS(879), + [sym__let] = ACTIONS(879), + [sym__unlet] = ACTIONS(879), + [sym__call] = ACTIONS(879), + [sym__break] = ACTIONS(879), + [sym__continue] = ACTIONS(879), + [sym_unknown_command_name] = ACTIONS(879), + }, + [168] = { + [anon_sym_COLON] = ACTIONS(883), + [anon_sym_DOT] = ACTIONS(885), + [sym_command_name] = ACTIONS(883), + [anon_sym_QMARK] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(883), + [sym_mark] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_DOT2] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_BSLASH_SLASH] = ACTIONS(883), + [anon_sym_BSLASH_QMARK] = ACTIONS(883), + [anon_sym_BSLASH_AMP] = ACTIONS(883), + [anon_sym_LT2] = ACTIONS(885), + [anon_sym_STAR2] = ACTIONS(883), + [anon_sym_PIPE_PIPE] = ACTIONS(883), + [anon_sym_AMP_AMP] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_DOT_DOT] = ACTIONS(883), + [anon_sym_is] = ACTIONS(885), + [anon_sym_isnot] = ACTIONS(883), + [anon_sym_EQ_EQ] = ACTIONS(883), + [anon_sym_BANG_EQ] = ACTIONS(883), + [anon_sym_GT2] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(883), + [anon_sym_LT_EQ] = ACTIONS(883), + [anon_sym_EQ_TILDE] = ACTIONS(883), + [anon_sym_BANG_TILDE] = ACTIONS(883), + [sym_integer_literal] = ACTIONS(883), + [anon_sym_LBRACK2] = ACTIONS(883), + [sym_register] = ACTIONS(883), + [sym__newline_or_pipe] = ACTIONS(883), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(883), + [sym__function] = ACTIONS(883), + [sym__for] = ACTIONS(883), + [sym__while] = ACTIONS(883), + [sym__if] = ACTIONS(883), + [sym__elseif] = ACTIONS(883), + [sym__else] = ACTIONS(883), + [sym__endif] = ACTIONS(883), + [sym__try] = ACTIONS(883), + [sym__const] = ACTIONS(883), + [sym__normal] = ACTIONS(883), + [sym__return] = ACTIONS(883), + [sym__perl] = ACTIONS(883), + [sym__lua] = ACTIONS(883), + [sym__ruby] = ACTIONS(883), + [sym__python] = ACTIONS(883), + [sym__throw] = ACTIONS(883), + [sym__execute] = ACTIONS(883), + [sym__autocmd] = ACTIONS(883), + [sym__silent] = ACTIONS(883), + [sym__echo] = ACTIONS(883), + [sym__echon] = ACTIONS(883), + [sym__echohl] = ACTIONS(883), + [sym__echomsg] = ACTIONS(883), + [sym__echoerr] = ACTIONS(883), + [sym__map] = ACTIONS(883), + [sym__nmap] = ACTIONS(883), + [sym__vmap] = ACTIONS(883), + [sym__xmap] = ACTIONS(883), + [sym__smap] = ACTIONS(883), + [sym__omap] = ACTIONS(883), + [sym__imap] = ACTIONS(883), + [sym__lmap] = ACTIONS(883), + [sym__cmap] = ACTIONS(883), + [sym__tmap] = ACTIONS(883), + [sym__noremap] = ACTIONS(883), + [sym__vnoremap] = ACTIONS(883), + [sym__nnoremap] = ACTIONS(883), + [sym__xnoremap] = ACTIONS(883), + [sym__snoremap] = ACTIONS(883), + [sym__onoremap] = ACTIONS(883), + [sym__inoremap] = ACTIONS(883), + [sym__lnoremap] = ACTIONS(883), + [sym__cnoremap] = ACTIONS(883), + [sym__tnoremap] = ACTIONS(883), + [sym__augroup] = ACTIONS(883), + [sym__highlight] = ACTIONS(883), + [sym__syntax] = ACTIONS(883), + [sym__set] = ACTIONS(883), + [sym__setlocal] = ACTIONS(883), + [sym__setfiletype] = ACTIONS(883), + [sym__browse] = ACTIONS(883), + [sym__options] = ACTIONS(883), + [sym__startinsert] = ACTIONS(883), + [sym__stopinsert] = ACTIONS(883), + [sym__scriptencoding] = ACTIONS(883), + [sym__source] = ACTIONS(883), + [sym__global] = ACTIONS(883), + [sym__colorscheme] = ACTIONS(883), + [sym__comclear] = ACTIONS(883), + [sym__delcommand] = ACTIONS(883), + [sym__runtime] = ACTIONS(883), + [sym__wincmd] = ACTIONS(883), + [sym__sign] = ACTIONS(883), + [sym__filetype] = ACTIONS(883), + [sym__let] = ACTIONS(883), + [sym__unlet] = ACTIONS(883), + [sym__call] = ACTIONS(883), + [sym__break] = ACTIONS(883), + [sym__continue] = ACTIONS(883), + [sym_unknown_command_name] = ACTIONS(883), + }, + [169] = { [anon_sym_COLON] = ACTIONS(887), [anon_sym_DOT] = ACTIONS(889), [sym_command_name] = ACTIONS(887), @@ -50028,7 +49495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(887), [anon_sym_BANG_TILDE] = ACTIONS(887), [sym_integer_literal] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_LBRACK2] = ACTIONS(887), [sym_register] = ACTIONS(887), [sym__newline_or_pipe] = ACTIONS(887), [sym__line_continuation] = ACTIONS(3), @@ -50104,7 +49571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(887), [sym_unknown_command_name] = ACTIONS(887), }, - [168] = { + [170] = { [anon_sym_COLON] = ACTIONS(891), [anon_sym_DOT] = ACTIONS(893), [sym_command_name] = ACTIONS(891), @@ -50135,7 +49602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(891), [anon_sym_BANG_TILDE] = ACTIONS(891), [sym_integer_literal] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_LBRACK2] = ACTIONS(891), [sym_register] = ACTIONS(891), [sym__newline_or_pipe] = ACTIONS(891), [sym__line_continuation] = ACTIONS(3), @@ -50211,7 +49678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(891), [sym_unknown_command_name] = ACTIONS(891), }, - [169] = { + [171] = { [anon_sym_COLON] = ACTIONS(895), [anon_sym_DOT] = ACTIONS(897), [sym_command_name] = ACTIONS(895), @@ -50242,7 +49709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(895), [anon_sym_BANG_TILDE] = ACTIONS(895), [sym_integer_literal] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK2] = ACTIONS(895), [sym_register] = ACTIONS(895), [sym__newline_or_pipe] = ACTIONS(895), [sym__line_continuation] = ACTIONS(3), @@ -50318,7 +49785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(895), [sym_unknown_command_name] = ACTIONS(895), }, - [170] = { + [172] = { [anon_sym_COLON] = ACTIONS(899), [anon_sym_DOT] = ACTIONS(901), [sym_command_name] = ACTIONS(899), @@ -50349,7 +49816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(899), [anon_sym_BANG_TILDE] = ACTIONS(899), [sym_integer_literal] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LBRACK2] = ACTIONS(899), [sym_register] = ACTIONS(899), [sym__newline_or_pipe] = ACTIONS(899), [sym__line_continuation] = ACTIONS(3), @@ -50425,7 +49892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(899), [sym_unknown_command_name] = ACTIONS(899), }, - [171] = { + [173] = { [anon_sym_COLON] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(905), [sym_command_name] = ACTIONS(903), @@ -50456,7 +49923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(903), [anon_sym_BANG_TILDE] = ACTIONS(903), [sym_integer_literal] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LBRACK2] = ACTIONS(903), [sym_register] = ACTIONS(903), [sym__newline_or_pipe] = ACTIONS(903), [sym__line_continuation] = ACTIONS(3), @@ -50532,7 +49999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(903), [sym_unknown_command_name] = ACTIONS(903), }, - [172] = { + [174] = { [anon_sym_COLON] = ACTIONS(907), [anon_sym_DOT] = ACTIONS(909), [sym_command_name] = ACTIONS(907), @@ -50563,7 +50030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(907), [anon_sym_BANG_TILDE] = ACTIONS(907), [sym_integer_literal] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LBRACK2] = ACTIONS(907), [sym_register] = ACTIONS(907), [sym__newline_or_pipe] = ACTIONS(907), [sym__line_continuation] = ACTIONS(3), @@ -50639,27 +50106,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(907), [sym_unknown_command_name] = ACTIONS(907), }, - [173] = { + [175] = { [anon_sym_COLON] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(913), [sym_command_name] = ACTIONS(911), [anon_sym_QMARK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(911), [sym_mark] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(145), - [anon_sym_SLASH] = ACTIONS(145), - [anon_sym_DOT2] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), [anon_sym_DOLLAR] = ACTIONS(911), [anon_sym_BSLASH_SLASH] = ACTIONS(911), [anon_sym_BSLASH_QMARK] = ACTIONS(911), [anon_sym_BSLASH_AMP] = ACTIONS(911), [anon_sym_LT2] = ACTIONS(913), - [anon_sym_STAR2] = ACTIONS(145), + [anon_sym_STAR2] = ACTIONS(911), [anon_sym_PIPE_PIPE] = ACTIONS(911), [anon_sym_AMP_AMP] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_DOT_DOT] = ACTIONS(153), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(911), [anon_sym_is] = ACTIONS(913), [anon_sym_isnot] = ACTIONS(911), [anon_sym_EQ_EQ] = ACTIONS(911), @@ -50670,7 +50137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(911), [anon_sym_BANG_TILDE] = ACTIONS(911), [sym_integer_literal] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK2] = ACTIONS(911), [sym_register] = ACTIONS(911), [sym__newline_or_pipe] = ACTIONS(911), [sym__line_continuation] = ACTIONS(3), @@ -50746,7 +50213,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(911), [sym_unknown_command_name] = ACTIONS(911), }, - [174] = { + [176] = { + [anon_sym_COLON] = ACTIONS(845), + [anon_sym_DOT] = ACTIONS(129), + [sym_command_name] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(133), + [sym_mark] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DOT2] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_BSLASH_SLASH] = ACTIONS(845), + [anon_sym_BSLASH_QMARK] = ACTIONS(845), + [anon_sym_BSLASH_AMP] = ACTIONS(845), + [anon_sym_LT2] = ACTIONS(143), + [anon_sym_STAR2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_DOT_DOT] = ACTIONS(153), + [anon_sym_is] = ACTIONS(155), + [anon_sym_isnot] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_GT2] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [sym_integer_literal] = ACTIONS(845), + [anon_sym_LBRACK2] = ACTIONS(161), + [sym_register] = ACTIONS(845), + [sym__newline_or_pipe] = ACTIONS(845), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(845), + [sym__function] = ACTIONS(845), + [sym__for] = ACTIONS(845), + [sym__while] = ACTIONS(845), + [sym__if] = ACTIONS(845), + [sym__elseif] = ACTIONS(845), + [sym__else] = ACTIONS(845), + [sym__endif] = ACTIONS(845), + [sym__try] = ACTIONS(845), + [sym__const] = ACTIONS(845), + [sym__normal] = ACTIONS(845), + [sym__return] = ACTIONS(845), + [sym__perl] = ACTIONS(845), + [sym__lua] = ACTIONS(845), + [sym__ruby] = ACTIONS(845), + [sym__python] = ACTIONS(845), + [sym__throw] = ACTIONS(845), + [sym__execute] = ACTIONS(845), + [sym__autocmd] = ACTIONS(845), + [sym__silent] = ACTIONS(845), + [sym__echo] = ACTIONS(845), + [sym__echon] = ACTIONS(845), + [sym__echohl] = ACTIONS(845), + [sym__echomsg] = ACTIONS(845), + [sym__echoerr] = ACTIONS(845), + [sym__map] = ACTIONS(845), + [sym__nmap] = ACTIONS(845), + [sym__vmap] = ACTIONS(845), + [sym__xmap] = ACTIONS(845), + [sym__smap] = ACTIONS(845), + [sym__omap] = ACTIONS(845), + [sym__imap] = ACTIONS(845), + [sym__lmap] = ACTIONS(845), + [sym__cmap] = ACTIONS(845), + [sym__tmap] = ACTIONS(845), + [sym__noremap] = ACTIONS(845), + [sym__vnoremap] = ACTIONS(845), + [sym__nnoremap] = ACTIONS(845), + [sym__xnoremap] = ACTIONS(845), + [sym__snoremap] = ACTIONS(845), + [sym__onoremap] = ACTIONS(845), + [sym__inoremap] = ACTIONS(845), + [sym__lnoremap] = ACTIONS(845), + [sym__cnoremap] = ACTIONS(845), + [sym__tnoremap] = ACTIONS(845), + [sym__augroup] = ACTIONS(845), + [sym__highlight] = ACTIONS(845), + [sym__syntax] = ACTIONS(845), + [sym__set] = ACTIONS(845), + [sym__setlocal] = ACTIONS(845), + [sym__setfiletype] = ACTIONS(845), + [sym__browse] = ACTIONS(845), + [sym__options] = ACTIONS(845), + [sym__startinsert] = ACTIONS(845), + [sym__stopinsert] = ACTIONS(845), + [sym__scriptencoding] = ACTIONS(845), + [sym__source] = ACTIONS(845), + [sym__global] = ACTIONS(845), + [sym__colorscheme] = ACTIONS(845), + [sym__comclear] = ACTIONS(845), + [sym__delcommand] = ACTIONS(845), + [sym__runtime] = ACTIONS(845), + [sym__wincmd] = ACTIONS(845), + [sym__sign] = ACTIONS(845), + [sym__filetype] = ACTIONS(845), + [sym__let] = ACTIONS(845), + [sym__unlet] = ACTIONS(845), + [sym__call] = ACTIONS(845), + [sym__break] = ACTIONS(845), + [sym__continue] = ACTIONS(845), + [sym_unknown_command_name] = ACTIONS(845), + }, + [177] = { [anon_sym_COLON] = ACTIONS(915), [anon_sym_DOT] = ACTIONS(917), [sym_command_name] = ACTIONS(915), @@ -50777,7 +50351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(915), [anon_sym_BANG_TILDE] = ACTIONS(915), [sym_integer_literal] = ACTIONS(915), - [anon_sym_LBRACK] = ACTIONS(915), + [anon_sym_LBRACK2] = ACTIONS(915), [sym_register] = ACTIONS(915), [sym__newline_or_pipe] = ACTIONS(915), [sym__line_continuation] = ACTIONS(3), @@ -50853,7 +50427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(915), [sym_unknown_command_name] = ACTIONS(915), }, - [175] = { + [178] = { [anon_sym_COLON] = ACTIONS(919), [anon_sym_DOT] = ACTIONS(921), [sym_command_name] = ACTIONS(919), @@ -50884,7 +50458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(919), [anon_sym_BANG_TILDE] = ACTIONS(919), [sym_integer_literal] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(919), + [anon_sym_LBRACK2] = ACTIONS(919), [sym_register] = ACTIONS(919), [sym__newline_or_pipe] = ACTIONS(919), [sym__line_continuation] = ACTIONS(3), @@ -50960,7 +50534,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(919), [sym_unknown_command_name] = ACTIONS(919), }, - [176] = { + [179] = { + [anon_sym_COLON] = ACTIONS(845), + [anon_sym_DOT] = ACTIONS(129), + [sym_command_name] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(133), + [sym_mark] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DOT2] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_BSLASH_SLASH] = ACTIONS(845), + [anon_sym_BSLASH_QMARK] = ACTIONS(845), + [anon_sym_BSLASH_AMP] = ACTIONS(845), + [anon_sym_LT2] = ACTIONS(143), + [anon_sym_STAR2] = ACTIONS(145), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_DOT_DOT] = ACTIONS(153), + [anon_sym_is] = ACTIONS(155), + [anon_sym_isnot] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(159), + [anon_sym_BANG_EQ] = ACTIONS(159), + [anon_sym_GT2] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(159), + [anon_sym_LT_EQ] = ACTIONS(159), + [anon_sym_EQ_TILDE] = ACTIONS(159), + [anon_sym_BANG_TILDE] = ACTIONS(159), + [sym_integer_literal] = ACTIONS(845), + [anon_sym_LBRACK2] = ACTIONS(161), + [sym_register] = ACTIONS(845), + [sym__newline_or_pipe] = ACTIONS(845), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(845), + [sym__function] = ACTIONS(845), + [sym__for] = ACTIONS(845), + [sym__while] = ACTIONS(845), + [sym__if] = ACTIONS(845), + [sym__elseif] = ACTIONS(845), + [sym__else] = ACTIONS(845), + [sym__endif] = ACTIONS(845), + [sym__try] = ACTIONS(845), + [sym__const] = ACTIONS(845), + [sym__normal] = ACTIONS(845), + [sym__return] = ACTIONS(845), + [sym__perl] = ACTIONS(845), + [sym__lua] = ACTIONS(845), + [sym__ruby] = ACTIONS(845), + [sym__python] = ACTIONS(845), + [sym__throw] = ACTIONS(845), + [sym__execute] = ACTIONS(845), + [sym__autocmd] = ACTIONS(845), + [sym__silent] = ACTIONS(845), + [sym__echo] = ACTIONS(845), + [sym__echon] = ACTIONS(845), + [sym__echohl] = ACTIONS(845), + [sym__echomsg] = ACTIONS(845), + [sym__echoerr] = ACTIONS(845), + [sym__map] = ACTIONS(845), + [sym__nmap] = ACTIONS(845), + [sym__vmap] = ACTIONS(845), + [sym__xmap] = ACTIONS(845), + [sym__smap] = ACTIONS(845), + [sym__omap] = ACTIONS(845), + [sym__imap] = ACTIONS(845), + [sym__lmap] = ACTIONS(845), + [sym__cmap] = ACTIONS(845), + [sym__tmap] = ACTIONS(845), + [sym__noremap] = ACTIONS(845), + [sym__vnoremap] = ACTIONS(845), + [sym__nnoremap] = ACTIONS(845), + [sym__xnoremap] = ACTIONS(845), + [sym__snoremap] = ACTIONS(845), + [sym__onoremap] = ACTIONS(845), + [sym__inoremap] = ACTIONS(845), + [sym__lnoremap] = ACTIONS(845), + [sym__cnoremap] = ACTIONS(845), + [sym__tnoremap] = ACTIONS(845), + [sym__augroup] = ACTIONS(845), + [sym__highlight] = ACTIONS(845), + [sym__syntax] = ACTIONS(845), + [sym__set] = ACTIONS(845), + [sym__setlocal] = ACTIONS(845), + [sym__setfiletype] = ACTIONS(845), + [sym__browse] = ACTIONS(845), + [sym__options] = ACTIONS(845), + [sym__startinsert] = ACTIONS(845), + [sym__stopinsert] = ACTIONS(845), + [sym__scriptencoding] = ACTIONS(845), + [sym__source] = ACTIONS(845), + [sym__global] = ACTIONS(845), + [sym__colorscheme] = ACTIONS(845), + [sym__comclear] = ACTIONS(845), + [sym__delcommand] = ACTIONS(845), + [sym__runtime] = ACTIONS(845), + [sym__wincmd] = ACTIONS(845), + [sym__sign] = ACTIONS(845), + [sym__filetype] = ACTIONS(845), + [sym__let] = ACTIONS(845), + [sym__unlet] = ACTIONS(845), + [sym__call] = ACTIONS(845), + [sym__break] = ACTIONS(845), + [sym__continue] = ACTIONS(845), + [sym_unknown_command_name] = ACTIONS(845), + }, + [180] = { [anon_sym_COLON] = ACTIONS(923), [anon_sym_DOT] = ACTIONS(925), [sym_command_name] = ACTIONS(923), @@ -50991,7 +50672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(923), [anon_sym_BANG_TILDE] = ACTIONS(923), [sym_integer_literal] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_LBRACK2] = ACTIONS(923), [sym_register] = ACTIONS(923), [sym__newline_or_pipe] = ACTIONS(923), [sym__line_continuation] = ACTIONS(3), @@ -51067,7 +50748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(923), [sym_unknown_command_name] = ACTIONS(923), }, - [177] = { + [181] = { [anon_sym_COLON] = ACTIONS(927), [anon_sym_DOT] = ACTIONS(929), [sym_command_name] = ACTIONS(927), @@ -51098,7 +50779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(927), [anon_sym_BANG_TILDE] = ACTIONS(927), [sym_integer_literal] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_LBRACK2] = ACTIONS(927), [sym_register] = ACTIONS(927), [sym__newline_or_pipe] = ACTIONS(927), [sym__line_continuation] = ACTIONS(3), @@ -51174,7 +50855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(927), [sym_unknown_command_name] = ACTIONS(927), }, - [178] = { + [182] = { [anon_sym_COLON] = ACTIONS(931), [anon_sym_DOT] = ACTIONS(933), [sym_command_name] = ACTIONS(931), @@ -51205,7 +50886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(931), [anon_sym_BANG_TILDE] = ACTIONS(931), [sym_integer_literal] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK2] = ACTIONS(931), [sym_register] = ACTIONS(931), [sym__newline_or_pipe] = ACTIONS(931), [sym__line_continuation] = ACTIONS(3), @@ -51281,7 +50962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(931), [sym_unknown_command_name] = ACTIONS(931), }, - [179] = { + [183] = { [anon_sym_COLON] = ACTIONS(935), [anon_sym_DOT] = ACTIONS(937), [sym_command_name] = ACTIONS(935), @@ -51312,7 +50993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(935), [anon_sym_BANG_TILDE] = ACTIONS(935), [sym_integer_literal] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_LBRACK2] = ACTIONS(935), [sym_register] = ACTIONS(935), [sym__newline_or_pipe] = ACTIONS(935), [sym__line_continuation] = ACTIONS(3), @@ -51388,7 +51069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(935), [sym_unknown_command_name] = ACTIONS(935), }, - [180] = { + [184] = { [anon_sym_COLON] = ACTIONS(939), [anon_sym_DOT] = ACTIONS(129), [sym_command_name] = ACTIONS(939), @@ -51419,7 +51100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(939), [anon_sym_BANG_TILDE] = ACTIONS(939), [sym_integer_literal] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK2] = ACTIONS(161), [sym_register] = ACTIONS(939), [sym__newline_or_pipe] = ACTIONS(939), [sym__line_continuation] = ACTIONS(3), @@ -51495,221 +51176,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(939), [sym_unknown_command_name] = ACTIONS(939), }, - [181] = { - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(815), - [sym_command_name] = ACTIONS(815), - [anon_sym_LBRACE2] = ACTIONS(813), - [aux_sym_identifier_token2] = ACTIONS(815), - [anon_sym_QMARK] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(813), - [sym_mark] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_DOT2] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_BSLASH_SLASH] = ACTIONS(813), - [anon_sym_BSLASH_QMARK] = ACTIONS(813), - [anon_sym_BSLASH_AMP] = ACTIONS(813), - [anon_sym_LT2] = ACTIONS(815), - [anon_sym_STAR2] = ACTIONS(813), - [anon_sym_PIPE_PIPE] = ACTIONS(813), - [anon_sym_AMP_AMP] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DOT_DOT] = ACTIONS(813), - [anon_sym_is] = ACTIONS(815), - [anon_sym_isnot] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(813), - [anon_sym_BANG_EQ] = ACTIONS(813), - [anon_sym_GT2] = ACTIONS(815), - [anon_sym_GT_EQ] = ACTIONS(813), - [anon_sym_LT_EQ] = ACTIONS(813), - [anon_sym_EQ_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(813), - [sym_integer_literal] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(813), - [sym_register] = ACTIONS(813), - [sym__newline_or_pipe] = ACTIONS(813), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(813), - [sym__function] = ACTIONS(813), - [sym__for] = ACTIONS(813), - [sym__endfor] = ACTIONS(813), - [sym__while] = ACTIONS(813), - [sym__if] = ACTIONS(813), - [sym__try] = ACTIONS(813), - [sym__const] = ACTIONS(813), - [sym__normal] = ACTIONS(813), - [sym__return] = ACTIONS(813), - [sym__perl] = ACTIONS(813), - [sym__lua] = ACTIONS(813), - [sym__ruby] = ACTIONS(813), - [sym__python] = ACTIONS(813), - [sym__throw] = ACTIONS(813), - [sym__execute] = ACTIONS(813), - [sym__autocmd] = ACTIONS(813), - [sym__silent] = ACTIONS(813), - [sym__echo] = ACTIONS(813), - [sym__echon] = ACTIONS(813), - [sym__echohl] = ACTIONS(813), - [sym__echomsg] = ACTIONS(813), - [sym__echoerr] = ACTIONS(813), - [sym__map] = ACTIONS(813), - [sym__nmap] = ACTIONS(813), - [sym__vmap] = ACTIONS(813), - [sym__xmap] = ACTIONS(813), - [sym__smap] = ACTIONS(813), - [sym__omap] = ACTIONS(813), - [sym__imap] = ACTIONS(813), - [sym__lmap] = ACTIONS(813), - [sym__cmap] = ACTIONS(813), - [sym__tmap] = ACTIONS(813), - [sym__noremap] = ACTIONS(813), - [sym__vnoremap] = ACTIONS(813), - [sym__nnoremap] = ACTIONS(813), - [sym__xnoremap] = ACTIONS(813), - [sym__snoremap] = ACTIONS(813), - [sym__onoremap] = ACTIONS(813), - [sym__inoremap] = ACTIONS(813), - [sym__lnoremap] = ACTIONS(813), - [sym__cnoremap] = ACTIONS(813), - [sym__tnoremap] = ACTIONS(813), - [sym__augroup] = ACTIONS(813), - [sym__highlight] = ACTIONS(813), - [sym__syntax] = ACTIONS(813), - [sym__set] = ACTIONS(813), - [sym__setlocal] = ACTIONS(813), - [sym__setfiletype] = ACTIONS(813), - [sym__browse] = ACTIONS(813), - [sym__options] = ACTIONS(813), - [sym__startinsert] = ACTIONS(813), - [sym__stopinsert] = ACTIONS(813), - [sym__scriptencoding] = ACTIONS(813), - [sym__source] = ACTIONS(813), - [sym__global] = ACTIONS(813), - [sym__colorscheme] = ACTIONS(813), - [sym__comclear] = ACTIONS(813), - [sym__delcommand] = ACTIONS(813), - [sym__runtime] = ACTIONS(813), - [sym__wincmd] = ACTIONS(813), - [sym__sign] = ACTIONS(813), - [sym__filetype] = ACTIONS(813), - [sym__let] = ACTIONS(813), - [sym__unlet] = ACTIONS(813), - [sym__call] = ACTIONS(813), - [sym__break] = ACTIONS(813), - [sym__continue] = ACTIONS(813), - [sym_unknown_command_name] = ACTIONS(813), - }, - [182] = { - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_DOT] = ACTIONS(774), - [sym_command_name] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(783), - [sym_mark] = ACTIONS(783), - [anon_sym_PERCENT] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_DOT2] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_DOLLAR] = ACTIONS(783), - [anon_sym_BSLASH_SLASH] = ACTIONS(783), - [anon_sym_BSLASH_QMARK] = ACTIONS(783), - [anon_sym_BSLASH_AMP] = ACTIONS(783), - [anon_sym_LT2] = ACTIONS(774), - [anon_sym_STAR2] = ACTIONS(783), - [anon_sym_PIPE_PIPE] = ACTIONS(783), - [anon_sym_AMP_AMP] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_DOT_DOT] = ACTIONS(783), - [anon_sym_is] = ACTIONS(774), - [anon_sym_isnot] = ACTIONS(783), - [anon_sym_EQ_EQ] = ACTIONS(783), - [anon_sym_BANG_EQ] = ACTIONS(783), - [anon_sym_GT2] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(783), - [anon_sym_LT_EQ] = ACTIONS(783), - [anon_sym_EQ_TILDE] = ACTIONS(783), - [anon_sym_BANG_TILDE] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(783), - [sym_register] = ACTIONS(783), - [sym__newline_or_pipe] = ACTIONS(783), + [185] = { + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(821), + [sym_command_name] = ACTIONS(819), + [anon_sym_QMARK] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(819), + [sym_mark] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_DOT2] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_BSLASH_SLASH] = ACTIONS(819), + [anon_sym_BSLASH_QMARK] = ACTIONS(819), + [anon_sym_BSLASH_AMP] = ACTIONS(819), + [anon_sym_LT2] = ACTIONS(821), + [anon_sym_STAR2] = ACTIONS(819), + [anon_sym_PIPE_PIPE] = ACTIONS(819), + [anon_sym_AMP_AMP] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_DOT_DOT] = ACTIONS(819), + [anon_sym_is] = ACTIONS(821), + [anon_sym_isnot] = ACTIONS(819), + [anon_sym_EQ_EQ] = ACTIONS(819), + [anon_sym_BANG_EQ] = ACTIONS(819), + [anon_sym_GT2] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(819), + [anon_sym_LT_EQ] = ACTIONS(819), + [anon_sym_EQ_TILDE] = ACTIONS(819), + [anon_sym_BANG_TILDE] = ACTIONS(819), + [sym_integer_literal] = ACTIONS(819), + [anon_sym_LBRACK2] = ACTIONS(819), + [sym_register] = ACTIONS(819), + [sym__newline_or_pipe] = ACTIONS(819), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(783), - [sym__function] = ACTIONS(783), - [sym__for] = ACTIONS(783), - [sym__while] = ACTIONS(783), - [sym__if] = ACTIONS(783), - [sym__elseif] = ACTIONS(783), - [sym__else] = ACTIONS(783), - [sym__endif] = ACTIONS(783), - [sym__try] = ACTIONS(783), - [sym__const] = ACTIONS(783), - [sym__normal] = ACTIONS(783), - [sym__return] = ACTIONS(783), - [sym__perl] = ACTIONS(783), - [sym__lua] = ACTIONS(783), - [sym__ruby] = ACTIONS(783), - [sym__python] = ACTIONS(783), - [sym__throw] = ACTIONS(783), - [sym__execute] = ACTIONS(783), - [sym__autocmd] = ACTIONS(783), - [sym__silent] = ACTIONS(783), - [sym__echo] = ACTIONS(783), - [sym__echon] = ACTIONS(783), - [sym__echohl] = ACTIONS(783), - [sym__echomsg] = ACTIONS(783), - [sym__echoerr] = ACTIONS(783), - [sym__map] = ACTIONS(783), - [sym__nmap] = ACTIONS(783), - [sym__vmap] = ACTIONS(783), - [sym__xmap] = ACTIONS(783), - [sym__smap] = ACTIONS(783), - [sym__omap] = ACTIONS(783), - [sym__imap] = ACTIONS(783), - [sym__lmap] = ACTIONS(783), - [sym__cmap] = ACTIONS(783), - [sym__tmap] = ACTIONS(783), - [sym__noremap] = ACTIONS(783), - [sym__vnoremap] = ACTIONS(783), - [sym__nnoremap] = ACTIONS(783), - [sym__xnoremap] = ACTIONS(783), - [sym__snoremap] = ACTIONS(783), - [sym__onoremap] = ACTIONS(783), - [sym__inoremap] = ACTIONS(783), - [sym__lnoremap] = ACTIONS(783), - [sym__cnoremap] = ACTIONS(783), - [sym__tnoremap] = ACTIONS(783), - [sym__augroup] = ACTIONS(783), - [sym__highlight] = ACTIONS(783), - [sym__syntax] = ACTIONS(783), - [sym__set] = ACTIONS(783), - [sym__setlocal] = ACTIONS(783), - [sym__setfiletype] = ACTIONS(783), - [sym__browse] = ACTIONS(783), - [sym__options] = ACTIONS(783), - [sym__startinsert] = ACTIONS(783), - [sym__stopinsert] = ACTIONS(783), - [sym__scriptencoding] = ACTIONS(783), - [sym__source] = ACTIONS(783), - [sym__global] = ACTIONS(783), - [sym__colorscheme] = ACTIONS(783), - [sym__comclear] = ACTIONS(783), - [sym__delcommand] = ACTIONS(783), - [sym__runtime] = ACTIONS(783), - [sym__wincmd] = ACTIONS(783), - [sym__sign] = ACTIONS(783), - [sym__filetype] = ACTIONS(783), - [sym__let] = ACTIONS(783), - [sym__unlet] = ACTIONS(783), - [sym__call] = ACTIONS(783), - [sym__break] = ACTIONS(783), - [sym__continue] = ACTIONS(783), - [sym_unknown_command_name] = ACTIONS(783), + [sym_comment] = ACTIONS(819), + [sym__function] = ACTIONS(819), + [sym__for] = ACTIONS(819), + [sym__while] = ACTIONS(819), + [sym__if] = ACTIONS(819), + [sym__elseif] = ACTIONS(819), + [sym__else] = ACTIONS(819), + [sym__endif] = ACTIONS(819), + [sym__try] = ACTIONS(819), + [sym__const] = ACTIONS(819), + [sym__normal] = ACTIONS(819), + [sym__return] = ACTIONS(819), + [sym__perl] = ACTIONS(819), + [sym__lua] = ACTIONS(819), + [sym__ruby] = ACTIONS(819), + [sym__python] = ACTIONS(819), + [sym__throw] = ACTIONS(819), + [sym__execute] = ACTIONS(819), + [sym__autocmd] = ACTIONS(819), + [sym__silent] = ACTIONS(819), + [sym__echo] = ACTIONS(819), + [sym__echon] = ACTIONS(819), + [sym__echohl] = ACTIONS(819), + [sym__echomsg] = ACTIONS(819), + [sym__echoerr] = ACTIONS(819), + [sym__map] = ACTIONS(819), + [sym__nmap] = ACTIONS(819), + [sym__vmap] = ACTIONS(819), + [sym__xmap] = ACTIONS(819), + [sym__smap] = ACTIONS(819), + [sym__omap] = ACTIONS(819), + [sym__imap] = ACTIONS(819), + [sym__lmap] = ACTIONS(819), + [sym__cmap] = ACTIONS(819), + [sym__tmap] = ACTIONS(819), + [sym__noremap] = ACTIONS(819), + [sym__vnoremap] = ACTIONS(819), + [sym__nnoremap] = ACTIONS(819), + [sym__xnoremap] = ACTIONS(819), + [sym__snoremap] = ACTIONS(819), + [sym__onoremap] = ACTIONS(819), + [sym__inoremap] = ACTIONS(819), + [sym__lnoremap] = ACTIONS(819), + [sym__cnoremap] = ACTIONS(819), + [sym__tnoremap] = ACTIONS(819), + [sym__augroup] = ACTIONS(819), + [sym__highlight] = ACTIONS(819), + [sym__syntax] = ACTIONS(819), + [sym__set] = ACTIONS(819), + [sym__setlocal] = ACTIONS(819), + [sym__setfiletype] = ACTIONS(819), + [sym__browse] = ACTIONS(819), + [sym__options] = ACTIONS(819), + [sym__startinsert] = ACTIONS(819), + [sym__stopinsert] = ACTIONS(819), + [sym__scriptencoding] = ACTIONS(819), + [sym__source] = ACTIONS(819), + [sym__global] = ACTIONS(819), + [sym__colorscheme] = ACTIONS(819), + [sym__comclear] = ACTIONS(819), + [sym__delcommand] = ACTIONS(819), + [sym__runtime] = ACTIONS(819), + [sym__wincmd] = ACTIONS(819), + [sym__sign] = ACTIONS(819), + [sym__filetype] = ACTIONS(819), + [sym__let] = ACTIONS(819), + [sym__unlet] = ACTIONS(819), + [sym__call] = ACTIONS(819), + [sym__break] = ACTIONS(819), + [sym__continue] = ACTIONS(819), + [sym_unknown_command_name] = ACTIONS(819), }, - [183] = { + [186] = { [anon_sym_COLON] = ACTIONS(943), [anon_sym_DOT] = ACTIONS(945), [sym_command_name] = ACTIONS(943), @@ -51740,7 +51314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(943), [anon_sym_BANG_TILDE] = ACTIONS(943), [sym_integer_literal] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_LBRACK2] = ACTIONS(943), [sym_register] = ACTIONS(943), [sym__newline_or_pipe] = ACTIONS(943), [sym__line_continuation] = ACTIONS(3), @@ -51816,114 +51390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(943), [sym_unknown_command_name] = ACTIONS(943), }, - [184] = { - [anon_sym_COLON] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(831), - [sym_command_name] = ACTIONS(829), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [sym_mark] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT2] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_BSLASH_SLASH] = ACTIONS(829), - [anon_sym_BSLASH_QMARK] = ACTIONS(829), - [anon_sym_BSLASH_AMP] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(831), - [anon_sym_STAR2] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_is] = ACTIONS(831), - [anon_sym_isnot] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_GT2] = ACTIONS(831), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [sym_integer_literal] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [sym_register] = ACTIONS(829), - [sym__newline_or_pipe] = ACTIONS(829), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(829), - [sym__function] = ACTIONS(829), - [sym__for] = ACTIONS(829), - [sym__while] = ACTIONS(829), - [sym__if] = ACTIONS(829), - [sym__elseif] = ACTIONS(829), - [sym__else] = ACTIONS(829), - [sym__endif] = ACTIONS(829), - [sym__try] = ACTIONS(829), - [sym__const] = ACTIONS(829), - [sym__normal] = ACTIONS(829), - [sym__return] = ACTIONS(829), - [sym__perl] = ACTIONS(829), - [sym__lua] = ACTIONS(829), - [sym__ruby] = ACTIONS(829), - [sym__python] = ACTIONS(829), - [sym__throw] = ACTIONS(829), - [sym__execute] = ACTIONS(829), - [sym__autocmd] = ACTIONS(829), - [sym__silent] = ACTIONS(829), - [sym__echo] = ACTIONS(829), - [sym__echon] = ACTIONS(829), - [sym__echohl] = ACTIONS(829), - [sym__echomsg] = ACTIONS(829), - [sym__echoerr] = ACTIONS(829), - [sym__map] = ACTIONS(829), - [sym__nmap] = ACTIONS(829), - [sym__vmap] = ACTIONS(829), - [sym__xmap] = ACTIONS(829), - [sym__smap] = ACTIONS(829), - [sym__omap] = ACTIONS(829), - [sym__imap] = ACTIONS(829), - [sym__lmap] = ACTIONS(829), - [sym__cmap] = ACTIONS(829), - [sym__tmap] = ACTIONS(829), - [sym__noremap] = ACTIONS(829), - [sym__vnoremap] = ACTIONS(829), - [sym__nnoremap] = ACTIONS(829), - [sym__xnoremap] = ACTIONS(829), - [sym__snoremap] = ACTIONS(829), - [sym__onoremap] = ACTIONS(829), - [sym__inoremap] = ACTIONS(829), - [sym__lnoremap] = ACTIONS(829), - [sym__cnoremap] = ACTIONS(829), - [sym__tnoremap] = ACTIONS(829), - [sym__augroup] = ACTIONS(829), - [sym__highlight] = ACTIONS(829), - [sym__syntax] = ACTIONS(829), - [sym__set] = ACTIONS(829), - [sym__setlocal] = ACTIONS(829), - [sym__setfiletype] = ACTIONS(829), - [sym__browse] = ACTIONS(829), - [sym__options] = ACTIONS(829), - [sym__startinsert] = ACTIONS(829), - [sym__stopinsert] = ACTIONS(829), - [sym__scriptencoding] = ACTIONS(829), - [sym__source] = ACTIONS(829), - [sym__global] = ACTIONS(829), - [sym__colorscheme] = ACTIONS(829), - [sym__comclear] = ACTIONS(829), - [sym__delcommand] = ACTIONS(829), - [sym__runtime] = ACTIONS(829), - [sym__wincmd] = ACTIONS(829), - [sym__sign] = ACTIONS(829), - [sym__filetype] = ACTIONS(829), - [sym__let] = ACTIONS(829), - [sym__unlet] = ACTIONS(829), - [sym__call] = ACTIONS(829), - [sym__break] = ACTIONS(829), - [sym__continue] = ACTIONS(829), - [sym_unknown_command_name] = ACTIONS(829), - }, - [185] = { + [187] = { [anon_sym_COLON] = ACTIONS(947), [anon_sym_DOT] = ACTIONS(949), [sym_command_name] = ACTIONS(947), @@ -51954,7 +51421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(947), [anon_sym_BANG_TILDE] = ACTIONS(947), [sym_integer_literal] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK2] = ACTIONS(947), [sym_register] = ACTIONS(947), [sym__newline_or_pipe] = ACTIONS(947), [sym__line_continuation] = ACTIONS(3), @@ -52030,241 +51497,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(947), [sym_unknown_command_name] = ACTIONS(947), }, - [186] = { - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(825), - [sym_command_name] = ACTIONS(825), - [anon_sym_LBRACE2] = ACTIONS(823), - [aux_sym_identifier_token2] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [sym_mark] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_DOT2] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_DOLLAR] = ACTIONS(823), - [anon_sym_BSLASH_SLASH] = ACTIONS(823), - [anon_sym_BSLASH_QMARK] = ACTIONS(823), - [anon_sym_BSLASH_AMP] = ACTIONS(823), - [anon_sym_LT2] = ACTIONS(825), - [anon_sym_STAR2] = ACTIONS(823), - [anon_sym_PIPE_PIPE] = ACTIONS(823), - [anon_sym_AMP_AMP] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(825), - [anon_sym_DOT_DOT] = ACTIONS(823), - [anon_sym_is] = ACTIONS(825), - [anon_sym_isnot] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_GT2] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(823), - [anon_sym_EQ_TILDE] = ACTIONS(823), - [anon_sym_BANG_TILDE] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(823), - [sym_register] = ACTIONS(823), - [sym__newline_or_pipe] = ACTIONS(823), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(823), - [sym__function] = ACTIONS(823), - [sym__for] = ACTIONS(823), - [sym__endfor] = ACTIONS(823), - [sym__while] = ACTIONS(823), - [sym__if] = ACTIONS(823), - [sym__try] = ACTIONS(823), - [sym__const] = ACTIONS(823), - [sym__normal] = ACTIONS(823), - [sym__return] = ACTIONS(823), - [sym__perl] = ACTIONS(823), - [sym__lua] = ACTIONS(823), - [sym__ruby] = ACTIONS(823), - [sym__python] = ACTIONS(823), - [sym__throw] = ACTIONS(823), - [sym__execute] = ACTIONS(823), - [sym__autocmd] = ACTIONS(823), - [sym__silent] = ACTIONS(823), - [sym__echo] = ACTIONS(823), - [sym__echon] = ACTIONS(823), - [sym__echohl] = ACTIONS(823), - [sym__echomsg] = ACTIONS(823), - [sym__echoerr] = ACTIONS(823), - [sym__map] = ACTIONS(823), - [sym__nmap] = ACTIONS(823), - [sym__vmap] = ACTIONS(823), - [sym__xmap] = ACTIONS(823), - [sym__smap] = ACTIONS(823), - [sym__omap] = ACTIONS(823), - [sym__imap] = ACTIONS(823), - [sym__lmap] = ACTIONS(823), - [sym__cmap] = ACTIONS(823), - [sym__tmap] = ACTIONS(823), - [sym__noremap] = ACTIONS(823), - [sym__vnoremap] = ACTIONS(823), - [sym__nnoremap] = ACTIONS(823), - [sym__xnoremap] = ACTIONS(823), - [sym__snoremap] = ACTIONS(823), - [sym__onoremap] = ACTIONS(823), - [sym__inoremap] = ACTIONS(823), - [sym__lnoremap] = ACTIONS(823), - [sym__cnoremap] = ACTIONS(823), - [sym__tnoremap] = ACTIONS(823), - [sym__augroup] = ACTIONS(823), - [sym__highlight] = ACTIONS(823), - [sym__syntax] = ACTIONS(823), - [sym__set] = ACTIONS(823), - [sym__setlocal] = ACTIONS(823), - [sym__setfiletype] = ACTIONS(823), - [sym__browse] = ACTIONS(823), - [sym__options] = ACTIONS(823), - [sym__startinsert] = ACTIONS(823), - [sym__stopinsert] = ACTIONS(823), - [sym__scriptencoding] = ACTIONS(823), - [sym__source] = ACTIONS(823), - [sym__global] = ACTIONS(823), - [sym__colorscheme] = ACTIONS(823), - [sym__comclear] = ACTIONS(823), - [sym__delcommand] = ACTIONS(823), - [sym__runtime] = ACTIONS(823), - [sym__wincmd] = ACTIONS(823), - [sym__sign] = ACTIONS(823), - [sym__filetype] = ACTIONS(823), - [sym__let] = ACTIONS(823), - [sym__unlet] = ACTIONS(823), - [sym__call] = ACTIONS(823), - [sym__break] = ACTIONS(823), - [sym__continue] = ACTIONS(823), - [sym_unknown_command_name] = ACTIONS(823), - }, - [187] = { - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(953), - [sym_command_name] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [sym_mark] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_BSLASH_SLASH] = ACTIONS(951), - [anon_sym_BSLASH_QMARK] = ACTIONS(951), - [anon_sym_BSLASH_AMP] = ACTIONS(951), - [anon_sym_LT2] = ACTIONS(953), - [anon_sym_STAR2] = ACTIONS(951), - [anon_sym_PIPE_PIPE] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_is] = ACTIONS(953), - [anon_sym_isnot] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_BANG_EQ] = ACTIONS(951), - [anon_sym_GT2] = ACTIONS(953), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_EQ_TILDE] = ACTIONS(951), - [anon_sym_BANG_TILDE] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [sym_register] = ACTIONS(951), - [sym__newline_or_pipe] = ACTIONS(951), + [188] = { + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(821), + [sym_command_name] = ACTIONS(821), + [aux_sym_argument_token1] = ACTIONS(951), + [aux_sym_argument_token2] = ACTIONS(953), + [anon_sym_QMARK] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(819), + [sym_mark] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_DOT2] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_BSLASH_SLASH] = ACTIONS(819), + [anon_sym_BSLASH_QMARK] = ACTIONS(819), + [anon_sym_BSLASH_AMP] = ACTIONS(819), + [anon_sym_LT2] = ACTIONS(821), + [anon_sym_STAR2] = ACTIONS(819), + [anon_sym_PIPE_PIPE] = ACTIONS(819), + [anon_sym_AMP_AMP] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_DOT_DOT] = ACTIONS(819), + [anon_sym_is] = ACTIONS(821), + [anon_sym_isnot] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(819), + [anon_sym_BANG_EQ] = ACTIONS(819), + [anon_sym_GT2] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(819), + [anon_sym_LT_EQ] = ACTIONS(819), + [anon_sym_EQ_TILDE] = ACTIONS(819), + [anon_sym_BANG_TILDE] = ACTIONS(819), + [sym_integer_literal] = ACTIONS(821), + [anon_sym_LBRACK2] = ACTIONS(819), + [sym_register] = ACTIONS(819), + [sym__newline_or_pipe] = ACTIONS(819), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(951), - [sym__function] = ACTIONS(951), - [sym__for] = ACTIONS(951), - [sym__while] = ACTIONS(951), - [sym__if] = ACTIONS(951), - [sym__elseif] = ACTIONS(951), - [sym__else] = ACTIONS(951), - [sym__endif] = ACTIONS(951), - [sym__try] = ACTIONS(951), - [sym__const] = ACTIONS(951), - [sym__normal] = ACTIONS(951), - [sym__return] = ACTIONS(951), - [sym__perl] = ACTIONS(951), - [sym__lua] = ACTIONS(951), - [sym__ruby] = ACTIONS(951), - [sym__python] = ACTIONS(951), - [sym__throw] = ACTIONS(951), - [sym__execute] = ACTIONS(951), - [sym__autocmd] = ACTIONS(951), - [sym__silent] = ACTIONS(951), - [sym__echo] = ACTIONS(951), - [sym__echon] = ACTIONS(951), - [sym__echohl] = ACTIONS(951), - [sym__echomsg] = ACTIONS(951), - [sym__echoerr] = ACTIONS(951), - [sym__map] = ACTIONS(951), - [sym__nmap] = ACTIONS(951), - [sym__vmap] = ACTIONS(951), - [sym__xmap] = ACTIONS(951), - [sym__smap] = ACTIONS(951), - [sym__omap] = ACTIONS(951), - [sym__imap] = ACTIONS(951), - [sym__lmap] = ACTIONS(951), - [sym__cmap] = ACTIONS(951), - [sym__tmap] = ACTIONS(951), - [sym__noremap] = ACTIONS(951), - [sym__vnoremap] = ACTIONS(951), - [sym__nnoremap] = ACTIONS(951), - [sym__xnoremap] = ACTIONS(951), - [sym__snoremap] = ACTIONS(951), - [sym__onoremap] = ACTIONS(951), - [sym__inoremap] = ACTIONS(951), - [sym__lnoremap] = ACTIONS(951), - [sym__cnoremap] = ACTIONS(951), - [sym__tnoremap] = ACTIONS(951), - [sym__augroup] = ACTIONS(951), - [sym__highlight] = ACTIONS(951), - [sym__syntax] = ACTIONS(951), - [sym__set] = ACTIONS(951), - [sym__setlocal] = ACTIONS(951), - [sym__setfiletype] = ACTIONS(951), - [sym__browse] = ACTIONS(951), - [sym__options] = ACTIONS(951), - [sym__startinsert] = ACTIONS(951), - [sym__stopinsert] = ACTIONS(951), - [sym__scriptencoding] = ACTIONS(951), - [sym__source] = ACTIONS(951), - [sym__global] = ACTIONS(951), - [sym__colorscheme] = ACTIONS(951), - [sym__comclear] = ACTIONS(951), - [sym__delcommand] = ACTIONS(951), - [sym__runtime] = ACTIONS(951), - [sym__wincmd] = ACTIONS(951), - [sym__sign] = ACTIONS(951), - [sym__filetype] = ACTIONS(951), - [sym__let] = ACTIONS(951), - [sym__unlet] = ACTIONS(951), - [sym__call] = ACTIONS(951), - [sym__break] = ACTIONS(951), - [sym__continue] = ACTIONS(951), - [sym_unknown_command_name] = ACTIONS(951), + [sym_comment] = ACTIONS(819), + [sym__function] = ACTIONS(819), + [sym__for] = ACTIONS(819), + [sym__endfor] = ACTIONS(819), + [sym__while] = ACTIONS(819), + [sym__if] = ACTIONS(819), + [sym__try] = ACTIONS(819), + [sym__const] = ACTIONS(819), + [sym__normal] = ACTIONS(819), + [sym__return] = ACTIONS(819), + [sym__perl] = ACTIONS(819), + [sym__lua] = ACTIONS(819), + [sym__ruby] = ACTIONS(819), + [sym__python] = ACTIONS(819), + [sym__throw] = ACTIONS(819), + [sym__execute] = ACTIONS(819), + [sym__autocmd] = ACTIONS(819), + [sym__silent] = ACTIONS(819), + [sym__echo] = ACTIONS(819), + [sym__echon] = ACTIONS(819), + [sym__echohl] = ACTIONS(819), + [sym__echomsg] = ACTIONS(819), + [sym__echoerr] = ACTIONS(819), + [sym__map] = ACTIONS(819), + [sym__nmap] = ACTIONS(819), + [sym__vmap] = ACTIONS(819), + [sym__xmap] = ACTIONS(819), + [sym__smap] = ACTIONS(819), + [sym__omap] = ACTIONS(819), + [sym__imap] = ACTIONS(819), + [sym__lmap] = ACTIONS(819), + [sym__cmap] = ACTIONS(819), + [sym__tmap] = ACTIONS(819), + [sym__noremap] = ACTIONS(819), + [sym__vnoremap] = ACTIONS(819), + [sym__nnoremap] = ACTIONS(819), + [sym__xnoremap] = ACTIONS(819), + [sym__snoremap] = ACTIONS(819), + [sym__onoremap] = ACTIONS(819), + [sym__inoremap] = ACTIONS(819), + [sym__lnoremap] = ACTIONS(819), + [sym__cnoremap] = ACTIONS(819), + [sym__tnoremap] = ACTIONS(819), + [sym__augroup] = ACTIONS(819), + [sym__highlight] = ACTIONS(819), + [sym__syntax] = ACTIONS(819), + [sym__set] = ACTIONS(819), + [sym__setlocal] = ACTIONS(819), + [sym__setfiletype] = ACTIONS(819), + [sym__browse] = ACTIONS(819), + [sym__options] = ACTIONS(819), + [sym__startinsert] = ACTIONS(819), + [sym__stopinsert] = ACTIONS(819), + [sym__scriptencoding] = ACTIONS(819), + [sym__source] = ACTIONS(819), + [sym__global] = ACTIONS(819), + [sym__colorscheme] = ACTIONS(819), + [sym__comclear] = ACTIONS(819), + [sym__delcommand] = ACTIONS(819), + [sym__runtime] = ACTIONS(819), + [sym__wincmd] = ACTIONS(819), + [sym__sign] = ACTIONS(819), + [sym__filetype] = ACTIONS(819), + [sym__let] = ACTIONS(819), + [sym__unlet] = ACTIONS(819), + [sym__call] = ACTIONS(819), + [sym__break] = ACTIONS(819), + [sym__continue] = ACTIONS(819), + [sym_unknown_command_name] = ACTIONS(819), }, - [188] = { + [189] = { [anon_sym_COLON] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(957), + [anon_sym_DOT] = ACTIONS(129), [sym_command_name] = ACTIONS(955), [anon_sym_QMARK] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(133), [sym_mark] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DOT2] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DOLLAR] = ACTIONS(955), [anon_sym_BSLASH_SLASH] = ACTIONS(955), [anon_sym_BSLASH_QMARK] = ACTIONS(955), [anon_sym_BSLASH_AMP] = ACTIONS(955), [anon_sym_LT2] = ACTIONS(957), - [anon_sym_STAR2] = ACTIONS(955), + [anon_sym_STAR2] = ACTIONS(145), [anon_sym_PIPE_PIPE] = ACTIONS(955), [anon_sym_AMP_AMP] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_DOT_DOT] = ACTIONS(153), [anon_sym_is] = ACTIONS(957), [anon_sym_isnot] = ACTIONS(955), [anon_sym_EQ_EQ] = ACTIONS(955), @@ -52275,7 +51635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(955), [anon_sym_BANG_TILDE] = ACTIONS(955), [sym_integer_literal] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_LBRACK2] = ACTIONS(161), [sym_register] = ACTIONS(955), [sym__newline_or_pipe] = ACTIONS(955), [sym__line_continuation] = ACTIONS(3), @@ -52351,7 +51711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(955), [sym_unknown_command_name] = ACTIONS(955), }, - [189] = { + [190] = { [anon_sym_COLON] = ACTIONS(959), [anon_sym_DOT] = ACTIONS(961), [sym_command_name] = ACTIONS(959), @@ -52382,7 +51742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(959), [anon_sym_BANG_TILDE] = ACTIONS(959), [sym_integer_literal] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LBRACK2] = ACTIONS(959), [sym_register] = ACTIONS(959), [sym__newline_or_pipe] = ACTIONS(959), [sym__line_continuation] = ACTIONS(3), @@ -52458,336 +51818,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(959), [sym_unknown_command_name] = ACTIONS(959), }, - [190] = { - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(129), - [sym_command_name] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(133), - [sym_mark] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(145), - [anon_sym_SLASH] = ACTIONS(145), - [anon_sym_DOT2] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_BSLASH_SLASH] = ACTIONS(963), - [anon_sym_BSLASH_QMARK] = ACTIONS(963), - [anon_sym_BSLASH_AMP] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(143), - [anon_sym_STAR2] = ACTIONS(145), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_DOT_DOT] = ACTIONS(153), - [anon_sym_is] = ACTIONS(155), - [anon_sym_isnot] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(159), - [anon_sym_BANG_EQ] = ACTIONS(159), - [anon_sym_GT2] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(159), - [anon_sym_LT_EQ] = ACTIONS(159), - [anon_sym_EQ_TILDE] = ACTIONS(159), - [anon_sym_BANG_TILDE] = ACTIONS(159), - [sym_integer_literal] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(161), - [sym_register] = ACTIONS(963), - [sym__newline_or_pipe] = ACTIONS(963), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(963), - [sym__function] = ACTIONS(963), - [sym__for] = ACTIONS(963), - [sym__while] = ACTIONS(963), - [sym__if] = ACTIONS(963), - [sym__elseif] = ACTIONS(963), - [sym__else] = ACTIONS(963), - [sym__endif] = ACTIONS(963), - [sym__try] = ACTIONS(963), - [sym__const] = ACTIONS(963), - [sym__normal] = ACTIONS(963), - [sym__return] = ACTIONS(963), - [sym__perl] = ACTIONS(963), - [sym__lua] = ACTIONS(963), - [sym__ruby] = ACTIONS(963), - [sym__python] = ACTIONS(963), - [sym__throw] = ACTIONS(963), - [sym__execute] = ACTIONS(963), - [sym__autocmd] = ACTIONS(963), - [sym__silent] = ACTIONS(963), - [sym__echo] = ACTIONS(963), - [sym__echon] = ACTIONS(963), - [sym__echohl] = ACTIONS(963), - [sym__echomsg] = ACTIONS(963), - [sym__echoerr] = ACTIONS(963), - [sym__map] = ACTIONS(963), - [sym__nmap] = ACTIONS(963), - [sym__vmap] = ACTIONS(963), - [sym__xmap] = ACTIONS(963), - [sym__smap] = ACTIONS(963), - [sym__omap] = ACTIONS(963), - [sym__imap] = ACTIONS(963), - [sym__lmap] = ACTIONS(963), - [sym__cmap] = ACTIONS(963), - [sym__tmap] = ACTIONS(963), - [sym__noremap] = ACTIONS(963), - [sym__vnoremap] = ACTIONS(963), - [sym__nnoremap] = ACTIONS(963), - [sym__xnoremap] = ACTIONS(963), - [sym__snoremap] = ACTIONS(963), - [sym__onoremap] = ACTIONS(963), - [sym__inoremap] = ACTIONS(963), - [sym__lnoremap] = ACTIONS(963), - [sym__cnoremap] = ACTIONS(963), - [sym__tnoremap] = ACTIONS(963), - [sym__augroup] = ACTIONS(963), - [sym__highlight] = ACTIONS(963), - [sym__syntax] = ACTIONS(963), - [sym__set] = ACTIONS(963), - [sym__setlocal] = ACTIONS(963), - [sym__setfiletype] = ACTIONS(963), - [sym__browse] = ACTIONS(963), - [sym__options] = ACTIONS(963), - [sym__startinsert] = ACTIONS(963), - [sym__stopinsert] = ACTIONS(963), - [sym__scriptencoding] = ACTIONS(963), - [sym__source] = ACTIONS(963), - [sym__global] = ACTIONS(963), - [sym__colorscheme] = ACTIONS(963), - [sym__comclear] = ACTIONS(963), - [sym__delcommand] = ACTIONS(963), - [sym__runtime] = ACTIONS(963), - [sym__wincmd] = ACTIONS(963), - [sym__sign] = ACTIONS(963), - [sym__filetype] = ACTIONS(963), - [sym__let] = ACTIONS(963), - [sym__unlet] = ACTIONS(963), - [sym__call] = ACTIONS(963), - [sym__break] = ACTIONS(963), - [sym__continue] = ACTIONS(963), - [sym_unknown_command_name] = ACTIONS(963), - }, [191] = { - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(129), - [sym_command_name] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(133), - [sym_mark] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(145), - [anon_sym_SLASH] = ACTIONS(145), - [anon_sym_DOT2] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_BSLASH_SLASH] = ACTIONS(963), - [anon_sym_BSLASH_QMARK] = ACTIONS(963), - [anon_sym_BSLASH_AMP] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(143), - [anon_sym_STAR2] = ACTIONS(145), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_DOT_DOT] = ACTIONS(153), - [anon_sym_is] = ACTIONS(155), - [anon_sym_isnot] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(159), - [anon_sym_BANG_EQ] = ACTIONS(159), - [anon_sym_GT2] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(159), - [anon_sym_LT_EQ] = ACTIONS(159), - [anon_sym_EQ_TILDE] = ACTIONS(159), - [anon_sym_BANG_TILDE] = ACTIONS(159), - [sym_integer_literal] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(161), - [sym_register] = ACTIONS(963), - [sym__newline_or_pipe] = ACTIONS(963), + [anon_sym_COLON] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(774), + [sym_command_name] = ACTIONS(783), + [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(783), + [sym_mark] = ACTIONS(783), + [anon_sym_PERCENT] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_DOT2] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(783), + [anon_sym_BSLASH_SLASH] = ACTIONS(783), + [anon_sym_BSLASH_QMARK] = ACTIONS(783), + [anon_sym_BSLASH_AMP] = ACTIONS(783), + [anon_sym_LT2] = ACTIONS(774), + [anon_sym_STAR2] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(783), + [anon_sym_is] = ACTIONS(774), + [anon_sym_isnot] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(783), + [anon_sym_BANG_EQ] = ACTIONS(783), + [anon_sym_GT2] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(783), + [anon_sym_LT_EQ] = ACTIONS(783), + [anon_sym_EQ_TILDE] = ACTIONS(783), + [anon_sym_BANG_TILDE] = ACTIONS(783), + [sym_integer_literal] = ACTIONS(783), + [anon_sym_LBRACK2] = ACTIONS(783), + [sym_register] = ACTIONS(783), + [sym__newline_or_pipe] = ACTIONS(783), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(963), - [sym__function] = ACTIONS(963), - [sym__for] = ACTIONS(963), - [sym__while] = ACTIONS(963), - [sym__if] = ACTIONS(963), - [sym__elseif] = ACTIONS(963), - [sym__else] = ACTIONS(963), - [sym__endif] = ACTIONS(963), - [sym__try] = ACTIONS(963), - [sym__const] = ACTIONS(963), - [sym__normal] = ACTIONS(963), - [sym__return] = ACTIONS(963), - [sym__perl] = ACTIONS(963), - [sym__lua] = ACTIONS(963), - [sym__ruby] = ACTIONS(963), - [sym__python] = ACTIONS(963), - [sym__throw] = ACTIONS(963), - [sym__execute] = ACTIONS(963), - [sym__autocmd] = ACTIONS(963), - [sym__silent] = ACTIONS(963), - [sym__echo] = ACTIONS(963), - [sym__echon] = ACTIONS(963), - [sym__echohl] = ACTIONS(963), - [sym__echomsg] = ACTIONS(963), - [sym__echoerr] = ACTIONS(963), - [sym__map] = ACTIONS(963), - [sym__nmap] = ACTIONS(963), - [sym__vmap] = ACTIONS(963), - [sym__xmap] = ACTIONS(963), - [sym__smap] = ACTIONS(963), - [sym__omap] = ACTIONS(963), - [sym__imap] = ACTIONS(963), - [sym__lmap] = ACTIONS(963), - [sym__cmap] = ACTIONS(963), - [sym__tmap] = ACTIONS(963), - [sym__noremap] = ACTIONS(963), - [sym__vnoremap] = ACTIONS(963), - [sym__nnoremap] = ACTIONS(963), - [sym__xnoremap] = ACTIONS(963), - [sym__snoremap] = ACTIONS(963), - [sym__onoremap] = ACTIONS(963), - [sym__inoremap] = ACTIONS(963), - [sym__lnoremap] = ACTIONS(963), - [sym__cnoremap] = ACTIONS(963), - [sym__tnoremap] = ACTIONS(963), - [sym__augroup] = ACTIONS(963), - [sym__highlight] = ACTIONS(963), - [sym__syntax] = ACTIONS(963), - [sym__set] = ACTIONS(963), - [sym__setlocal] = ACTIONS(963), - [sym__setfiletype] = ACTIONS(963), - [sym__browse] = ACTIONS(963), - [sym__options] = ACTIONS(963), - [sym__startinsert] = ACTIONS(963), - [sym__stopinsert] = ACTIONS(963), - [sym__scriptencoding] = ACTIONS(963), - [sym__source] = ACTIONS(963), - [sym__global] = ACTIONS(963), - [sym__colorscheme] = ACTIONS(963), - [sym__comclear] = ACTIONS(963), - [sym__delcommand] = ACTIONS(963), - [sym__runtime] = ACTIONS(963), - [sym__wincmd] = ACTIONS(963), - [sym__sign] = ACTIONS(963), - [sym__filetype] = ACTIONS(963), - [sym__let] = ACTIONS(963), - [sym__unlet] = ACTIONS(963), - [sym__call] = ACTIONS(963), - [sym__break] = ACTIONS(963), - [sym__continue] = ACTIONS(963), - [sym_unknown_command_name] = ACTIONS(963), + [sym_comment] = ACTIONS(783), + [sym__function] = ACTIONS(783), + [sym__for] = ACTIONS(783), + [sym__while] = ACTIONS(783), + [sym__if] = ACTIONS(783), + [sym__elseif] = ACTIONS(783), + [sym__else] = ACTIONS(783), + [sym__endif] = ACTIONS(783), + [sym__try] = ACTIONS(783), + [sym__const] = ACTIONS(783), + [sym__normal] = ACTIONS(783), + [sym__return] = ACTIONS(783), + [sym__perl] = ACTIONS(783), + [sym__lua] = ACTIONS(783), + [sym__ruby] = ACTIONS(783), + [sym__python] = ACTIONS(783), + [sym__throw] = ACTIONS(783), + [sym__execute] = ACTIONS(783), + [sym__autocmd] = ACTIONS(783), + [sym__silent] = ACTIONS(783), + [sym__echo] = ACTIONS(783), + [sym__echon] = ACTIONS(783), + [sym__echohl] = ACTIONS(783), + [sym__echomsg] = ACTIONS(783), + [sym__echoerr] = ACTIONS(783), + [sym__map] = ACTIONS(783), + [sym__nmap] = ACTIONS(783), + [sym__vmap] = ACTIONS(783), + [sym__xmap] = ACTIONS(783), + [sym__smap] = ACTIONS(783), + [sym__omap] = ACTIONS(783), + [sym__imap] = ACTIONS(783), + [sym__lmap] = ACTIONS(783), + [sym__cmap] = ACTIONS(783), + [sym__tmap] = ACTIONS(783), + [sym__noremap] = ACTIONS(783), + [sym__vnoremap] = ACTIONS(783), + [sym__nnoremap] = ACTIONS(783), + [sym__xnoremap] = ACTIONS(783), + [sym__snoremap] = ACTIONS(783), + [sym__onoremap] = ACTIONS(783), + [sym__inoremap] = ACTIONS(783), + [sym__lnoremap] = ACTIONS(783), + [sym__cnoremap] = ACTIONS(783), + [sym__tnoremap] = ACTIONS(783), + [sym__augroup] = ACTIONS(783), + [sym__highlight] = ACTIONS(783), + [sym__syntax] = ACTIONS(783), + [sym__set] = ACTIONS(783), + [sym__setlocal] = ACTIONS(783), + [sym__setfiletype] = ACTIONS(783), + [sym__browse] = ACTIONS(783), + [sym__options] = ACTIONS(783), + [sym__startinsert] = ACTIONS(783), + [sym__stopinsert] = ACTIONS(783), + [sym__scriptencoding] = ACTIONS(783), + [sym__source] = ACTIONS(783), + [sym__global] = ACTIONS(783), + [sym__colorscheme] = ACTIONS(783), + [sym__comclear] = ACTIONS(783), + [sym__delcommand] = ACTIONS(783), + [sym__runtime] = ACTIONS(783), + [sym__wincmd] = ACTIONS(783), + [sym__sign] = ACTIONS(783), + [sym__filetype] = ACTIONS(783), + [sym__let] = ACTIONS(783), + [sym__unlet] = ACTIONS(783), + [sym__call] = ACTIONS(783), + [sym__break] = ACTIONS(783), + [sym__continue] = ACTIONS(783), + [sym_unknown_command_name] = ACTIONS(783), }, [192] = { [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(129), - [sym_command_name] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(133), - [sym_mark] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(145), - [anon_sym_SLASH] = ACTIONS(145), - [anon_sym_DOT2] = ACTIONS(151), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_BSLASH_SLASH] = ACTIONS(963), - [anon_sym_BSLASH_QMARK] = ACTIONS(963), - [anon_sym_BSLASH_AMP] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(965), - [anon_sym_STAR2] = ACTIONS(145), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_DOT_DOT] = ACTIONS(153), - [anon_sym_is] = ACTIONS(965), - [anon_sym_isnot] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(965), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_EQ_TILDE] = ACTIONS(963), - [anon_sym_BANG_TILDE] = ACTIONS(963), - [sym_integer_literal] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(161), - [sym_register] = ACTIONS(963), - [sym__newline_or_pipe] = ACTIONS(963), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(963), - [sym__function] = ACTIONS(963), - [sym__for] = ACTIONS(963), - [sym__while] = ACTIONS(963), - [sym__if] = ACTIONS(963), - [sym__elseif] = ACTIONS(963), - [sym__else] = ACTIONS(963), - [sym__endif] = ACTIONS(963), - [sym__try] = ACTIONS(963), - [sym__const] = ACTIONS(963), - [sym__normal] = ACTIONS(963), - [sym__return] = ACTIONS(963), - [sym__perl] = ACTIONS(963), - [sym__lua] = ACTIONS(963), - [sym__ruby] = ACTIONS(963), - [sym__python] = ACTIONS(963), - [sym__throw] = ACTIONS(963), - [sym__execute] = ACTIONS(963), - [sym__autocmd] = ACTIONS(963), - [sym__silent] = ACTIONS(963), - [sym__echo] = ACTIONS(963), - [sym__echon] = ACTIONS(963), - [sym__echohl] = ACTIONS(963), - [sym__echomsg] = ACTIONS(963), - [sym__echoerr] = ACTIONS(963), - [sym__map] = ACTIONS(963), - [sym__nmap] = ACTIONS(963), - [sym__vmap] = ACTIONS(963), - [sym__xmap] = ACTIONS(963), - [sym__smap] = ACTIONS(963), - [sym__omap] = ACTIONS(963), - [sym__imap] = ACTIONS(963), - [sym__lmap] = ACTIONS(963), - [sym__cmap] = ACTIONS(963), - [sym__tmap] = ACTIONS(963), - [sym__noremap] = ACTIONS(963), - [sym__vnoremap] = ACTIONS(963), - [sym__nnoremap] = ACTIONS(963), - [sym__xnoremap] = ACTIONS(963), - [sym__snoremap] = ACTIONS(963), - [sym__onoremap] = ACTIONS(963), - [sym__inoremap] = ACTIONS(963), - [sym__lnoremap] = ACTIONS(963), - [sym__cnoremap] = ACTIONS(963), - [sym__tnoremap] = ACTIONS(963), - [sym__augroup] = ACTIONS(963), - [sym__highlight] = ACTIONS(963), - [sym__syntax] = ACTIONS(963), - [sym__set] = ACTIONS(963), - [sym__setlocal] = ACTIONS(963), - [sym__setfiletype] = ACTIONS(963), - [sym__browse] = ACTIONS(963), - [sym__options] = ACTIONS(963), - [sym__startinsert] = ACTIONS(963), - [sym__stopinsert] = ACTIONS(963), - [sym__scriptencoding] = ACTIONS(963), - [sym__source] = ACTIONS(963), - [sym__global] = ACTIONS(963), - [sym__colorscheme] = ACTIONS(963), - [sym__comclear] = ACTIONS(963), - [sym__delcommand] = ACTIONS(963), - [sym__runtime] = ACTIONS(963), - [sym__wincmd] = ACTIONS(963), - [sym__sign] = ACTIONS(963), - [sym__filetype] = ACTIONS(963), - [sym__let] = ACTIONS(963), - [sym__unlet] = ACTIONS(963), - [sym__call] = ACTIONS(963), - [sym__break] = ACTIONS(963), - [sym__continue] = ACTIONS(963), - [sym_unknown_command_name] = ACTIONS(963), - }, - [193] = { - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(129), + [anon_sym_DOT] = ACTIONS(965), [sym_command_name] = ACTIONS(963), [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(963), [sym_mark] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(145), - [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_PERCENT] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_DOT2] = ACTIONS(965), [anon_sym_PLUS] = ACTIONS(965), [anon_sym_DOLLAR] = ACTIONS(963), @@ -52795,7 +51941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_QMARK] = ACTIONS(963), [anon_sym_BSLASH_AMP] = ACTIONS(963), [anon_sym_LT2] = ACTIONS(965), - [anon_sym_STAR2] = ACTIONS(145), + [anon_sym_STAR2] = ACTIONS(963), [anon_sym_PIPE_PIPE] = ACTIONS(963), [anon_sym_AMP_AMP] = ACTIONS(963), [anon_sym_DASH] = ACTIONS(965), @@ -52810,7 +51956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(963), [anon_sym_BANG_TILDE] = ACTIONS(963), [sym_integer_literal] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK2] = ACTIONS(963), [sym_register] = ACTIONS(963), [sym__newline_or_pipe] = ACTIONS(963), [sym__line_continuation] = ACTIONS(3), @@ -52886,7 +52032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(963), [sym_unknown_command_name] = ACTIONS(963), }, - [194] = { + [193] = { [anon_sym_COLON] = ACTIONS(967), [anon_sym_DOT] = ACTIONS(969), [sym_command_name] = ACTIONS(967), @@ -52917,7 +52063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(967), [anon_sym_BANG_TILDE] = ACTIONS(967), [sym_integer_literal] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_LBRACK2] = ACTIONS(967), [sym_register] = ACTIONS(967), [sym__newline_or_pipe] = ACTIONS(967), [sym__line_continuation] = ACTIONS(3), @@ -52993,7 +52139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(967), [sym_unknown_command_name] = ACTIONS(967), }, - [195] = { + [194] = { [anon_sym_COLON] = ACTIONS(971), [anon_sym_DOT] = ACTIONS(973), [sym_command_name] = ACTIONS(971), @@ -53024,7 +52170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(971), [anon_sym_BANG_TILDE] = ACTIONS(971), [sym_integer_literal] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_LBRACK2] = ACTIONS(971), [sym_register] = ACTIONS(971), [sym__newline_or_pipe] = ACTIONS(971), [sym__line_continuation] = ACTIONS(3), @@ -53100,114 +52246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(971), [sym_unknown_command_name] = ACTIONS(971), }, - [196] = { - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(129), - [sym_command_name] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(133), - [sym_mark] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(963), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_DOT2] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_BSLASH_SLASH] = ACTIONS(963), - [anon_sym_BSLASH_QMARK] = ACTIONS(963), - [anon_sym_BSLASH_AMP] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(965), - [anon_sym_STAR2] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(965), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_is] = ACTIONS(965), - [anon_sym_isnot] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(965), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_EQ_TILDE] = ACTIONS(963), - [anon_sym_BANG_TILDE] = ACTIONS(963), - [sym_integer_literal] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(161), - [sym_register] = ACTIONS(963), - [sym__newline_or_pipe] = ACTIONS(963), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(963), - [sym__function] = ACTIONS(963), - [sym__for] = ACTIONS(963), - [sym__while] = ACTIONS(963), - [sym__if] = ACTIONS(963), - [sym__elseif] = ACTIONS(963), - [sym__else] = ACTIONS(963), - [sym__endif] = ACTIONS(963), - [sym__try] = ACTIONS(963), - [sym__const] = ACTIONS(963), - [sym__normal] = ACTIONS(963), - [sym__return] = ACTIONS(963), - [sym__perl] = ACTIONS(963), - [sym__lua] = ACTIONS(963), - [sym__ruby] = ACTIONS(963), - [sym__python] = ACTIONS(963), - [sym__throw] = ACTIONS(963), - [sym__execute] = ACTIONS(963), - [sym__autocmd] = ACTIONS(963), - [sym__silent] = ACTIONS(963), - [sym__echo] = ACTIONS(963), - [sym__echon] = ACTIONS(963), - [sym__echohl] = ACTIONS(963), - [sym__echomsg] = ACTIONS(963), - [sym__echoerr] = ACTIONS(963), - [sym__map] = ACTIONS(963), - [sym__nmap] = ACTIONS(963), - [sym__vmap] = ACTIONS(963), - [sym__xmap] = ACTIONS(963), - [sym__smap] = ACTIONS(963), - [sym__omap] = ACTIONS(963), - [sym__imap] = ACTIONS(963), - [sym__lmap] = ACTIONS(963), - [sym__cmap] = ACTIONS(963), - [sym__tmap] = ACTIONS(963), - [sym__noremap] = ACTIONS(963), - [sym__vnoremap] = ACTIONS(963), - [sym__nnoremap] = ACTIONS(963), - [sym__xnoremap] = ACTIONS(963), - [sym__snoremap] = ACTIONS(963), - [sym__onoremap] = ACTIONS(963), - [sym__inoremap] = ACTIONS(963), - [sym__lnoremap] = ACTIONS(963), - [sym__cnoremap] = ACTIONS(963), - [sym__tnoremap] = ACTIONS(963), - [sym__augroup] = ACTIONS(963), - [sym__highlight] = ACTIONS(963), - [sym__syntax] = ACTIONS(963), - [sym__set] = ACTIONS(963), - [sym__setlocal] = ACTIONS(963), - [sym__setfiletype] = ACTIONS(963), - [sym__browse] = ACTIONS(963), - [sym__options] = ACTIONS(963), - [sym__startinsert] = ACTIONS(963), - [sym__stopinsert] = ACTIONS(963), - [sym__scriptencoding] = ACTIONS(963), - [sym__source] = ACTIONS(963), - [sym__global] = ACTIONS(963), - [sym__colorscheme] = ACTIONS(963), - [sym__comclear] = ACTIONS(963), - [sym__delcommand] = ACTIONS(963), - [sym__runtime] = ACTIONS(963), - [sym__wincmd] = ACTIONS(963), - [sym__sign] = ACTIONS(963), - [sym__filetype] = ACTIONS(963), - [sym__let] = ACTIONS(963), - [sym__unlet] = ACTIONS(963), - [sym__call] = ACTIONS(963), - [sym__break] = ACTIONS(963), - [sym__continue] = ACTIONS(963), - [sym_unknown_command_name] = ACTIONS(963), - }, - [197] = { + [195] = { [anon_sym_COLON] = ACTIONS(975), [anon_sym_DOT] = ACTIONS(977), [sym_command_name] = ACTIONS(975), @@ -53238,7 +52277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(975), [anon_sym_BANG_TILDE] = ACTIONS(975), [sym_integer_literal] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(975), [sym_register] = ACTIONS(975), [sym__newline_or_pipe] = ACTIONS(975), [sym__line_continuation] = ACTIONS(3), @@ -53314,7 +52353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(975), [sym_unknown_command_name] = ACTIONS(975), }, - [198] = { + [196] = { [anon_sym_COLON] = ACTIONS(979), [anon_sym_DOT] = ACTIONS(981), [sym_command_name] = ACTIONS(979), @@ -53345,7 +52384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(979), [anon_sym_BANG_TILDE] = ACTIONS(979), [sym_integer_literal] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_LBRACK2] = ACTIONS(979), [sym_register] = ACTIONS(979), [sym__newline_or_pipe] = ACTIONS(979), [sym__line_continuation] = ACTIONS(3), @@ -53421,7 +52460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(979), [sym_unknown_command_name] = ACTIONS(979), }, - [199] = { + [197] = { [anon_sym_COLON] = ACTIONS(983), [anon_sym_DOT] = ACTIONS(985), [sym_command_name] = ACTIONS(983), @@ -53452,7 +52491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(983), [anon_sym_BANG_TILDE] = ACTIONS(983), [sym_integer_literal] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_LBRACK2] = ACTIONS(983), [sym_register] = ACTIONS(983), [sym__newline_or_pipe] = ACTIONS(983), [sym__line_continuation] = ACTIONS(3), @@ -53528,6 +52567,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(983), [sym_unknown_command_name] = ACTIONS(983), }, + [198] = { + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_DOT] = ACTIONS(815), + [sym_command_name] = ACTIONS(815), + [anon_sym_LBRACE2] = ACTIONS(813), + [aux_sym_identifier_token2] = ACTIONS(815), + [anon_sym_QMARK] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(813), + [sym_mark] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_DOT2] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_BSLASH_SLASH] = ACTIONS(813), + [anon_sym_BSLASH_QMARK] = ACTIONS(813), + [anon_sym_BSLASH_AMP] = ACTIONS(813), + [anon_sym_LT2] = ACTIONS(815), + [anon_sym_STAR2] = ACTIONS(813), + [anon_sym_PIPE_PIPE] = ACTIONS(813), + [anon_sym_AMP_AMP] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DOT_DOT] = ACTIONS(813), + [anon_sym_is] = ACTIONS(815), + [anon_sym_isnot] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(813), + [anon_sym_GT2] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(813), + [anon_sym_LT_EQ] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(813), + [anon_sym_BANG_TILDE] = ACTIONS(813), + [sym_integer_literal] = ACTIONS(815), + [anon_sym_LBRACK2] = ACTIONS(813), + [sym_register] = ACTIONS(813), + [sym__newline_or_pipe] = ACTIONS(813), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(813), + [sym__function] = ACTIONS(813), + [sym__for] = ACTIONS(813), + [sym__endfor] = ACTIONS(813), + [sym__while] = ACTIONS(813), + [sym__if] = ACTIONS(813), + [sym__try] = ACTIONS(813), + [sym__const] = ACTIONS(813), + [sym__normal] = ACTIONS(813), + [sym__return] = ACTIONS(813), + [sym__perl] = ACTIONS(813), + [sym__lua] = ACTIONS(813), + [sym__ruby] = ACTIONS(813), + [sym__python] = ACTIONS(813), + [sym__throw] = ACTIONS(813), + [sym__execute] = ACTIONS(813), + [sym__autocmd] = ACTIONS(813), + [sym__silent] = ACTIONS(813), + [sym__echo] = ACTIONS(813), + [sym__echon] = ACTIONS(813), + [sym__echohl] = ACTIONS(813), + [sym__echomsg] = ACTIONS(813), + [sym__echoerr] = ACTIONS(813), + [sym__map] = ACTIONS(813), + [sym__nmap] = ACTIONS(813), + [sym__vmap] = ACTIONS(813), + [sym__xmap] = ACTIONS(813), + [sym__smap] = ACTIONS(813), + [sym__omap] = ACTIONS(813), + [sym__imap] = ACTIONS(813), + [sym__lmap] = ACTIONS(813), + [sym__cmap] = ACTIONS(813), + [sym__tmap] = ACTIONS(813), + [sym__noremap] = ACTIONS(813), + [sym__vnoremap] = ACTIONS(813), + [sym__nnoremap] = ACTIONS(813), + [sym__xnoremap] = ACTIONS(813), + [sym__snoremap] = ACTIONS(813), + [sym__onoremap] = ACTIONS(813), + [sym__inoremap] = ACTIONS(813), + [sym__lnoremap] = ACTIONS(813), + [sym__cnoremap] = ACTIONS(813), + [sym__tnoremap] = ACTIONS(813), + [sym__augroup] = ACTIONS(813), + [sym__highlight] = ACTIONS(813), + [sym__syntax] = ACTIONS(813), + [sym__set] = ACTIONS(813), + [sym__setlocal] = ACTIONS(813), + [sym__setfiletype] = ACTIONS(813), + [sym__browse] = ACTIONS(813), + [sym__options] = ACTIONS(813), + [sym__startinsert] = ACTIONS(813), + [sym__stopinsert] = ACTIONS(813), + [sym__scriptencoding] = ACTIONS(813), + [sym__source] = ACTIONS(813), + [sym__global] = ACTIONS(813), + [sym__colorscheme] = ACTIONS(813), + [sym__comclear] = ACTIONS(813), + [sym__delcommand] = ACTIONS(813), + [sym__runtime] = ACTIONS(813), + [sym__wincmd] = ACTIONS(813), + [sym__sign] = ACTIONS(813), + [sym__filetype] = ACTIONS(813), + [sym__let] = ACTIONS(813), + [sym__unlet] = ACTIONS(813), + [sym__call] = ACTIONS(813), + [sym__break] = ACTIONS(813), + [sym__continue] = ACTIONS(813), + [sym_unknown_command_name] = ACTIONS(813), + }, + [199] = { + [anon_sym_COLON] = ACTIONS(833), + [anon_sym_DOT] = ACTIONS(835), + [sym_command_name] = ACTIONS(835), + [anon_sym_LBRACE2] = ACTIONS(833), + [aux_sym_identifier_token2] = ACTIONS(835), + [anon_sym_QMARK] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(833), + [sym_mark] = ACTIONS(833), + [anon_sym_PERCENT] = ACTIONS(833), + [anon_sym_SLASH] = ACTIONS(833), + [anon_sym_DOT2] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_BSLASH_SLASH] = ACTIONS(833), + [anon_sym_BSLASH_QMARK] = ACTIONS(833), + [anon_sym_BSLASH_AMP] = ACTIONS(833), + [anon_sym_LT2] = ACTIONS(835), + [anon_sym_STAR2] = ACTIONS(833), + [anon_sym_PIPE_PIPE] = ACTIONS(833), + [anon_sym_AMP_AMP] = ACTIONS(833), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_DOT_DOT] = ACTIONS(833), + [anon_sym_is] = ACTIONS(835), + [anon_sym_isnot] = ACTIONS(835), + [anon_sym_EQ_EQ] = ACTIONS(833), + [anon_sym_BANG_EQ] = ACTIONS(833), + [anon_sym_GT2] = ACTIONS(835), + [anon_sym_GT_EQ] = ACTIONS(833), + [anon_sym_LT_EQ] = ACTIONS(833), + [anon_sym_EQ_TILDE] = ACTIONS(833), + [anon_sym_BANG_TILDE] = ACTIONS(833), + [sym_integer_literal] = ACTIONS(835), + [anon_sym_LBRACK2] = ACTIONS(833), + [sym_register] = ACTIONS(833), + [sym__newline_or_pipe] = ACTIONS(833), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(833), + [sym__function] = ACTIONS(833), + [sym__for] = ACTIONS(833), + [sym__endfor] = ACTIONS(833), + [sym__while] = ACTIONS(833), + [sym__if] = ACTIONS(833), + [sym__try] = ACTIONS(833), + [sym__const] = ACTIONS(833), + [sym__normal] = ACTIONS(833), + [sym__return] = ACTIONS(833), + [sym__perl] = ACTIONS(833), + [sym__lua] = ACTIONS(833), + [sym__ruby] = ACTIONS(833), + [sym__python] = ACTIONS(833), + [sym__throw] = ACTIONS(833), + [sym__execute] = ACTIONS(833), + [sym__autocmd] = ACTIONS(833), + [sym__silent] = ACTIONS(833), + [sym__echo] = ACTIONS(833), + [sym__echon] = ACTIONS(833), + [sym__echohl] = ACTIONS(833), + [sym__echomsg] = ACTIONS(833), + [sym__echoerr] = ACTIONS(833), + [sym__map] = ACTIONS(833), + [sym__nmap] = ACTIONS(833), + [sym__vmap] = ACTIONS(833), + [sym__xmap] = ACTIONS(833), + [sym__smap] = ACTIONS(833), + [sym__omap] = ACTIONS(833), + [sym__imap] = ACTIONS(833), + [sym__lmap] = ACTIONS(833), + [sym__cmap] = ACTIONS(833), + [sym__tmap] = ACTIONS(833), + [sym__noremap] = ACTIONS(833), + [sym__vnoremap] = ACTIONS(833), + [sym__nnoremap] = ACTIONS(833), + [sym__xnoremap] = ACTIONS(833), + [sym__snoremap] = ACTIONS(833), + [sym__onoremap] = ACTIONS(833), + [sym__inoremap] = ACTIONS(833), + [sym__lnoremap] = ACTIONS(833), + [sym__cnoremap] = ACTIONS(833), + [sym__tnoremap] = ACTIONS(833), + [sym__augroup] = ACTIONS(833), + [sym__highlight] = ACTIONS(833), + [sym__syntax] = ACTIONS(833), + [sym__set] = ACTIONS(833), + [sym__setlocal] = ACTIONS(833), + [sym__setfiletype] = ACTIONS(833), + [sym__browse] = ACTIONS(833), + [sym__options] = ACTIONS(833), + [sym__startinsert] = ACTIONS(833), + [sym__stopinsert] = ACTIONS(833), + [sym__scriptencoding] = ACTIONS(833), + [sym__source] = ACTIONS(833), + [sym__global] = ACTIONS(833), + [sym__colorscheme] = ACTIONS(833), + [sym__comclear] = ACTIONS(833), + [sym__delcommand] = ACTIONS(833), + [sym__runtime] = ACTIONS(833), + [sym__wincmd] = ACTIONS(833), + [sym__sign] = ACTIONS(833), + [sym__filetype] = ACTIONS(833), + [sym__let] = ACTIONS(833), + [sym__unlet] = ACTIONS(833), + [sym__call] = ACTIONS(833), + [sym__break] = ACTIONS(833), + [sym__continue] = ACTIONS(833), + [sym_unknown_command_name] = ACTIONS(833), + }, [200] = { [anon_sym_COLON] = ACTIONS(987), [anon_sym_DOT] = ACTIONS(989), @@ -53559,7 +52812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(987), [anon_sym_BANG_TILDE] = ACTIONS(987), [sym_integer_literal] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_LBRACK2] = ACTIONS(987), [sym_register] = ACTIONS(987), [sym__newline_or_pipe] = ACTIONS(987), [sym__line_continuation] = ACTIONS(3), @@ -53636,741 +52889,321 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(987), }, [201] = { - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(921), - [sym_command_name] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [sym_mark] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_DOT2] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_BSLASH_SLASH] = ACTIONS(919), - [anon_sym_BSLASH_QMARK] = ACTIONS(919), - [anon_sym_BSLASH_AMP] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(921), - [anon_sym_STAR2] = ACTIONS(919), - [anon_sym_PIPE_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_is] = ACTIONS(921), - [anon_sym_isnot] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_GT2] = ACTIONS(921), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(919), - [sym_register] = ACTIONS(919), - [sym__newline_or_pipe] = ACTIONS(919), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_DOT] = ACTIONS(873), + [sym_command_name] = ACTIONS(871), + [anon_sym_QMARK] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(871), + [sym_mark] = ACTIONS(871), + [anon_sym_PERCENT] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(871), + [anon_sym_DOT2] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DOLLAR] = ACTIONS(871), + [anon_sym_BSLASH_SLASH] = ACTIONS(871), + [anon_sym_BSLASH_QMARK] = ACTIONS(871), + [anon_sym_BSLASH_AMP] = ACTIONS(871), + [anon_sym_LT2] = ACTIONS(873), + [anon_sym_STAR2] = ACTIONS(871), + [anon_sym_PIPE_PIPE] = ACTIONS(871), + [anon_sym_AMP_AMP] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT_DOT] = ACTIONS(871), + [anon_sym_is] = ACTIONS(873), + [anon_sym_isnot] = ACTIONS(871), + [anon_sym_EQ_EQ] = ACTIONS(871), + [anon_sym_BANG_EQ] = ACTIONS(871), + [anon_sym_GT2] = ACTIONS(873), + [anon_sym_GT_EQ] = ACTIONS(871), + [anon_sym_LT_EQ] = ACTIONS(871), + [anon_sym_EQ_TILDE] = ACTIONS(871), + [anon_sym_BANG_TILDE] = ACTIONS(871), + [sym_integer_literal] = ACTIONS(871), + [anon_sym_LBRACK2] = ACTIONS(871), + [sym_register] = ACTIONS(871), + [sym__newline_or_pipe] = ACTIONS(871), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(919), - [sym__function] = ACTIONS(919), - [sym__for] = ACTIONS(919), - [sym__endfor] = ACTIONS(919), - [sym__while] = ACTIONS(919), - [sym__if] = ACTIONS(919), - [sym__try] = ACTIONS(919), - [sym__const] = ACTIONS(919), - [sym__normal] = ACTIONS(919), - [sym__return] = ACTIONS(919), - [sym__perl] = ACTIONS(919), - [sym__lua] = ACTIONS(919), - [sym__ruby] = ACTIONS(919), - [sym__python] = ACTIONS(919), - [sym__throw] = ACTIONS(919), - [sym__execute] = ACTIONS(919), - [sym__autocmd] = ACTIONS(919), - [sym__silent] = ACTIONS(919), - [sym__echo] = ACTIONS(919), - [sym__echon] = ACTIONS(919), - [sym__echohl] = ACTIONS(919), - [sym__echomsg] = ACTIONS(919), - [sym__echoerr] = ACTIONS(919), - [sym__map] = ACTIONS(919), - [sym__nmap] = ACTIONS(919), - [sym__vmap] = ACTIONS(919), - [sym__xmap] = ACTIONS(919), - [sym__smap] = ACTIONS(919), - [sym__omap] = ACTIONS(919), - [sym__imap] = ACTIONS(919), - [sym__lmap] = ACTIONS(919), - [sym__cmap] = ACTIONS(919), - [sym__tmap] = ACTIONS(919), - [sym__noremap] = ACTIONS(919), - [sym__vnoremap] = ACTIONS(919), - [sym__nnoremap] = ACTIONS(919), - [sym__xnoremap] = ACTIONS(919), - [sym__snoremap] = ACTIONS(919), - [sym__onoremap] = ACTIONS(919), - [sym__inoremap] = ACTIONS(919), - [sym__lnoremap] = ACTIONS(919), - [sym__cnoremap] = ACTIONS(919), - [sym__tnoremap] = ACTIONS(919), - [sym__augroup] = ACTIONS(919), - [sym__highlight] = ACTIONS(919), - [sym__syntax] = ACTIONS(919), - [sym__set] = ACTIONS(919), - [sym__setlocal] = ACTIONS(919), - [sym__setfiletype] = ACTIONS(919), - [sym__browse] = ACTIONS(919), - [sym__options] = ACTIONS(919), - [sym__startinsert] = ACTIONS(919), - [sym__stopinsert] = ACTIONS(919), - [sym__scriptencoding] = ACTIONS(919), - [sym__source] = ACTIONS(919), - [sym__global] = ACTIONS(919), - [sym__colorscheme] = ACTIONS(919), - [sym__comclear] = ACTIONS(919), - [sym__delcommand] = ACTIONS(919), - [sym__runtime] = ACTIONS(919), - [sym__wincmd] = ACTIONS(919), - [sym__sign] = ACTIONS(919), - [sym__filetype] = ACTIONS(919), - [sym__let] = ACTIONS(919), - [sym__unlet] = ACTIONS(919), - [sym__call] = ACTIONS(919), - [sym__break] = ACTIONS(919), - [sym__continue] = ACTIONS(919), - [sym_unknown_command_name] = ACTIONS(919), + [sym_comment] = ACTIONS(871), + [sym__function] = ACTIONS(871), + [sym__for] = ACTIONS(871), + [sym__endfor] = ACTIONS(871), + [sym__while] = ACTIONS(871), + [sym__if] = ACTIONS(871), + [sym__try] = ACTIONS(871), + [sym__const] = ACTIONS(871), + [sym__normal] = ACTIONS(871), + [sym__return] = ACTIONS(871), + [sym__perl] = ACTIONS(871), + [sym__lua] = ACTIONS(871), + [sym__ruby] = ACTIONS(871), + [sym__python] = ACTIONS(871), + [sym__throw] = ACTIONS(871), + [sym__execute] = ACTIONS(871), + [sym__autocmd] = ACTIONS(871), + [sym__silent] = ACTIONS(871), + [sym__echo] = ACTIONS(871), + [sym__echon] = ACTIONS(871), + [sym__echohl] = ACTIONS(871), + [sym__echomsg] = ACTIONS(871), + [sym__echoerr] = ACTIONS(871), + [sym__map] = ACTIONS(871), + [sym__nmap] = ACTIONS(871), + [sym__vmap] = ACTIONS(871), + [sym__xmap] = ACTIONS(871), + [sym__smap] = ACTIONS(871), + [sym__omap] = ACTIONS(871), + [sym__imap] = ACTIONS(871), + [sym__lmap] = ACTIONS(871), + [sym__cmap] = ACTIONS(871), + [sym__tmap] = ACTIONS(871), + [sym__noremap] = ACTIONS(871), + [sym__vnoremap] = ACTIONS(871), + [sym__nnoremap] = ACTIONS(871), + [sym__xnoremap] = ACTIONS(871), + [sym__snoremap] = ACTIONS(871), + [sym__onoremap] = ACTIONS(871), + [sym__inoremap] = ACTIONS(871), + [sym__lnoremap] = ACTIONS(871), + [sym__cnoremap] = ACTIONS(871), + [sym__tnoremap] = ACTIONS(871), + [sym__augroup] = ACTIONS(871), + [sym__highlight] = ACTIONS(871), + [sym__syntax] = ACTIONS(871), + [sym__set] = ACTIONS(871), + [sym__setlocal] = ACTIONS(871), + [sym__setfiletype] = ACTIONS(871), + [sym__browse] = ACTIONS(871), + [sym__options] = ACTIONS(871), + [sym__startinsert] = ACTIONS(871), + [sym__stopinsert] = ACTIONS(871), + [sym__scriptencoding] = ACTIONS(871), + [sym__source] = ACTIONS(871), + [sym__global] = ACTIONS(871), + [sym__colorscheme] = ACTIONS(871), + [sym__comclear] = ACTIONS(871), + [sym__delcommand] = ACTIONS(871), + [sym__runtime] = ACTIONS(871), + [sym__wincmd] = ACTIONS(871), + [sym__sign] = ACTIONS(871), + [sym__filetype] = ACTIONS(871), + [sym__let] = ACTIONS(871), + [sym__unlet] = ACTIONS(871), + [sym__call] = ACTIONS(871), + [sym__break] = ACTIONS(871), + [sym__continue] = ACTIONS(871), + [sym_unknown_command_name] = ACTIONS(871), }, [202] = { - [anon_sym_COLON] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(929), - [sym_command_name] = ACTIONS(927), - [anon_sym_QMARK] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(927), - [sym_mark] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_DOT2] = ACTIONS(929), - [anon_sym_PLUS] = ACTIONS(929), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_BSLASH_SLASH] = ACTIONS(927), - [anon_sym_BSLASH_QMARK] = ACTIONS(927), - [anon_sym_BSLASH_AMP] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(929), - [anon_sym_STAR2] = ACTIONS(927), - [anon_sym_PIPE_PIPE] = ACTIONS(927), - [anon_sym_AMP_AMP] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(929), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_is] = ACTIONS(929), - [anon_sym_isnot] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_GT2] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_BANG_TILDE] = ACTIONS(927), - [sym_integer_literal] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(927), - [sym_register] = ACTIONS(927), - [sym__newline_or_pipe] = ACTIONS(927), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(865), + [sym_command_name] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(863), + [sym_mark] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_DOT2] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_BSLASH_SLASH] = ACTIONS(863), + [anon_sym_BSLASH_QMARK] = ACTIONS(863), + [anon_sym_BSLASH_AMP] = ACTIONS(863), + [anon_sym_LT2] = ACTIONS(865), + [anon_sym_STAR2] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_is] = ACTIONS(865), + [anon_sym_isnot] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(863), + [anon_sym_GT2] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_EQ_TILDE] = ACTIONS(863), + [anon_sym_BANG_TILDE] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(863), + [anon_sym_LBRACK2] = ACTIONS(863), + [sym_register] = ACTIONS(863), + [sym__newline_or_pipe] = ACTIONS(863), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(927), - [sym__function] = ACTIONS(927), - [sym__for] = ACTIONS(927), - [sym__endfor] = ACTIONS(927), - [sym__while] = ACTIONS(927), - [sym__if] = ACTIONS(927), - [sym__try] = ACTIONS(927), - [sym__const] = ACTIONS(927), - [sym__normal] = ACTIONS(927), - [sym__return] = ACTIONS(927), - [sym__perl] = ACTIONS(927), - [sym__lua] = ACTIONS(927), - [sym__ruby] = ACTIONS(927), - [sym__python] = ACTIONS(927), - [sym__throw] = ACTIONS(927), - [sym__execute] = ACTIONS(927), - [sym__autocmd] = ACTIONS(927), - [sym__silent] = ACTIONS(927), - [sym__echo] = ACTIONS(927), - [sym__echon] = ACTIONS(927), - [sym__echohl] = ACTIONS(927), - [sym__echomsg] = ACTIONS(927), - [sym__echoerr] = ACTIONS(927), - [sym__map] = ACTIONS(927), - [sym__nmap] = ACTIONS(927), - [sym__vmap] = ACTIONS(927), - [sym__xmap] = ACTIONS(927), - [sym__smap] = ACTIONS(927), - [sym__omap] = ACTIONS(927), - [sym__imap] = ACTIONS(927), - [sym__lmap] = ACTIONS(927), - [sym__cmap] = ACTIONS(927), - [sym__tmap] = ACTIONS(927), - [sym__noremap] = ACTIONS(927), - [sym__vnoremap] = ACTIONS(927), - [sym__nnoremap] = ACTIONS(927), - [sym__xnoremap] = ACTIONS(927), - [sym__snoremap] = ACTIONS(927), - [sym__onoremap] = ACTIONS(927), - [sym__inoremap] = ACTIONS(927), - [sym__lnoremap] = ACTIONS(927), - [sym__cnoremap] = ACTIONS(927), - [sym__tnoremap] = ACTIONS(927), - [sym__augroup] = ACTIONS(927), - [sym__highlight] = ACTIONS(927), - [sym__syntax] = ACTIONS(927), - [sym__set] = ACTIONS(927), - [sym__setlocal] = ACTIONS(927), - [sym__setfiletype] = ACTIONS(927), - [sym__browse] = ACTIONS(927), - [sym__options] = ACTIONS(927), - [sym__startinsert] = ACTIONS(927), - [sym__stopinsert] = ACTIONS(927), - [sym__scriptencoding] = ACTIONS(927), - [sym__source] = ACTIONS(927), - [sym__global] = ACTIONS(927), - [sym__colorscheme] = ACTIONS(927), - [sym__comclear] = ACTIONS(927), - [sym__delcommand] = ACTIONS(927), - [sym__runtime] = ACTIONS(927), - [sym__wincmd] = ACTIONS(927), - [sym__sign] = ACTIONS(927), - [sym__filetype] = ACTIONS(927), - [sym__let] = ACTIONS(927), - [sym__unlet] = ACTIONS(927), - [sym__call] = ACTIONS(927), - [sym__break] = ACTIONS(927), - [sym__continue] = ACTIONS(927), - [sym_unknown_command_name] = ACTIONS(927), + [sym_comment] = ACTIONS(863), + [sym__function] = ACTIONS(863), + [sym__for] = ACTIONS(863), + [sym__endfor] = ACTIONS(863), + [sym__while] = ACTIONS(863), + [sym__if] = ACTIONS(863), + [sym__try] = ACTIONS(863), + [sym__const] = ACTIONS(863), + [sym__normal] = ACTIONS(863), + [sym__return] = ACTIONS(863), + [sym__perl] = ACTIONS(863), + [sym__lua] = ACTIONS(863), + [sym__ruby] = ACTIONS(863), + [sym__python] = ACTIONS(863), + [sym__throw] = ACTIONS(863), + [sym__execute] = ACTIONS(863), + [sym__autocmd] = ACTIONS(863), + [sym__silent] = ACTIONS(863), + [sym__echo] = ACTIONS(863), + [sym__echon] = ACTIONS(863), + [sym__echohl] = ACTIONS(863), + [sym__echomsg] = ACTIONS(863), + [sym__echoerr] = ACTIONS(863), + [sym__map] = ACTIONS(863), + [sym__nmap] = ACTIONS(863), + [sym__vmap] = ACTIONS(863), + [sym__xmap] = ACTIONS(863), + [sym__smap] = ACTIONS(863), + [sym__omap] = ACTIONS(863), + [sym__imap] = ACTIONS(863), + [sym__lmap] = ACTIONS(863), + [sym__cmap] = ACTIONS(863), + [sym__tmap] = ACTIONS(863), + [sym__noremap] = ACTIONS(863), + [sym__vnoremap] = ACTIONS(863), + [sym__nnoremap] = ACTIONS(863), + [sym__xnoremap] = ACTIONS(863), + [sym__snoremap] = ACTIONS(863), + [sym__onoremap] = ACTIONS(863), + [sym__inoremap] = ACTIONS(863), + [sym__lnoremap] = ACTIONS(863), + [sym__cnoremap] = ACTIONS(863), + [sym__tnoremap] = ACTIONS(863), + [sym__augroup] = ACTIONS(863), + [sym__highlight] = ACTIONS(863), + [sym__syntax] = ACTIONS(863), + [sym__set] = ACTIONS(863), + [sym__setlocal] = ACTIONS(863), + [sym__setfiletype] = ACTIONS(863), + [sym__browse] = ACTIONS(863), + [sym__options] = ACTIONS(863), + [sym__startinsert] = ACTIONS(863), + [sym__stopinsert] = ACTIONS(863), + [sym__scriptencoding] = ACTIONS(863), + [sym__source] = ACTIONS(863), + [sym__global] = ACTIONS(863), + [sym__colorscheme] = ACTIONS(863), + [sym__comclear] = ACTIONS(863), + [sym__delcommand] = ACTIONS(863), + [sym__runtime] = ACTIONS(863), + [sym__wincmd] = ACTIONS(863), + [sym__sign] = ACTIONS(863), + [sym__filetype] = ACTIONS(863), + [sym__let] = ACTIONS(863), + [sym__unlet] = ACTIONS(863), + [sym__call] = ACTIONS(863), + [sym__break] = ACTIONS(863), + [sym__continue] = ACTIONS(863), + [sym_unknown_command_name] = ACTIONS(863), }, [203] = { - [anon_sym_COLON] = ACTIONS(895), - [anon_sym_DOT] = ACTIONS(897), - [sym_command_name] = ACTIONS(895), - [anon_sym_QMARK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [sym_mark] = ACTIONS(895), - [anon_sym_PERCENT] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(895), - [anon_sym_DOT2] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_BSLASH_SLASH] = ACTIONS(895), - [anon_sym_BSLASH_QMARK] = ACTIONS(895), - [anon_sym_BSLASH_AMP] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(897), - [anon_sym_STAR2] = ACTIONS(895), - [anon_sym_PIPE_PIPE] = ACTIONS(895), - [anon_sym_AMP_AMP] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_DOT_DOT] = ACTIONS(895), - [anon_sym_is] = ACTIONS(897), - [anon_sym_isnot] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_GT2] = ACTIONS(897), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [sym_integer_literal] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), - [sym_register] = ACTIONS(895), - [sym__newline_or_pipe] = ACTIONS(895), + [anon_sym_COLON] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(909), + [sym_command_name] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [sym_mark] = ACTIONS(907), + [anon_sym_PERCENT] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_DOT2] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_BSLASH_SLASH] = ACTIONS(907), + [anon_sym_BSLASH_QMARK] = ACTIONS(907), + [anon_sym_BSLASH_AMP] = ACTIONS(907), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_STAR2] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_is] = ACTIONS(909), + [anon_sym_isnot] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_GT2] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_EQ_TILDE] = ACTIONS(907), + [anon_sym_BANG_TILDE] = ACTIONS(907), + [sym_integer_literal] = ACTIONS(907), + [anon_sym_LBRACK2] = ACTIONS(907), + [sym_register] = ACTIONS(907), + [sym__newline_or_pipe] = ACTIONS(907), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(895), - [sym__function] = ACTIONS(895), - [sym__for] = ACTIONS(895), - [sym__endfor] = ACTIONS(895), - [sym__while] = ACTIONS(895), - [sym__if] = ACTIONS(895), - [sym__try] = ACTIONS(895), - [sym__const] = ACTIONS(895), - [sym__normal] = ACTIONS(895), - [sym__return] = ACTIONS(895), - [sym__perl] = ACTIONS(895), - [sym__lua] = ACTIONS(895), - [sym__ruby] = ACTIONS(895), - [sym__python] = ACTIONS(895), - [sym__throw] = ACTIONS(895), - [sym__execute] = ACTIONS(895), - [sym__autocmd] = ACTIONS(895), - [sym__silent] = ACTIONS(895), - [sym__echo] = ACTIONS(895), - [sym__echon] = ACTIONS(895), - [sym__echohl] = ACTIONS(895), - [sym__echomsg] = ACTIONS(895), - [sym__echoerr] = ACTIONS(895), - [sym__map] = ACTIONS(895), - [sym__nmap] = ACTIONS(895), - [sym__vmap] = ACTIONS(895), - [sym__xmap] = ACTIONS(895), - [sym__smap] = ACTIONS(895), - [sym__omap] = ACTIONS(895), - [sym__imap] = ACTIONS(895), - [sym__lmap] = ACTIONS(895), - [sym__cmap] = ACTIONS(895), - [sym__tmap] = ACTIONS(895), - [sym__noremap] = ACTIONS(895), - [sym__vnoremap] = ACTIONS(895), - [sym__nnoremap] = ACTIONS(895), - [sym__xnoremap] = ACTIONS(895), - [sym__snoremap] = ACTIONS(895), - [sym__onoremap] = ACTIONS(895), - [sym__inoremap] = ACTIONS(895), - [sym__lnoremap] = ACTIONS(895), - [sym__cnoremap] = ACTIONS(895), - [sym__tnoremap] = ACTIONS(895), - [sym__augroup] = ACTIONS(895), - [sym__highlight] = ACTIONS(895), - [sym__syntax] = ACTIONS(895), - [sym__set] = ACTIONS(895), - [sym__setlocal] = ACTIONS(895), - [sym__setfiletype] = ACTIONS(895), - [sym__browse] = ACTIONS(895), - [sym__options] = ACTIONS(895), - [sym__startinsert] = ACTIONS(895), - [sym__stopinsert] = ACTIONS(895), - [sym__scriptencoding] = ACTIONS(895), - [sym__source] = ACTIONS(895), - [sym__global] = ACTIONS(895), - [sym__colorscheme] = ACTIONS(895), - [sym__comclear] = ACTIONS(895), - [sym__delcommand] = ACTIONS(895), - [sym__runtime] = ACTIONS(895), - [sym__wincmd] = ACTIONS(895), - [sym__sign] = ACTIONS(895), - [sym__filetype] = ACTIONS(895), - [sym__let] = ACTIONS(895), - [sym__unlet] = ACTIONS(895), - [sym__call] = ACTIONS(895), - [sym__break] = ACTIONS(895), - [sym__continue] = ACTIONS(895), - [sym_unknown_command_name] = ACTIONS(895), - }, - [204] = { - [anon_sym_COLON] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(925), - [sym_command_name] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [sym_mark] = ACTIONS(923), - [anon_sym_PERCENT] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_DOT2] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_BSLASH_SLASH] = ACTIONS(923), - [anon_sym_BSLASH_QMARK] = ACTIONS(923), - [anon_sym_BSLASH_AMP] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(925), - [anon_sym_STAR2] = ACTIONS(923), - [anon_sym_PIPE_PIPE] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_is] = ACTIONS(925), - [anon_sym_isnot] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_GT2] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [sym_integer_literal] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [sym_register] = ACTIONS(923), - [sym__newline_or_pipe] = ACTIONS(923), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(923), - [sym__function] = ACTIONS(923), - [sym__for] = ACTIONS(923), - [sym__endfor] = ACTIONS(923), - [sym__while] = ACTIONS(923), - [sym__if] = ACTIONS(923), - [sym__try] = ACTIONS(923), - [sym__const] = ACTIONS(923), - [sym__normal] = ACTIONS(923), - [sym__return] = ACTIONS(923), - [sym__perl] = ACTIONS(923), - [sym__lua] = ACTIONS(923), - [sym__ruby] = ACTIONS(923), - [sym__python] = ACTIONS(923), - [sym__throw] = ACTIONS(923), - [sym__execute] = ACTIONS(923), - [sym__autocmd] = ACTIONS(923), - [sym__silent] = ACTIONS(923), - [sym__echo] = ACTIONS(923), - [sym__echon] = ACTIONS(923), - [sym__echohl] = ACTIONS(923), - [sym__echomsg] = ACTIONS(923), - [sym__echoerr] = ACTIONS(923), - [sym__map] = ACTIONS(923), - [sym__nmap] = ACTIONS(923), - [sym__vmap] = ACTIONS(923), - [sym__xmap] = ACTIONS(923), - [sym__smap] = ACTIONS(923), - [sym__omap] = ACTIONS(923), - [sym__imap] = ACTIONS(923), - [sym__lmap] = ACTIONS(923), - [sym__cmap] = ACTIONS(923), - [sym__tmap] = ACTIONS(923), - [sym__noremap] = ACTIONS(923), - [sym__vnoremap] = ACTIONS(923), - [sym__nnoremap] = ACTIONS(923), - [sym__xnoremap] = ACTIONS(923), - [sym__snoremap] = ACTIONS(923), - [sym__onoremap] = ACTIONS(923), - [sym__inoremap] = ACTIONS(923), - [sym__lnoremap] = ACTIONS(923), - [sym__cnoremap] = ACTIONS(923), - [sym__tnoremap] = ACTIONS(923), - [sym__augroup] = ACTIONS(923), - [sym__highlight] = ACTIONS(923), - [sym__syntax] = ACTIONS(923), - [sym__set] = ACTIONS(923), - [sym__setlocal] = ACTIONS(923), - [sym__setfiletype] = ACTIONS(923), - [sym__browse] = ACTIONS(923), - [sym__options] = ACTIONS(923), - [sym__startinsert] = ACTIONS(923), - [sym__stopinsert] = ACTIONS(923), - [sym__scriptencoding] = ACTIONS(923), - [sym__source] = ACTIONS(923), - [sym__global] = ACTIONS(923), - [sym__colorscheme] = ACTIONS(923), - [sym__comclear] = ACTIONS(923), - [sym__delcommand] = ACTIONS(923), - [sym__runtime] = ACTIONS(923), - [sym__wincmd] = ACTIONS(923), - [sym__sign] = ACTIONS(923), - [sym__filetype] = ACTIONS(923), - [sym__let] = ACTIONS(923), - [sym__unlet] = ACTIONS(923), - [sym__call] = ACTIONS(923), - [sym__break] = ACTIONS(923), - [sym__continue] = ACTIONS(923), - [sym_unknown_command_name] = ACTIONS(923), - }, - [205] = { - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(167), - [sym_command_name] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(171), - [sym_mark] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(183), - [anon_sym_DOT2] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_BSLASH_SLASH] = ACTIONS(911), - [anon_sym_BSLASH_QMARK] = ACTIONS(911), - [anon_sym_BSLASH_AMP] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(913), - [anon_sym_STAR2] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(913), - [anon_sym_isnot] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_GT2] = ACTIONS(913), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(199), - [sym_register] = ACTIONS(911), - [sym__newline_or_pipe] = ACTIONS(911), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(911), - [sym__function] = ACTIONS(911), - [sym__for] = ACTIONS(911), - [sym__endfor] = ACTIONS(911), - [sym__while] = ACTIONS(911), - [sym__if] = ACTIONS(911), - [sym__try] = ACTIONS(911), - [sym__const] = ACTIONS(911), - [sym__normal] = ACTIONS(911), - [sym__return] = ACTIONS(911), - [sym__perl] = ACTIONS(911), - [sym__lua] = ACTIONS(911), - [sym__ruby] = ACTIONS(911), - [sym__python] = ACTIONS(911), - [sym__throw] = ACTIONS(911), - [sym__execute] = ACTIONS(911), - [sym__autocmd] = ACTIONS(911), - [sym__silent] = ACTIONS(911), - [sym__echo] = ACTIONS(911), - [sym__echon] = ACTIONS(911), - [sym__echohl] = ACTIONS(911), - [sym__echomsg] = ACTIONS(911), - [sym__echoerr] = ACTIONS(911), - [sym__map] = ACTIONS(911), - [sym__nmap] = ACTIONS(911), - [sym__vmap] = ACTIONS(911), - [sym__xmap] = ACTIONS(911), - [sym__smap] = ACTIONS(911), - [sym__omap] = ACTIONS(911), - [sym__imap] = ACTIONS(911), - [sym__lmap] = ACTIONS(911), - [sym__cmap] = ACTIONS(911), - [sym__tmap] = ACTIONS(911), - [sym__noremap] = ACTIONS(911), - [sym__vnoremap] = ACTIONS(911), - [sym__nnoremap] = ACTIONS(911), - [sym__xnoremap] = ACTIONS(911), - [sym__snoremap] = ACTIONS(911), - [sym__onoremap] = ACTIONS(911), - [sym__inoremap] = ACTIONS(911), - [sym__lnoremap] = ACTIONS(911), - [sym__cnoremap] = ACTIONS(911), - [sym__tnoremap] = ACTIONS(911), - [sym__augroup] = ACTIONS(911), - [sym__highlight] = ACTIONS(911), - [sym__syntax] = ACTIONS(911), - [sym__set] = ACTIONS(911), - [sym__setlocal] = ACTIONS(911), - [sym__setfiletype] = ACTIONS(911), - [sym__browse] = ACTIONS(911), - [sym__options] = ACTIONS(911), - [sym__startinsert] = ACTIONS(911), - [sym__stopinsert] = ACTIONS(911), - [sym__scriptencoding] = ACTIONS(911), - [sym__source] = ACTIONS(911), - [sym__global] = ACTIONS(911), - [sym__colorscheme] = ACTIONS(911), - [sym__comclear] = ACTIONS(911), - [sym__delcommand] = ACTIONS(911), - [sym__runtime] = ACTIONS(911), - [sym__wincmd] = ACTIONS(911), - [sym__sign] = ACTIONS(911), - [sym__filetype] = ACTIONS(911), - [sym__let] = ACTIONS(911), - [sym__unlet] = ACTIONS(911), - [sym__call] = ACTIONS(911), - [sym__break] = ACTIONS(911), - [sym__continue] = ACTIONS(911), - [sym_unknown_command_name] = ACTIONS(911), - }, - [206] = { - [anon_sym_COLON] = ACTIONS(939), - [anon_sym_DOT] = ACTIONS(167), - [sym_command_name] = ACTIONS(939), - [anon_sym_QMARK] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(171), - [sym_mark] = ACTIONS(939), - [anon_sym_PERCENT] = ACTIONS(939), - [anon_sym_SLASH] = ACTIONS(939), - [anon_sym_DOT2] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_BSLASH_SLASH] = ACTIONS(939), - [anon_sym_BSLASH_QMARK] = ACTIONS(939), - [anon_sym_BSLASH_AMP] = ACTIONS(939), - [anon_sym_LT2] = ACTIONS(941), - [anon_sym_STAR2] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT] = ACTIONS(939), - [anon_sym_is] = ACTIONS(941), - [anon_sym_isnot] = ACTIONS(939), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_GT2] = ACTIONS(941), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_EQ_TILDE] = ACTIONS(939), - [anon_sym_BANG_TILDE] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(199), - [sym_register] = ACTIONS(939), - [sym__newline_or_pipe] = ACTIONS(939), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(939), - [sym__function] = ACTIONS(939), - [sym__for] = ACTIONS(939), - [sym__endfor] = ACTIONS(939), - [sym__while] = ACTIONS(939), - [sym__if] = ACTIONS(939), - [sym__try] = ACTIONS(939), - [sym__const] = ACTIONS(939), - [sym__normal] = ACTIONS(939), - [sym__return] = ACTIONS(939), - [sym__perl] = ACTIONS(939), - [sym__lua] = ACTIONS(939), - [sym__ruby] = ACTIONS(939), - [sym__python] = ACTIONS(939), - [sym__throw] = ACTIONS(939), - [sym__execute] = ACTIONS(939), - [sym__autocmd] = ACTIONS(939), - [sym__silent] = ACTIONS(939), - [sym__echo] = ACTIONS(939), - [sym__echon] = ACTIONS(939), - [sym__echohl] = ACTIONS(939), - [sym__echomsg] = ACTIONS(939), - [sym__echoerr] = ACTIONS(939), - [sym__map] = ACTIONS(939), - [sym__nmap] = ACTIONS(939), - [sym__vmap] = ACTIONS(939), - [sym__xmap] = ACTIONS(939), - [sym__smap] = ACTIONS(939), - [sym__omap] = ACTIONS(939), - [sym__imap] = ACTIONS(939), - [sym__lmap] = ACTIONS(939), - [sym__cmap] = ACTIONS(939), - [sym__tmap] = ACTIONS(939), - [sym__noremap] = ACTIONS(939), - [sym__vnoremap] = ACTIONS(939), - [sym__nnoremap] = ACTIONS(939), - [sym__xnoremap] = ACTIONS(939), - [sym__snoremap] = ACTIONS(939), - [sym__onoremap] = ACTIONS(939), - [sym__inoremap] = ACTIONS(939), - [sym__lnoremap] = ACTIONS(939), - [sym__cnoremap] = ACTIONS(939), - [sym__tnoremap] = ACTIONS(939), - [sym__augroup] = ACTIONS(939), - [sym__highlight] = ACTIONS(939), - [sym__syntax] = ACTIONS(939), - [sym__set] = ACTIONS(939), - [sym__setlocal] = ACTIONS(939), - [sym__setfiletype] = ACTIONS(939), - [sym__browse] = ACTIONS(939), - [sym__options] = ACTIONS(939), - [sym__startinsert] = ACTIONS(939), - [sym__stopinsert] = ACTIONS(939), - [sym__scriptencoding] = ACTIONS(939), - [sym__source] = ACTIONS(939), - [sym__global] = ACTIONS(939), - [sym__colorscheme] = ACTIONS(939), - [sym__comclear] = ACTIONS(939), - [sym__delcommand] = ACTIONS(939), - [sym__runtime] = ACTIONS(939), - [sym__wincmd] = ACTIONS(939), - [sym__sign] = ACTIONS(939), - [sym__filetype] = ACTIONS(939), - [sym__let] = ACTIONS(939), - [sym__unlet] = ACTIONS(939), - [sym__call] = ACTIONS(939), - [sym__break] = ACTIONS(939), - [sym__continue] = ACTIONS(939), - [sym_unknown_command_name] = ACTIONS(939), - }, - [207] = { - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_DOT] = ACTIONS(774), - [sym_command_name] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(783), - [sym_mark] = ACTIONS(783), - [anon_sym_PERCENT] = ACTIONS(783), - [anon_sym_SLASH] = ACTIONS(783), - [anon_sym_DOT2] = ACTIONS(774), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_DOLLAR] = ACTIONS(783), - [anon_sym_BSLASH_SLASH] = ACTIONS(783), - [anon_sym_BSLASH_QMARK] = ACTIONS(783), - [anon_sym_BSLASH_AMP] = ACTIONS(783), - [anon_sym_LT2] = ACTIONS(774), - [anon_sym_STAR2] = ACTIONS(783), - [anon_sym_PIPE_PIPE] = ACTIONS(783), - [anon_sym_AMP_AMP] = ACTIONS(783), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_DOT_DOT] = ACTIONS(783), - [anon_sym_is] = ACTIONS(774), - [anon_sym_isnot] = ACTIONS(783), - [anon_sym_EQ_EQ] = ACTIONS(783), - [anon_sym_BANG_EQ] = ACTIONS(783), - [anon_sym_GT2] = ACTIONS(774), - [anon_sym_GT_EQ] = ACTIONS(783), - [anon_sym_LT_EQ] = ACTIONS(783), - [anon_sym_EQ_TILDE] = ACTIONS(783), - [anon_sym_BANG_TILDE] = ACTIONS(783), - [sym_integer_literal] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(783), - [sym_register] = ACTIONS(783), - [sym__newline_or_pipe] = ACTIONS(783), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(783), - [sym__function] = ACTIONS(783), - [sym__for] = ACTIONS(783), - [sym__endfor] = ACTIONS(783), - [sym__while] = ACTIONS(783), - [sym__if] = ACTIONS(783), - [sym__try] = ACTIONS(783), - [sym__const] = ACTIONS(783), - [sym__normal] = ACTIONS(783), - [sym__return] = ACTIONS(783), - [sym__perl] = ACTIONS(783), - [sym__lua] = ACTIONS(783), - [sym__ruby] = ACTIONS(783), - [sym__python] = ACTIONS(783), - [sym__throw] = ACTIONS(783), - [sym__execute] = ACTIONS(783), - [sym__autocmd] = ACTIONS(783), - [sym__silent] = ACTIONS(783), - [sym__echo] = ACTIONS(783), - [sym__echon] = ACTIONS(783), - [sym__echohl] = ACTIONS(783), - [sym__echomsg] = ACTIONS(783), - [sym__echoerr] = ACTIONS(783), - [sym__map] = ACTIONS(783), - [sym__nmap] = ACTIONS(783), - [sym__vmap] = ACTIONS(783), - [sym__xmap] = ACTIONS(783), - [sym__smap] = ACTIONS(783), - [sym__omap] = ACTIONS(783), - [sym__imap] = ACTIONS(783), - [sym__lmap] = ACTIONS(783), - [sym__cmap] = ACTIONS(783), - [sym__tmap] = ACTIONS(783), - [sym__noremap] = ACTIONS(783), - [sym__vnoremap] = ACTIONS(783), - [sym__nnoremap] = ACTIONS(783), - [sym__xnoremap] = ACTIONS(783), - [sym__snoremap] = ACTIONS(783), - [sym__onoremap] = ACTIONS(783), - [sym__inoremap] = ACTIONS(783), - [sym__lnoremap] = ACTIONS(783), - [sym__cnoremap] = ACTIONS(783), - [sym__tnoremap] = ACTIONS(783), - [sym__augroup] = ACTIONS(783), - [sym__highlight] = ACTIONS(783), - [sym__syntax] = ACTIONS(783), - [sym__set] = ACTIONS(783), - [sym__setlocal] = ACTIONS(783), - [sym__setfiletype] = ACTIONS(783), - [sym__browse] = ACTIONS(783), - [sym__options] = ACTIONS(783), - [sym__startinsert] = ACTIONS(783), - [sym__stopinsert] = ACTIONS(783), - [sym__scriptencoding] = ACTIONS(783), - [sym__source] = ACTIONS(783), - [sym__global] = ACTIONS(783), - [sym__colorscheme] = ACTIONS(783), - [sym__comclear] = ACTIONS(783), - [sym__delcommand] = ACTIONS(783), - [sym__runtime] = ACTIONS(783), - [sym__wincmd] = ACTIONS(783), - [sym__sign] = ACTIONS(783), - [sym__filetype] = ACTIONS(783), - [sym__let] = ACTIONS(783), - [sym__unlet] = ACTIONS(783), - [sym__call] = ACTIONS(783), - [sym__break] = ACTIONS(783), - [sym__continue] = ACTIONS(783), - [sym_unknown_command_name] = ACTIONS(783), + [sym_comment] = ACTIONS(907), + [sym__function] = ACTIONS(907), + [sym__for] = ACTIONS(907), + [sym__endfor] = ACTIONS(907), + [sym__while] = ACTIONS(907), + [sym__if] = ACTIONS(907), + [sym__try] = ACTIONS(907), + [sym__const] = ACTIONS(907), + [sym__normal] = ACTIONS(907), + [sym__return] = ACTIONS(907), + [sym__perl] = ACTIONS(907), + [sym__lua] = ACTIONS(907), + [sym__ruby] = ACTIONS(907), + [sym__python] = ACTIONS(907), + [sym__throw] = ACTIONS(907), + [sym__execute] = ACTIONS(907), + [sym__autocmd] = ACTIONS(907), + [sym__silent] = ACTIONS(907), + [sym__echo] = ACTIONS(907), + [sym__echon] = ACTIONS(907), + [sym__echohl] = ACTIONS(907), + [sym__echomsg] = ACTIONS(907), + [sym__echoerr] = ACTIONS(907), + [sym__map] = ACTIONS(907), + [sym__nmap] = ACTIONS(907), + [sym__vmap] = ACTIONS(907), + [sym__xmap] = ACTIONS(907), + [sym__smap] = ACTIONS(907), + [sym__omap] = ACTIONS(907), + [sym__imap] = ACTIONS(907), + [sym__lmap] = ACTIONS(907), + [sym__cmap] = ACTIONS(907), + [sym__tmap] = ACTIONS(907), + [sym__noremap] = ACTIONS(907), + [sym__vnoremap] = ACTIONS(907), + [sym__nnoremap] = ACTIONS(907), + [sym__xnoremap] = ACTIONS(907), + [sym__snoremap] = ACTIONS(907), + [sym__onoremap] = ACTIONS(907), + [sym__inoremap] = ACTIONS(907), + [sym__lnoremap] = ACTIONS(907), + [sym__cnoremap] = ACTIONS(907), + [sym__tnoremap] = ACTIONS(907), + [sym__augroup] = ACTIONS(907), + [sym__highlight] = ACTIONS(907), + [sym__syntax] = ACTIONS(907), + [sym__set] = ACTIONS(907), + [sym__setlocal] = ACTIONS(907), + [sym__setfiletype] = ACTIONS(907), + [sym__browse] = ACTIONS(907), + [sym__options] = ACTIONS(907), + [sym__startinsert] = ACTIONS(907), + [sym__stopinsert] = ACTIONS(907), + [sym__scriptencoding] = ACTIONS(907), + [sym__source] = ACTIONS(907), + [sym__global] = ACTIONS(907), + [sym__colorscheme] = ACTIONS(907), + [sym__comclear] = ACTIONS(907), + [sym__delcommand] = ACTIONS(907), + [sym__runtime] = ACTIONS(907), + [sym__wincmd] = ACTIONS(907), + [sym__sign] = ACTIONS(907), + [sym__filetype] = ACTIONS(907), + [sym__let] = ACTIONS(907), + [sym__unlet] = ACTIONS(907), + [sym__call] = ACTIONS(907), + [sym__break] = ACTIONS(907), + [sym__continue] = ACTIONS(907), + [sym_unknown_command_name] = ACTIONS(907), }, - [208] = { + [204] = { [anon_sym_COLON] = ACTIONS(903), [anon_sym_DOT] = ACTIONS(905), [sym_command_name] = ACTIONS(903), @@ -54401,7 +53234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(903), [anon_sym_BANG_TILDE] = ACTIONS(903), [sym_integer_literal] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LBRACK2] = ACTIONS(903), [sym_register] = ACTIONS(903), [sym__newline_or_pipe] = ACTIONS(903), [sym__line_continuation] = ACTIONS(3), @@ -54475,217 +53308,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(903), [sym_unknown_command_name] = ACTIONS(903), }, - [209] = { - [anon_sym_COLON] = ACTIONS(943), - [anon_sym_DOT] = ACTIONS(945), - [sym_command_name] = ACTIONS(943), - [anon_sym_QMARK] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(943), - [sym_mark] = ACTIONS(943), - [anon_sym_PERCENT] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_BSLASH_SLASH] = ACTIONS(943), - [anon_sym_BSLASH_QMARK] = ACTIONS(943), - [anon_sym_BSLASH_AMP] = ACTIONS(943), - [anon_sym_LT2] = ACTIONS(945), - [anon_sym_STAR2] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_is] = ACTIONS(945), - [anon_sym_isnot] = ACTIONS(943), - [anon_sym_EQ_EQ] = ACTIONS(943), - [anon_sym_BANG_EQ] = ACTIONS(943), - [anon_sym_GT2] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(943), - [anon_sym_LT_EQ] = ACTIONS(943), - [anon_sym_EQ_TILDE] = ACTIONS(943), - [anon_sym_BANG_TILDE] = ACTIONS(943), - [sym_integer_literal] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(943), - [sym_register] = ACTIONS(943), - [sym__newline_or_pipe] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(943), - [sym__function] = ACTIONS(943), - [sym__for] = ACTIONS(943), - [sym__endfor] = ACTIONS(943), - [sym__while] = ACTIONS(943), - [sym__if] = ACTIONS(943), - [sym__try] = ACTIONS(943), - [sym__const] = ACTIONS(943), - [sym__normal] = ACTIONS(943), - [sym__return] = ACTIONS(943), - [sym__perl] = ACTIONS(943), - [sym__lua] = ACTIONS(943), - [sym__ruby] = ACTIONS(943), - [sym__python] = ACTIONS(943), - [sym__throw] = ACTIONS(943), - [sym__execute] = ACTIONS(943), - [sym__autocmd] = ACTIONS(943), - [sym__silent] = ACTIONS(943), - [sym__echo] = ACTIONS(943), - [sym__echon] = ACTIONS(943), - [sym__echohl] = ACTIONS(943), - [sym__echomsg] = ACTIONS(943), - [sym__echoerr] = ACTIONS(943), - [sym__map] = ACTIONS(943), - [sym__nmap] = ACTIONS(943), - [sym__vmap] = ACTIONS(943), - [sym__xmap] = ACTIONS(943), - [sym__smap] = ACTIONS(943), - [sym__omap] = ACTIONS(943), - [sym__imap] = ACTIONS(943), - [sym__lmap] = ACTIONS(943), - [sym__cmap] = ACTIONS(943), - [sym__tmap] = ACTIONS(943), - [sym__noremap] = ACTIONS(943), - [sym__vnoremap] = ACTIONS(943), - [sym__nnoremap] = ACTIONS(943), - [sym__xnoremap] = ACTIONS(943), - [sym__snoremap] = ACTIONS(943), - [sym__onoremap] = ACTIONS(943), - [sym__inoremap] = ACTIONS(943), - [sym__lnoremap] = ACTIONS(943), - [sym__cnoremap] = ACTIONS(943), - [sym__tnoremap] = ACTIONS(943), - [sym__augroup] = ACTIONS(943), - [sym__highlight] = ACTIONS(943), - [sym__syntax] = ACTIONS(943), - [sym__set] = ACTIONS(943), - [sym__setlocal] = ACTIONS(943), - [sym__setfiletype] = ACTIONS(943), - [sym__browse] = ACTIONS(943), - [sym__options] = ACTIONS(943), - [sym__startinsert] = ACTIONS(943), - [sym__stopinsert] = ACTIONS(943), - [sym__scriptencoding] = ACTIONS(943), - [sym__source] = ACTIONS(943), - [sym__global] = ACTIONS(943), - [sym__colorscheme] = ACTIONS(943), - [sym__comclear] = ACTIONS(943), - [sym__delcommand] = ACTIONS(943), - [sym__runtime] = ACTIONS(943), - [sym__wincmd] = ACTIONS(943), - [sym__sign] = ACTIONS(943), - [sym__filetype] = ACTIONS(943), - [sym__let] = ACTIONS(943), - [sym__unlet] = ACTIONS(943), - [sym__call] = ACTIONS(943), - [sym__break] = ACTIONS(943), - [sym__continue] = ACTIONS(943), - [sym_unknown_command_name] = ACTIONS(943), + [205] = { + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(933), + [sym_command_name] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [sym_mark] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_BSLASH_SLASH] = ACTIONS(931), + [anon_sym_BSLASH_QMARK] = ACTIONS(931), + [anon_sym_BSLASH_AMP] = ACTIONS(931), + [anon_sym_LT2] = ACTIONS(933), + [anon_sym_STAR2] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_is] = ACTIONS(933), + [anon_sym_isnot] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_GT2] = ACTIONS(933), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_EQ_TILDE] = ACTIONS(931), + [anon_sym_BANG_TILDE] = ACTIONS(931), + [sym_integer_literal] = ACTIONS(931), + [anon_sym_LBRACK2] = ACTIONS(931), + [sym_register] = ACTIONS(931), + [sym__newline_or_pipe] = ACTIONS(931), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(931), + [sym__function] = ACTIONS(931), + [sym__for] = ACTIONS(931), + [sym__endfor] = ACTIONS(931), + [sym__while] = ACTIONS(931), + [sym__if] = ACTIONS(931), + [sym__try] = ACTIONS(931), + [sym__const] = ACTIONS(931), + [sym__normal] = ACTIONS(931), + [sym__return] = ACTIONS(931), + [sym__perl] = ACTIONS(931), + [sym__lua] = ACTIONS(931), + [sym__ruby] = ACTIONS(931), + [sym__python] = ACTIONS(931), + [sym__throw] = ACTIONS(931), + [sym__execute] = ACTIONS(931), + [sym__autocmd] = ACTIONS(931), + [sym__silent] = ACTIONS(931), + [sym__echo] = ACTIONS(931), + [sym__echon] = ACTIONS(931), + [sym__echohl] = ACTIONS(931), + [sym__echomsg] = ACTIONS(931), + [sym__echoerr] = ACTIONS(931), + [sym__map] = ACTIONS(931), + [sym__nmap] = ACTIONS(931), + [sym__vmap] = ACTIONS(931), + [sym__xmap] = ACTIONS(931), + [sym__smap] = ACTIONS(931), + [sym__omap] = ACTIONS(931), + [sym__imap] = ACTIONS(931), + [sym__lmap] = ACTIONS(931), + [sym__cmap] = ACTIONS(931), + [sym__tmap] = ACTIONS(931), + [sym__noremap] = ACTIONS(931), + [sym__vnoremap] = ACTIONS(931), + [sym__nnoremap] = ACTIONS(931), + [sym__xnoremap] = ACTIONS(931), + [sym__snoremap] = ACTIONS(931), + [sym__onoremap] = ACTIONS(931), + [sym__inoremap] = ACTIONS(931), + [sym__lnoremap] = ACTIONS(931), + [sym__cnoremap] = ACTIONS(931), + [sym__tnoremap] = ACTIONS(931), + [sym__augroup] = ACTIONS(931), + [sym__highlight] = ACTIONS(931), + [sym__syntax] = ACTIONS(931), + [sym__set] = ACTIONS(931), + [sym__setlocal] = ACTIONS(931), + [sym__setfiletype] = ACTIONS(931), + [sym__browse] = ACTIONS(931), + [sym__options] = ACTIONS(931), + [sym__startinsert] = ACTIONS(931), + [sym__stopinsert] = ACTIONS(931), + [sym__scriptencoding] = ACTIONS(931), + [sym__source] = ACTIONS(931), + [sym__global] = ACTIONS(931), + [sym__colorscheme] = ACTIONS(931), + [sym__comclear] = ACTIONS(931), + [sym__delcommand] = ACTIONS(931), + [sym__runtime] = ACTIONS(931), + [sym__wincmd] = ACTIONS(931), + [sym__sign] = ACTIONS(931), + [sym__filetype] = ACTIONS(931), + [sym__let] = ACTIONS(931), + [sym__unlet] = ACTIONS(931), + [sym__call] = ACTIONS(931), + [sym__break] = ACTIONS(931), + [sym__continue] = ACTIONS(931), + [sym_unknown_command_name] = ACTIONS(931), }, - [210] = { - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(973), - [sym_command_name] = ACTIONS(971), - [anon_sym_QMARK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [sym_mark] = ACTIONS(971), - [anon_sym_PERCENT] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_DOT2] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_BSLASH_SLASH] = ACTIONS(971), - [anon_sym_BSLASH_QMARK] = ACTIONS(971), - [anon_sym_BSLASH_AMP] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_is] = ACTIONS(973), - [anon_sym_isnot] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_GT2] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_EQ_TILDE] = ACTIONS(971), - [anon_sym_BANG_TILDE] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [sym_register] = ACTIONS(971), - [sym__newline_or_pipe] = ACTIONS(971), + [206] = { + [anon_sym_COLON] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(965), + [sym_command_name] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [sym_mark] = ACTIONS(963), + [anon_sym_PERCENT] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_DOT2] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_BSLASH_SLASH] = ACTIONS(963), + [anon_sym_BSLASH_QMARK] = ACTIONS(963), + [anon_sym_BSLASH_AMP] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(965), + [anon_sym_STAR2] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(963), + [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_is] = ACTIONS(965), + [anon_sym_isnot] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_EQ_TILDE] = ACTIONS(963), + [anon_sym_BANG_TILDE] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(963), + [anon_sym_LBRACK2] = ACTIONS(963), + [sym_register] = ACTIONS(963), + [sym__newline_or_pipe] = ACTIONS(963), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(971), - [sym__function] = ACTIONS(971), - [sym__for] = ACTIONS(971), - [sym__endfor] = ACTIONS(971), - [sym__while] = ACTIONS(971), - [sym__if] = ACTIONS(971), - [sym__try] = ACTIONS(971), - [sym__const] = ACTIONS(971), - [sym__normal] = ACTIONS(971), - [sym__return] = ACTIONS(971), - [sym__perl] = ACTIONS(971), - [sym__lua] = ACTIONS(971), - [sym__ruby] = ACTIONS(971), - [sym__python] = ACTIONS(971), - [sym__throw] = ACTIONS(971), - [sym__execute] = ACTIONS(971), - [sym__autocmd] = ACTIONS(971), - [sym__silent] = ACTIONS(971), - [sym__echo] = ACTIONS(971), - [sym__echon] = ACTIONS(971), - [sym__echohl] = ACTIONS(971), - [sym__echomsg] = ACTIONS(971), - [sym__echoerr] = ACTIONS(971), - [sym__map] = ACTIONS(971), - [sym__nmap] = ACTIONS(971), - [sym__vmap] = ACTIONS(971), - [sym__xmap] = ACTIONS(971), - [sym__smap] = ACTIONS(971), - [sym__omap] = ACTIONS(971), - [sym__imap] = ACTIONS(971), - [sym__lmap] = ACTIONS(971), - [sym__cmap] = ACTIONS(971), - [sym__tmap] = ACTIONS(971), - [sym__noremap] = ACTIONS(971), - [sym__vnoremap] = ACTIONS(971), - [sym__nnoremap] = ACTIONS(971), - [sym__xnoremap] = ACTIONS(971), - [sym__snoremap] = ACTIONS(971), - [sym__onoremap] = ACTIONS(971), - [sym__inoremap] = ACTIONS(971), - [sym__lnoremap] = ACTIONS(971), - [sym__cnoremap] = ACTIONS(971), - [sym__tnoremap] = ACTIONS(971), - [sym__augroup] = ACTIONS(971), - [sym__highlight] = ACTIONS(971), - [sym__syntax] = ACTIONS(971), - [sym__set] = ACTIONS(971), - [sym__setlocal] = ACTIONS(971), - [sym__setfiletype] = ACTIONS(971), - [sym__browse] = ACTIONS(971), - [sym__options] = ACTIONS(971), - [sym__startinsert] = ACTIONS(971), - [sym__stopinsert] = ACTIONS(971), - [sym__scriptencoding] = ACTIONS(971), - [sym__source] = ACTIONS(971), - [sym__global] = ACTIONS(971), - [sym__colorscheme] = ACTIONS(971), - [sym__comclear] = ACTIONS(971), - [sym__delcommand] = ACTIONS(971), - [sym__runtime] = ACTIONS(971), - [sym__wincmd] = ACTIONS(971), - [sym__sign] = ACTIONS(971), - [sym__filetype] = ACTIONS(971), - [sym__let] = ACTIONS(971), - [sym__unlet] = ACTIONS(971), - [sym__call] = ACTIONS(971), - [sym__break] = ACTIONS(971), - [sym__continue] = ACTIONS(971), - [sym_unknown_command_name] = ACTIONS(971), + [sym_comment] = ACTIONS(963), + [sym__function] = ACTIONS(963), + [sym__for] = ACTIONS(963), + [sym__endfor] = ACTIONS(963), + [sym__while] = ACTIONS(963), + [sym__if] = ACTIONS(963), + [sym__try] = ACTIONS(963), + [sym__const] = ACTIONS(963), + [sym__normal] = ACTIONS(963), + [sym__return] = ACTIONS(963), + [sym__perl] = ACTIONS(963), + [sym__lua] = ACTIONS(963), + [sym__ruby] = ACTIONS(963), + [sym__python] = ACTIONS(963), + [sym__throw] = ACTIONS(963), + [sym__execute] = ACTIONS(963), + [sym__autocmd] = ACTIONS(963), + [sym__silent] = ACTIONS(963), + [sym__echo] = ACTIONS(963), + [sym__echon] = ACTIONS(963), + [sym__echohl] = ACTIONS(963), + [sym__echomsg] = ACTIONS(963), + [sym__echoerr] = ACTIONS(963), + [sym__map] = ACTIONS(963), + [sym__nmap] = ACTIONS(963), + [sym__vmap] = ACTIONS(963), + [sym__xmap] = ACTIONS(963), + [sym__smap] = ACTIONS(963), + [sym__omap] = ACTIONS(963), + [sym__imap] = ACTIONS(963), + [sym__lmap] = ACTIONS(963), + [sym__cmap] = ACTIONS(963), + [sym__tmap] = ACTIONS(963), + [sym__noremap] = ACTIONS(963), + [sym__vnoremap] = ACTIONS(963), + [sym__nnoremap] = ACTIONS(963), + [sym__xnoremap] = ACTIONS(963), + [sym__snoremap] = ACTIONS(963), + [sym__onoremap] = ACTIONS(963), + [sym__inoremap] = ACTIONS(963), + [sym__lnoremap] = ACTIONS(963), + [sym__cnoremap] = ACTIONS(963), + [sym__tnoremap] = ACTIONS(963), + [sym__augroup] = ACTIONS(963), + [sym__highlight] = ACTIONS(963), + [sym__syntax] = ACTIONS(963), + [sym__set] = ACTIONS(963), + [sym__setlocal] = ACTIONS(963), + [sym__setfiletype] = ACTIONS(963), + [sym__browse] = ACTIONS(963), + [sym__options] = ACTIONS(963), + [sym__startinsert] = ACTIONS(963), + [sym__stopinsert] = ACTIONS(963), + [sym__scriptencoding] = ACTIONS(963), + [sym__source] = ACTIONS(963), + [sym__global] = ACTIONS(963), + [sym__colorscheme] = ACTIONS(963), + [sym__comclear] = ACTIONS(963), + [sym__delcommand] = ACTIONS(963), + [sym__runtime] = ACTIONS(963), + [sym__wincmd] = ACTIONS(963), + [sym__sign] = ACTIONS(963), + [sym__filetype] = ACTIONS(963), + [sym__let] = ACTIONS(963), + [sym__unlet] = ACTIONS(963), + [sym__call] = ACTIONS(963), + [sym__break] = ACTIONS(963), + [sym__continue] = ACTIONS(963), + [sym_unknown_command_name] = ACTIONS(963), }, - [211] = { + [207] = { + [anon_sym_COLON] = ACTIONS(919), + [anon_sym_DOT] = ACTIONS(921), + [sym_command_name] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [sym_mark] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_DOT2] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_BSLASH_SLASH] = ACTIONS(919), + [anon_sym_BSLASH_QMARK] = ACTIONS(919), + [anon_sym_BSLASH_AMP] = ACTIONS(919), + [anon_sym_LT2] = ACTIONS(921), + [anon_sym_STAR2] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_DOT_DOT] = ACTIONS(919), + [anon_sym_is] = ACTIONS(921), + [anon_sym_isnot] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_GT2] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_EQ_TILDE] = ACTIONS(919), + [anon_sym_BANG_TILDE] = ACTIONS(919), + [sym_integer_literal] = ACTIONS(919), + [anon_sym_LBRACK2] = ACTIONS(919), + [sym_register] = ACTIONS(919), + [sym__newline_or_pipe] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(919), + [sym__function] = ACTIONS(919), + [sym__for] = ACTIONS(919), + [sym__endfor] = ACTIONS(919), + [sym__while] = ACTIONS(919), + [sym__if] = ACTIONS(919), + [sym__try] = ACTIONS(919), + [sym__const] = ACTIONS(919), + [sym__normal] = ACTIONS(919), + [sym__return] = ACTIONS(919), + [sym__perl] = ACTIONS(919), + [sym__lua] = ACTIONS(919), + [sym__ruby] = ACTIONS(919), + [sym__python] = ACTIONS(919), + [sym__throw] = ACTIONS(919), + [sym__execute] = ACTIONS(919), + [sym__autocmd] = ACTIONS(919), + [sym__silent] = ACTIONS(919), + [sym__echo] = ACTIONS(919), + [sym__echon] = ACTIONS(919), + [sym__echohl] = ACTIONS(919), + [sym__echomsg] = ACTIONS(919), + [sym__echoerr] = ACTIONS(919), + [sym__map] = ACTIONS(919), + [sym__nmap] = ACTIONS(919), + [sym__vmap] = ACTIONS(919), + [sym__xmap] = ACTIONS(919), + [sym__smap] = ACTIONS(919), + [sym__omap] = ACTIONS(919), + [sym__imap] = ACTIONS(919), + [sym__lmap] = ACTIONS(919), + [sym__cmap] = ACTIONS(919), + [sym__tmap] = ACTIONS(919), + [sym__noremap] = ACTIONS(919), + [sym__vnoremap] = ACTIONS(919), + [sym__nnoremap] = ACTIONS(919), + [sym__xnoremap] = ACTIONS(919), + [sym__snoremap] = ACTIONS(919), + [sym__onoremap] = ACTIONS(919), + [sym__inoremap] = ACTIONS(919), + [sym__lnoremap] = ACTIONS(919), + [sym__cnoremap] = ACTIONS(919), + [sym__tnoremap] = ACTIONS(919), + [sym__augroup] = ACTIONS(919), + [sym__highlight] = ACTIONS(919), + [sym__syntax] = ACTIONS(919), + [sym__set] = ACTIONS(919), + [sym__setlocal] = ACTIONS(919), + [sym__setfiletype] = ACTIONS(919), + [sym__browse] = ACTIONS(919), + [sym__options] = ACTIONS(919), + [sym__startinsert] = ACTIONS(919), + [sym__stopinsert] = ACTIONS(919), + [sym__scriptencoding] = ACTIONS(919), + [sym__source] = ACTIONS(919), + [sym__global] = ACTIONS(919), + [sym__colorscheme] = ACTIONS(919), + [sym__comclear] = ACTIONS(919), + [sym__delcommand] = ACTIONS(919), + [sym__runtime] = ACTIONS(919), + [sym__wincmd] = ACTIONS(919), + [sym__sign] = ACTIONS(919), + [sym__filetype] = ACTIONS(919), + [sym__let] = ACTIONS(919), + [sym__unlet] = ACTIONS(919), + [sym__call] = ACTIONS(919), + [sym__break] = ACTIONS(919), + [sym__continue] = ACTIONS(919), + [sym_unknown_command_name] = ACTIONS(919), + }, + [208] = { + [anon_sym_COLON] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(925), + [sym_command_name] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [sym_mark] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_DOT2] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_BSLASH_SLASH] = ACTIONS(923), + [anon_sym_BSLASH_QMARK] = ACTIONS(923), + [anon_sym_BSLASH_AMP] = ACTIONS(923), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_STAR2] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_is] = ACTIONS(925), + [anon_sym_isnot] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_GT2] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_EQ_TILDE] = ACTIONS(923), + [anon_sym_BANG_TILDE] = ACTIONS(923), + [sym_integer_literal] = ACTIONS(923), + [anon_sym_LBRACK2] = ACTIONS(923), + [sym_register] = ACTIONS(923), + [sym__newline_or_pipe] = ACTIONS(923), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(923), + [sym__function] = ACTIONS(923), + [sym__for] = ACTIONS(923), + [sym__endfor] = ACTIONS(923), + [sym__while] = ACTIONS(923), + [sym__if] = ACTIONS(923), + [sym__try] = ACTIONS(923), + [sym__const] = ACTIONS(923), + [sym__normal] = ACTIONS(923), + [sym__return] = ACTIONS(923), + [sym__perl] = ACTIONS(923), + [sym__lua] = ACTIONS(923), + [sym__ruby] = ACTIONS(923), + [sym__python] = ACTIONS(923), + [sym__throw] = ACTIONS(923), + [sym__execute] = ACTIONS(923), + [sym__autocmd] = ACTIONS(923), + [sym__silent] = ACTIONS(923), + [sym__echo] = ACTIONS(923), + [sym__echon] = ACTIONS(923), + [sym__echohl] = ACTIONS(923), + [sym__echomsg] = ACTIONS(923), + [sym__echoerr] = ACTIONS(923), + [sym__map] = ACTIONS(923), + [sym__nmap] = ACTIONS(923), + [sym__vmap] = ACTIONS(923), + [sym__xmap] = ACTIONS(923), + [sym__smap] = ACTIONS(923), + [sym__omap] = ACTIONS(923), + [sym__imap] = ACTIONS(923), + [sym__lmap] = ACTIONS(923), + [sym__cmap] = ACTIONS(923), + [sym__tmap] = ACTIONS(923), + [sym__noremap] = ACTIONS(923), + [sym__vnoremap] = ACTIONS(923), + [sym__nnoremap] = ACTIONS(923), + [sym__xnoremap] = ACTIONS(923), + [sym__snoremap] = ACTIONS(923), + [sym__onoremap] = ACTIONS(923), + [sym__inoremap] = ACTIONS(923), + [sym__lnoremap] = ACTIONS(923), + [sym__cnoremap] = ACTIONS(923), + [sym__tnoremap] = ACTIONS(923), + [sym__augroup] = ACTIONS(923), + [sym__highlight] = ACTIONS(923), + [sym__syntax] = ACTIONS(923), + [sym__set] = ACTIONS(923), + [sym__setlocal] = ACTIONS(923), + [sym__setfiletype] = ACTIONS(923), + [sym__browse] = ACTIONS(923), + [sym__options] = ACTIONS(923), + [sym__startinsert] = ACTIONS(923), + [sym__stopinsert] = ACTIONS(923), + [sym__scriptencoding] = ACTIONS(923), + [sym__source] = ACTIONS(923), + [sym__global] = ACTIONS(923), + [sym__colorscheme] = ACTIONS(923), + [sym__comclear] = ACTIONS(923), + [sym__delcommand] = ACTIONS(923), + [sym__runtime] = ACTIONS(923), + [sym__wincmd] = ACTIONS(923), + [sym__sign] = ACTIONS(923), + [sym__filetype] = ACTIONS(923), + [sym__let] = ACTIONS(923), + [sym__unlet] = ACTIONS(923), + [sym__call] = ACTIONS(923), + [sym__break] = ACTIONS(923), + [sym__continue] = ACTIONS(923), + [sym_unknown_command_name] = ACTIONS(923), + }, + [209] = { [anon_sym_COLON] = ACTIONS(987), [anon_sym_DOT] = ACTIONS(989), [sym_command_name] = ACTIONS(987), @@ -54716,7 +53759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(987), [anon_sym_BANG_TILDE] = ACTIONS(987), [sym_integer_literal] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_LBRACK2] = ACTIONS(987), [sym_register] = ACTIONS(987), [sym__newline_or_pipe] = ACTIONS(987), [sym__line_continuation] = ACTIONS(3), @@ -54790,320 +53833,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__continue] = ACTIONS(987), [sym_unknown_command_name] = ACTIONS(987), }, + [210] = { + [anon_sym_COLON] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(917), + [sym_command_name] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(915), + [sym_mark] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_DOT2] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(915), + [anon_sym_BSLASH_SLASH] = ACTIONS(915), + [anon_sym_BSLASH_QMARK] = ACTIONS(915), + [anon_sym_BSLASH_AMP] = ACTIONS(915), + [anon_sym_LT2] = ACTIONS(917), + [anon_sym_STAR2] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(915), + [anon_sym_AMP_AMP] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_is] = ACTIONS(917), + [anon_sym_isnot] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(915), + [anon_sym_BANG_EQ] = ACTIONS(915), + [anon_sym_GT2] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(915), + [anon_sym_EQ_TILDE] = ACTIONS(915), + [anon_sym_BANG_TILDE] = ACTIONS(915), + [sym_integer_literal] = ACTIONS(915), + [anon_sym_LBRACK2] = ACTIONS(915), + [sym_register] = ACTIONS(915), + [sym__newline_or_pipe] = ACTIONS(915), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(915), + [sym__function] = ACTIONS(915), + [sym__for] = ACTIONS(915), + [sym__endfor] = ACTIONS(915), + [sym__while] = ACTIONS(915), + [sym__if] = ACTIONS(915), + [sym__try] = ACTIONS(915), + [sym__const] = ACTIONS(915), + [sym__normal] = ACTIONS(915), + [sym__return] = ACTIONS(915), + [sym__perl] = ACTIONS(915), + [sym__lua] = ACTIONS(915), + [sym__ruby] = ACTIONS(915), + [sym__python] = ACTIONS(915), + [sym__throw] = ACTIONS(915), + [sym__execute] = ACTIONS(915), + [sym__autocmd] = ACTIONS(915), + [sym__silent] = ACTIONS(915), + [sym__echo] = ACTIONS(915), + [sym__echon] = ACTIONS(915), + [sym__echohl] = ACTIONS(915), + [sym__echomsg] = ACTIONS(915), + [sym__echoerr] = ACTIONS(915), + [sym__map] = ACTIONS(915), + [sym__nmap] = ACTIONS(915), + [sym__vmap] = ACTIONS(915), + [sym__xmap] = ACTIONS(915), + [sym__smap] = ACTIONS(915), + [sym__omap] = ACTIONS(915), + [sym__imap] = ACTIONS(915), + [sym__lmap] = ACTIONS(915), + [sym__cmap] = ACTIONS(915), + [sym__tmap] = ACTIONS(915), + [sym__noremap] = ACTIONS(915), + [sym__vnoremap] = ACTIONS(915), + [sym__nnoremap] = ACTIONS(915), + [sym__xnoremap] = ACTIONS(915), + [sym__snoremap] = ACTIONS(915), + [sym__onoremap] = ACTIONS(915), + [sym__inoremap] = ACTIONS(915), + [sym__lnoremap] = ACTIONS(915), + [sym__cnoremap] = ACTIONS(915), + [sym__tnoremap] = ACTIONS(915), + [sym__augroup] = ACTIONS(915), + [sym__highlight] = ACTIONS(915), + [sym__syntax] = ACTIONS(915), + [sym__set] = ACTIONS(915), + [sym__setlocal] = ACTIONS(915), + [sym__setfiletype] = ACTIONS(915), + [sym__browse] = ACTIONS(915), + [sym__options] = ACTIONS(915), + [sym__startinsert] = ACTIONS(915), + [sym__stopinsert] = ACTIONS(915), + [sym__scriptencoding] = ACTIONS(915), + [sym__source] = ACTIONS(915), + [sym__global] = ACTIONS(915), + [sym__colorscheme] = ACTIONS(915), + [sym__comclear] = ACTIONS(915), + [sym__delcommand] = ACTIONS(915), + [sym__runtime] = ACTIONS(915), + [sym__wincmd] = ACTIONS(915), + [sym__sign] = ACTIONS(915), + [sym__filetype] = ACTIONS(915), + [sym__let] = ACTIONS(915), + [sym__unlet] = ACTIONS(915), + [sym__call] = ACTIONS(915), + [sym__break] = ACTIONS(915), + [sym__continue] = ACTIONS(915), + [sym_unknown_command_name] = ACTIONS(915), + }, + [211] = { + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(937), + [sym_command_name] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [sym_mark] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_DOT2] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_BSLASH_SLASH] = ACTIONS(935), + [anon_sym_BSLASH_QMARK] = ACTIONS(935), + [anon_sym_BSLASH_AMP] = ACTIONS(935), + [anon_sym_LT2] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_is] = ACTIONS(937), + [anon_sym_isnot] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_GT2] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_EQ_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(935), + [anon_sym_LBRACK2] = ACTIONS(935), + [sym_register] = ACTIONS(935), + [sym__newline_or_pipe] = ACTIONS(935), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(935), + [sym__function] = ACTIONS(935), + [sym__for] = ACTIONS(935), + [sym__endfor] = ACTIONS(935), + [sym__while] = ACTIONS(935), + [sym__if] = ACTIONS(935), + [sym__try] = ACTIONS(935), + [sym__const] = ACTIONS(935), + [sym__normal] = ACTIONS(935), + [sym__return] = ACTIONS(935), + [sym__perl] = ACTIONS(935), + [sym__lua] = ACTIONS(935), + [sym__ruby] = ACTIONS(935), + [sym__python] = ACTIONS(935), + [sym__throw] = ACTIONS(935), + [sym__execute] = ACTIONS(935), + [sym__autocmd] = ACTIONS(935), + [sym__silent] = ACTIONS(935), + [sym__echo] = ACTIONS(935), + [sym__echon] = ACTIONS(935), + [sym__echohl] = ACTIONS(935), + [sym__echomsg] = ACTIONS(935), + [sym__echoerr] = ACTIONS(935), + [sym__map] = ACTIONS(935), + [sym__nmap] = ACTIONS(935), + [sym__vmap] = ACTIONS(935), + [sym__xmap] = ACTIONS(935), + [sym__smap] = ACTIONS(935), + [sym__omap] = ACTIONS(935), + [sym__imap] = ACTIONS(935), + [sym__lmap] = ACTIONS(935), + [sym__cmap] = ACTIONS(935), + [sym__tmap] = ACTIONS(935), + [sym__noremap] = ACTIONS(935), + [sym__vnoremap] = ACTIONS(935), + [sym__nnoremap] = ACTIONS(935), + [sym__xnoremap] = ACTIONS(935), + [sym__snoremap] = ACTIONS(935), + [sym__onoremap] = ACTIONS(935), + [sym__inoremap] = ACTIONS(935), + [sym__lnoremap] = ACTIONS(935), + [sym__cnoremap] = ACTIONS(935), + [sym__tnoremap] = ACTIONS(935), + [sym__augroup] = ACTIONS(935), + [sym__highlight] = ACTIONS(935), + [sym__syntax] = ACTIONS(935), + [sym__set] = ACTIONS(935), + [sym__setlocal] = ACTIONS(935), + [sym__setfiletype] = ACTIONS(935), + [sym__browse] = ACTIONS(935), + [sym__options] = ACTIONS(935), + [sym__startinsert] = ACTIONS(935), + [sym__stopinsert] = ACTIONS(935), + [sym__scriptencoding] = ACTIONS(935), + [sym__source] = ACTIONS(935), + [sym__global] = ACTIONS(935), + [sym__colorscheme] = ACTIONS(935), + [sym__comclear] = ACTIONS(935), + [sym__delcommand] = ACTIONS(935), + [sym__runtime] = ACTIONS(935), + [sym__wincmd] = ACTIONS(935), + [sym__sign] = ACTIONS(935), + [sym__filetype] = ACTIONS(935), + [sym__let] = ACTIONS(935), + [sym__unlet] = ACTIONS(935), + [sym__call] = ACTIONS(935), + [sym__break] = ACTIONS(935), + [sym__continue] = ACTIONS(935), + [sym_unknown_command_name] = ACTIONS(935), + }, [212] = { - [anon_sym_COLON] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(957), - [sym_command_name] = ACTIONS(955), - [anon_sym_QMARK] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), - [sym_mark] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_DOT2] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_BSLASH_SLASH] = ACTIONS(955), - [anon_sym_BSLASH_QMARK] = ACTIONS(955), - [anon_sym_BSLASH_AMP] = ACTIONS(955), - [anon_sym_LT2] = ACTIONS(957), - [anon_sym_STAR2] = ACTIONS(955), - [anon_sym_PIPE_PIPE] = ACTIONS(955), - [anon_sym_AMP_AMP] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_is] = ACTIONS(957), - [anon_sym_isnot] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_BANG_EQ] = ACTIONS(955), - [anon_sym_GT2] = ACTIONS(957), - [anon_sym_GT_EQ] = ACTIONS(955), - [anon_sym_LT_EQ] = ACTIONS(955), - [anon_sym_EQ_TILDE] = ACTIONS(955), - [anon_sym_BANG_TILDE] = ACTIONS(955), - [sym_integer_literal] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(955), - [sym_register] = ACTIONS(955), - [sym__newline_or_pipe] = ACTIONS(955), + [anon_sym_COLON] = ACTIONS(939), + [anon_sym_DOT] = ACTIONS(167), + [sym_command_name] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(171), + [sym_mark] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_DOT2] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_BSLASH_SLASH] = ACTIONS(939), + [anon_sym_BSLASH_QMARK] = ACTIONS(939), + [anon_sym_BSLASH_AMP] = ACTIONS(939), + [anon_sym_LT2] = ACTIONS(941), + [anon_sym_STAR2] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_is] = ACTIONS(941), + [anon_sym_isnot] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_GT2] = ACTIONS(941), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_EQ_TILDE] = ACTIONS(939), + [anon_sym_BANG_TILDE] = ACTIONS(939), + [sym_integer_literal] = ACTIONS(939), + [anon_sym_LBRACK2] = ACTIONS(199), + [sym_register] = ACTIONS(939), + [sym__newline_or_pipe] = ACTIONS(939), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(955), - [sym__function] = ACTIONS(955), - [sym__for] = ACTIONS(955), - [sym__endfor] = ACTIONS(955), - [sym__while] = ACTIONS(955), - [sym__if] = ACTIONS(955), - [sym__try] = ACTIONS(955), - [sym__const] = ACTIONS(955), - [sym__normal] = ACTIONS(955), - [sym__return] = ACTIONS(955), - [sym__perl] = ACTIONS(955), - [sym__lua] = ACTIONS(955), - [sym__ruby] = ACTIONS(955), - [sym__python] = ACTIONS(955), - [sym__throw] = ACTIONS(955), - [sym__execute] = ACTIONS(955), - [sym__autocmd] = ACTIONS(955), - [sym__silent] = ACTIONS(955), - [sym__echo] = ACTIONS(955), - [sym__echon] = ACTIONS(955), - [sym__echohl] = ACTIONS(955), - [sym__echomsg] = ACTIONS(955), - [sym__echoerr] = ACTIONS(955), - [sym__map] = ACTIONS(955), - [sym__nmap] = ACTIONS(955), - [sym__vmap] = ACTIONS(955), - [sym__xmap] = ACTIONS(955), - [sym__smap] = ACTIONS(955), - [sym__omap] = ACTIONS(955), - [sym__imap] = ACTIONS(955), - [sym__lmap] = ACTIONS(955), - [sym__cmap] = ACTIONS(955), - [sym__tmap] = ACTIONS(955), - [sym__noremap] = ACTIONS(955), - [sym__vnoremap] = ACTIONS(955), - [sym__nnoremap] = ACTIONS(955), - [sym__xnoremap] = ACTIONS(955), - [sym__snoremap] = ACTIONS(955), - [sym__onoremap] = ACTIONS(955), - [sym__inoremap] = ACTIONS(955), - [sym__lnoremap] = ACTIONS(955), - [sym__cnoremap] = ACTIONS(955), - [sym__tnoremap] = ACTIONS(955), - [sym__augroup] = ACTIONS(955), - [sym__highlight] = ACTIONS(955), - [sym__syntax] = ACTIONS(955), - [sym__set] = ACTIONS(955), - [sym__setlocal] = ACTIONS(955), - [sym__setfiletype] = ACTIONS(955), - [sym__browse] = ACTIONS(955), - [sym__options] = ACTIONS(955), - [sym__startinsert] = ACTIONS(955), - [sym__stopinsert] = ACTIONS(955), - [sym__scriptencoding] = ACTIONS(955), - [sym__source] = ACTIONS(955), - [sym__global] = ACTIONS(955), - [sym__colorscheme] = ACTIONS(955), - [sym__comclear] = ACTIONS(955), - [sym__delcommand] = ACTIONS(955), - [sym__runtime] = ACTIONS(955), - [sym__wincmd] = ACTIONS(955), - [sym__sign] = ACTIONS(955), - [sym__filetype] = ACTIONS(955), - [sym__let] = ACTIONS(955), - [sym__unlet] = ACTIONS(955), - [sym__call] = ACTIONS(955), - [sym__break] = ACTIONS(955), - [sym__continue] = ACTIONS(955), - [sym_unknown_command_name] = ACTIONS(955), + [sym_comment] = ACTIONS(939), + [sym__function] = ACTIONS(939), + [sym__for] = ACTIONS(939), + [sym__endfor] = ACTIONS(939), + [sym__while] = ACTIONS(939), + [sym__if] = ACTIONS(939), + [sym__try] = ACTIONS(939), + [sym__const] = ACTIONS(939), + [sym__normal] = ACTIONS(939), + [sym__return] = ACTIONS(939), + [sym__perl] = ACTIONS(939), + [sym__lua] = ACTIONS(939), + [sym__ruby] = ACTIONS(939), + [sym__python] = ACTIONS(939), + [sym__throw] = ACTIONS(939), + [sym__execute] = ACTIONS(939), + [sym__autocmd] = ACTIONS(939), + [sym__silent] = ACTIONS(939), + [sym__echo] = ACTIONS(939), + [sym__echon] = ACTIONS(939), + [sym__echohl] = ACTIONS(939), + [sym__echomsg] = ACTIONS(939), + [sym__echoerr] = ACTIONS(939), + [sym__map] = ACTIONS(939), + [sym__nmap] = ACTIONS(939), + [sym__vmap] = ACTIONS(939), + [sym__xmap] = ACTIONS(939), + [sym__smap] = ACTIONS(939), + [sym__omap] = ACTIONS(939), + [sym__imap] = ACTIONS(939), + [sym__lmap] = ACTIONS(939), + [sym__cmap] = ACTIONS(939), + [sym__tmap] = ACTIONS(939), + [sym__noremap] = ACTIONS(939), + [sym__vnoremap] = ACTIONS(939), + [sym__nnoremap] = ACTIONS(939), + [sym__xnoremap] = ACTIONS(939), + [sym__snoremap] = ACTIONS(939), + [sym__onoremap] = ACTIONS(939), + [sym__inoremap] = ACTIONS(939), + [sym__lnoremap] = ACTIONS(939), + [sym__cnoremap] = ACTIONS(939), + [sym__tnoremap] = ACTIONS(939), + [sym__augroup] = ACTIONS(939), + [sym__highlight] = ACTIONS(939), + [sym__syntax] = ACTIONS(939), + [sym__set] = ACTIONS(939), + [sym__setlocal] = ACTIONS(939), + [sym__setfiletype] = ACTIONS(939), + [sym__browse] = ACTIONS(939), + [sym__options] = ACTIONS(939), + [sym__startinsert] = ACTIONS(939), + [sym__stopinsert] = ACTIONS(939), + [sym__scriptencoding] = ACTIONS(939), + [sym__source] = ACTIONS(939), + [sym__global] = ACTIONS(939), + [sym__colorscheme] = ACTIONS(939), + [sym__comclear] = ACTIONS(939), + [sym__delcommand] = ACTIONS(939), + [sym__runtime] = ACTIONS(939), + [sym__wincmd] = ACTIONS(939), + [sym__sign] = ACTIONS(939), + [sym__filetype] = ACTIONS(939), + [sym__let] = ACTIONS(939), + [sym__unlet] = ACTIONS(939), + [sym__call] = ACTIONS(939), + [sym__break] = ACTIONS(939), + [sym__continue] = ACTIONS(939), + [sym_unknown_command_name] = ACTIONS(939), }, [213] = { - [anon_sym_COLON] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(985), - [sym_command_name] = ACTIONS(983), - [anon_sym_QMARK] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(983), - [sym_mark] = ACTIONS(983), - [anon_sym_PERCENT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_DOT2] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(983), - [anon_sym_BSLASH_SLASH] = ACTIONS(983), - [anon_sym_BSLASH_QMARK] = ACTIONS(983), - [anon_sym_BSLASH_AMP] = ACTIONS(983), - [anon_sym_LT2] = ACTIONS(985), - [anon_sym_STAR2] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_is] = ACTIONS(985), - [anon_sym_isnot] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_BANG_EQ] = ACTIONS(983), - [anon_sym_GT2] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_EQ_TILDE] = ACTIONS(983), - [anon_sym_BANG_TILDE] = ACTIONS(983), - [sym_integer_literal] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(983), - [sym_register] = ACTIONS(983), - [sym__newline_or_pipe] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(774), + [sym_command_name] = ACTIONS(783), + [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(783), + [sym_mark] = ACTIONS(783), + [anon_sym_PERCENT] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_DOT2] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(783), + [anon_sym_BSLASH_SLASH] = ACTIONS(783), + [anon_sym_BSLASH_QMARK] = ACTIONS(783), + [anon_sym_BSLASH_AMP] = ACTIONS(783), + [anon_sym_LT2] = ACTIONS(774), + [anon_sym_STAR2] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(783), + [anon_sym_is] = ACTIONS(774), + [anon_sym_isnot] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(783), + [anon_sym_BANG_EQ] = ACTIONS(783), + [anon_sym_GT2] = ACTIONS(774), + [anon_sym_GT_EQ] = ACTIONS(783), + [anon_sym_LT_EQ] = ACTIONS(783), + [anon_sym_EQ_TILDE] = ACTIONS(783), + [anon_sym_BANG_TILDE] = ACTIONS(783), + [sym_integer_literal] = ACTIONS(783), + [anon_sym_LBRACK2] = ACTIONS(783), + [sym_register] = ACTIONS(783), + [sym__newline_or_pipe] = ACTIONS(783), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(983), - [sym__function] = ACTIONS(983), - [sym__for] = ACTIONS(983), - [sym__endfor] = ACTIONS(983), - [sym__while] = ACTIONS(983), - [sym__if] = ACTIONS(983), - [sym__try] = ACTIONS(983), - [sym__const] = ACTIONS(983), - [sym__normal] = ACTIONS(983), - [sym__return] = ACTIONS(983), - [sym__perl] = ACTIONS(983), - [sym__lua] = ACTIONS(983), - [sym__ruby] = ACTIONS(983), - [sym__python] = ACTIONS(983), - [sym__throw] = ACTIONS(983), - [sym__execute] = ACTIONS(983), - [sym__autocmd] = ACTIONS(983), - [sym__silent] = ACTIONS(983), - [sym__echo] = ACTIONS(983), - [sym__echon] = ACTIONS(983), - [sym__echohl] = ACTIONS(983), - [sym__echomsg] = ACTIONS(983), - [sym__echoerr] = ACTIONS(983), - [sym__map] = ACTIONS(983), - [sym__nmap] = ACTIONS(983), - [sym__vmap] = ACTIONS(983), - [sym__xmap] = ACTIONS(983), - [sym__smap] = ACTIONS(983), - [sym__omap] = ACTIONS(983), - [sym__imap] = ACTIONS(983), - [sym__lmap] = ACTIONS(983), - [sym__cmap] = ACTIONS(983), - [sym__tmap] = ACTIONS(983), - [sym__noremap] = ACTIONS(983), - [sym__vnoremap] = ACTIONS(983), - [sym__nnoremap] = ACTIONS(983), - [sym__xnoremap] = ACTIONS(983), - [sym__snoremap] = ACTIONS(983), - [sym__onoremap] = ACTIONS(983), - [sym__inoremap] = ACTIONS(983), - [sym__lnoremap] = ACTIONS(983), - [sym__cnoremap] = ACTIONS(983), - [sym__tnoremap] = ACTIONS(983), - [sym__augroup] = ACTIONS(983), - [sym__highlight] = ACTIONS(983), - [sym__syntax] = ACTIONS(983), - [sym__set] = ACTIONS(983), - [sym__setlocal] = ACTIONS(983), - [sym__setfiletype] = ACTIONS(983), - [sym__browse] = ACTIONS(983), - [sym__options] = ACTIONS(983), - [sym__startinsert] = ACTIONS(983), - [sym__stopinsert] = ACTIONS(983), - [sym__scriptencoding] = ACTIONS(983), - [sym__source] = ACTIONS(983), - [sym__global] = ACTIONS(983), - [sym__colorscheme] = ACTIONS(983), - [sym__comclear] = ACTIONS(983), - [sym__delcommand] = ACTIONS(983), - [sym__runtime] = ACTIONS(983), - [sym__wincmd] = ACTIONS(983), - [sym__sign] = ACTIONS(983), - [sym__filetype] = ACTIONS(983), - [sym__let] = ACTIONS(983), - [sym__unlet] = ACTIONS(983), - [sym__call] = ACTIONS(983), - [sym__break] = ACTIONS(983), - [sym__continue] = ACTIONS(983), - [sym_unknown_command_name] = ACTIONS(983), + [sym_comment] = ACTIONS(783), + [sym__function] = ACTIONS(783), + [sym__for] = ACTIONS(783), + [sym__endfor] = ACTIONS(783), + [sym__while] = ACTIONS(783), + [sym__if] = ACTIONS(783), + [sym__try] = ACTIONS(783), + [sym__const] = ACTIONS(783), + [sym__normal] = ACTIONS(783), + [sym__return] = ACTIONS(783), + [sym__perl] = ACTIONS(783), + [sym__lua] = ACTIONS(783), + [sym__ruby] = ACTIONS(783), + [sym__python] = ACTIONS(783), + [sym__throw] = ACTIONS(783), + [sym__execute] = ACTIONS(783), + [sym__autocmd] = ACTIONS(783), + [sym__silent] = ACTIONS(783), + [sym__echo] = ACTIONS(783), + [sym__echon] = ACTIONS(783), + [sym__echohl] = ACTIONS(783), + [sym__echomsg] = ACTIONS(783), + [sym__echoerr] = ACTIONS(783), + [sym__map] = ACTIONS(783), + [sym__nmap] = ACTIONS(783), + [sym__vmap] = ACTIONS(783), + [sym__xmap] = ACTIONS(783), + [sym__smap] = ACTIONS(783), + [sym__omap] = ACTIONS(783), + [sym__imap] = ACTIONS(783), + [sym__lmap] = ACTIONS(783), + [sym__cmap] = ACTIONS(783), + [sym__tmap] = ACTIONS(783), + [sym__noremap] = ACTIONS(783), + [sym__vnoremap] = ACTIONS(783), + [sym__nnoremap] = ACTIONS(783), + [sym__xnoremap] = ACTIONS(783), + [sym__snoremap] = ACTIONS(783), + [sym__onoremap] = ACTIONS(783), + [sym__inoremap] = ACTIONS(783), + [sym__lnoremap] = ACTIONS(783), + [sym__cnoremap] = ACTIONS(783), + [sym__tnoremap] = ACTIONS(783), + [sym__augroup] = ACTIONS(783), + [sym__highlight] = ACTIONS(783), + [sym__syntax] = ACTIONS(783), + [sym__set] = ACTIONS(783), + [sym__setlocal] = ACTIONS(783), + [sym__setfiletype] = ACTIONS(783), + [sym__browse] = ACTIONS(783), + [sym__options] = ACTIONS(783), + [sym__startinsert] = ACTIONS(783), + [sym__stopinsert] = ACTIONS(783), + [sym__scriptencoding] = ACTIONS(783), + [sym__source] = ACTIONS(783), + [sym__global] = ACTIONS(783), + [sym__colorscheme] = ACTIONS(783), + [sym__comclear] = ACTIONS(783), + [sym__delcommand] = ACTIONS(783), + [sym__runtime] = ACTIONS(783), + [sym__wincmd] = ACTIONS(783), + [sym__sign] = ACTIONS(783), + [sym__filetype] = ACTIONS(783), + [sym__let] = ACTIONS(783), + [sym__unlet] = ACTIONS(783), + [sym__call] = ACTIONS(783), + [sym__break] = ACTIONS(783), + [sym__continue] = ACTIONS(783), + [sym_unknown_command_name] = ACTIONS(783), }, [214] = { - [anon_sym_COLON] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(981), - [sym_command_name] = ACTIONS(979), - [anon_sym_QMARK] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [sym_mark] = ACTIONS(979), - [anon_sym_PERCENT] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_DOT2] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_BSLASH_SLASH] = ACTIONS(979), - [anon_sym_BSLASH_QMARK] = ACTIONS(979), - [anon_sym_BSLASH_AMP] = ACTIONS(979), - [anon_sym_LT2] = ACTIONS(981), - [anon_sym_STAR2] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_is] = ACTIONS(981), - [anon_sym_isnot] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_GT2] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_EQ_TILDE] = ACTIONS(979), - [anon_sym_BANG_TILDE] = ACTIONS(979), - [sym_integer_literal] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [sym_register] = ACTIONS(979), - [sym__newline_or_pipe] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(869), + [sym_command_name] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [sym_mark] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_DOT2] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_BSLASH_SLASH] = ACTIONS(867), + [anon_sym_BSLASH_QMARK] = ACTIONS(867), + [anon_sym_BSLASH_AMP] = ACTIONS(867), + [anon_sym_LT2] = ACTIONS(869), + [anon_sym_STAR2] = ACTIONS(867), + [anon_sym_PIPE_PIPE] = ACTIONS(867), + [anon_sym_AMP_AMP] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(869), + [anon_sym_DOT_DOT] = ACTIONS(867), + [anon_sym_is] = ACTIONS(869), + [anon_sym_isnot] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(867), + [anon_sym_BANG_EQ] = ACTIONS(867), + [anon_sym_GT2] = ACTIONS(869), + [anon_sym_GT_EQ] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(867), + [anon_sym_EQ_TILDE] = ACTIONS(867), + [anon_sym_BANG_TILDE] = ACTIONS(867), + [sym_integer_literal] = ACTIONS(867), + [anon_sym_LBRACK2] = ACTIONS(867), + [sym_register] = ACTIONS(867), + [sym__newline_or_pipe] = ACTIONS(867), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(979), - [sym__function] = ACTIONS(979), - [sym__for] = ACTIONS(979), - [sym__endfor] = ACTIONS(979), - [sym__while] = ACTIONS(979), - [sym__if] = ACTIONS(979), - [sym__try] = ACTIONS(979), - [sym__const] = ACTIONS(979), - [sym__normal] = ACTIONS(979), - [sym__return] = ACTIONS(979), - [sym__perl] = ACTIONS(979), - [sym__lua] = ACTIONS(979), - [sym__ruby] = ACTIONS(979), - [sym__python] = ACTIONS(979), - [sym__throw] = ACTIONS(979), - [sym__execute] = ACTIONS(979), - [sym__autocmd] = ACTIONS(979), - [sym__silent] = ACTIONS(979), - [sym__echo] = ACTIONS(979), - [sym__echon] = ACTIONS(979), - [sym__echohl] = ACTIONS(979), - [sym__echomsg] = ACTIONS(979), - [sym__echoerr] = ACTIONS(979), - [sym__map] = ACTIONS(979), - [sym__nmap] = ACTIONS(979), - [sym__vmap] = ACTIONS(979), - [sym__xmap] = ACTIONS(979), - [sym__smap] = ACTIONS(979), - [sym__omap] = ACTIONS(979), - [sym__imap] = ACTIONS(979), - [sym__lmap] = ACTIONS(979), - [sym__cmap] = ACTIONS(979), - [sym__tmap] = ACTIONS(979), - [sym__noremap] = ACTIONS(979), - [sym__vnoremap] = ACTIONS(979), - [sym__nnoremap] = ACTIONS(979), - [sym__xnoremap] = ACTIONS(979), - [sym__snoremap] = ACTIONS(979), - [sym__onoremap] = ACTIONS(979), - [sym__inoremap] = ACTIONS(979), - [sym__lnoremap] = ACTIONS(979), - [sym__cnoremap] = ACTIONS(979), - [sym__tnoremap] = ACTIONS(979), - [sym__augroup] = ACTIONS(979), - [sym__highlight] = ACTIONS(979), - [sym__syntax] = ACTIONS(979), - [sym__set] = ACTIONS(979), - [sym__setlocal] = ACTIONS(979), - [sym__setfiletype] = ACTIONS(979), - [sym__browse] = ACTIONS(979), - [sym__options] = ACTIONS(979), - [sym__startinsert] = ACTIONS(979), - [sym__stopinsert] = ACTIONS(979), - [sym__scriptencoding] = ACTIONS(979), - [sym__source] = ACTIONS(979), - [sym__global] = ACTIONS(979), - [sym__colorscheme] = ACTIONS(979), - [sym__comclear] = ACTIONS(979), - [sym__delcommand] = ACTIONS(979), - [sym__runtime] = ACTIONS(979), - [sym__wincmd] = ACTIONS(979), - [sym__sign] = ACTIONS(979), - [sym__filetype] = ACTIONS(979), - [sym__let] = ACTIONS(979), - [sym__unlet] = ACTIONS(979), - [sym__call] = ACTIONS(979), - [sym__break] = ACTIONS(979), - [sym__continue] = ACTIONS(979), - [sym_unknown_command_name] = ACTIONS(979), + [sym_comment] = ACTIONS(867), + [sym__function] = ACTIONS(867), + [sym__for] = ACTIONS(867), + [sym__endfor] = ACTIONS(867), + [sym__while] = ACTIONS(867), + [sym__if] = ACTIONS(867), + [sym__try] = ACTIONS(867), + [sym__const] = ACTIONS(867), + [sym__normal] = ACTIONS(867), + [sym__return] = ACTIONS(867), + [sym__perl] = ACTIONS(867), + [sym__lua] = ACTIONS(867), + [sym__ruby] = ACTIONS(867), + [sym__python] = ACTIONS(867), + [sym__throw] = ACTIONS(867), + [sym__execute] = ACTIONS(867), + [sym__autocmd] = ACTIONS(867), + [sym__silent] = ACTIONS(867), + [sym__echo] = ACTIONS(867), + [sym__echon] = ACTIONS(867), + [sym__echohl] = ACTIONS(867), + [sym__echomsg] = ACTIONS(867), + [sym__echoerr] = ACTIONS(867), + [sym__map] = ACTIONS(867), + [sym__nmap] = ACTIONS(867), + [sym__vmap] = ACTIONS(867), + [sym__xmap] = ACTIONS(867), + [sym__smap] = ACTIONS(867), + [sym__omap] = ACTIONS(867), + [sym__imap] = ACTIONS(867), + [sym__lmap] = ACTIONS(867), + [sym__cmap] = ACTIONS(867), + [sym__tmap] = ACTIONS(867), + [sym__noremap] = ACTIONS(867), + [sym__vnoremap] = ACTIONS(867), + [sym__nnoremap] = ACTIONS(867), + [sym__xnoremap] = ACTIONS(867), + [sym__snoremap] = ACTIONS(867), + [sym__onoremap] = ACTIONS(867), + [sym__inoremap] = ACTIONS(867), + [sym__lnoremap] = ACTIONS(867), + [sym__cnoremap] = ACTIONS(867), + [sym__tnoremap] = ACTIONS(867), + [sym__augroup] = ACTIONS(867), + [sym__highlight] = ACTIONS(867), + [sym__syntax] = ACTIONS(867), + [sym__set] = ACTIONS(867), + [sym__setlocal] = ACTIONS(867), + [sym__setfiletype] = ACTIONS(867), + [sym__browse] = ACTIONS(867), + [sym__options] = ACTIONS(867), + [sym__startinsert] = ACTIONS(867), + [sym__stopinsert] = ACTIONS(867), + [sym__scriptencoding] = ACTIONS(867), + [sym__source] = ACTIONS(867), + [sym__global] = ACTIONS(867), + [sym__colorscheme] = ACTIONS(867), + [sym__comclear] = ACTIONS(867), + [sym__delcommand] = ACTIONS(867), + [sym__runtime] = ACTIONS(867), + [sym__wincmd] = ACTIONS(867), + [sym__sign] = ACTIONS(867), + [sym__filetype] = ACTIONS(867), + [sym__let] = ACTIONS(867), + [sym__unlet] = ACTIONS(867), + [sym__call] = ACTIONS(867), + [sym__break] = ACTIONS(867), + [sym__continue] = ACTIONS(867), + [sym_unknown_command_name] = ACTIONS(867), }, [215] = { [anon_sym_COLON] = ACTIONS(975), @@ -55136,7 +54389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(975), [anon_sym_BANG_TILDE] = ACTIONS(975), [sym_integer_literal] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), + [anon_sym_LBRACK2] = ACTIONS(975), [sym_register] = ACTIONS(975), [sym__newline_or_pipe] = ACTIONS(975), [sym__line_continuation] = ACTIONS(3), @@ -55211,667 +54464,877 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(975), }, [216] = { - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(969), - [sym_command_name] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [sym_mark] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_DOT2] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_BSLASH_SLASH] = ACTIONS(967), - [anon_sym_BSLASH_QMARK] = ACTIONS(967), - [anon_sym_BSLASH_AMP] = ACTIONS(967), - [anon_sym_LT2] = ACTIONS(969), - [anon_sym_STAR2] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_is] = ACTIONS(969), - [anon_sym_isnot] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_GT2] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_EQ_TILDE] = ACTIONS(967), - [anon_sym_BANG_TILDE] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [sym_register] = ACTIONS(967), - [sym__newline_or_pipe] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(949), + [sym_command_name] = ACTIONS(947), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [sym_mark] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_DOT2] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_BSLASH_SLASH] = ACTIONS(947), + [anon_sym_BSLASH_QMARK] = ACTIONS(947), + [anon_sym_BSLASH_AMP] = ACTIONS(947), + [anon_sym_LT2] = ACTIONS(949), + [anon_sym_STAR2] = ACTIONS(947), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_DOT_DOT] = ACTIONS(947), + [anon_sym_is] = ACTIONS(949), + [anon_sym_isnot] = ACTIONS(947), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_BANG_EQ] = ACTIONS(947), + [anon_sym_GT2] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_EQ_TILDE] = ACTIONS(947), + [anon_sym_BANG_TILDE] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(947), + [anon_sym_LBRACK2] = ACTIONS(947), + [sym_register] = ACTIONS(947), + [sym__newline_or_pipe] = ACTIONS(947), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(967), - [sym__function] = ACTIONS(967), - [sym__for] = ACTIONS(967), - [sym__endfor] = ACTIONS(967), - [sym__while] = ACTIONS(967), - [sym__if] = ACTIONS(967), - [sym__try] = ACTIONS(967), - [sym__const] = ACTIONS(967), - [sym__normal] = ACTIONS(967), - [sym__return] = ACTIONS(967), - [sym__perl] = ACTIONS(967), - [sym__lua] = ACTIONS(967), - [sym__ruby] = ACTIONS(967), - [sym__python] = ACTIONS(967), - [sym__throw] = ACTIONS(967), - [sym__execute] = ACTIONS(967), - [sym__autocmd] = ACTIONS(967), - [sym__silent] = ACTIONS(967), - [sym__echo] = ACTIONS(967), - [sym__echon] = ACTIONS(967), - [sym__echohl] = ACTIONS(967), - [sym__echomsg] = ACTIONS(967), - [sym__echoerr] = ACTIONS(967), - [sym__map] = ACTIONS(967), - [sym__nmap] = ACTIONS(967), - [sym__vmap] = ACTIONS(967), - [sym__xmap] = ACTIONS(967), - [sym__smap] = ACTIONS(967), - [sym__omap] = ACTIONS(967), - [sym__imap] = ACTIONS(967), - [sym__lmap] = ACTIONS(967), - [sym__cmap] = ACTIONS(967), - [sym__tmap] = ACTIONS(967), - [sym__noremap] = ACTIONS(967), - [sym__vnoremap] = ACTIONS(967), - [sym__nnoremap] = ACTIONS(967), - [sym__xnoremap] = ACTIONS(967), - [sym__snoremap] = ACTIONS(967), - [sym__onoremap] = ACTIONS(967), - [sym__inoremap] = ACTIONS(967), - [sym__lnoremap] = ACTIONS(967), - [sym__cnoremap] = ACTIONS(967), - [sym__tnoremap] = ACTIONS(967), - [sym__augroup] = ACTIONS(967), - [sym__highlight] = ACTIONS(967), - [sym__syntax] = ACTIONS(967), - [sym__set] = ACTIONS(967), - [sym__setlocal] = ACTIONS(967), - [sym__setfiletype] = ACTIONS(967), - [sym__browse] = ACTIONS(967), - [sym__options] = ACTIONS(967), - [sym__startinsert] = ACTIONS(967), - [sym__stopinsert] = ACTIONS(967), - [sym__scriptencoding] = ACTIONS(967), - [sym__source] = ACTIONS(967), - [sym__global] = ACTIONS(967), - [sym__colorscheme] = ACTIONS(967), - [sym__comclear] = ACTIONS(967), - [sym__delcommand] = ACTIONS(967), - [sym__runtime] = ACTIONS(967), - [sym__wincmd] = ACTIONS(967), - [sym__sign] = ACTIONS(967), - [sym__filetype] = ACTIONS(967), - [sym__let] = ACTIONS(967), - [sym__unlet] = ACTIONS(967), - [sym__call] = ACTIONS(967), - [sym__break] = ACTIONS(967), - [sym__continue] = ACTIONS(967), - [sym_unknown_command_name] = ACTIONS(967), + [sym_comment] = ACTIONS(947), + [sym__function] = ACTIONS(947), + [sym__for] = ACTIONS(947), + [sym__endfor] = ACTIONS(947), + [sym__while] = ACTIONS(947), + [sym__if] = ACTIONS(947), + [sym__try] = ACTIONS(947), + [sym__const] = ACTIONS(947), + [sym__normal] = ACTIONS(947), + [sym__return] = ACTIONS(947), + [sym__perl] = ACTIONS(947), + [sym__lua] = ACTIONS(947), + [sym__ruby] = ACTIONS(947), + [sym__python] = ACTIONS(947), + [sym__throw] = ACTIONS(947), + [sym__execute] = ACTIONS(947), + [sym__autocmd] = ACTIONS(947), + [sym__silent] = ACTIONS(947), + [sym__echo] = ACTIONS(947), + [sym__echon] = ACTIONS(947), + [sym__echohl] = ACTIONS(947), + [sym__echomsg] = ACTIONS(947), + [sym__echoerr] = ACTIONS(947), + [sym__map] = ACTIONS(947), + [sym__nmap] = ACTIONS(947), + [sym__vmap] = ACTIONS(947), + [sym__xmap] = ACTIONS(947), + [sym__smap] = ACTIONS(947), + [sym__omap] = ACTIONS(947), + [sym__imap] = ACTIONS(947), + [sym__lmap] = ACTIONS(947), + [sym__cmap] = ACTIONS(947), + [sym__tmap] = ACTIONS(947), + [sym__noremap] = ACTIONS(947), + [sym__vnoremap] = ACTIONS(947), + [sym__nnoremap] = ACTIONS(947), + [sym__xnoremap] = ACTIONS(947), + [sym__snoremap] = ACTIONS(947), + [sym__onoremap] = ACTIONS(947), + [sym__inoremap] = ACTIONS(947), + [sym__lnoremap] = ACTIONS(947), + [sym__cnoremap] = ACTIONS(947), + [sym__tnoremap] = ACTIONS(947), + [sym__augroup] = ACTIONS(947), + [sym__highlight] = ACTIONS(947), + [sym__syntax] = ACTIONS(947), + [sym__set] = ACTIONS(947), + [sym__setlocal] = ACTIONS(947), + [sym__setfiletype] = ACTIONS(947), + [sym__browse] = ACTIONS(947), + [sym__options] = ACTIONS(947), + [sym__startinsert] = ACTIONS(947), + [sym__stopinsert] = ACTIONS(947), + [sym__scriptencoding] = ACTIONS(947), + [sym__source] = ACTIONS(947), + [sym__global] = ACTIONS(947), + [sym__colorscheme] = ACTIONS(947), + [sym__comclear] = ACTIONS(947), + [sym__delcommand] = ACTIONS(947), + [sym__runtime] = ACTIONS(947), + [sym__wincmd] = ACTIONS(947), + [sym__sign] = ACTIONS(947), + [sym__filetype] = ACTIONS(947), + [sym__let] = ACTIONS(947), + [sym__unlet] = ACTIONS(947), + [sym__call] = ACTIONS(947), + [sym__break] = ACTIONS(947), + [sym__continue] = ACTIONS(947), + [sym_unknown_command_name] = ACTIONS(947), }, [217] = { - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(167), - [sym_command_name] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(171), - [sym_mark] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(963), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_DOT2] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_BSLASH_SLASH] = ACTIONS(963), - [anon_sym_BSLASH_QMARK] = ACTIONS(963), - [anon_sym_BSLASH_AMP] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(965), - [anon_sym_STAR2] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(965), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_is] = ACTIONS(965), - [anon_sym_isnot] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(965), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_EQ_TILDE] = ACTIONS(963), - [anon_sym_BANG_TILDE] = ACTIONS(963), - [sym_integer_literal] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(199), - [sym_register] = ACTIONS(963), - [sym__newline_or_pipe] = ACTIONS(963), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(963), - [sym__function] = ACTIONS(963), - [sym__for] = ACTIONS(963), - [sym__endfor] = ACTIONS(963), - [sym__while] = ACTIONS(963), - [sym__if] = ACTIONS(963), - [sym__try] = ACTIONS(963), - [sym__const] = ACTIONS(963), - [sym__normal] = ACTIONS(963), - [sym__return] = ACTIONS(963), - [sym__perl] = ACTIONS(963), - [sym__lua] = ACTIONS(963), - [sym__ruby] = ACTIONS(963), - [sym__python] = ACTIONS(963), - [sym__throw] = ACTIONS(963), - [sym__execute] = ACTIONS(963), - [sym__autocmd] = ACTIONS(963), - [sym__silent] = ACTIONS(963), - [sym__echo] = ACTIONS(963), - [sym__echon] = ACTIONS(963), - [sym__echohl] = ACTIONS(963), - [sym__echomsg] = ACTIONS(963), - [sym__echoerr] = ACTIONS(963), - [sym__map] = ACTIONS(963), - [sym__nmap] = ACTIONS(963), - [sym__vmap] = ACTIONS(963), - [sym__xmap] = ACTIONS(963), - [sym__smap] = ACTIONS(963), - [sym__omap] = ACTIONS(963), - [sym__imap] = ACTIONS(963), - [sym__lmap] = ACTIONS(963), - [sym__cmap] = ACTIONS(963), - [sym__tmap] = ACTIONS(963), - [sym__noremap] = ACTIONS(963), - [sym__vnoremap] = ACTIONS(963), - [sym__nnoremap] = ACTIONS(963), - [sym__xnoremap] = ACTIONS(963), - [sym__snoremap] = ACTIONS(963), - [sym__onoremap] = ACTIONS(963), - [sym__inoremap] = ACTIONS(963), - [sym__lnoremap] = ACTIONS(963), - [sym__cnoremap] = ACTIONS(963), - [sym__tnoremap] = ACTIONS(963), - [sym__augroup] = ACTIONS(963), - [sym__highlight] = ACTIONS(963), - [sym__syntax] = ACTIONS(963), - [sym__set] = ACTIONS(963), - [sym__setlocal] = ACTIONS(963), - [sym__setfiletype] = ACTIONS(963), - [sym__browse] = ACTIONS(963), - [sym__options] = ACTIONS(963), - [sym__startinsert] = ACTIONS(963), - [sym__stopinsert] = ACTIONS(963), - [sym__scriptencoding] = ACTIONS(963), - [sym__source] = ACTIONS(963), - [sym__global] = ACTIONS(963), - [sym__colorscheme] = ACTIONS(963), - [sym__comclear] = ACTIONS(963), - [sym__delcommand] = ACTIONS(963), - [sym__runtime] = ACTIONS(963), - [sym__wincmd] = ACTIONS(963), - [sym__sign] = ACTIONS(963), - [sym__filetype] = ACTIONS(963), - [sym__let] = ACTIONS(963), - [sym__unlet] = ACTIONS(963), - [sym__call] = ACTIONS(963), - [sym__break] = ACTIONS(963), - [sym__continue] = ACTIONS(963), - [sym_unknown_command_name] = ACTIONS(963), - }, - [218] = { - [anon_sym_COLON] = ACTIONS(963), + [anon_sym_COLON] = ACTIONS(853), [anon_sym_DOT] = ACTIONS(167), - [sym_command_name] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(963), + [sym_command_name] = ACTIONS(853), + [anon_sym_QMARK] = ACTIONS(853), [anon_sym_LPAREN] = ACTIONS(171), - [sym_mark] = ACTIONS(963), + [sym_mark] = ACTIONS(853), [anon_sym_PERCENT] = ACTIONS(183), [anon_sym_SLASH] = ACTIONS(183), - [anon_sym_DOT2] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_BSLASH_SLASH] = ACTIONS(963), - [anon_sym_BSLASH_QMARK] = ACTIONS(963), - [anon_sym_BSLASH_AMP] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(965), + [anon_sym_DOT2] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(853), + [anon_sym_BSLASH_SLASH] = ACTIONS(853), + [anon_sym_BSLASH_QMARK] = ACTIONS(853), + [anon_sym_BSLASH_AMP] = ACTIONS(853), + [anon_sym_LT2] = ACTIONS(181), [anon_sym_STAR2] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(965), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_is] = ACTIONS(965), - [anon_sym_isnot] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(965), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_EQ_TILDE] = ACTIONS(963), - [anon_sym_BANG_TILDE] = ACTIONS(963), - [sym_integer_literal] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(199), - [sym_register] = ACTIONS(963), - [sym__newline_or_pipe] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_is] = ACTIONS(193), + [anon_sym_isnot] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_BANG_EQ] = ACTIONS(197), + [anon_sym_GT2] = ACTIONS(181), + [anon_sym_GT_EQ] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_BANG_TILDE] = ACTIONS(197), + [sym_integer_literal] = ACTIONS(853), + [anon_sym_LBRACK2] = ACTIONS(199), + [sym_register] = ACTIONS(853), + [sym__newline_or_pipe] = ACTIONS(853), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(963), - [sym__function] = ACTIONS(963), - [sym__for] = ACTIONS(963), - [sym__endfor] = ACTIONS(963), - [sym__while] = ACTIONS(963), - [sym__if] = ACTIONS(963), - [sym__try] = ACTIONS(963), - [sym__const] = ACTIONS(963), - [sym__normal] = ACTIONS(963), - [sym__return] = ACTIONS(963), - [sym__perl] = ACTIONS(963), - [sym__lua] = ACTIONS(963), - [sym__ruby] = ACTIONS(963), - [sym__python] = ACTIONS(963), - [sym__throw] = ACTIONS(963), - [sym__execute] = ACTIONS(963), - [sym__autocmd] = ACTIONS(963), - [sym__silent] = ACTIONS(963), - [sym__echo] = ACTIONS(963), - [sym__echon] = ACTIONS(963), - [sym__echohl] = ACTIONS(963), - [sym__echomsg] = ACTIONS(963), - [sym__echoerr] = ACTIONS(963), - [sym__map] = ACTIONS(963), - [sym__nmap] = ACTIONS(963), - [sym__vmap] = ACTIONS(963), - [sym__xmap] = ACTIONS(963), - [sym__smap] = ACTIONS(963), - [sym__omap] = ACTIONS(963), - [sym__imap] = ACTIONS(963), - [sym__lmap] = ACTIONS(963), - [sym__cmap] = ACTIONS(963), - [sym__tmap] = ACTIONS(963), - [sym__noremap] = ACTIONS(963), - [sym__vnoremap] = ACTIONS(963), - [sym__nnoremap] = ACTIONS(963), - [sym__xnoremap] = ACTIONS(963), - [sym__snoremap] = ACTIONS(963), - [sym__onoremap] = ACTIONS(963), - [sym__inoremap] = ACTIONS(963), - [sym__lnoremap] = ACTIONS(963), - [sym__cnoremap] = ACTIONS(963), - [sym__tnoremap] = ACTIONS(963), - [sym__augroup] = ACTIONS(963), - [sym__highlight] = ACTIONS(963), - [sym__syntax] = ACTIONS(963), - [sym__set] = ACTIONS(963), - [sym__setlocal] = ACTIONS(963), - [sym__setfiletype] = ACTIONS(963), - [sym__browse] = ACTIONS(963), - [sym__options] = ACTIONS(963), - [sym__startinsert] = ACTIONS(963), - [sym__stopinsert] = ACTIONS(963), - [sym__scriptencoding] = ACTIONS(963), - [sym__source] = ACTIONS(963), - [sym__global] = ACTIONS(963), - [sym__colorscheme] = ACTIONS(963), - [sym__comclear] = ACTIONS(963), - [sym__delcommand] = ACTIONS(963), - [sym__runtime] = ACTIONS(963), - [sym__wincmd] = ACTIONS(963), - [sym__sign] = ACTIONS(963), - [sym__filetype] = ACTIONS(963), - [sym__let] = ACTIONS(963), - [sym__unlet] = ACTIONS(963), - [sym__call] = ACTIONS(963), - [sym__break] = ACTIONS(963), - [sym__continue] = ACTIONS(963), - [sym_unknown_command_name] = ACTIONS(963), + [sym_comment] = ACTIONS(853), + [sym__function] = ACTIONS(853), + [sym__for] = ACTIONS(853), + [sym__endfor] = ACTIONS(853), + [sym__while] = ACTIONS(853), + [sym__if] = ACTIONS(853), + [sym__try] = ACTIONS(853), + [sym__const] = ACTIONS(853), + [sym__normal] = ACTIONS(853), + [sym__return] = ACTIONS(853), + [sym__perl] = ACTIONS(853), + [sym__lua] = ACTIONS(853), + [sym__ruby] = ACTIONS(853), + [sym__python] = ACTIONS(853), + [sym__throw] = ACTIONS(853), + [sym__execute] = ACTIONS(853), + [sym__autocmd] = ACTIONS(853), + [sym__silent] = ACTIONS(853), + [sym__echo] = ACTIONS(853), + [sym__echon] = ACTIONS(853), + [sym__echohl] = ACTIONS(853), + [sym__echomsg] = ACTIONS(853), + [sym__echoerr] = ACTIONS(853), + [sym__map] = ACTIONS(853), + [sym__nmap] = ACTIONS(853), + [sym__vmap] = ACTIONS(853), + [sym__xmap] = ACTIONS(853), + [sym__smap] = ACTIONS(853), + [sym__omap] = ACTIONS(853), + [sym__imap] = ACTIONS(853), + [sym__lmap] = ACTIONS(853), + [sym__cmap] = ACTIONS(853), + [sym__tmap] = ACTIONS(853), + [sym__noremap] = ACTIONS(853), + [sym__vnoremap] = ACTIONS(853), + [sym__nnoremap] = ACTIONS(853), + [sym__xnoremap] = ACTIONS(853), + [sym__snoremap] = ACTIONS(853), + [sym__onoremap] = ACTIONS(853), + [sym__inoremap] = ACTIONS(853), + [sym__lnoremap] = ACTIONS(853), + [sym__cnoremap] = ACTIONS(853), + [sym__tnoremap] = ACTIONS(853), + [sym__augroup] = ACTIONS(853), + [sym__highlight] = ACTIONS(853), + [sym__syntax] = ACTIONS(853), + [sym__set] = ACTIONS(853), + [sym__setlocal] = ACTIONS(853), + [sym__setfiletype] = ACTIONS(853), + [sym__browse] = ACTIONS(853), + [sym__options] = ACTIONS(853), + [sym__startinsert] = ACTIONS(853), + [sym__stopinsert] = ACTIONS(853), + [sym__scriptencoding] = ACTIONS(853), + [sym__source] = ACTIONS(853), + [sym__global] = ACTIONS(853), + [sym__colorscheme] = ACTIONS(853), + [sym__comclear] = ACTIONS(853), + [sym__delcommand] = ACTIONS(853), + [sym__runtime] = ACTIONS(853), + [sym__wincmd] = ACTIONS(853), + [sym__sign] = ACTIONS(853), + [sym__filetype] = ACTIONS(853), + [sym__let] = ACTIONS(853), + [sym__unlet] = ACTIONS(853), + [sym__call] = ACTIONS(853), + [sym__break] = ACTIONS(853), + [sym__continue] = ACTIONS(853), + [sym_unknown_command_name] = ACTIONS(853), + }, + [218] = { + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_DOT] = ACTIONS(851), + [sym_command_name] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [sym_mark] = ACTIONS(849), + [anon_sym_PERCENT] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_DOT2] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_BSLASH_SLASH] = ACTIONS(849), + [anon_sym_BSLASH_QMARK] = ACTIONS(849), + [anon_sym_BSLASH_AMP] = ACTIONS(849), + [anon_sym_LT2] = ACTIONS(851), + [anon_sym_STAR2] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_DOT_DOT] = ACTIONS(849), + [anon_sym_is] = ACTIONS(851), + [anon_sym_isnot] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_GT2] = ACTIONS(851), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_EQ_TILDE] = ACTIONS(849), + [anon_sym_BANG_TILDE] = ACTIONS(849), + [sym_integer_literal] = ACTIONS(849), + [anon_sym_LBRACK2] = ACTIONS(849), + [sym_register] = ACTIONS(849), + [sym__newline_or_pipe] = ACTIONS(849), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(849), + [sym__function] = ACTIONS(849), + [sym__for] = ACTIONS(849), + [sym__endfor] = ACTIONS(849), + [sym__while] = ACTIONS(849), + [sym__if] = ACTIONS(849), + [sym__try] = ACTIONS(849), + [sym__const] = ACTIONS(849), + [sym__normal] = ACTIONS(849), + [sym__return] = ACTIONS(849), + [sym__perl] = ACTIONS(849), + [sym__lua] = ACTIONS(849), + [sym__ruby] = ACTIONS(849), + [sym__python] = ACTIONS(849), + [sym__throw] = ACTIONS(849), + [sym__execute] = ACTIONS(849), + [sym__autocmd] = ACTIONS(849), + [sym__silent] = ACTIONS(849), + [sym__echo] = ACTIONS(849), + [sym__echon] = ACTIONS(849), + [sym__echohl] = ACTIONS(849), + [sym__echomsg] = ACTIONS(849), + [sym__echoerr] = ACTIONS(849), + [sym__map] = ACTIONS(849), + [sym__nmap] = ACTIONS(849), + [sym__vmap] = ACTIONS(849), + [sym__xmap] = ACTIONS(849), + [sym__smap] = ACTIONS(849), + [sym__omap] = ACTIONS(849), + [sym__imap] = ACTIONS(849), + [sym__lmap] = ACTIONS(849), + [sym__cmap] = ACTIONS(849), + [sym__tmap] = ACTIONS(849), + [sym__noremap] = ACTIONS(849), + [sym__vnoremap] = ACTIONS(849), + [sym__nnoremap] = ACTIONS(849), + [sym__xnoremap] = ACTIONS(849), + [sym__snoremap] = ACTIONS(849), + [sym__onoremap] = ACTIONS(849), + [sym__inoremap] = ACTIONS(849), + [sym__lnoremap] = ACTIONS(849), + [sym__cnoremap] = ACTIONS(849), + [sym__tnoremap] = ACTIONS(849), + [sym__augroup] = ACTIONS(849), + [sym__highlight] = ACTIONS(849), + [sym__syntax] = ACTIONS(849), + [sym__set] = ACTIONS(849), + [sym__setlocal] = ACTIONS(849), + [sym__setfiletype] = ACTIONS(849), + [sym__browse] = ACTIONS(849), + [sym__options] = ACTIONS(849), + [sym__startinsert] = ACTIONS(849), + [sym__stopinsert] = ACTIONS(849), + [sym__scriptencoding] = ACTIONS(849), + [sym__source] = ACTIONS(849), + [sym__global] = ACTIONS(849), + [sym__colorscheme] = ACTIONS(849), + [sym__comclear] = ACTIONS(849), + [sym__delcommand] = ACTIONS(849), + [sym__runtime] = ACTIONS(849), + [sym__wincmd] = ACTIONS(849), + [sym__sign] = ACTIONS(849), + [sym__filetype] = ACTIONS(849), + [sym__let] = ACTIONS(849), + [sym__unlet] = ACTIONS(849), + [sym__call] = ACTIONS(849), + [sym__break] = ACTIONS(849), + [sym__continue] = ACTIONS(849), + [sym_unknown_command_name] = ACTIONS(849), + }, + [219] = { + [anon_sym_COLON] = ACTIONS(841), + [anon_sym_DOT] = ACTIONS(843), + [sym_command_name] = ACTIONS(841), + [anon_sym_QMARK] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(841), + [sym_mark] = ACTIONS(841), + [anon_sym_PERCENT] = ACTIONS(841), + [anon_sym_SLASH] = ACTIONS(841), + [anon_sym_DOT2] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(841), + [anon_sym_BSLASH_SLASH] = ACTIONS(841), + [anon_sym_BSLASH_QMARK] = ACTIONS(841), + [anon_sym_BSLASH_AMP] = ACTIONS(841), + [anon_sym_LT2] = ACTIONS(843), + [anon_sym_STAR2] = ACTIONS(841), + [anon_sym_PIPE_PIPE] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(841), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_DOT_DOT] = ACTIONS(841), + [anon_sym_is] = ACTIONS(843), + [anon_sym_isnot] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(841), + [anon_sym_GT2] = ACTIONS(843), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_EQ_TILDE] = ACTIONS(841), + [anon_sym_BANG_TILDE] = ACTIONS(841), + [sym_integer_literal] = ACTIONS(841), + [anon_sym_LBRACK2] = ACTIONS(841), + [sym_register] = ACTIONS(841), + [sym__newline_or_pipe] = ACTIONS(841), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(841), + [sym__function] = ACTIONS(841), + [sym__for] = ACTIONS(841), + [sym__endfor] = ACTIONS(841), + [sym__while] = ACTIONS(841), + [sym__if] = ACTIONS(841), + [sym__try] = ACTIONS(841), + [sym__const] = ACTIONS(841), + [sym__normal] = ACTIONS(841), + [sym__return] = ACTIONS(841), + [sym__perl] = ACTIONS(841), + [sym__lua] = ACTIONS(841), + [sym__ruby] = ACTIONS(841), + [sym__python] = ACTIONS(841), + [sym__throw] = ACTIONS(841), + [sym__execute] = ACTIONS(841), + [sym__autocmd] = ACTIONS(841), + [sym__silent] = ACTIONS(841), + [sym__echo] = ACTIONS(841), + [sym__echon] = ACTIONS(841), + [sym__echohl] = ACTIONS(841), + [sym__echomsg] = ACTIONS(841), + [sym__echoerr] = ACTIONS(841), + [sym__map] = ACTIONS(841), + [sym__nmap] = ACTIONS(841), + [sym__vmap] = ACTIONS(841), + [sym__xmap] = ACTIONS(841), + [sym__smap] = ACTIONS(841), + [sym__omap] = ACTIONS(841), + [sym__imap] = ACTIONS(841), + [sym__lmap] = ACTIONS(841), + [sym__cmap] = ACTIONS(841), + [sym__tmap] = ACTIONS(841), + [sym__noremap] = ACTIONS(841), + [sym__vnoremap] = ACTIONS(841), + [sym__nnoremap] = ACTIONS(841), + [sym__xnoremap] = ACTIONS(841), + [sym__snoremap] = ACTIONS(841), + [sym__onoremap] = ACTIONS(841), + [sym__inoremap] = ACTIONS(841), + [sym__lnoremap] = ACTIONS(841), + [sym__cnoremap] = ACTIONS(841), + [sym__tnoremap] = ACTIONS(841), + [sym__augroup] = ACTIONS(841), + [sym__highlight] = ACTIONS(841), + [sym__syntax] = ACTIONS(841), + [sym__set] = ACTIONS(841), + [sym__setlocal] = ACTIONS(841), + [sym__setfiletype] = ACTIONS(841), + [sym__browse] = ACTIONS(841), + [sym__options] = ACTIONS(841), + [sym__startinsert] = ACTIONS(841), + [sym__stopinsert] = ACTIONS(841), + [sym__scriptencoding] = ACTIONS(841), + [sym__source] = ACTIONS(841), + [sym__global] = ACTIONS(841), + [sym__colorscheme] = ACTIONS(841), + [sym__comclear] = ACTIONS(841), + [sym__delcommand] = ACTIONS(841), + [sym__runtime] = ACTIONS(841), + [sym__wincmd] = ACTIONS(841), + [sym__sign] = ACTIONS(841), + [sym__filetype] = ACTIONS(841), + [sym__let] = ACTIONS(841), + [sym__unlet] = ACTIONS(841), + [sym__call] = ACTIONS(841), + [sym__break] = ACTIONS(841), + [sym__continue] = ACTIONS(841), + [sym_unknown_command_name] = ACTIONS(841), }, - [219] = { - [anon_sym_COLON] = ACTIONS(959), - [anon_sym_DOT] = ACTIONS(961), - [sym_command_name] = ACTIONS(959), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [sym_mark] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_DOT2] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_BSLASH_SLASH] = ACTIONS(959), - [anon_sym_BSLASH_QMARK] = ACTIONS(959), - [anon_sym_BSLASH_AMP] = ACTIONS(959), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_STAR2] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_is] = ACTIONS(961), - [anon_sym_isnot] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_EQ_TILDE] = ACTIONS(959), - [anon_sym_BANG_TILDE] = ACTIONS(959), - [sym_integer_literal] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [sym_register] = ACTIONS(959), - [sym__newline_or_pipe] = ACTIONS(959), + [220] = { + [anon_sym_COLON] = ACTIONS(927), + [anon_sym_DOT] = ACTIONS(929), + [sym_command_name] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [sym_mark] = ACTIONS(927), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_DOT2] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_BSLASH_SLASH] = ACTIONS(927), + [anon_sym_BSLASH_QMARK] = ACTIONS(927), + [anon_sym_BSLASH_AMP] = ACTIONS(927), + [anon_sym_LT2] = ACTIONS(929), + [anon_sym_STAR2] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_is] = ACTIONS(929), + [anon_sym_isnot] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_GT2] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [sym_integer_literal] = ACTIONS(927), + [anon_sym_LBRACK2] = ACTIONS(927), + [sym_register] = ACTIONS(927), + [sym__newline_or_pipe] = ACTIONS(927), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(959), - [sym__function] = ACTIONS(959), - [sym__for] = ACTIONS(959), - [sym__endfor] = ACTIONS(959), - [sym__while] = ACTIONS(959), - [sym__if] = ACTIONS(959), - [sym__try] = ACTIONS(959), - [sym__const] = ACTIONS(959), - [sym__normal] = ACTIONS(959), - [sym__return] = ACTIONS(959), - [sym__perl] = ACTIONS(959), - [sym__lua] = ACTIONS(959), - [sym__ruby] = ACTIONS(959), - [sym__python] = ACTIONS(959), - [sym__throw] = ACTIONS(959), - [sym__execute] = ACTIONS(959), - [sym__autocmd] = ACTIONS(959), - [sym__silent] = ACTIONS(959), - [sym__echo] = ACTIONS(959), - [sym__echon] = ACTIONS(959), - [sym__echohl] = ACTIONS(959), - [sym__echomsg] = ACTIONS(959), - [sym__echoerr] = ACTIONS(959), - [sym__map] = ACTIONS(959), - [sym__nmap] = ACTIONS(959), - [sym__vmap] = ACTIONS(959), - [sym__xmap] = ACTIONS(959), - [sym__smap] = ACTIONS(959), - [sym__omap] = ACTIONS(959), - [sym__imap] = ACTIONS(959), - [sym__lmap] = ACTIONS(959), - [sym__cmap] = ACTIONS(959), - [sym__tmap] = ACTIONS(959), - [sym__noremap] = ACTIONS(959), - [sym__vnoremap] = ACTIONS(959), - [sym__nnoremap] = ACTIONS(959), - [sym__xnoremap] = ACTIONS(959), - [sym__snoremap] = ACTIONS(959), - [sym__onoremap] = ACTIONS(959), - [sym__inoremap] = ACTIONS(959), - [sym__lnoremap] = ACTIONS(959), - [sym__cnoremap] = ACTIONS(959), - [sym__tnoremap] = ACTIONS(959), - [sym__augroup] = ACTIONS(959), - [sym__highlight] = ACTIONS(959), - [sym__syntax] = ACTIONS(959), - [sym__set] = ACTIONS(959), - [sym__setlocal] = ACTIONS(959), - [sym__setfiletype] = ACTIONS(959), - [sym__browse] = ACTIONS(959), - [sym__options] = ACTIONS(959), - [sym__startinsert] = ACTIONS(959), - [sym__stopinsert] = ACTIONS(959), - [sym__scriptencoding] = ACTIONS(959), - [sym__source] = ACTIONS(959), - [sym__global] = ACTIONS(959), - [sym__colorscheme] = ACTIONS(959), - [sym__comclear] = ACTIONS(959), - [sym__delcommand] = ACTIONS(959), - [sym__runtime] = ACTIONS(959), - [sym__wincmd] = ACTIONS(959), - [sym__sign] = ACTIONS(959), - [sym__filetype] = ACTIONS(959), - [sym__let] = ACTIONS(959), - [sym__unlet] = ACTIONS(959), - [sym__call] = ACTIONS(959), - [sym__break] = ACTIONS(959), - [sym__continue] = ACTIONS(959), - [sym_unknown_command_name] = ACTIONS(959), + [sym_comment] = ACTIONS(927), + [sym__function] = ACTIONS(927), + [sym__for] = ACTIONS(927), + [sym__endfor] = ACTIONS(927), + [sym__while] = ACTIONS(927), + [sym__if] = ACTIONS(927), + [sym__try] = ACTIONS(927), + [sym__const] = ACTIONS(927), + [sym__normal] = ACTIONS(927), + [sym__return] = ACTIONS(927), + [sym__perl] = ACTIONS(927), + [sym__lua] = ACTIONS(927), + [sym__ruby] = ACTIONS(927), + [sym__python] = ACTIONS(927), + [sym__throw] = ACTIONS(927), + [sym__execute] = ACTIONS(927), + [sym__autocmd] = ACTIONS(927), + [sym__silent] = ACTIONS(927), + [sym__echo] = ACTIONS(927), + [sym__echon] = ACTIONS(927), + [sym__echohl] = ACTIONS(927), + [sym__echomsg] = ACTIONS(927), + [sym__echoerr] = ACTIONS(927), + [sym__map] = ACTIONS(927), + [sym__nmap] = ACTIONS(927), + [sym__vmap] = ACTIONS(927), + [sym__xmap] = ACTIONS(927), + [sym__smap] = ACTIONS(927), + [sym__omap] = ACTIONS(927), + [sym__imap] = ACTIONS(927), + [sym__lmap] = ACTIONS(927), + [sym__cmap] = ACTIONS(927), + [sym__tmap] = ACTIONS(927), + [sym__noremap] = ACTIONS(927), + [sym__vnoremap] = ACTIONS(927), + [sym__nnoremap] = ACTIONS(927), + [sym__xnoremap] = ACTIONS(927), + [sym__snoremap] = ACTIONS(927), + [sym__onoremap] = ACTIONS(927), + [sym__inoremap] = ACTIONS(927), + [sym__lnoremap] = ACTIONS(927), + [sym__cnoremap] = ACTIONS(927), + [sym__tnoremap] = ACTIONS(927), + [sym__augroup] = ACTIONS(927), + [sym__highlight] = ACTIONS(927), + [sym__syntax] = ACTIONS(927), + [sym__set] = ACTIONS(927), + [sym__setlocal] = ACTIONS(927), + [sym__setfiletype] = ACTIONS(927), + [sym__browse] = ACTIONS(927), + [sym__options] = ACTIONS(927), + [sym__startinsert] = ACTIONS(927), + [sym__stopinsert] = ACTIONS(927), + [sym__scriptencoding] = ACTIONS(927), + [sym__source] = ACTIONS(927), + [sym__global] = ACTIONS(927), + [sym__colorscheme] = ACTIONS(927), + [sym__comclear] = ACTIONS(927), + [sym__delcommand] = ACTIONS(927), + [sym__runtime] = ACTIONS(927), + [sym__wincmd] = ACTIONS(927), + [sym__sign] = ACTIONS(927), + [sym__filetype] = ACTIONS(927), + [sym__let] = ACTIONS(927), + [sym__unlet] = ACTIONS(927), + [sym__call] = ACTIONS(927), + [sym__break] = ACTIONS(927), + [sym__continue] = ACTIONS(927), + [sym_unknown_command_name] = ACTIONS(927), }, - [220] = { - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(167), - [sym_command_name] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(171), - [sym_mark] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(183), - [anon_sym_DOT2] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_BSLASH_SLASH] = ACTIONS(963), - [anon_sym_BSLASH_QMARK] = ACTIONS(963), - [anon_sym_BSLASH_AMP] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(965), - [anon_sym_STAR2] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(965), - [anon_sym_isnot] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(965), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_EQ_TILDE] = ACTIONS(963), - [anon_sym_BANG_TILDE] = ACTIONS(963), - [sym_integer_literal] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(199), - [sym_register] = ACTIONS(963), - [sym__newline_or_pipe] = ACTIONS(963), + [221] = { + [anon_sym_COLON] = ACTIONS(943), + [anon_sym_DOT] = ACTIONS(945), + [sym_command_name] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), + [sym_mark] = ACTIONS(943), + [anon_sym_PERCENT] = ACTIONS(943), + [anon_sym_SLASH] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_BSLASH_SLASH] = ACTIONS(943), + [anon_sym_BSLASH_QMARK] = ACTIONS(943), + [anon_sym_BSLASH_AMP] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(945), + [anon_sym_STAR2] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_DOT_DOT] = ACTIONS(943), + [anon_sym_is] = ACTIONS(945), + [anon_sym_isnot] = ACTIONS(943), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_GT2] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_EQ_TILDE] = ACTIONS(943), + [anon_sym_BANG_TILDE] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(943), + [anon_sym_LBRACK2] = ACTIONS(943), + [sym_register] = ACTIONS(943), + [sym__newline_or_pipe] = ACTIONS(943), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(963), - [sym__function] = ACTIONS(963), - [sym__for] = ACTIONS(963), - [sym__endfor] = ACTIONS(963), - [sym__while] = ACTIONS(963), - [sym__if] = ACTIONS(963), - [sym__try] = ACTIONS(963), - [sym__const] = ACTIONS(963), - [sym__normal] = ACTIONS(963), - [sym__return] = ACTIONS(963), - [sym__perl] = ACTIONS(963), - [sym__lua] = ACTIONS(963), - [sym__ruby] = ACTIONS(963), - [sym__python] = ACTIONS(963), - [sym__throw] = ACTIONS(963), - [sym__execute] = ACTIONS(963), - [sym__autocmd] = ACTIONS(963), - [sym__silent] = ACTIONS(963), - [sym__echo] = ACTIONS(963), - [sym__echon] = ACTIONS(963), - [sym__echohl] = ACTIONS(963), - [sym__echomsg] = ACTIONS(963), - [sym__echoerr] = ACTIONS(963), - [sym__map] = ACTIONS(963), - [sym__nmap] = ACTIONS(963), - [sym__vmap] = ACTIONS(963), - [sym__xmap] = ACTIONS(963), - [sym__smap] = ACTIONS(963), - [sym__omap] = ACTIONS(963), - [sym__imap] = ACTIONS(963), - [sym__lmap] = ACTIONS(963), - [sym__cmap] = ACTIONS(963), - [sym__tmap] = ACTIONS(963), - [sym__noremap] = ACTIONS(963), - [sym__vnoremap] = ACTIONS(963), - [sym__nnoremap] = ACTIONS(963), - [sym__xnoremap] = ACTIONS(963), - [sym__snoremap] = ACTIONS(963), - [sym__onoremap] = ACTIONS(963), - [sym__inoremap] = ACTIONS(963), - [sym__lnoremap] = ACTIONS(963), - [sym__cnoremap] = ACTIONS(963), - [sym__tnoremap] = ACTIONS(963), - [sym__augroup] = ACTIONS(963), - [sym__highlight] = ACTIONS(963), - [sym__syntax] = ACTIONS(963), - [sym__set] = ACTIONS(963), - [sym__setlocal] = ACTIONS(963), - [sym__setfiletype] = ACTIONS(963), - [sym__browse] = ACTIONS(963), - [sym__options] = ACTIONS(963), - [sym__startinsert] = ACTIONS(963), - [sym__stopinsert] = ACTIONS(963), - [sym__scriptencoding] = ACTIONS(963), - [sym__source] = ACTIONS(963), - [sym__global] = ACTIONS(963), - [sym__colorscheme] = ACTIONS(963), - [sym__comclear] = ACTIONS(963), - [sym__delcommand] = ACTIONS(963), - [sym__runtime] = ACTIONS(963), - [sym__wincmd] = ACTIONS(963), - [sym__sign] = ACTIONS(963), - [sym__filetype] = ACTIONS(963), - [sym__let] = ACTIONS(963), - [sym__unlet] = ACTIONS(963), - [sym__call] = ACTIONS(963), - [sym__break] = ACTIONS(963), - [sym__continue] = ACTIONS(963), - [sym_unknown_command_name] = ACTIONS(963), + [sym_comment] = ACTIONS(943), + [sym__function] = ACTIONS(943), + [sym__for] = ACTIONS(943), + [sym__endfor] = ACTIONS(943), + [sym__while] = ACTIONS(943), + [sym__if] = ACTIONS(943), + [sym__try] = ACTIONS(943), + [sym__const] = ACTIONS(943), + [sym__normal] = ACTIONS(943), + [sym__return] = ACTIONS(943), + [sym__perl] = ACTIONS(943), + [sym__lua] = ACTIONS(943), + [sym__ruby] = ACTIONS(943), + [sym__python] = ACTIONS(943), + [sym__throw] = ACTIONS(943), + [sym__execute] = ACTIONS(943), + [sym__autocmd] = ACTIONS(943), + [sym__silent] = ACTIONS(943), + [sym__echo] = ACTIONS(943), + [sym__echon] = ACTIONS(943), + [sym__echohl] = ACTIONS(943), + [sym__echomsg] = ACTIONS(943), + [sym__echoerr] = ACTIONS(943), + [sym__map] = ACTIONS(943), + [sym__nmap] = ACTIONS(943), + [sym__vmap] = ACTIONS(943), + [sym__xmap] = ACTIONS(943), + [sym__smap] = ACTIONS(943), + [sym__omap] = ACTIONS(943), + [sym__imap] = ACTIONS(943), + [sym__lmap] = ACTIONS(943), + [sym__cmap] = ACTIONS(943), + [sym__tmap] = ACTIONS(943), + [sym__noremap] = ACTIONS(943), + [sym__vnoremap] = ACTIONS(943), + [sym__nnoremap] = ACTIONS(943), + [sym__xnoremap] = ACTIONS(943), + [sym__snoremap] = ACTIONS(943), + [sym__onoremap] = ACTIONS(943), + [sym__inoremap] = ACTIONS(943), + [sym__lnoremap] = ACTIONS(943), + [sym__cnoremap] = ACTIONS(943), + [sym__tnoremap] = ACTIONS(943), + [sym__augroup] = ACTIONS(943), + [sym__highlight] = ACTIONS(943), + [sym__syntax] = ACTIONS(943), + [sym__set] = ACTIONS(943), + [sym__setlocal] = ACTIONS(943), + [sym__setfiletype] = ACTIONS(943), + [sym__browse] = ACTIONS(943), + [sym__options] = ACTIONS(943), + [sym__startinsert] = ACTIONS(943), + [sym__stopinsert] = ACTIONS(943), + [sym__scriptencoding] = ACTIONS(943), + [sym__source] = ACTIONS(943), + [sym__global] = ACTIONS(943), + [sym__colorscheme] = ACTIONS(943), + [sym__comclear] = ACTIONS(943), + [sym__delcommand] = ACTIONS(943), + [sym__runtime] = ACTIONS(943), + [sym__wincmd] = ACTIONS(943), + [sym__sign] = ACTIONS(943), + [sym__filetype] = ACTIONS(943), + [sym__let] = ACTIONS(943), + [sym__unlet] = ACTIONS(943), + [sym__call] = ACTIONS(943), + [sym__break] = ACTIONS(943), + [sym__continue] = ACTIONS(943), + [sym_unknown_command_name] = ACTIONS(943), + }, + [222] = { + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(893), + [sym_command_name] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [sym_mark] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_DOT2] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_BSLASH_SLASH] = ACTIONS(891), + [anon_sym_BSLASH_QMARK] = ACTIONS(891), + [anon_sym_BSLASH_AMP] = ACTIONS(891), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_STAR2] = ACTIONS(891), + [anon_sym_PIPE_PIPE] = ACTIONS(891), + [anon_sym_AMP_AMP] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(891), + [anon_sym_is] = ACTIONS(893), + [anon_sym_isnot] = ACTIONS(891), + [anon_sym_EQ_EQ] = ACTIONS(891), + [anon_sym_BANG_EQ] = ACTIONS(891), + [anon_sym_GT2] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(891), + [anon_sym_LT_EQ] = ACTIONS(891), + [anon_sym_EQ_TILDE] = ACTIONS(891), + [anon_sym_BANG_TILDE] = ACTIONS(891), + [sym_integer_literal] = ACTIONS(891), + [anon_sym_LBRACK2] = ACTIONS(891), + [sym_register] = ACTIONS(891), + [sym__newline_or_pipe] = ACTIONS(891), + [sym__line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(891), + [sym__function] = ACTIONS(891), + [sym__for] = ACTIONS(891), + [sym__endfor] = ACTIONS(891), + [sym__while] = ACTIONS(891), + [sym__if] = ACTIONS(891), + [sym__try] = ACTIONS(891), + [sym__const] = ACTIONS(891), + [sym__normal] = ACTIONS(891), + [sym__return] = ACTIONS(891), + [sym__perl] = ACTIONS(891), + [sym__lua] = ACTIONS(891), + [sym__ruby] = ACTIONS(891), + [sym__python] = ACTIONS(891), + [sym__throw] = ACTIONS(891), + [sym__execute] = ACTIONS(891), + [sym__autocmd] = ACTIONS(891), + [sym__silent] = ACTIONS(891), + [sym__echo] = ACTIONS(891), + [sym__echon] = ACTIONS(891), + [sym__echohl] = ACTIONS(891), + [sym__echomsg] = ACTIONS(891), + [sym__echoerr] = ACTIONS(891), + [sym__map] = ACTIONS(891), + [sym__nmap] = ACTIONS(891), + [sym__vmap] = ACTIONS(891), + [sym__xmap] = ACTIONS(891), + [sym__smap] = ACTIONS(891), + [sym__omap] = ACTIONS(891), + [sym__imap] = ACTIONS(891), + [sym__lmap] = ACTIONS(891), + [sym__cmap] = ACTIONS(891), + [sym__tmap] = ACTIONS(891), + [sym__noremap] = ACTIONS(891), + [sym__vnoremap] = ACTIONS(891), + [sym__nnoremap] = ACTIONS(891), + [sym__xnoremap] = ACTIONS(891), + [sym__snoremap] = ACTIONS(891), + [sym__onoremap] = ACTIONS(891), + [sym__inoremap] = ACTIONS(891), + [sym__lnoremap] = ACTIONS(891), + [sym__cnoremap] = ACTIONS(891), + [sym__tnoremap] = ACTIONS(891), + [sym__augroup] = ACTIONS(891), + [sym__highlight] = ACTIONS(891), + [sym__syntax] = ACTIONS(891), + [sym__set] = ACTIONS(891), + [sym__setlocal] = ACTIONS(891), + [sym__setfiletype] = ACTIONS(891), + [sym__browse] = ACTIONS(891), + [sym__options] = ACTIONS(891), + [sym__startinsert] = ACTIONS(891), + [sym__stopinsert] = ACTIONS(891), + [sym__scriptencoding] = ACTIONS(891), + [sym__source] = ACTIONS(891), + [sym__global] = ACTIONS(891), + [sym__colorscheme] = ACTIONS(891), + [sym__comclear] = ACTIONS(891), + [sym__delcommand] = ACTIONS(891), + [sym__runtime] = ACTIONS(891), + [sym__wincmd] = ACTIONS(891), + [sym__sign] = ACTIONS(891), + [sym__filetype] = ACTIONS(891), + [sym__let] = ACTIONS(891), + [sym__unlet] = ACTIONS(891), + [sym__call] = ACTIONS(891), + [sym__break] = ACTIONS(891), + [sym__continue] = ACTIONS(891), + [sym_unknown_command_name] = ACTIONS(891), }, - [221] = { - [anon_sym_COLON] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(949), - [sym_command_name] = ACTIONS(947), - [anon_sym_QMARK] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [sym_mark] = ACTIONS(947), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_DOT2] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_BSLASH_SLASH] = ACTIONS(947), - [anon_sym_BSLASH_QMARK] = ACTIONS(947), - [anon_sym_BSLASH_AMP] = ACTIONS(947), - [anon_sym_LT2] = ACTIONS(949), - [anon_sym_STAR2] = ACTIONS(947), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_DOT_DOT] = ACTIONS(947), - [anon_sym_is] = ACTIONS(949), - [anon_sym_isnot] = ACTIONS(947), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_GT2] = ACTIONS(949), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(947), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_BANG_TILDE] = ACTIONS(947), - [sym_integer_literal] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [sym_register] = ACTIONS(947), - [sym__newline_or_pipe] = ACTIONS(947), + [223] = { + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_DOT] = ACTIONS(897), + [sym_command_name] = ACTIONS(895), + [anon_sym_QMARK] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [sym_mark] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(895), + [anon_sym_DOT2] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_BSLASH_SLASH] = ACTIONS(895), + [anon_sym_BSLASH_QMARK] = ACTIONS(895), + [anon_sym_BSLASH_AMP] = ACTIONS(895), + [anon_sym_LT2] = ACTIONS(897), + [anon_sym_STAR2] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_DOT_DOT] = ACTIONS(895), + [anon_sym_is] = ACTIONS(897), + [anon_sym_isnot] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_GT2] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_EQ_TILDE] = ACTIONS(895), + [anon_sym_BANG_TILDE] = ACTIONS(895), + [sym_integer_literal] = ACTIONS(895), + [anon_sym_LBRACK2] = ACTIONS(895), + [sym_register] = ACTIONS(895), + [sym__newline_or_pipe] = ACTIONS(895), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(947), - [sym__function] = ACTIONS(947), - [sym__for] = ACTIONS(947), - [sym__endfor] = ACTIONS(947), - [sym__while] = ACTIONS(947), - [sym__if] = ACTIONS(947), - [sym__try] = ACTIONS(947), - [sym__const] = ACTIONS(947), - [sym__normal] = ACTIONS(947), - [sym__return] = ACTIONS(947), - [sym__perl] = ACTIONS(947), - [sym__lua] = ACTIONS(947), - [sym__ruby] = ACTIONS(947), - [sym__python] = ACTIONS(947), - [sym__throw] = ACTIONS(947), - [sym__execute] = ACTIONS(947), - [sym__autocmd] = ACTIONS(947), - [sym__silent] = ACTIONS(947), - [sym__echo] = ACTIONS(947), - [sym__echon] = ACTIONS(947), - [sym__echohl] = ACTIONS(947), - [sym__echomsg] = ACTIONS(947), - [sym__echoerr] = ACTIONS(947), - [sym__map] = ACTIONS(947), - [sym__nmap] = ACTIONS(947), - [sym__vmap] = ACTIONS(947), - [sym__xmap] = ACTIONS(947), - [sym__smap] = ACTIONS(947), - [sym__omap] = ACTIONS(947), - [sym__imap] = ACTIONS(947), - [sym__lmap] = ACTIONS(947), - [sym__cmap] = ACTIONS(947), - [sym__tmap] = ACTIONS(947), - [sym__noremap] = ACTIONS(947), - [sym__vnoremap] = ACTIONS(947), - [sym__nnoremap] = ACTIONS(947), - [sym__xnoremap] = ACTIONS(947), - [sym__snoremap] = ACTIONS(947), - [sym__onoremap] = ACTIONS(947), - [sym__inoremap] = ACTIONS(947), - [sym__lnoremap] = ACTIONS(947), - [sym__cnoremap] = ACTIONS(947), - [sym__tnoremap] = ACTIONS(947), - [sym__augroup] = ACTIONS(947), - [sym__highlight] = ACTIONS(947), - [sym__syntax] = ACTIONS(947), - [sym__set] = ACTIONS(947), - [sym__setlocal] = ACTIONS(947), - [sym__setfiletype] = ACTIONS(947), - [sym__browse] = ACTIONS(947), - [sym__options] = ACTIONS(947), - [sym__startinsert] = ACTIONS(947), - [sym__stopinsert] = ACTIONS(947), - [sym__scriptencoding] = ACTIONS(947), - [sym__source] = ACTIONS(947), - [sym__global] = ACTIONS(947), - [sym__colorscheme] = ACTIONS(947), - [sym__comclear] = ACTIONS(947), - [sym__delcommand] = ACTIONS(947), - [sym__runtime] = ACTIONS(947), - [sym__wincmd] = ACTIONS(947), - [sym__sign] = ACTIONS(947), - [sym__filetype] = ACTIONS(947), - [sym__let] = ACTIONS(947), - [sym__unlet] = ACTIONS(947), - [sym__call] = ACTIONS(947), - [sym__break] = ACTIONS(947), - [sym__continue] = ACTIONS(947), - [sym_unknown_command_name] = ACTIONS(947), + [sym_comment] = ACTIONS(895), + [sym__function] = ACTIONS(895), + [sym__for] = ACTIONS(895), + [sym__endfor] = ACTIONS(895), + [sym__while] = ACTIONS(895), + [sym__if] = ACTIONS(895), + [sym__try] = ACTIONS(895), + [sym__const] = ACTIONS(895), + [sym__normal] = ACTIONS(895), + [sym__return] = ACTIONS(895), + [sym__perl] = ACTIONS(895), + [sym__lua] = ACTIONS(895), + [sym__ruby] = ACTIONS(895), + [sym__python] = ACTIONS(895), + [sym__throw] = ACTIONS(895), + [sym__execute] = ACTIONS(895), + [sym__autocmd] = ACTIONS(895), + [sym__silent] = ACTIONS(895), + [sym__echo] = ACTIONS(895), + [sym__echon] = ACTIONS(895), + [sym__echohl] = ACTIONS(895), + [sym__echomsg] = ACTIONS(895), + [sym__echoerr] = ACTIONS(895), + [sym__map] = ACTIONS(895), + [sym__nmap] = ACTIONS(895), + [sym__vmap] = ACTIONS(895), + [sym__xmap] = ACTIONS(895), + [sym__smap] = ACTIONS(895), + [sym__omap] = ACTIONS(895), + [sym__imap] = ACTIONS(895), + [sym__lmap] = ACTIONS(895), + [sym__cmap] = ACTIONS(895), + [sym__tmap] = ACTIONS(895), + [sym__noremap] = ACTIONS(895), + [sym__vnoremap] = ACTIONS(895), + [sym__nnoremap] = ACTIONS(895), + [sym__xnoremap] = ACTIONS(895), + [sym__snoremap] = ACTIONS(895), + [sym__onoremap] = ACTIONS(895), + [sym__inoremap] = ACTIONS(895), + [sym__lnoremap] = ACTIONS(895), + [sym__cnoremap] = ACTIONS(895), + [sym__tnoremap] = ACTIONS(895), + [sym__augroup] = ACTIONS(895), + [sym__highlight] = ACTIONS(895), + [sym__syntax] = ACTIONS(895), + [sym__set] = ACTIONS(895), + [sym__setlocal] = ACTIONS(895), + [sym__setfiletype] = ACTIONS(895), + [sym__browse] = ACTIONS(895), + [sym__options] = ACTIONS(895), + [sym__startinsert] = ACTIONS(895), + [sym__stopinsert] = ACTIONS(895), + [sym__scriptencoding] = ACTIONS(895), + [sym__source] = ACTIONS(895), + [sym__global] = ACTIONS(895), + [sym__colorscheme] = ACTIONS(895), + [sym__comclear] = ACTIONS(895), + [sym__delcommand] = ACTIONS(895), + [sym__runtime] = ACTIONS(895), + [sym__wincmd] = ACTIONS(895), + [sym__sign] = ACTIONS(895), + [sym__filetype] = ACTIONS(895), + [sym__let] = ACTIONS(895), + [sym__unlet] = ACTIONS(895), + [sym__call] = ACTIONS(895), + [sym__break] = ACTIONS(895), + [sym__continue] = ACTIONS(895), + [sym_unknown_command_name] = ACTIONS(895), }, - [222] = { + [224] = { [anon_sym_COLON] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(167), [sym_command_name] = ACTIONS(845), [anon_sym_QMARK] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(171), [sym_mark] = ACTIONS(845), - [anon_sym_PERCENT] = ACTIONS(845), - [anon_sym_SLASH] = ACTIONS(845), - [anon_sym_DOT2] = ACTIONS(847), - [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_PERCENT] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(183), + [anon_sym_DOT2] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(189), [anon_sym_DOLLAR] = ACTIONS(845), [anon_sym_BSLASH_SLASH] = ACTIONS(845), [anon_sym_BSLASH_QMARK] = ACTIONS(845), [anon_sym_BSLASH_AMP] = ACTIONS(845), - [anon_sym_LT2] = ACTIONS(847), - [anon_sym_STAR2] = ACTIONS(845), + [anon_sym_LT2] = ACTIONS(181), + [anon_sym_STAR2] = ACTIONS(183), [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_DOT_DOT] = ACTIONS(845), - [anon_sym_is] = ACTIONS(847), - [anon_sym_isnot] = ACTIONS(845), - [anon_sym_EQ_EQ] = ACTIONS(845), - [anon_sym_BANG_EQ] = ACTIONS(845), - [anon_sym_GT2] = ACTIONS(847), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_EQ_TILDE] = ACTIONS(845), - [anon_sym_BANG_TILDE] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_is] = ACTIONS(193), + [anon_sym_isnot] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_BANG_EQ] = ACTIONS(197), + [anon_sym_GT2] = ACTIONS(181), + [anon_sym_GT_EQ] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_BANG_TILDE] = ACTIONS(197), [sym_integer_literal] = ACTIONS(845), - [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_LBRACK2] = ACTIONS(199), [sym_register] = ACTIONS(845), [sym__newline_or_pipe] = ACTIONS(845), [sym__line_continuation] = ACTIONS(3), @@ -55935,2681 +55398,2471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__comclear] = ACTIONS(845), [sym__delcommand] = ACTIONS(845), [sym__runtime] = ACTIONS(845), - [sym__wincmd] = ACTIONS(845), - [sym__sign] = ACTIONS(845), - [sym__filetype] = ACTIONS(845), - [sym__let] = ACTIONS(845), - [sym__unlet] = ACTIONS(845), - [sym__call] = ACTIONS(845), - [sym__break] = ACTIONS(845), - [sym__continue] = ACTIONS(845), - [sym_unknown_command_name] = ACTIONS(845), - }, - [223] = { - [anon_sym_COLON] = ACTIONS(907), - [anon_sym_DOT] = ACTIONS(909), - [sym_command_name] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(907), - [sym_mark] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_DOT2] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_BSLASH_SLASH] = ACTIONS(907), - [anon_sym_BSLASH_QMARK] = ACTIONS(907), - [anon_sym_BSLASH_AMP] = ACTIONS(907), - [anon_sym_LT2] = ACTIONS(909), - [anon_sym_STAR2] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_is] = ACTIONS(909), - [anon_sym_isnot] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_GT2] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_EQ_TILDE] = ACTIONS(907), - [anon_sym_BANG_TILDE] = ACTIONS(907), - [sym_integer_literal] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(907), - [sym_register] = ACTIONS(907), - [sym__newline_or_pipe] = ACTIONS(907), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(907), - [sym__function] = ACTIONS(907), - [sym__for] = ACTIONS(907), - [sym__endfor] = ACTIONS(907), - [sym__while] = ACTIONS(907), - [sym__if] = ACTIONS(907), - [sym__try] = ACTIONS(907), - [sym__const] = ACTIONS(907), - [sym__normal] = ACTIONS(907), - [sym__return] = ACTIONS(907), - [sym__perl] = ACTIONS(907), - [sym__lua] = ACTIONS(907), - [sym__ruby] = ACTIONS(907), - [sym__python] = ACTIONS(907), - [sym__throw] = ACTIONS(907), - [sym__execute] = ACTIONS(907), - [sym__autocmd] = ACTIONS(907), - [sym__silent] = ACTIONS(907), - [sym__echo] = ACTIONS(907), - [sym__echon] = ACTIONS(907), - [sym__echohl] = ACTIONS(907), - [sym__echomsg] = ACTIONS(907), - [sym__echoerr] = ACTIONS(907), - [sym__map] = ACTIONS(907), - [sym__nmap] = ACTIONS(907), - [sym__vmap] = ACTIONS(907), - [sym__xmap] = ACTIONS(907), - [sym__smap] = ACTIONS(907), - [sym__omap] = ACTIONS(907), - [sym__imap] = ACTIONS(907), - [sym__lmap] = ACTIONS(907), - [sym__cmap] = ACTIONS(907), - [sym__tmap] = ACTIONS(907), - [sym__noremap] = ACTIONS(907), - [sym__vnoremap] = ACTIONS(907), - [sym__nnoremap] = ACTIONS(907), - [sym__xnoremap] = ACTIONS(907), - [sym__snoremap] = ACTIONS(907), - [sym__onoremap] = ACTIONS(907), - [sym__inoremap] = ACTIONS(907), - [sym__lnoremap] = ACTIONS(907), - [sym__cnoremap] = ACTIONS(907), - [sym__tnoremap] = ACTIONS(907), - [sym__augroup] = ACTIONS(907), - [sym__highlight] = ACTIONS(907), - [sym__syntax] = ACTIONS(907), - [sym__set] = ACTIONS(907), - [sym__setlocal] = ACTIONS(907), - [sym__setfiletype] = ACTIONS(907), - [sym__browse] = ACTIONS(907), - [sym__options] = ACTIONS(907), - [sym__startinsert] = ACTIONS(907), - [sym__stopinsert] = ACTIONS(907), - [sym__scriptencoding] = ACTIONS(907), - [sym__source] = ACTIONS(907), - [sym__global] = ACTIONS(907), - [sym__colorscheme] = ACTIONS(907), - [sym__comclear] = ACTIONS(907), - [sym__delcommand] = ACTIONS(907), - [sym__runtime] = ACTIONS(907), - [sym__wincmd] = ACTIONS(907), - [sym__sign] = ACTIONS(907), - [sym__filetype] = ACTIONS(907), - [sym__let] = ACTIONS(907), - [sym__unlet] = ACTIONS(907), - [sym__call] = ACTIONS(907), - [sym__break] = ACTIONS(907), - [sym__continue] = ACTIONS(907), - [sym_unknown_command_name] = ACTIONS(907), - }, - [224] = { - [anon_sym_COLON] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(901), - [sym_command_name] = ACTIONS(899), - [anon_sym_QMARK] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [sym_mark] = ACTIONS(899), - [anon_sym_PERCENT] = ACTIONS(899), - [anon_sym_SLASH] = ACTIONS(899), - [anon_sym_DOT2] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(899), - [anon_sym_BSLASH_SLASH] = ACTIONS(899), - [anon_sym_BSLASH_QMARK] = ACTIONS(899), - [anon_sym_BSLASH_AMP] = ACTIONS(899), - [anon_sym_LT2] = ACTIONS(901), - [anon_sym_STAR2] = ACTIONS(899), - [anon_sym_PIPE_PIPE] = ACTIONS(899), - [anon_sym_AMP_AMP] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_DOT_DOT] = ACTIONS(899), - [anon_sym_is] = ACTIONS(901), - [anon_sym_isnot] = ACTIONS(899), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_GT2] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_EQ_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(899), - [sym_integer_literal] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [sym_register] = ACTIONS(899), - [sym__newline_or_pipe] = ACTIONS(899), - [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(899), - [sym__function] = ACTIONS(899), - [sym__for] = ACTIONS(899), - [sym__endfor] = ACTIONS(899), - [sym__while] = ACTIONS(899), - [sym__if] = ACTIONS(899), - [sym__try] = ACTIONS(899), - [sym__const] = ACTIONS(899), - [sym__normal] = ACTIONS(899), - [sym__return] = ACTIONS(899), - [sym__perl] = ACTIONS(899), - [sym__lua] = ACTIONS(899), - [sym__ruby] = ACTIONS(899), - [sym__python] = ACTIONS(899), - [sym__throw] = ACTIONS(899), - [sym__execute] = ACTIONS(899), - [sym__autocmd] = ACTIONS(899), - [sym__silent] = ACTIONS(899), - [sym__echo] = ACTIONS(899), - [sym__echon] = ACTIONS(899), - [sym__echohl] = ACTIONS(899), - [sym__echomsg] = ACTIONS(899), - [sym__echoerr] = ACTIONS(899), - [sym__map] = ACTIONS(899), - [sym__nmap] = ACTIONS(899), - [sym__vmap] = ACTIONS(899), - [sym__xmap] = ACTIONS(899), - [sym__smap] = ACTIONS(899), - [sym__omap] = ACTIONS(899), - [sym__imap] = ACTIONS(899), - [sym__lmap] = ACTIONS(899), - [sym__cmap] = ACTIONS(899), - [sym__tmap] = ACTIONS(899), - [sym__noremap] = ACTIONS(899), - [sym__vnoremap] = ACTIONS(899), - [sym__nnoremap] = ACTIONS(899), - [sym__xnoremap] = ACTIONS(899), - [sym__snoremap] = ACTIONS(899), - [sym__onoremap] = ACTIONS(899), - [sym__inoremap] = ACTIONS(899), - [sym__lnoremap] = ACTIONS(899), - [sym__cnoremap] = ACTIONS(899), - [sym__tnoremap] = ACTIONS(899), - [sym__augroup] = ACTIONS(899), - [sym__highlight] = ACTIONS(899), - [sym__syntax] = ACTIONS(899), - [sym__set] = ACTIONS(899), - [sym__setlocal] = ACTIONS(899), - [sym__setfiletype] = ACTIONS(899), - [sym__browse] = ACTIONS(899), - [sym__options] = ACTIONS(899), - [sym__startinsert] = ACTIONS(899), - [sym__stopinsert] = ACTIONS(899), - [sym__scriptencoding] = ACTIONS(899), - [sym__source] = ACTIONS(899), - [sym__global] = ACTIONS(899), - [sym__colorscheme] = ACTIONS(899), - [sym__comclear] = ACTIONS(899), - [sym__delcommand] = ACTIONS(899), - [sym__runtime] = ACTIONS(899), - [sym__wincmd] = ACTIONS(899), - [sym__sign] = ACTIONS(899), - [sym__filetype] = ACTIONS(899), - [sym__let] = ACTIONS(899), - [sym__unlet] = ACTIONS(899), - [sym__call] = ACTIONS(899), - [sym__break] = ACTIONS(899), - [sym__continue] = ACTIONS(899), - [sym_unknown_command_name] = ACTIONS(899), - }, - [225] = { - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(839), - [sym_command_name] = ACTIONS(837), - [anon_sym_QMARK] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(837), - [sym_mark] = ACTIONS(837), - [anon_sym_PERCENT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(837), - [anon_sym_DOT2] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(837), - [anon_sym_BSLASH_SLASH] = ACTIONS(837), - [anon_sym_BSLASH_QMARK] = ACTIONS(837), - [anon_sym_BSLASH_AMP] = ACTIONS(837), - [anon_sym_LT2] = ACTIONS(839), - [anon_sym_STAR2] = ACTIONS(837), - [anon_sym_PIPE_PIPE] = ACTIONS(837), - [anon_sym_AMP_AMP] = ACTIONS(837), - [anon_sym_DASH] = ACTIONS(839), - [anon_sym_DOT_DOT] = ACTIONS(837), - [anon_sym_is] = ACTIONS(839), - [anon_sym_isnot] = ACTIONS(837), - [anon_sym_EQ_EQ] = ACTIONS(837), - [anon_sym_BANG_EQ] = ACTIONS(837), - [anon_sym_GT2] = ACTIONS(839), - [anon_sym_GT_EQ] = ACTIONS(837), - [anon_sym_LT_EQ] = ACTIONS(837), - [anon_sym_EQ_TILDE] = ACTIONS(837), - [anon_sym_BANG_TILDE] = ACTIONS(837), - [sym_integer_literal] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(837), - [sym_register] = ACTIONS(837), - [sym__newline_or_pipe] = ACTIONS(837), + [sym__wincmd] = ACTIONS(845), + [sym__sign] = ACTIONS(845), + [sym__filetype] = ACTIONS(845), + [sym__let] = ACTIONS(845), + [sym__unlet] = ACTIONS(845), + [sym__call] = ACTIONS(845), + [sym__break] = ACTIONS(845), + [sym__continue] = ACTIONS(845), + [sym_unknown_command_name] = ACTIONS(845), + }, + [225] = { + [anon_sym_COLON] = ACTIONS(955), + [anon_sym_DOT] = ACTIONS(167), + [sym_command_name] = ACTIONS(955), + [anon_sym_QMARK] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(171), + [sym_mark] = ACTIONS(955), + [anon_sym_PERCENT] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(183), + [anon_sym_DOT2] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(955), + [anon_sym_BSLASH_SLASH] = ACTIONS(955), + [anon_sym_BSLASH_QMARK] = ACTIONS(955), + [anon_sym_BSLASH_AMP] = ACTIONS(955), + [anon_sym_LT2] = ACTIONS(957), + [anon_sym_STAR2] = ACTIONS(183), + [anon_sym_PIPE_PIPE] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_is] = ACTIONS(957), + [anon_sym_isnot] = ACTIONS(955), + [anon_sym_EQ_EQ] = ACTIONS(955), + [anon_sym_BANG_EQ] = ACTIONS(955), + [anon_sym_GT2] = ACTIONS(957), + [anon_sym_GT_EQ] = ACTIONS(955), + [anon_sym_LT_EQ] = ACTIONS(955), + [anon_sym_EQ_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [sym_integer_literal] = ACTIONS(955), + [anon_sym_LBRACK2] = ACTIONS(199), + [sym_register] = ACTIONS(955), + [sym__newline_or_pipe] = ACTIONS(955), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(837), - [sym__function] = ACTIONS(837), - [sym__for] = ACTIONS(837), - [sym__endfor] = ACTIONS(837), - [sym__while] = ACTIONS(837), - [sym__if] = ACTIONS(837), - [sym__try] = ACTIONS(837), - [sym__const] = ACTIONS(837), - [sym__normal] = ACTIONS(837), - [sym__return] = ACTIONS(837), - [sym__perl] = ACTIONS(837), - [sym__lua] = ACTIONS(837), - [sym__ruby] = ACTIONS(837), - [sym__python] = ACTIONS(837), - [sym__throw] = ACTIONS(837), - [sym__execute] = ACTIONS(837), - [sym__autocmd] = ACTIONS(837), - [sym__silent] = ACTIONS(837), - [sym__echo] = ACTIONS(837), - [sym__echon] = ACTIONS(837), - [sym__echohl] = ACTIONS(837), - [sym__echomsg] = ACTIONS(837), - [sym__echoerr] = ACTIONS(837), - [sym__map] = ACTIONS(837), - [sym__nmap] = ACTIONS(837), - [sym__vmap] = ACTIONS(837), - [sym__xmap] = ACTIONS(837), - [sym__smap] = ACTIONS(837), - [sym__omap] = ACTIONS(837), - [sym__imap] = ACTIONS(837), - [sym__lmap] = ACTIONS(837), - [sym__cmap] = ACTIONS(837), - [sym__tmap] = ACTIONS(837), - [sym__noremap] = ACTIONS(837), - [sym__vnoremap] = ACTIONS(837), - [sym__nnoremap] = ACTIONS(837), - [sym__xnoremap] = ACTIONS(837), - [sym__snoremap] = ACTIONS(837), - [sym__onoremap] = ACTIONS(837), - [sym__inoremap] = ACTIONS(837), - [sym__lnoremap] = ACTIONS(837), - [sym__cnoremap] = ACTIONS(837), - [sym__tnoremap] = ACTIONS(837), - [sym__augroup] = ACTIONS(837), - [sym__highlight] = ACTIONS(837), - [sym__syntax] = ACTIONS(837), - [sym__set] = ACTIONS(837), - [sym__setlocal] = ACTIONS(837), - [sym__setfiletype] = ACTIONS(837), - [sym__browse] = ACTIONS(837), - [sym__options] = ACTIONS(837), - [sym__startinsert] = ACTIONS(837), - [sym__stopinsert] = ACTIONS(837), - [sym__scriptencoding] = ACTIONS(837), - [sym__source] = ACTIONS(837), - [sym__global] = ACTIONS(837), - [sym__colorscheme] = ACTIONS(837), - [sym__comclear] = ACTIONS(837), - [sym__delcommand] = ACTIONS(837), - [sym__runtime] = ACTIONS(837), - [sym__wincmd] = ACTIONS(837), - [sym__sign] = ACTIONS(837), - [sym__filetype] = ACTIONS(837), - [sym__let] = ACTIONS(837), - [sym__unlet] = ACTIONS(837), - [sym__call] = ACTIONS(837), - [sym__break] = ACTIONS(837), - [sym__continue] = ACTIONS(837), - [sym_unknown_command_name] = ACTIONS(837), + [sym_comment] = ACTIONS(955), + [sym__function] = ACTIONS(955), + [sym__for] = ACTIONS(955), + [sym__endfor] = ACTIONS(955), + [sym__while] = ACTIONS(955), + [sym__if] = ACTIONS(955), + [sym__try] = ACTIONS(955), + [sym__const] = ACTIONS(955), + [sym__normal] = ACTIONS(955), + [sym__return] = ACTIONS(955), + [sym__perl] = ACTIONS(955), + [sym__lua] = ACTIONS(955), + [sym__ruby] = ACTIONS(955), + [sym__python] = ACTIONS(955), + [sym__throw] = ACTIONS(955), + [sym__execute] = ACTIONS(955), + [sym__autocmd] = ACTIONS(955), + [sym__silent] = ACTIONS(955), + [sym__echo] = ACTIONS(955), + [sym__echon] = ACTIONS(955), + [sym__echohl] = ACTIONS(955), + [sym__echomsg] = ACTIONS(955), + [sym__echoerr] = ACTIONS(955), + [sym__map] = ACTIONS(955), + [sym__nmap] = ACTIONS(955), + [sym__vmap] = ACTIONS(955), + [sym__xmap] = ACTIONS(955), + [sym__smap] = ACTIONS(955), + [sym__omap] = ACTIONS(955), + [sym__imap] = ACTIONS(955), + [sym__lmap] = ACTIONS(955), + [sym__cmap] = ACTIONS(955), + [sym__tmap] = ACTIONS(955), + [sym__noremap] = ACTIONS(955), + [sym__vnoremap] = ACTIONS(955), + [sym__nnoremap] = ACTIONS(955), + [sym__xnoremap] = ACTIONS(955), + [sym__snoremap] = ACTIONS(955), + [sym__onoremap] = ACTIONS(955), + [sym__inoremap] = ACTIONS(955), + [sym__lnoremap] = ACTIONS(955), + [sym__cnoremap] = ACTIONS(955), + [sym__tnoremap] = ACTIONS(955), + [sym__augroup] = ACTIONS(955), + [sym__highlight] = ACTIONS(955), + [sym__syntax] = ACTIONS(955), + [sym__set] = ACTIONS(955), + [sym__setlocal] = ACTIONS(955), + [sym__setfiletype] = ACTIONS(955), + [sym__browse] = ACTIONS(955), + [sym__options] = ACTIONS(955), + [sym__startinsert] = ACTIONS(955), + [sym__stopinsert] = ACTIONS(955), + [sym__scriptencoding] = ACTIONS(955), + [sym__source] = ACTIONS(955), + [sym__global] = ACTIONS(955), + [sym__colorscheme] = ACTIONS(955), + [sym__comclear] = ACTIONS(955), + [sym__delcommand] = ACTIONS(955), + [sym__runtime] = ACTIONS(955), + [sym__wincmd] = ACTIONS(955), + [sym__sign] = ACTIONS(955), + [sym__filetype] = ACTIONS(955), + [sym__let] = ACTIONS(955), + [sym__unlet] = ACTIONS(955), + [sym__call] = ACTIONS(955), + [sym__break] = ACTIONS(955), + [sym__continue] = ACTIONS(955), + [sym_unknown_command_name] = ACTIONS(955), }, [226] = { - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(937), - [sym_command_name] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [sym_mark] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_DOT2] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_BSLASH_SLASH] = ACTIONS(935), - [anon_sym_BSLASH_QMARK] = ACTIONS(935), - [anon_sym_BSLASH_AMP] = ACTIONS(935), - [anon_sym_LT2] = ACTIONS(937), - [anon_sym_STAR2] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(935), - [anon_sym_AMP_AMP] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_is] = ACTIONS(937), - [anon_sym_isnot] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_GT2] = ACTIONS(937), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_EQ_TILDE] = ACTIONS(935), - [anon_sym_BANG_TILDE] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [sym_register] = ACTIONS(935), - [sym__newline_or_pipe] = ACTIONS(935), + [anon_sym_COLON] = ACTIONS(845), + [anon_sym_DOT] = ACTIONS(167), + [sym_command_name] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(171), + [sym_mark] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(183), + [anon_sym_DOT2] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_BSLASH_SLASH] = ACTIONS(845), + [anon_sym_BSLASH_QMARK] = ACTIONS(845), + [anon_sym_BSLASH_AMP] = ACTIONS(845), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(183), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_DOT_DOT] = ACTIONS(845), + [anon_sym_is] = ACTIONS(847), + [anon_sym_isnot] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(845), + [anon_sym_BANG_TILDE] = ACTIONS(845), + [sym_integer_literal] = ACTIONS(845), + [anon_sym_LBRACK2] = ACTIONS(199), + [sym_register] = ACTIONS(845), + [sym__newline_or_pipe] = ACTIONS(845), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(935), - [sym__function] = ACTIONS(935), - [sym__for] = ACTIONS(935), - [sym__endfor] = ACTIONS(935), - [sym__while] = ACTIONS(935), - [sym__if] = ACTIONS(935), - [sym__try] = ACTIONS(935), - [sym__const] = ACTIONS(935), - [sym__normal] = ACTIONS(935), - [sym__return] = ACTIONS(935), - [sym__perl] = ACTIONS(935), - [sym__lua] = ACTIONS(935), - [sym__ruby] = ACTIONS(935), - [sym__python] = ACTIONS(935), - [sym__throw] = ACTIONS(935), - [sym__execute] = ACTIONS(935), - [sym__autocmd] = ACTIONS(935), - [sym__silent] = ACTIONS(935), - [sym__echo] = ACTIONS(935), - [sym__echon] = ACTIONS(935), - [sym__echohl] = ACTIONS(935), - [sym__echomsg] = ACTIONS(935), - [sym__echoerr] = ACTIONS(935), - [sym__map] = ACTIONS(935), - [sym__nmap] = ACTIONS(935), - [sym__vmap] = ACTIONS(935), - [sym__xmap] = ACTIONS(935), - [sym__smap] = ACTIONS(935), - [sym__omap] = ACTIONS(935), - [sym__imap] = ACTIONS(935), - [sym__lmap] = ACTIONS(935), - [sym__cmap] = ACTIONS(935), - [sym__tmap] = ACTIONS(935), - [sym__noremap] = ACTIONS(935), - [sym__vnoremap] = ACTIONS(935), - [sym__nnoremap] = ACTIONS(935), - [sym__xnoremap] = ACTIONS(935), - [sym__snoremap] = ACTIONS(935), - [sym__onoremap] = ACTIONS(935), - [sym__inoremap] = ACTIONS(935), - [sym__lnoremap] = ACTIONS(935), - [sym__cnoremap] = ACTIONS(935), - [sym__tnoremap] = ACTIONS(935), - [sym__augroup] = ACTIONS(935), - [sym__highlight] = ACTIONS(935), - [sym__syntax] = ACTIONS(935), - [sym__set] = ACTIONS(935), - [sym__setlocal] = ACTIONS(935), - [sym__setfiletype] = ACTIONS(935), - [sym__browse] = ACTIONS(935), - [sym__options] = ACTIONS(935), - [sym__startinsert] = ACTIONS(935), - [sym__stopinsert] = ACTIONS(935), - [sym__scriptencoding] = ACTIONS(935), - [sym__source] = ACTIONS(935), - [sym__global] = ACTIONS(935), - [sym__colorscheme] = ACTIONS(935), - [sym__comclear] = ACTIONS(935), - [sym__delcommand] = ACTIONS(935), - [sym__runtime] = ACTIONS(935), - [sym__wincmd] = ACTIONS(935), - [sym__sign] = ACTIONS(935), - [sym__filetype] = ACTIONS(935), - [sym__let] = ACTIONS(935), - [sym__unlet] = ACTIONS(935), - [sym__call] = ACTIONS(935), - [sym__break] = ACTIONS(935), - [sym__continue] = ACTIONS(935), - [sym_unknown_command_name] = ACTIONS(935), + [sym_comment] = ACTIONS(845), + [sym__function] = ACTIONS(845), + [sym__for] = ACTIONS(845), + [sym__endfor] = ACTIONS(845), + [sym__while] = ACTIONS(845), + [sym__if] = ACTIONS(845), + [sym__try] = ACTIONS(845), + [sym__const] = ACTIONS(845), + [sym__normal] = ACTIONS(845), + [sym__return] = ACTIONS(845), + [sym__perl] = ACTIONS(845), + [sym__lua] = ACTIONS(845), + [sym__ruby] = ACTIONS(845), + [sym__python] = ACTIONS(845), + [sym__throw] = ACTIONS(845), + [sym__execute] = ACTIONS(845), + [sym__autocmd] = ACTIONS(845), + [sym__silent] = ACTIONS(845), + [sym__echo] = ACTIONS(845), + [sym__echon] = ACTIONS(845), + [sym__echohl] = ACTIONS(845), + [sym__echomsg] = ACTIONS(845), + [sym__echoerr] = ACTIONS(845), + [sym__map] = ACTIONS(845), + [sym__nmap] = ACTIONS(845), + [sym__vmap] = ACTIONS(845), + [sym__xmap] = ACTIONS(845), + [sym__smap] = ACTIONS(845), + [sym__omap] = ACTIONS(845), + [sym__imap] = ACTIONS(845), + [sym__lmap] = ACTIONS(845), + [sym__cmap] = ACTIONS(845), + [sym__tmap] = ACTIONS(845), + [sym__noremap] = ACTIONS(845), + [sym__vnoremap] = ACTIONS(845), + [sym__nnoremap] = ACTIONS(845), + [sym__xnoremap] = ACTIONS(845), + [sym__snoremap] = ACTIONS(845), + [sym__onoremap] = ACTIONS(845), + [sym__inoremap] = ACTIONS(845), + [sym__lnoremap] = ACTIONS(845), + [sym__cnoremap] = ACTIONS(845), + [sym__tnoremap] = ACTIONS(845), + [sym__augroup] = ACTIONS(845), + [sym__highlight] = ACTIONS(845), + [sym__syntax] = ACTIONS(845), + [sym__set] = ACTIONS(845), + [sym__setlocal] = ACTIONS(845), + [sym__setfiletype] = ACTIONS(845), + [sym__browse] = ACTIONS(845), + [sym__options] = ACTIONS(845), + [sym__startinsert] = ACTIONS(845), + [sym__stopinsert] = ACTIONS(845), + [sym__scriptencoding] = ACTIONS(845), + [sym__source] = ACTIONS(845), + [sym__global] = ACTIONS(845), + [sym__colorscheme] = ACTIONS(845), + [sym__comclear] = ACTIONS(845), + [sym__delcommand] = ACTIONS(845), + [sym__runtime] = ACTIONS(845), + [sym__wincmd] = ACTIONS(845), + [sym__sign] = ACTIONS(845), + [sym__filetype] = ACTIONS(845), + [sym__let] = ACTIONS(845), + [sym__unlet] = ACTIONS(845), + [sym__call] = ACTIONS(845), + [sym__break] = ACTIONS(845), + [sym__continue] = ACTIONS(845), + [sym_unknown_command_name] = ACTIONS(845), }, [227] = { - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_DOT] = ACTIONS(855), - [sym_command_name] = ACTIONS(853), - [anon_sym_QMARK] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(853), - [sym_mark] = ACTIONS(853), - [anon_sym_PERCENT] = ACTIONS(853), - [anon_sym_SLASH] = ACTIONS(853), - [anon_sym_DOT2] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DOLLAR] = ACTIONS(853), - [anon_sym_BSLASH_SLASH] = ACTIONS(853), - [anon_sym_BSLASH_QMARK] = ACTIONS(853), - [anon_sym_BSLASH_AMP] = ACTIONS(853), - [anon_sym_LT2] = ACTIONS(855), - [anon_sym_STAR2] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DOT_DOT] = ACTIONS(853), - [anon_sym_is] = ACTIONS(855), - [anon_sym_isnot] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_GT2] = ACTIONS(855), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_EQ_TILDE] = ACTIONS(853), - [anon_sym_BANG_TILDE] = ACTIONS(853), - [sym_integer_literal] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), - [sym_register] = ACTIONS(853), - [sym__newline_or_pipe] = ACTIONS(853), + [anon_sym_COLON] = ACTIONS(845), + [anon_sym_DOT] = ACTIONS(167), + [sym_command_name] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(171), + [sym_mark] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(183), + [anon_sym_DOT2] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_BSLASH_SLASH] = ACTIONS(845), + [anon_sym_BSLASH_QMARK] = ACTIONS(845), + [anon_sym_BSLASH_AMP] = ACTIONS(845), + [anon_sym_LT2] = ACTIONS(181), + [anon_sym_STAR2] = ACTIONS(183), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_is] = ACTIONS(193), + [anon_sym_isnot] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(197), + [anon_sym_BANG_EQ] = ACTIONS(197), + [anon_sym_GT2] = ACTIONS(181), + [anon_sym_GT_EQ] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(197), + [anon_sym_EQ_TILDE] = ACTIONS(197), + [anon_sym_BANG_TILDE] = ACTIONS(197), + [sym_integer_literal] = ACTIONS(845), + [anon_sym_LBRACK2] = ACTIONS(199), + [sym_register] = ACTIONS(845), + [sym__newline_or_pipe] = ACTIONS(845), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(853), - [sym__function] = ACTIONS(853), - [sym__for] = ACTIONS(853), - [sym__endfor] = ACTIONS(853), - [sym__while] = ACTIONS(853), - [sym__if] = ACTIONS(853), - [sym__try] = ACTIONS(853), - [sym__const] = ACTIONS(853), - [sym__normal] = ACTIONS(853), - [sym__return] = ACTIONS(853), - [sym__perl] = ACTIONS(853), - [sym__lua] = ACTIONS(853), - [sym__ruby] = ACTIONS(853), - [sym__python] = ACTIONS(853), - [sym__throw] = ACTIONS(853), - [sym__execute] = ACTIONS(853), - [sym__autocmd] = ACTIONS(853), - [sym__silent] = ACTIONS(853), - [sym__echo] = ACTIONS(853), - [sym__echon] = ACTIONS(853), - [sym__echohl] = ACTIONS(853), - [sym__echomsg] = ACTIONS(853), - [sym__echoerr] = ACTIONS(853), - [sym__map] = ACTIONS(853), - [sym__nmap] = ACTIONS(853), - [sym__vmap] = ACTIONS(853), - [sym__xmap] = ACTIONS(853), - [sym__smap] = ACTIONS(853), - [sym__omap] = ACTIONS(853), - [sym__imap] = ACTIONS(853), - [sym__lmap] = ACTIONS(853), - [sym__cmap] = ACTIONS(853), - [sym__tmap] = ACTIONS(853), - [sym__noremap] = ACTIONS(853), - [sym__vnoremap] = ACTIONS(853), - [sym__nnoremap] = ACTIONS(853), - [sym__xnoremap] = ACTIONS(853), - [sym__snoremap] = ACTIONS(853), - [sym__onoremap] = ACTIONS(853), - [sym__inoremap] = ACTIONS(853), - [sym__lnoremap] = ACTIONS(853), - [sym__cnoremap] = ACTIONS(853), - [sym__tnoremap] = ACTIONS(853), - [sym__augroup] = ACTIONS(853), - [sym__highlight] = ACTIONS(853), - [sym__syntax] = ACTIONS(853), - [sym__set] = ACTIONS(853), - [sym__setlocal] = ACTIONS(853), - [sym__setfiletype] = ACTIONS(853), - [sym__browse] = ACTIONS(853), - [sym__options] = ACTIONS(853), - [sym__startinsert] = ACTIONS(853), - [sym__stopinsert] = ACTIONS(853), - [sym__scriptencoding] = ACTIONS(853), - [sym__source] = ACTIONS(853), - [sym__global] = ACTIONS(853), - [sym__colorscheme] = ACTIONS(853), - [sym__comclear] = ACTIONS(853), - [sym__delcommand] = ACTIONS(853), - [sym__runtime] = ACTIONS(853), - [sym__wincmd] = ACTIONS(853), - [sym__sign] = ACTIONS(853), - [sym__filetype] = ACTIONS(853), - [sym__let] = ACTIONS(853), - [sym__unlet] = ACTIONS(853), - [sym__call] = ACTIONS(853), - [sym__break] = ACTIONS(853), - [sym__continue] = ACTIONS(853), - [sym_unknown_command_name] = ACTIONS(853), + [sym_comment] = ACTIONS(845), + [sym__function] = ACTIONS(845), + [sym__for] = ACTIONS(845), + [sym__endfor] = ACTIONS(845), + [sym__while] = ACTIONS(845), + [sym__if] = ACTIONS(845), + [sym__try] = ACTIONS(845), + [sym__const] = ACTIONS(845), + [sym__normal] = ACTIONS(845), + [sym__return] = ACTIONS(845), + [sym__perl] = ACTIONS(845), + [sym__lua] = ACTIONS(845), + [sym__ruby] = ACTIONS(845), + [sym__python] = ACTIONS(845), + [sym__throw] = ACTIONS(845), + [sym__execute] = ACTIONS(845), + [sym__autocmd] = ACTIONS(845), + [sym__silent] = ACTIONS(845), + [sym__echo] = ACTIONS(845), + [sym__echon] = ACTIONS(845), + [sym__echohl] = ACTIONS(845), + [sym__echomsg] = ACTIONS(845), + [sym__echoerr] = ACTIONS(845), + [sym__map] = ACTIONS(845), + [sym__nmap] = ACTIONS(845), + [sym__vmap] = ACTIONS(845), + [sym__xmap] = ACTIONS(845), + [sym__smap] = ACTIONS(845), + [sym__omap] = ACTIONS(845), + [sym__imap] = ACTIONS(845), + [sym__lmap] = ACTIONS(845), + [sym__cmap] = ACTIONS(845), + [sym__tmap] = ACTIONS(845), + [sym__noremap] = ACTIONS(845), + [sym__vnoremap] = ACTIONS(845), + [sym__nnoremap] = ACTIONS(845), + [sym__xnoremap] = ACTIONS(845), + [sym__snoremap] = ACTIONS(845), + [sym__onoremap] = ACTIONS(845), + [sym__inoremap] = ACTIONS(845), + [sym__lnoremap] = ACTIONS(845), + [sym__cnoremap] = ACTIONS(845), + [sym__tnoremap] = ACTIONS(845), + [sym__augroup] = ACTIONS(845), + [sym__highlight] = ACTIONS(845), + [sym__syntax] = ACTIONS(845), + [sym__set] = ACTIONS(845), + [sym__setlocal] = ACTIONS(845), + [sym__setfiletype] = ACTIONS(845), + [sym__browse] = ACTIONS(845), + [sym__options] = ACTIONS(845), + [sym__startinsert] = ACTIONS(845), + [sym__stopinsert] = ACTIONS(845), + [sym__scriptencoding] = ACTIONS(845), + [sym__source] = ACTIONS(845), + [sym__global] = ACTIONS(845), + [sym__colorscheme] = ACTIONS(845), + [sym__comclear] = ACTIONS(845), + [sym__delcommand] = ACTIONS(845), + [sym__runtime] = ACTIONS(845), + [sym__wincmd] = ACTIONS(845), + [sym__sign] = ACTIONS(845), + [sym__filetype] = ACTIONS(845), + [sym__let] = ACTIONS(845), + [sym__unlet] = ACTIONS(845), + [sym__call] = ACTIONS(845), + [sym__break] = ACTIONS(845), + [sym__continue] = ACTIONS(845), + [sym_unknown_command_name] = ACTIONS(845), }, [228] = { - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_DOT] = ACTIONS(859), - [sym_command_name] = ACTIONS(857), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(857), - [sym_mark] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(857), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_DOT2] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DOLLAR] = ACTIONS(857), - [anon_sym_BSLASH_SLASH] = ACTIONS(857), - [anon_sym_BSLASH_QMARK] = ACTIONS(857), - [anon_sym_BSLASH_AMP] = ACTIONS(857), - [anon_sym_LT2] = ACTIONS(859), - [anon_sym_STAR2] = ACTIONS(857), - [anon_sym_PIPE_PIPE] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_DOT_DOT] = ACTIONS(857), - [anon_sym_is] = ACTIONS(859), - [anon_sym_isnot] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_GT2] = ACTIONS(859), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_EQ_TILDE] = ACTIONS(857), - [anon_sym_BANG_TILDE] = ACTIONS(857), - [sym_integer_literal] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(857), - [sym_register] = ACTIONS(857), - [sym__newline_or_pipe] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(821), + [sym_command_name] = ACTIONS(819), + [anon_sym_QMARK] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(819), + [sym_mark] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_DOT2] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_BSLASH_SLASH] = ACTIONS(819), + [anon_sym_BSLASH_QMARK] = ACTIONS(819), + [anon_sym_BSLASH_AMP] = ACTIONS(819), + [anon_sym_LT2] = ACTIONS(821), + [anon_sym_STAR2] = ACTIONS(819), + [anon_sym_PIPE_PIPE] = ACTIONS(819), + [anon_sym_AMP_AMP] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_DOT_DOT] = ACTIONS(819), + [anon_sym_is] = ACTIONS(821), + [anon_sym_isnot] = ACTIONS(819), + [anon_sym_EQ_EQ] = ACTIONS(819), + [anon_sym_BANG_EQ] = ACTIONS(819), + [anon_sym_GT2] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(819), + [anon_sym_LT_EQ] = ACTIONS(819), + [anon_sym_EQ_TILDE] = ACTIONS(819), + [anon_sym_BANG_TILDE] = ACTIONS(819), + [sym_integer_literal] = ACTIONS(819), + [anon_sym_LBRACK2] = ACTIONS(819), + [sym_register] = ACTIONS(819), + [sym__newline_or_pipe] = ACTIONS(819), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(857), - [sym__function] = ACTIONS(857), - [sym__for] = ACTIONS(857), - [sym__endfor] = ACTIONS(857), - [sym__while] = ACTIONS(857), - [sym__if] = ACTIONS(857), - [sym__try] = ACTIONS(857), - [sym__const] = ACTIONS(857), - [sym__normal] = ACTIONS(857), - [sym__return] = ACTIONS(857), - [sym__perl] = ACTIONS(857), - [sym__lua] = ACTIONS(857), - [sym__ruby] = ACTIONS(857), - [sym__python] = ACTIONS(857), - [sym__throw] = ACTIONS(857), - [sym__execute] = ACTIONS(857), - [sym__autocmd] = ACTIONS(857), - [sym__silent] = ACTIONS(857), - [sym__echo] = ACTIONS(857), - [sym__echon] = ACTIONS(857), - [sym__echohl] = ACTIONS(857), - [sym__echomsg] = ACTIONS(857), - [sym__echoerr] = ACTIONS(857), - [sym__map] = ACTIONS(857), - [sym__nmap] = ACTIONS(857), - [sym__vmap] = ACTIONS(857), - [sym__xmap] = ACTIONS(857), - [sym__smap] = ACTIONS(857), - [sym__omap] = ACTIONS(857), - [sym__imap] = ACTIONS(857), - [sym__lmap] = ACTIONS(857), - [sym__cmap] = ACTIONS(857), - [sym__tmap] = ACTIONS(857), - [sym__noremap] = ACTIONS(857), - [sym__vnoremap] = ACTIONS(857), - [sym__nnoremap] = ACTIONS(857), - [sym__xnoremap] = ACTIONS(857), - [sym__snoremap] = ACTIONS(857), - [sym__onoremap] = ACTIONS(857), - [sym__inoremap] = ACTIONS(857), - [sym__lnoremap] = ACTIONS(857), - [sym__cnoremap] = ACTIONS(857), - [sym__tnoremap] = ACTIONS(857), - [sym__augroup] = ACTIONS(857), - [sym__highlight] = ACTIONS(857), - [sym__syntax] = ACTIONS(857), - [sym__set] = ACTIONS(857), - [sym__setlocal] = ACTIONS(857), - [sym__setfiletype] = ACTIONS(857), - [sym__browse] = ACTIONS(857), - [sym__options] = ACTIONS(857), - [sym__startinsert] = ACTIONS(857), - [sym__stopinsert] = ACTIONS(857), - [sym__scriptencoding] = ACTIONS(857), - [sym__source] = ACTIONS(857), - [sym__global] = ACTIONS(857), - [sym__colorscheme] = ACTIONS(857), - [sym__comclear] = ACTIONS(857), - [sym__delcommand] = ACTIONS(857), - [sym__runtime] = ACTIONS(857), - [sym__wincmd] = ACTIONS(857), - [sym__sign] = ACTIONS(857), - [sym__filetype] = ACTIONS(857), - [sym__let] = ACTIONS(857), - [sym__unlet] = ACTIONS(857), - [sym__call] = ACTIONS(857), - [sym__break] = ACTIONS(857), - [sym__continue] = ACTIONS(857), - [sym_unknown_command_name] = ACTIONS(857), + [sym_comment] = ACTIONS(819), + [sym__function] = ACTIONS(819), + [sym__for] = ACTIONS(819), + [sym__endfor] = ACTIONS(819), + [sym__while] = ACTIONS(819), + [sym__if] = ACTIONS(819), + [sym__try] = ACTIONS(819), + [sym__const] = ACTIONS(819), + [sym__normal] = ACTIONS(819), + [sym__return] = ACTIONS(819), + [sym__perl] = ACTIONS(819), + [sym__lua] = ACTIONS(819), + [sym__ruby] = ACTIONS(819), + [sym__python] = ACTIONS(819), + [sym__throw] = ACTIONS(819), + [sym__execute] = ACTIONS(819), + [sym__autocmd] = ACTIONS(819), + [sym__silent] = ACTIONS(819), + [sym__echo] = ACTIONS(819), + [sym__echon] = ACTIONS(819), + [sym__echohl] = ACTIONS(819), + [sym__echomsg] = ACTIONS(819), + [sym__echoerr] = ACTIONS(819), + [sym__map] = ACTIONS(819), + [sym__nmap] = ACTIONS(819), + [sym__vmap] = ACTIONS(819), + [sym__xmap] = ACTIONS(819), + [sym__smap] = ACTIONS(819), + [sym__omap] = ACTIONS(819), + [sym__imap] = ACTIONS(819), + [sym__lmap] = ACTIONS(819), + [sym__cmap] = ACTIONS(819), + [sym__tmap] = ACTIONS(819), + [sym__noremap] = ACTIONS(819), + [sym__vnoremap] = ACTIONS(819), + [sym__nnoremap] = ACTIONS(819), + [sym__xnoremap] = ACTIONS(819), + [sym__snoremap] = ACTIONS(819), + [sym__onoremap] = ACTIONS(819), + [sym__inoremap] = ACTIONS(819), + [sym__lnoremap] = ACTIONS(819), + [sym__cnoremap] = ACTIONS(819), + [sym__tnoremap] = ACTIONS(819), + [sym__augroup] = ACTIONS(819), + [sym__highlight] = ACTIONS(819), + [sym__syntax] = ACTIONS(819), + [sym__set] = ACTIONS(819), + [sym__setlocal] = ACTIONS(819), + [sym__setfiletype] = ACTIONS(819), + [sym__browse] = ACTIONS(819), + [sym__options] = ACTIONS(819), + [sym__startinsert] = ACTIONS(819), + [sym__stopinsert] = ACTIONS(819), + [sym__scriptencoding] = ACTIONS(819), + [sym__source] = ACTIONS(819), + [sym__global] = ACTIONS(819), + [sym__colorscheme] = ACTIONS(819), + [sym__comclear] = ACTIONS(819), + [sym__delcommand] = ACTIONS(819), + [sym__runtime] = ACTIONS(819), + [sym__wincmd] = ACTIONS(819), + [sym__sign] = ACTIONS(819), + [sym__filetype] = ACTIONS(819), + [sym__let] = ACTIONS(819), + [sym__unlet] = ACTIONS(819), + [sym__call] = ACTIONS(819), + [sym__break] = ACTIONS(819), + [sym__continue] = ACTIONS(819), + [sym_unknown_command_name] = ACTIONS(819), }, [229] = { - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(953), - [sym_command_name] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [sym_mark] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_DOT2] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_BSLASH_SLASH] = ACTIONS(951), - [anon_sym_BSLASH_QMARK] = ACTIONS(951), - [anon_sym_BSLASH_AMP] = ACTIONS(951), - [anon_sym_LT2] = ACTIONS(953), - [anon_sym_STAR2] = ACTIONS(951), - [anon_sym_PIPE_PIPE] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_is] = ACTIONS(953), - [anon_sym_isnot] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_BANG_EQ] = ACTIONS(951), - [anon_sym_GT2] = ACTIONS(953), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_EQ_TILDE] = ACTIONS(951), - [anon_sym_BANG_TILDE] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [sym_register] = ACTIONS(951), - [sym__newline_or_pipe] = ACTIONS(951), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(857), + [sym_command_name] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [sym_mark] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_DOT2] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_BSLASH_SLASH] = ACTIONS(855), + [anon_sym_BSLASH_QMARK] = ACTIONS(855), + [anon_sym_BSLASH_AMP] = ACTIONS(855), + [anon_sym_LT2] = ACTIONS(857), + [anon_sym_STAR2] = ACTIONS(855), + [anon_sym_PIPE_PIPE] = ACTIONS(855), + [anon_sym_AMP_AMP] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(857), + [anon_sym_DOT_DOT] = ACTIONS(855), + [anon_sym_is] = ACTIONS(857), + [anon_sym_isnot] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_GT2] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_BANG_TILDE] = ACTIONS(855), + [sym_integer_literal] = ACTIONS(855), + [anon_sym_LBRACK2] = ACTIONS(855), + [sym_register] = ACTIONS(855), + [sym__newline_or_pipe] = ACTIONS(855), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(951), - [sym__function] = ACTIONS(951), - [sym__for] = ACTIONS(951), - [sym__endfor] = ACTIONS(951), - [sym__while] = ACTIONS(951), - [sym__if] = ACTIONS(951), - [sym__try] = ACTIONS(951), - [sym__const] = ACTIONS(951), - [sym__normal] = ACTIONS(951), - [sym__return] = ACTIONS(951), - [sym__perl] = ACTIONS(951), - [sym__lua] = ACTIONS(951), - [sym__ruby] = ACTIONS(951), - [sym__python] = ACTIONS(951), - [sym__throw] = ACTIONS(951), - [sym__execute] = ACTIONS(951), - [sym__autocmd] = ACTIONS(951), - [sym__silent] = ACTIONS(951), - [sym__echo] = ACTIONS(951), - [sym__echon] = ACTIONS(951), - [sym__echohl] = ACTIONS(951), - [sym__echomsg] = ACTIONS(951), - [sym__echoerr] = ACTIONS(951), - [sym__map] = ACTIONS(951), - [sym__nmap] = ACTIONS(951), - [sym__vmap] = ACTIONS(951), - [sym__xmap] = ACTIONS(951), - [sym__smap] = ACTIONS(951), - [sym__omap] = ACTIONS(951), - [sym__imap] = ACTIONS(951), - [sym__lmap] = ACTIONS(951), - [sym__cmap] = ACTIONS(951), - [sym__tmap] = ACTIONS(951), - [sym__noremap] = ACTIONS(951), - [sym__vnoremap] = ACTIONS(951), - [sym__nnoremap] = ACTIONS(951), - [sym__xnoremap] = ACTIONS(951), - [sym__snoremap] = ACTIONS(951), - [sym__onoremap] = ACTIONS(951), - [sym__inoremap] = ACTIONS(951), - [sym__lnoremap] = ACTIONS(951), - [sym__cnoremap] = ACTIONS(951), - [sym__tnoremap] = ACTIONS(951), - [sym__augroup] = ACTIONS(951), - [sym__highlight] = ACTIONS(951), - [sym__syntax] = ACTIONS(951), - [sym__set] = ACTIONS(951), - [sym__setlocal] = ACTIONS(951), - [sym__setfiletype] = ACTIONS(951), - [sym__browse] = ACTIONS(951), - [sym__options] = ACTIONS(951), - [sym__startinsert] = ACTIONS(951), - [sym__stopinsert] = ACTIONS(951), - [sym__scriptencoding] = ACTIONS(951), - [sym__source] = ACTIONS(951), - [sym__global] = ACTIONS(951), - [sym__colorscheme] = ACTIONS(951), - [sym__comclear] = ACTIONS(951), - [sym__delcommand] = ACTIONS(951), - [sym__runtime] = ACTIONS(951), - [sym__wincmd] = ACTIONS(951), - [sym__sign] = ACTIONS(951), - [sym__filetype] = ACTIONS(951), - [sym__let] = ACTIONS(951), - [sym__unlet] = ACTIONS(951), - [sym__call] = ACTIONS(951), - [sym__break] = ACTIONS(951), - [sym__continue] = ACTIONS(951), - [sym_unknown_command_name] = ACTIONS(951), + [sym_comment] = ACTIONS(855), + [sym__function] = ACTIONS(855), + [sym__for] = ACTIONS(855), + [sym__endfor] = ACTIONS(855), + [sym__while] = ACTIONS(855), + [sym__if] = ACTIONS(855), + [sym__try] = ACTIONS(855), + [sym__const] = ACTIONS(855), + [sym__normal] = ACTIONS(855), + [sym__return] = ACTIONS(855), + [sym__perl] = ACTIONS(855), + [sym__lua] = ACTIONS(855), + [sym__ruby] = ACTIONS(855), + [sym__python] = ACTIONS(855), + [sym__throw] = ACTIONS(855), + [sym__execute] = ACTIONS(855), + [sym__autocmd] = ACTIONS(855), + [sym__silent] = ACTIONS(855), + [sym__echo] = ACTIONS(855), + [sym__echon] = ACTIONS(855), + [sym__echohl] = ACTIONS(855), + [sym__echomsg] = ACTIONS(855), + [sym__echoerr] = ACTIONS(855), + [sym__map] = ACTIONS(855), + [sym__nmap] = ACTIONS(855), + [sym__vmap] = ACTIONS(855), + [sym__xmap] = ACTIONS(855), + [sym__smap] = ACTIONS(855), + [sym__omap] = ACTIONS(855), + [sym__imap] = ACTIONS(855), + [sym__lmap] = ACTIONS(855), + [sym__cmap] = ACTIONS(855), + [sym__tmap] = ACTIONS(855), + [sym__noremap] = ACTIONS(855), + [sym__vnoremap] = ACTIONS(855), + [sym__nnoremap] = ACTIONS(855), + [sym__xnoremap] = ACTIONS(855), + [sym__snoremap] = ACTIONS(855), + [sym__onoremap] = ACTIONS(855), + [sym__inoremap] = ACTIONS(855), + [sym__lnoremap] = ACTIONS(855), + [sym__cnoremap] = ACTIONS(855), + [sym__tnoremap] = ACTIONS(855), + [sym__augroup] = ACTIONS(855), + [sym__highlight] = ACTIONS(855), + [sym__syntax] = ACTIONS(855), + [sym__set] = ACTIONS(855), + [sym__setlocal] = ACTIONS(855), + [sym__setfiletype] = ACTIONS(855), + [sym__browse] = ACTIONS(855), + [sym__options] = ACTIONS(855), + [sym__startinsert] = ACTIONS(855), + [sym__stopinsert] = ACTIONS(855), + [sym__scriptencoding] = ACTIONS(855), + [sym__source] = ACTIONS(855), + [sym__global] = ACTIONS(855), + [sym__colorscheme] = ACTIONS(855), + [sym__comclear] = ACTIONS(855), + [sym__delcommand] = ACTIONS(855), + [sym__runtime] = ACTIONS(855), + [sym__wincmd] = ACTIONS(855), + [sym__sign] = ACTIONS(855), + [sym__filetype] = ACTIONS(855), + [sym__let] = ACTIONS(855), + [sym__unlet] = ACTIONS(855), + [sym__call] = ACTIONS(855), + [sym__break] = ACTIONS(855), + [sym__continue] = ACTIONS(855), + [sym_unknown_command_name] = ACTIONS(855), }, [230] = { - [anon_sym_COLON] = ACTIONS(963), + [anon_sym_COLON] = ACTIONS(845), [anon_sym_DOT] = ACTIONS(167), - [sym_command_name] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(963), + [sym_command_name] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), [anon_sym_LPAREN] = ACTIONS(171), - [sym_mark] = ACTIONS(963), + [sym_mark] = ACTIONS(845), [anon_sym_PERCENT] = ACTIONS(183), [anon_sym_SLASH] = ACTIONS(183), [anon_sym_DOT2] = ACTIONS(189), [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_BSLASH_SLASH] = ACTIONS(963), - [anon_sym_BSLASH_QMARK] = ACTIONS(963), - [anon_sym_BSLASH_AMP] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_BSLASH_SLASH] = ACTIONS(845), + [anon_sym_BSLASH_QMARK] = ACTIONS(845), + [anon_sym_BSLASH_AMP] = ACTIONS(845), + [anon_sym_LT2] = ACTIONS(847), [anon_sym_STAR2] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), [anon_sym_DASH] = ACTIONS(189), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(193), - [anon_sym_isnot] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_GT2] = ACTIONS(181), - [anon_sym_GT_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(197), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_BANG_TILDE] = ACTIONS(197), - [sym_integer_literal] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(199), - [sym_register] = ACTIONS(963), - [sym__newline_or_pipe] = ACTIONS(963), + [anon_sym_is] = ACTIONS(847), + [anon_sym_isnot] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(845), + [anon_sym_BANG_TILDE] = ACTIONS(845), + [sym_integer_literal] = ACTIONS(845), + [anon_sym_LBRACK2] = ACTIONS(199), + [sym_register] = ACTIONS(845), + [sym__newline_or_pipe] = ACTIONS(845), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(963), - [sym__function] = ACTIONS(963), - [sym__for] = ACTIONS(963), - [sym__endfor] = ACTIONS(963), - [sym__while] = ACTIONS(963), - [sym__if] = ACTIONS(963), - [sym__try] = ACTIONS(963), - [sym__const] = ACTIONS(963), - [sym__normal] = ACTIONS(963), - [sym__return] = ACTIONS(963), - [sym__perl] = ACTIONS(963), - [sym__lua] = ACTIONS(963), - [sym__ruby] = ACTIONS(963), - [sym__python] = ACTIONS(963), - [sym__throw] = ACTIONS(963), - [sym__execute] = ACTIONS(963), - [sym__autocmd] = ACTIONS(963), - [sym__silent] = ACTIONS(963), - [sym__echo] = ACTIONS(963), - [sym__echon] = ACTIONS(963), - [sym__echohl] = ACTIONS(963), - [sym__echomsg] = ACTIONS(963), - [sym__echoerr] = ACTIONS(963), - [sym__map] = ACTIONS(963), - [sym__nmap] = ACTIONS(963), - [sym__vmap] = ACTIONS(963), - [sym__xmap] = ACTIONS(963), - [sym__smap] = ACTIONS(963), - [sym__omap] = ACTIONS(963), - [sym__imap] = ACTIONS(963), - [sym__lmap] = ACTIONS(963), - [sym__cmap] = ACTIONS(963), - [sym__tmap] = ACTIONS(963), - [sym__noremap] = ACTIONS(963), - [sym__vnoremap] = ACTIONS(963), - [sym__nnoremap] = ACTIONS(963), - [sym__xnoremap] = ACTIONS(963), - [sym__snoremap] = ACTIONS(963), - [sym__onoremap] = ACTIONS(963), - [sym__inoremap] = ACTIONS(963), - [sym__lnoremap] = ACTIONS(963), - [sym__cnoremap] = ACTIONS(963), - [sym__tnoremap] = ACTIONS(963), - [sym__augroup] = ACTIONS(963), - [sym__highlight] = ACTIONS(963), - [sym__syntax] = ACTIONS(963), - [sym__set] = ACTIONS(963), - [sym__setlocal] = ACTIONS(963), - [sym__setfiletype] = ACTIONS(963), - [sym__browse] = ACTIONS(963), - [sym__options] = ACTIONS(963), - [sym__startinsert] = ACTIONS(963), - [sym__stopinsert] = ACTIONS(963), - [sym__scriptencoding] = ACTIONS(963), - [sym__source] = ACTIONS(963), - [sym__global] = ACTIONS(963), - [sym__colorscheme] = ACTIONS(963), - [sym__comclear] = ACTIONS(963), - [sym__delcommand] = ACTIONS(963), - [sym__runtime] = ACTIONS(963), - [sym__wincmd] = ACTIONS(963), - [sym__sign] = ACTIONS(963), - [sym__filetype] = ACTIONS(963), - [sym__let] = ACTIONS(963), - [sym__unlet] = ACTIONS(963), - [sym__call] = ACTIONS(963), - [sym__break] = ACTIONS(963), - [sym__continue] = ACTIONS(963), - [sym_unknown_command_name] = ACTIONS(963), + [sym_comment] = ACTIONS(845), + [sym__function] = ACTIONS(845), + [sym__for] = ACTIONS(845), + [sym__endfor] = ACTIONS(845), + [sym__while] = ACTIONS(845), + [sym__if] = ACTIONS(845), + [sym__try] = ACTIONS(845), + [sym__const] = ACTIONS(845), + [sym__normal] = ACTIONS(845), + [sym__return] = ACTIONS(845), + [sym__perl] = ACTIONS(845), + [sym__lua] = ACTIONS(845), + [sym__ruby] = ACTIONS(845), + [sym__python] = ACTIONS(845), + [sym__throw] = ACTIONS(845), + [sym__execute] = ACTIONS(845), + [sym__autocmd] = ACTIONS(845), + [sym__silent] = ACTIONS(845), + [sym__echo] = ACTIONS(845), + [sym__echon] = ACTIONS(845), + [sym__echohl] = ACTIONS(845), + [sym__echomsg] = ACTIONS(845), + [sym__echoerr] = ACTIONS(845), + [sym__map] = ACTIONS(845), + [sym__nmap] = ACTIONS(845), + [sym__vmap] = ACTIONS(845), + [sym__xmap] = ACTIONS(845), + [sym__smap] = ACTIONS(845), + [sym__omap] = ACTIONS(845), + [sym__imap] = ACTIONS(845), + [sym__lmap] = ACTIONS(845), + [sym__cmap] = ACTIONS(845), + [sym__tmap] = ACTIONS(845), + [sym__noremap] = ACTIONS(845), + [sym__vnoremap] = ACTIONS(845), + [sym__nnoremap] = ACTIONS(845), + [sym__xnoremap] = ACTIONS(845), + [sym__snoremap] = ACTIONS(845), + [sym__onoremap] = ACTIONS(845), + [sym__inoremap] = ACTIONS(845), + [sym__lnoremap] = ACTIONS(845), + [sym__cnoremap] = ACTIONS(845), + [sym__tnoremap] = ACTIONS(845), + [sym__augroup] = ACTIONS(845), + [sym__highlight] = ACTIONS(845), + [sym__syntax] = ACTIONS(845), + [sym__set] = ACTIONS(845), + [sym__setlocal] = ACTIONS(845), + [sym__setfiletype] = ACTIONS(845), + [sym__browse] = ACTIONS(845), + [sym__options] = ACTIONS(845), + [sym__startinsert] = ACTIONS(845), + [sym__stopinsert] = ACTIONS(845), + [sym__scriptencoding] = ACTIONS(845), + [sym__source] = ACTIONS(845), + [sym__global] = ACTIONS(845), + [sym__colorscheme] = ACTIONS(845), + [sym__comclear] = ACTIONS(845), + [sym__delcommand] = ACTIONS(845), + [sym__runtime] = ACTIONS(845), + [sym__wincmd] = ACTIONS(845), + [sym__sign] = ACTIONS(845), + [sym__filetype] = ACTIONS(845), + [sym__let] = ACTIONS(845), + [sym__unlet] = ACTIONS(845), + [sym__call] = ACTIONS(845), + [sym__break] = ACTIONS(845), + [sym__continue] = ACTIONS(845), + [sym_unknown_command_name] = ACTIONS(845), }, [231] = { - [anon_sym_COLON] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(893), - [sym_command_name] = ACTIONS(891), - [anon_sym_QMARK] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(891), - [sym_mark] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(891), - [anon_sym_DOT2] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_BSLASH_SLASH] = ACTIONS(891), - [anon_sym_BSLASH_QMARK] = ACTIONS(891), - [anon_sym_BSLASH_AMP] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(893), - [anon_sym_STAR2] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_DOT_DOT] = ACTIONS(891), - [anon_sym_is] = ACTIONS(893), - [anon_sym_isnot] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_GT2] = ACTIONS(893), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [sym_integer_literal] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(891), - [sym_register] = ACTIONS(891), - [sym__newline_or_pipe] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_DOT] = ACTIONS(881), + [sym_command_name] = ACTIONS(879), + [anon_sym_QMARK] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(879), + [sym_mark] = ACTIONS(879), + [anon_sym_PERCENT] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_DOT2] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_DOLLAR] = ACTIONS(879), + [anon_sym_BSLASH_SLASH] = ACTIONS(879), + [anon_sym_BSLASH_QMARK] = ACTIONS(879), + [anon_sym_BSLASH_AMP] = ACTIONS(879), + [anon_sym_LT2] = ACTIONS(881), + [anon_sym_STAR2] = ACTIONS(879), + [anon_sym_PIPE_PIPE] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_DOT_DOT] = ACTIONS(879), + [anon_sym_is] = ACTIONS(881), + [anon_sym_isnot] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_GT2] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(879), + [anon_sym_LT_EQ] = ACTIONS(879), + [anon_sym_EQ_TILDE] = ACTIONS(879), + [anon_sym_BANG_TILDE] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(879), + [anon_sym_LBRACK2] = ACTIONS(879), + [sym_register] = ACTIONS(879), + [sym__newline_or_pipe] = ACTIONS(879), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(891), - [sym__function] = ACTIONS(891), - [sym__for] = ACTIONS(891), - [sym__endfor] = ACTIONS(891), - [sym__while] = ACTIONS(891), - [sym__if] = ACTIONS(891), - [sym__try] = ACTIONS(891), - [sym__const] = ACTIONS(891), - [sym__normal] = ACTIONS(891), - [sym__return] = ACTIONS(891), - [sym__perl] = ACTIONS(891), - [sym__lua] = ACTIONS(891), - [sym__ruby] = ACTIONS(891), - [sym__python] = ACTIONS(891), - [sym__throw] = ACTIONS(891), - [sym__execute] = ACTIONS(891), - [sym__autocmd] = ACTIONS(891), - [sym__silent] = ACTIONS(891), - [sym__echo] = ACTIONS(891), - [sym__echon] = ACTIONS(891), - [sym__echohl] = ACTIONS(891), - [sym__echomsg] = ACTIONS(891), - [sym__echoerr] = ACTIONS(891), - [sym__map] = ACTIONS(891), - [sym__nmap] = ACTIONS(891), - [sym__vmap] = ACTIONS(891), - [sym__xmap] = ACTIONS(891), - [sym__smap] = ACTIONS(891), - [sym__omap] = ACTIONS(891), - [sym__imap] = ACTIONS(891), - [sym__lmap] = ACTIONS(891), - [sym__cmap] = ACTIONS(891), - [sym__tmap] = ACTIONS(891), - [sym__noremap] = ACTIONS(891), - [sym__vnoremap] = ACTIONS(891), - [sym__nnoremap] = ACTIONS(891), - [sym__xnoremap] = ACTIONS(891), - [sym__snoremap] = ACTIONS(891), - [sym__onoremap] = ACTIONS(891), - [sym__inoremap] = ACTIONS(891), - [sym__lnoremap] = ACTIONS(891), - [sym__cnoremap] = ACTIONS(891), - [sym__tnoremap] = ACTIONS(891), - [sym__augroup] = ACTIONS(891), - [sym__highlight] = ACTIONS(891), - [sym__syntax] = ACTIONS(891), - [sym__set] = ACTIONS(891), - [sym__setlocal] = ACTIONS(891), - [sym__setfiletype] = ACTIONS(891), - [sym__browse] = ACTIONS(891), - [sym__options] = ACTIONS(891), - [sym__startinsert] = ACTIONS(891), - [sym__stopinsert] = ACTIONS(891), - [sym__scriptencoding] = ACTIONS(891), - [sym__source] = ACTIONS(891), - [sym__global] = ACTIONS(891), - [sym__colorscheme] = ACTIONS(891), - [sym__comclear] = ACTIONS(891), - [sym__delcommand] = ACTIONS(891), - [sym__runtime] = ACTIONS(891), - [sym__wincmd] = ACTIONS(891), - [sym__sign] = ACTIONS(891), - [sym__filetype] = ACTIONS(891), - [sym__let] = ACTIONS(891), - [sym__unlet] = ACTIONS(891), - [sym__call] = ACTIONS(891), - [sym__break] = ACTIONS(891), - [sym__continue] = ACTIONS(891), - [sym_unknown_command_name] = ACTIONS(891), + [sym_comment] = ACTIONS(879), + [sym__function] = ACTIONS(879), + [sym__for] = ACTIONS(879), + [sym__endfor] = ACTIONS(879), + [sym__while] = ACTIONS(879), + [sym__if] = ACTIONS(879), + [sym__try] = ACTIONS(879), + [sym__const] = ACTIONS(879), + [sym__normal] = ACTIONS(879), + [sym__return] = ACTIONS(879), + [sym__perl] = ACTIONS(879), + [sym__lua] = ACTIONS(879), + [sym__ruby] = ACTIONS(879), + [sym__python] = ACTIONS(879), + [sym__throw] = ACTIONS(879), + [sym__execute] = ACTIONS(879), + [sym__autocmd] = ACTIONS(879), + [sym__silent] = ACTIONS(879), + [sym__echo] = ACTIONS(879), + [sym__echon] = ACTIONS(879), + [sym__echohl] = ACTIONS(879), + [sym__echomsg] = ACTIONS(879), + [sym__echoerr] = ACTIONS(879), + [sym__map] = ACTIONS(879), + [sym__nmap] = ACTIONS(879), + [sym__vmap] = ACTIONS(879), + [sym__xmap] = ACTIONS(879), + [sym__smap] = ACTIONS(879), + [sym__omap] = ACTIONS(879), + [sym__imap] = ACTIONS(879), + [sym__lmap] = ACTIONS(879), + [sym__cmap] = ACTIONS(879), + [sym__tmap] = ACTIONS(879), + [sym__noremap] = ACTIONS(879), + [sym__vnoremap] = ACTIONS(879), + [sym__nnoremap] = ACTIONS(879), + [sym__xnoremap] = ACTIONS(879), + [sym__snoremap] = ACTIONS(879), + [sym__onoremap] = ACTIONS(879), + [sym__inoremap] = ACTIONS(879), + [sym__lnoremap] = ACTIONS(879), + [sym__cnoremap] = ACTIONS(879), + [sym__tnoremap] = ACTIONS(879), + [sym__augroup] = ACTIONS(879), + [sym__highlight] = ACTIONS(879), + [sym__syntax] = ACTIONS(879), + [sym__set] = ACTIONS(879), + [sym__setlocal] = ACTIONS(879), + [sym__setfiletype] = ACTIONS(879), + [sym__browse] = ACTIONS(879), + [sym__options] = ACTIONS(879), + [sym__startinsert] = ACTIONS(879), + [sym__stopinsert] = ACTIONS(879), + [sym__scriptencoding] = ACTIONS(879), + [sym__source] = ACTIONS(879), + [sym__global] = ACTIONS(879), + [sym__colorscheme] = ACTIONS(879), + [sym__comclear] = ACTIONS(879), + [sym__delcommand] = ACTIONS(879), + [sym__runtime] = ACTIONS(879), + [sym__wincmd] = ACTIONS(879), + [sym__sign] = ACTIONS(879), + [sym__filetype] = ACTIONS(879), + [sym__let] = ACTIONS(879), + [sym__unlet] = ACTIONS(879), + [sym__call] = ACTIONS(879), + [sym__break] = ACTIONS(879), + [sym__continue] = ACTIONS(879), + [sym_unknown_command_name] = ACTIONS(879), }, [232] = { - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(917), - [sym_command_name] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(915), - [sym_mark] = ACTIONS(915), - [anon_sym_PERCENT] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [anon_sym_DOT2] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_BSLASH_SLASH] = ACTIONS(915), - [anon_sym_BSLASH_QMARK] = ACTIONS(915), - [anon_sym_BSLASH_AMP] = ACTIONS(915), - [anon_sym_LT2] = ACTIONS(917), - [anon_sym_STAR2] = ACTIONS(915), - [anon_sym_PIPE_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_is] = ACTIONS(917), - [anon_sym_isnot] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(915), - [anon_sym_BANG_EQ] = ACTIONS(915), - [anon_sym_GT2] = ACTIONS(917), - [anon_sym_GT_EQ] = ACTIONS(915), - [anon_sym_LT_EQ] = ACTIONS(915), - [anon_sym_EQ_TILDE] = ACTIONS(915), - [anon_sym_BANG_TILDE] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(915), - [anon_sym_LBRACK] = ACTIONS(915), - [sym_register] = ACTIONS(915), - [sym__newline_or_pipe] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(985), + [sym_command_name] = ACTIONS(983), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(983), + [sym_mark] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_DOT2] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(983), + [anon_sym_BSLASH_SLASH] = ACTIONS(983), + [anon_sym_BSLASH_QMARK] = ACTIONS(983), + [anon_sym_BSLASH_AMP] = ACTIONS(983), + [anon_sym_LT2] = ACTIONS(985), + [anon_sym_STAR2] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(983), + [anon_sym_is] = ACTIONS(985), + [anon_sym_isnot] = ACTIONS(983), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_GT2] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_EQ_TILDE] = ACTIONS(983), + [anon_sym_BANG_TILDE] = ACTIONS(983), + [sym_integer_literal] = ACTIONS(983), + [anon_sym_LBRACK2] = ACTIONS(983), + [sym_register] = ACTIONS(983), + [sym__newline_or_pipe] = ACTIONS(983), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(915), - [sym__function] = ACTIONS(915), - [sym__for] = ACTIONS(915), - [sym__endfor] = ACTIONS(915), - [sym__while] = ACTIONS(915), - [sym__if] = ACTIONS(915), - [sym__try] = ACTIONS(915), - [sym__const] = ACTIONS(915), - [sym__normal] = ACTIONS(915), - [sym__return] = ACTIONS(915), - [sym__perl] = ACTIONS(915), - [sym__lua] = ACTIONS(915), - [sym__ruby] = ACTIONS(915), - [sym__python] = ACTIONS(915), - [sym__throw] = ACTIONS(915), - [sym__execute] = ACTIONS(915), - [sym__autocmd] = ACTIONS(915), - [sym__silent] = ACTIONS(915), - [sym__echo] = ACTIONS(915), - [sym__echon] = ACTIONS(915), - [sym__echohl] = ACTIONS(915), - [sym__echomsg] = ACTIONS(915), - [sym__echoerr] = ACTIONS(915), - [sym__map] = ACTIONS(915), - [sym__nmap] = ACTIONS(915), - [sym__vmap] = ACTIONS(915), - [sym__xmap] = ACTIONS(915), - [sym__smap] = ACTIONS(915), - [sym__omap] = ACTIONS(915), - [sym__imap] = ACTIONS(915), - [sym__lmap] = ACTIONS(915), - [sym__cmap] = ACTIONS(915), - [sym__tmap] = ACTIONS(915), - [sym__noremap] = ACTIONS(915), - [sym__vnoremap] = ACTIONS(915), - [sym__nnoremap] = ACTIONS(915), - [sym__xnoremap] = ACTIONS(915), - [sym__snoremap] = ACTIONS(915), - [sym__onoremap] = ACTIONS(915), - [sym__inoremap] = ACTIONS(915), - [sym__lnoremap] = ACTIONS(915), - [sym__cnoremap] = ACTIONS(915), - [sym__tnoremap] = ACTIONS(915), - [sym__augroup] = ACTIONS(915), - [sym__highlight] = ACTIONS(915), - [sym__syntax] = ACTIONS(915), - [sym__set] = ACTIONS(915), - [sym__setlocal] = ACTIONS(915), - [sym__setfiletype] = ACTIONS(915), - [sym__browse] = ACTIONS(915), - [sym__options] = ACTIONS(915), - [sym__startinsert] = ACTIONS(915), - [sym__stopinsert] = ACTIONS(915), - [sym__scriptencoding] = ACTIONS(915), - [sym__source] = ACTIONS(915), - [sym__global] = ACTIONS(915), - [sym__colorscheme] = ACTIONS(915), - [sym__comclear] = ACTIONS(915), - [sym__delcommand] = ACTIONS(915), - [sym__runtime] = ACTIONS(915), - [sym__wincmd] = ACTIONS(915), - [sym__sign] = ACTIONS(915), - [sym__filetype] = ACTIONS(915), - [sym__let] = ACTIONS(915), - [sym__unlet] = ACTIONS(915), - [sym__call] = ACTIONS(915), - [sym__break] = ACTIONS(915), - [sym__continue] = ACTIONS(915), - [sym_unknown_command_name] = ACTIONS(915), + [sym_comment] = ACTIONS(983), + [sym__function] = ACTIONS(983), + [sym__for] = ACTIONS(983), + [sym__endfor] = ACTIONS(983), + [sym__while] = ACTIONS(983), + [sym__if] = ACTIONS(983), + [sym__try] = ACTIONS(983), + [sym__const] = ACTIONS(983), + [sym__normal] = ACTIONS(983), + [sym__return] = ACTIONS(983), + [sym__perl] = ACTIONS(983), + [sym__lua] = ACTIONS(983), + [sym__ruby] = ACTIONS(983), + [sym__python] = ACTIONS(983), + [sym__throw] = ACTIONS(983), + [sym__execute] = ACTIONS(983), + [sym__autocmd] = ACTIONS(983), + [sym__silent] = ACTIONS(983), + [sym__echo] = ACTIONS(983), + [sym__echon] = ACTIONS(983), + [sym__echohl] = ACTIONS(983), + [sym__echomsg] = ACTIONS(983), + [sym__echoerr] = ACTIONS(983), + [sym__map] = ACTIONS(983), + [sym__nmap] = ACTIONS(983), + [sym__vmap] = ACTIONS(983), + [sym__xmap] = ACTIONS(983), + [sym__smap] = ACTIONS(983), + [sym__omap] = ACTIONS(983), + [sym__imap] = ACTIONS(983), + [sym__lmap] = ACTIONS(983), + [sym__cmap] = ACTIONS(983), + [sym__tmap] = ACTIONS(983), + [sym__noremap] = ACTIONS(983), + [sym__vnoremap] = ACTIONS(983), + [sym__nnoremap] = ACTIONS(983), + [sym__xnoremap] = ACTIONS(983), + [sym__snoremap] = ACTIONS(983), + [sym__onoremap] = ACTIONS(983), + [sym__inoremap] = ACTIONS(983), + [sym__lnoremap] = ACTIONS(983), + [sym__cnoremap] = ACTIONS(983), + [sym__tnoremap] = ACTIONS(983), + [sym__augroup] = ACTIONS(983), + [sym__highlight] = ACTIONS(983), + [sym__syntax] = ACTIONS(983), + [sym__set] = ACTIONS(983), + [sym__setlocal] = ACTIONS(983), + [sym__setfiletype] = ACTIONS(983), + [sym__browse] = ACTIONS(983), + [sym__options] = ACTIONS(983), + [sym__startinsert] = ACTIONS(983), + [sym__stopinsert] = ACTIONS(983), + [sym__scriptencoding] = ACTIONS(983), + [sym__source] = ACTIONS(983), + [sym__global] = ACTIONS(983), + [sym__colorscheme] = ACTIONS(983), + [sym__comclear] = ACTIONS(983), + [sym__delcommand] = ACTIONS(983), + [sym__runtime] = ACTIONS(983), + [sym__wincmd] = ACTIONS(983), + [sym__sign] = ACTIONS(983), + [sym__filetype] = ACTIONS(983), + [sym__let] = ACTIONS(983), + [sym__unlet] = ACTIONS(983), + [sym__call] = ACTIONS(983), + [sym__break] = ACTIONS(983), + [sym__continue] = ACTIONS(983), + [sym_unknown_command_name] = ACTIONS(983), }, [233] = { - [anon_sym_COLON] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(831), - [sym_command_name] = ACTIONS(829), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [sym_mark] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT2] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_BSLASH_SLASH] = ACTIONS(829), - [anon_sym_BSLASH_QMARK] = ACTIONS(829), - [anon_sym_BSLASH_AMP] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(831), - [anon_sym_STAR2] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_is] = ACTIONS(831), - [anon_sym_isnot] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_GT2] = ACTIONS(831), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [sym_integer_literal] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [sym_register] = ACTIONS(829), - [sym__newline_or_pipe] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(969), + [sym_command_name] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [sym_mark] = ACTIONS(967), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_DOT2] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_BSLASH_SLASH] = ACTIONS(967), + [anon_sym_BSLASH_QMARK] = ACTIONS(967), + [anon_sym_BSLASH_AMP] = ACTIONS(967), + [anon_sym_LT2] = ACTIONS(969), + [anon_sym_STAR2] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_is] = ACTIONS(969), + [anon_sym_isnot] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_GT2] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_EQ_TILDE] = ACTIONS(967), + [anon_sym_BANG_TILDE] = ACTIONS(967), + [sym_integer_literal] = ACTIONS(967), + [anon_sym_LBRACK2] = ACTIONS(967), + [sym_register] = ACTIONS(967), + [sym__newline_or_pipe] = ACTIONS(967), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(829), - [sym__function] = ACTIONS(829), - [sym__for] = ACTIONS(829), - [sym__endfor] = ACTIONS(829), - [sym__while] = ACTIONS(829), - [sym__if] = ACTIONS(829), - [sym__try] = ACTIONS(829), - [sym__const] = ACTIONS(829), - [sym__normal] = ACTIONS(829), - [sym__return] = ACTIONS(829), - [sym__perl] = ACTIONS(829), - [sym__lua] = ACTIONS(829), - [sym__ruby] = ACTIONS(829), - [sym__python] = ACTIONS(829), - [sym__throw] = ACTIONS(829), - [sym__execute] = ACTIONS(829), - [sym__autocmd] = ACTIONS(829), - [sym__silent] = ACTIONS(829), - [sym__echo] = ACTIONS(829), - [sym__echon] = ACTIONS(829), - [sym__echohl] = ACTIONS(829), - [sym__echomsg] = ACTIONS(829), - [sym__echoerr] = ACTIONS(829), - [sym__map] = ACTIONS(829), - [sym__nmap] = ACTIONS(829), - [sym__vmap] = ACTIONS(829), - [sym__xmap] = ACTIONS(829), - [sym__smap] = ACTIONS(829), - [sym__omap] = ACTIONS(829), - [sym__imap] = ACTIONS(829), - [sym__lmap] = ACTIONS(829), - [sym__cmap] = ACTIONS(829), - [sym__tmap] = ACTIONS(829), - [sym__noremap] = ACTIONS(829), - [sym__vnoremap] = ACTIONS(829), - [sym__nnoremap] = ACTIONS(829), - [sym__xnoremap] = ACTIONS(829), - [sym__snoremap] = ACTIONS(829), - [sym__onoremap] = ACTIONS(829), - [sym__inoremap] = ACTIONS(829), - [sym__lnoremap] = ACTIONS(829), - [sym__cnoremap] = ACTIONS(829), - [sym__tnoremap] = ACTIONS(829), - [sym__augroup] = ACTIONS(829), - [sym__highlight] = ACTIONS(829), - [sym__syntax] = ACTIONS(829), - [sym__set] = ACTIONS(829), - [sym__setlocal] = ACTIONS(829), - [sym__setfiletype] = ACTIONS(829), - [sym__browse] = ACTIONS(829), - [sym__options] = ACTIONS(829), - [sym__startinsert] = ACTIONS(829), - [sym__stopinsert] = ACTIONS(829), - [sym__scriptencoding] = ACTIONS(829), - [sym__source] = ACTIONS(829), - [sym__global] = ACTIONS(829), - [sym__colorscheme] = ACTIONS(829), - [sym__comclear] = ACTIONS(829), - [sym__delcommand] = ACTIONS(829), - [sym__runtime] = ACTIONS(829), - [sym__wincmd] = ACTIONS(829), - [sym__sign] = ACTIONS(829), - [sym__filetype] = ACTIONS(829), - [sym__let] = ACTIONS(829), - [sym__unlet] = ACTIONS(829), - [sym__call] = ACTIONS(829), - [sym__break] = ACTIONS(829), - [sym__continue] = ACTIONS(829), - [sym_unknown_command_name] = ACTIONS(829), + [sym_comment] = ACTIONS(967), + [sym__function] = ACTIONS(967), + [sym__for] = ACTIONS(967), + [sym__endfor] = ACTIONS(967), + [sym__while] = ACTIONS(967), + [sym__if] = ACTIONS(967), + [sym__try] = ACTIONS(967), + [sym__const] = ACTIONS(967), + [sym__normal] = ACTIONS(967), + [sym__return] = ACTIONS(967), + [sym__perl] = ACTIONS(967), + [sym__lua] = ACTIONS(967), + [sym__ruby] = ACTIONS(967), + [sym__python] = ACTIONS(967), + [sym__throw] = ACTIONS(967), + [sym__execute] = ACTIONS(967), + [sym__autocmd] = ACTIONS(967), + [sym__silent] = ACTIONS(967), + [sym__echo] = ACTIONS(967), + [sym__echon] = ACTIONS(967), + [sym__echohl] = ACTIONS(967), + [sym__echomsg] = ACTIONS(967), + [sym__echoerr] = ACTIONS(967), + [sym__map] = ACTIONS(967), + [sym__nmap] = ACTIONS(967), + [sym__vmap] = ACTIONS(967), + [sym__xmap] = ACTIONS(967), + [sym__smap] = ACTIONS(967), + [sym__omap] = ACTIONS(967), + [sym__imap] = ACTIONS(967), + [sym__lmap] = ACTIONS(967), + [sym__cmap] = ACTIONS(967), + [sym__tmap] = ACTIONS(967), + [sym__noremap] = ACTIONS(967), + [sym__vnoremap] = ACTIONS(967), + [sym__nnoremap] = ACTIONS(967), + [sym__xnoremap] = ACTIONS(967), + [sym__snoremap] = ACTIONS(967), + [sym__onoremap] = ACTIONS(967), + [sym__inoremap] = ACTIONS(967), + [sym__lnoremap] = ACTIONS(967), + [sym__cnoremap] = ACTIONS(967), + [sym__tnoremap] = ACTIONS(967), + [sym__augroup] = ACTIONS(967), + [sym__highlight] = ACTIONS(967), + [sym__syntax] = ACTIONS(967), + [sym__set] = ACTIONS(967), + [sym__setlocal] = ACTIONS(967), + [sym__setfiletype] = ACTIONS(967), + [sym__browse] = ACTIONS(967), + [sym__options] = ACTIONS(967), + [sym__startinsert] = ACTIONS(967), + [sym__stopinsert] = ACTIONS(967), + [sym__scriptencoding] = ACTIONS(967), + [sym__source] = ACTIONS(967), + [sym__global] = ACTIONS(967), + [sym__colorscheme] = ACTIONS(967), + [sym__comclear] = ACTIONS(967), + [sym__delcommand] = ACTIONS(967), + [sym__runtime] = ACTIONS(967), + [sym__wincmd] = ACTIONS(967), + [sym__sign] = ACTIONS(967), + [sym__filetype] = ACTIONS(967), + [sym__let] = ACTIONS(967), + [sym__unlet] = ACTIONS(967), + [sym__call] = ACTIONS(967), + [sym__break] = ACTIONS(967), + [sym__continue] = ACTIONS(967), + [sym_unknown_command_name] = ACTIONS(967), }, [234] = { - [anon_sym_COLON] = ACTIONS(849), - [anon_sym_DOT] = ACTIONS(851), - [sym_command_name] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [sym_mark] = ACTIONS(849), - [anon_sym_PERCENT] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_DOT2] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_BSLASH_SLASH] = ACTIONS(849), - [anon_sym_BSLASH_QMARK] = ACTIONS(849), - [anon_sym_BSLASH_AMP] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_DOT_DOT] = ACTIONS(849), - [anon_sym_is] = ACTIONS(851), - [anon_sym_isnot] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(851), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_BANG_TILDE] = ACTIONS(849), - [sym_integer_literal] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [sym_register] = ACTIONS(849), - [sym__newline_or_pipe] = ACTIONS(849), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_DOT] = ACTIONS(839), + [sym_command_name] = ACTIONS(837), + [anon_sym_QMARK] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(837), + [sym_mark] = ACTIONS(837), + [anon_sym_PERCENT] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(837), + [anon_sym_DOT2] = ACTIONS(839), + [anon_sym_PLUS] = ACTIONS(839), + [anon_sym_DOLLAR] = ACTIONS(837), + [anon_sym_BSLASH_SLASH] = ACTIONS(837), + [anon_sym_BSLASH_QMARK] = ACTIONS(837), + [anon_sym_BSLASH_AMP] = ACTIONS(837), + [anon_sym_LT2] = ACTIONS(839), + [anon_sym_STAR2] = ACTIONS(837), + [anon_sym_PIPE_PIPE] = ACTIONS(837), + [anon_sym_AMP_AMP] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(839), + [anon_sym_DOT_DOT] = ACTIONS(837), + [anon_sym_is] = ACTIONS(839), + [anon_sym_isnot] = ACTIONS(837), + [anon_sym_EQ_EQ] = ACTIONS(837), + [anon_sym_BANG_EQ] = ACTIONS(837), + [anon_sym_GT2] = ACTIONS(839), + [anon_sym_GT_EQ] = ACTIONS(837), + [anon_sym_LT_EQ] = ACTIONS(837), + [anon_sym_EQ_TILDE] = ACTIONS(837), + [anon_sym_BANG_TILDE] = ACTIONS(837), + [sym_integer_literal] = ACTIONS(837), + [anon_sym_LBRACK2] = ACTIONS(837), + [sym_register] = ACTIONS(837), + [sym__newline_or_pipe] = ACTIONS(837), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(849), - [sym__function] = ACTIONS(849), - [sym__for] = ACTIONS(849), - [sym__endfor] = ACTIONS(849), - [sym__while] = ACTIONS(849), - [sym__if] = ACTIONS(849), - [sym__try] = ACTIONS(849), - [sym__const] = ACTIONS(849), - [sym__normal] = ACTIONS(849), - [sym__return] = ACTIONS(849), - [sym__perl] = ACTIONS(849), - [sym__lua] = ACTIONS(849), - [sym__ruby] = ACTIONS(849), - [sym__python] = ACTIONS(849), - [sym__throw] = ACTIONS(849), - [sym__execute] = ACTIONS(849), - [sym__autocmd] = ACTIONS(849), - [sym__silent] = ACTIONS(849), - [sym__echo] = ACTIONS(849), - [sym__echon] = ACTIONS(849), - [sym__echohl] = ACTIONS(849), - [sym__echomsg] = ACTIONS(849), - [sym__echoerr] = ACTIONS(849), - [sym__map] = ACTIONS(849), - [sym__nmap] = ACTIONS(849), - [sym__vmap] = ACTIONS(849), - [sym__xmap] = ACTIONS(849), - [sym__smap] = ACTIONS(849), - [sym__omap] = ACTIONS(849), - [sym__imap] = ACTIONS(849), - [sym__lmap] = ACTIONS(849), - [sym__cmap] = ACTIONS(849), - [sym__tmap] = ACTIONS(849), - [sym__noremap] = ACTIONS(849), - [sym__vnoremap] = ACTIONS(849), - [sym__nnoremap] = ACTIONS(849), - [sym__xnoremap] = ACTIONS(849), - [sym__snoremap] = ACTIONS(849), - [sym__onoremap] = ACTIONS(849), - [sym__inoremap] = ACTIONS(849), - [sym__lnoremap] = ACTIONS(849), - [sym__cnoremap] = ACTIONS(849), - [sym__tnoremap] = ACTIONS(849), - [sym__augroup] = ACTIONS(849), - [sym__highlight] = ACTIONS(849), - [sym__syntax] = ACTIONS(849), - [sym__set] = ACTIONS(849), - [sym__setlocal] = ACTIONS(849), - [sym__setfiletype] = ACTIONS(849), - [sym__browse] = ACTIONS(849), - [sym__options] = ACTIONS(849), - [sym__startinsert] = ACTIONS(849), - [sym__stopinsert] = ACTIONS(849), - [sym__scriptencoding] = ACTIONS(849), - [sym__source] = ACTIONS(849), - [sym__global] = ACTIONS(849), - [sym__colorscheme] = ACTIONS(849), - [sym__comclear] = ACTIONS(849), - [sym__delcommand] = ACTIONS(849), - [sym__runtime] = ACTIONS(849), - [sym__wincmd] = ACTIONS(849), - [sym__sign] = ACTIONS(849), - [sym__filetype] = ACTIONS(849), - [sym__let] = ACTIONS(849), - [sym__unlet] = ACTIONS(849), - [sym__call] = ACTIONS(849), - [sym__break] = ACTIONS(849), - [sym__continue] = ACTIONS(849), - [sym_unknown_command_name] = ACTIONS(849), + [sym_comment] = ACTIONS(837), + [sym__function] = ACTIONS(837), + [sym__for] = ACTIONS(837), + [sym__endfor] = ACTIONS(837), + [sym__while] = ACTIONS(837), + [sym__if] = ACTIONS(837), + [sym__try] = ACTIONS(837), + [sym__const] = ACTIONS(837), + [sym__normal] = ACTIONS(837), + [sym__return] = ACTIONS(837), + [sym__perl] = ACTIONS(837), + [sym__lua] = ACTIONS(837), + [sym__ruby] = ACTIONS(837), + [sym__python] = ACTIONS(837), + [sym__throw] = ACTIONS(837), + [sym__execute] = ACTIONS(837), + [sym__autocmd] = ACTIONS(837), + [sym__silent] = ACTIONS(837), + [sym__echo] = ACTIONS(837), + [sym__echon] = ACTIONS(837), + [sym__echohl] = ACTIONS(837), + [sym__echomsg] = ACTIONS(837), + [sym__echoerr] = ACTIONS(837), + [sym__map] = ACTIONS(837), + [sym__nmap] = ACTIONS(837), + [sym__vmap] = ACTIONS(837), + [sym__xmap] = ACTIONS(837), + [sym__smap] = ACTIONS(837), + [sym__omap] = ACTIONS(837), + [sym__imap] = ACTIONS(837), + [sym__lmap] = ACTIONS(837), + [sym__cmap] = ACTIONS(837), + [sym__tmap] = ACTIONS(837), + [sym__noremap] = ACTIONS(837), + [sym__vnoremap] = ACTIONS(837), + [sym__nnoremap] = ACTIONS(837), + [sym__xnoremap] = ACTIONS(837), + [sym__snoremap] = ACTIONS(837), + [sym__onoremap] = ACTIONS(837), + [sym__inoremap] = ACTIONS(837), + [sym__lnoremap] = ACTIONS(837), + [sym__cnoremap] = ACTIONS(837), + [sym__tnoremap] = ACTIONS(837), + [sym__augroup] = ACTIONS(837), + [sym__highlight] = ACTIONS(837), + [sym__syntax] = ACTIONS(837), + [sym__set] = ACTIONS(837), + [sym__setlocal] = ACTIONS(837), + [sym__setfiletype] = ACTIONS(837), + [sym__browse] = ACTIONS(837), + [sym__options] = ACTIONS(837), + [sym__startinsert] = ACTIONS(837), + [sym__stopinsert] = ACTIONS(837), + [sym__scriptencoding] = ACTIONS(837), + [sym__source] = ACTIONS(837), + [sym__global] = ACTIONS(837), + [sym__colorscheme] = ACTIONS(837), + [sym__comclear] = ACTIONS(837), + [sym__delcommand] = ACTIONS(837), + [sym__runtime] = ACTIONS(837), + [sym__wincmd] = ACTIONS(837), + [sym__sign] = ACTIONS(837), + [sym__filetype] = ACTIONS(837), + [sym__let] = ACTIONS(837), + [sym__unlet] = ACTIONS(837), + [sym__call] = ACTIONS(837), + [sym__break] = ACTIONS(837), + [sym__continue] = ACTIONS(837), + [sym_unknown_command_name] = ACTIONS(837), }, [235] = { - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(933), - [sym_command_name] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [sym_mark] = ACTIONS(931), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH] = ACTIONS(931), - [anon_sym_DOT2] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_BSLASH_SLASH] = ACTIONS(931), - [anon_sym_BSLASH_QMARK] = ACTIONS(931), - [anon_sym_BSLASH_AMP] = ACTIONS(931), - [anon_sym_LT2] = ACTIONS(933), - [anon_sym_STAR2] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_DOT_DOT] = ACTIONS(931), - [anon_sym_is] = ACTIONS(933), - [anon_sym_isnot] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT2] = ACTIONS(933), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_TILDE] = ACTIONS(931), - [anon_sym_BANG_TILDE] = ACTIONS(931), - [sym_integer_literal] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(931), - [sym_register] = ACTIONS(931), - [sym__newline_or_pipe] = ACTIONS(931), + [anon_sym_COLON] = ACTIONS(887), + [anon_sym_DOT] = ACTIONS(889), + [sym_command_name] = ACTIONS(887), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(887), + [sym_mark] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(887), + [anon_sym_SLASH] = ACTIONS(887), + [anon_sym_DOT2] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_BSLASH_SLASH] = ACTIONS(887), + [anon_sym_BSLASH_QMARK] = ACTIONS(887), + [anon_sym_BSLASH_AMP] = ACTIONS(887), + [anon_sym_LT2] = ACTIONS(889), + [anon_sym_STAR2] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOT_DOT] = ACTIONS(887), + [anon_sym_is] = ACTIONS(889), + [anon_sym_isnot] = ACTIONS(887), + [anon_sym_EQ_EQ] = ACTIONS(887), + [anon_sym_BANG_EQ] = ACTIONS(887), + [anon_sym_GT2] = ACTIONS(889), + [anon_sym_GT_EQ] = ACTIONS(887), + [anon_sym_LT_EQ] = ACTIONS(887), + [anon_sym_EQ_TILDE] = ACTIONS(887), + [anon_sym_BANG_TILDE] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(887), + [anon_sym_LBRACK2] = ACTIONS(887), + [sym_register] = ACTIONS(887), + [sym__newline_or_pipe] = ACTIONS(887), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(931), - [sym__function] = ACTIONS(931), - [sym__for] = ACTIONS(931), - [sym__endfor] = ACTIONS(931), - [sym__while] = ACTIONS(931), - [sym__if] = ACTIONS(931), - [sym__try] = ACTIONS(931), - [sym__const] = ACTIONS(931), - [sym__normal] = ACTIONS(931), - [sym__return] = ACTIONS(931), - [sym__perl] = ACTIONS(931), - [sym__lua] = ACTIONS(931), - [sym__ruby] = ACTIONS(931), - [sym__python] = ACTIONS(931), - [sym__throw] = ACTIONS(931), - [sym__execute] = ACTIONS(931), - [sym__autocmd] = ACTIONS(931), - [sym__silent] = ACTIONS(931), - [sym__echo] = ACTIONS(931), - [sym__echon] = ACTIONS(931), - [sym__echohl] = ACTIONS(931), - [sym__echomsg] = ACTIONS(931), - [sym__echoerr] = ACTIONS(931), - [sym__map] = ACTIONS(931), - [sym__nmap] = ACTIONS(931), - [sym__vmap] = ACTIONS(931), - [sym__xmap] = ACTIONS(931), - [sym__smap] = ACTIONS(931), - [sym__omap] = ACTIONS(931), - [sym__imap] = ACTIONS(931), - [sym__lmap] = ACTIONS(931), - [sym__cmap] = ACTIONS(931), - [sym__tmap] = ACTIONS(931), - [sym__noremap] = ACTIONS(931), - [sym__vnoremap] = ACTIONS(931), - [sym__nnoremap] = ACTIONS(931), - [sym__xnoremap] = ACTIONS(931), - [sym__snoremap] = ACTIONS(931), - [sym__onoremap] = ACTIONS(931), - [sym__inoremap] = ACTIONS(931), - [sym__lnoremap] = ACTIONS(931), - [sym__cnoremap] = ACTIONS(931), - [sym__tnoremap] = ACTIONS(931), - [sym__augroup] = ACTIONS(931), - [sym__highlight] = ACTIONS(931), - [sym__syntax] = ACTIONS(931), - [sym__set] = ACTIONS(931), - [sym__setlocal] = ACTIONS(931), - [sym__setfiletype] = ACTIONS(931), - [sym__browse] = ACTIONS(931), - [sym__options] = ACTIONS(931), - [sym__startinsert] = ACTIONS(931), - [sym__stopinsert] = ACTIONS(931), - [sym__scriptencoding] = ACTIONS(931), - [sym__source] = ACTIONS(931), - [sym__global] = ACTIONS(931), - [sym__colorscheme] = ACTIONS(931), - [sym__comclear] = ACTIONS(931), - [sym__delcommand] = ACTIONS(931), - [sym__runtime] = ACTIONS(931), - [sym__wincmd] = ACTIONS(931), - [sym__sign] = ACTIONS(931), - [sym__filetype] = ACTIONS(931), - [sym__let] = ACTIONS(931), - [sym__unlet] = ACTIONS(931), - [sym__call] = ACTIONS(931), - [sym__break] = ACTIONS(931), - [sym__continue] = ACTIONS(931), - [sym_unknown_command_name] = ACTIONS(931), + [sym_comment] = ACTIONS(887), + [sym__function] = ACTIONS(887), + [sym__for] = ACTIONS(887), + [sym__endfor] = ACTIONS(887), + [sym__while] = ACTIONS(887), + [sym__if] = ACTIONS(887), + [sym__try] = ACTIONS(887), + [sym__const] = ACTIONS(887), + [sym__normal] = ACTIONS(887), + [sym__return] = ACTIONS(887), + [sym__perl] = ACTIONS(887), + [sym__lua] = ACTIONS(887), + [sym__ruby] = ACTIONS(887), + [sym__python] = ACTIONS(887), + [sym__throw] = ACTIONS(887), + [sym__execute] = ACTIONS(887), + [sym__autocmd] = ACTIONS(887), + [sym__silent] = ACTIONS(887), + [sym__echo] = ACTIONS(887), + [sym__echon] = ACTIONS(887), + [sym__echohl] = ACTIONS(887), + [sym__echomsg] = ACTIONS(887), + [sym__echoerr] = ACTIONS(887), + [sym__map] = ACTIONS(887), + [sym__nmap] = ACTIONS(887), + [sym__vmap] = ACTIONS(887), + [sym__xmap] = ACTIONS(887), + [sym__smap] = ACTIONS(887), + [sym__omap] = ACTIONS(887), + [sym__imap] = ACTIONS(887), + [sym__lmap] = ACTIONS(887), + [sym__cmap] = ACTIONS(887), + [sym__tmap] = ACTIONS(887), + [sym__noremap] = ACTIONS(887), + [sym__vnoremap] = ACTIONS(887), + [sym__nnoremap] = ACTIONS(887), + [sym__xnoremap] = ACTIONS(887), + [sym__snoremap] = ACTIONS(887), + [sym__onoremap] = ACTIONS(887), + [sym__inoremap] = ACTIONS(887), + [sym__lnoremap] = ACTIONS(887), + [sym__cnoremap] = ACTIONS(887), + [sym__tnoremap] = ACTIONS(887), + [sym__augroup] = ACTIONS(887), + [sym__highlight] = ACTIONS(887), + [sym__syntax] = ACTIONS(887), + [sym__set] = ACTIONS(887), + [sym__setlocal] = ACTIONS(887), + [sym__setfiletype] = ACTIONS(887), + [sym__browse] = ACTIONS(887), + [sym__options] = ACTIONS(887), + [sym__startinsert] = ACTIONS(887), + [sym__stopinsert] = ACTIONS(887), + [sym__scriptencoding] = ACTIONS(887), + [sym__source] = ACTIONS(887), + [sym__global] = ACTIONS(887), + [sym__colorscheme] = ACTIONS(887), + [sym__comclear] = ACTIONS(887), + [sym__delcommand] = ACTIONS(887), + [sym__runtime] = ACTIONS(887), + [sym__wincmd] = ACTIONS(887), + [sym__sign] = ACTIONS(887), + [sym__filetype] = ACTIONS(887), + [sym__let] = ACTIONS(887), + [sym__unlet] = ACTIONS(887), + [sym__call] = ACTIONS(887), + [sym__break] = ACTIONS(887), + [sym__continue] = ACTIONS(887), + [sym_unknown_command_name] = ACTIONS(887), }, [236] = { - [anon_sym_COLON] = ACTIONS(865), - [anon_sym_DOT] = ACTIONS(867), - [sym_command_name] = ACTIONS(865), - [anon_sym_QMARK] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [sym_mark] = ACTIONS(865), - [anon_sym_PERCENT] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_DOT2] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(865), - [anon_sym_BSLASH_SLASH] = ACTIONS(865), - [anon_sym_BSLASH_QMARK] = ACTIONS(865), - [anon_sym_BSLASH_AMP] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(867), - [anon_sym_STAR2] = ACTIONS(865), - [anon_sym_PIPE_PIPE] = ACTIONS(865), - [anon_sym_AMP_AMP] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(865), - [anon_sym_is] = ACTIONS(867), - [anon_sym_isnot] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_GT2] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [sym_integer_literal] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [sym_register] = ACTIONS(865), - [sym__newline_or_pipe] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(901), + [sym_command_name] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [sym_mark] = ACTIONS(899), + [anon_sym_PERCENT] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_DOT2] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_BSLASH_SLASH] = ACTIONS(899), + [anon_sym_BSLASH_QMARK] = ACTIONS(899), + [anon_sym_BSLASH_AMP] = ACTIONS(899), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_STAR2] = ACTIONS(899), + [anon_sym_PIPE_PIPE] = ACTIONS(899), + [anon_sym_AMP_AMP] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_is] = ACTIONS(901), + [anon_sym_isnot] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_GT2] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_EQ_TILDE] = ACTIONS(899), + [anon_sym_BANG_TILDE] = ACTIONS(899), + [sym_integer_literal] = ACTIONS(899), + [anon_sym_LBRACK2] = ACTIONS(899), + [sym_register] = ACTIONS(899), + [sym__newline_or_pipe] = ACTIONS(899), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(865), - [sym__function] = ACTIONS(865), - [sym__for] = ACTIONS(865), - [sym__endfor] = ACTIONS(865), - [sym__while] = ACTIONS(865), - [sym__if] = ACTIONS(865), - [sym__try] = ACTIONS(865), - [sym__const] = ACTIONS(865), - [sym__normal] = ACTIONS(865), - [sym__return] = ACTIONS(865), - [sym__perl] = ACTIONS(865), - [sym__lua] = ACTIONS(865), - [sym__ruby] = ACTIONS(865), - [sym__python] = ACTIONS(865), - [sym__throw] = ACTIONS(865), - [sym__execute] = ACTIONS(865), - [sym__autocmd] = ACTIONS(865), - [sym__silent] = ACTIONS(865), - [sym__echo] = ACTIONS(865), - [sym__echon] = ACTIONS(865), - [sym__echohl] = ACTIONS(865), - [sym__echomsg] = ACTIONS(865), - [sym__echoerr] = ACTIONS(865), - [sym__map] = ACTIONS(865), - [sym__nmap] = ACTIONS(865), - [sym__vmap] = ACTIONS(865), - [sym__xmap] = ACTIONS(865), - [sym__smap] = ACTIONS(865), - [sym__omap] = ACTIONS(865), - [sym__imap] = ACTIONS(865), - [sym__lmap] = ACTIONS(865), - [sym__cmap] = ACTIONS(865), - [sym__tmap] = ACTIONS(865), - [sym__noremap] = ACTIONS(865), - [sym__vnoremap] = ACTIONS(865), - [sym__nnoremap] = ACTIONS(865), - [sym__xnoremap] = ACTIONS(865), - [sym__snoremap] = ACTIONS(865), - [sym__onoremap] = ACTIONS(865), - [sym__inoremap] = ACTIONS(865), - [sym__lnoremap] = ACTIONS(865), - [sym__cnoremap] = ACTIONS(865), - [sym__tnoremap] = ACTIONS(865), - [sym__augroup] = ACTIONS(865), - [sym__highlight] = ACTIONS(865), - [sym__syntax] = ACTIONS(865), - [sym__set] = ACTIONS(865), - [sym__setlocal] = ACTIONS(865), - [sym__setfiletype] = ACTIONS(865), - [sym__browse] = ACTIONS(865), - [sym__options] = ACTIONS(865), - [sym__startinsert] = ACTIONS(865), - [sym__stopinsert] = ACTIONS(865), - [sym__scriptencoding] = ACTIONS(865), - [sym__source] = ACTIONS(865), - [sym__global] = ACTIONS(865), - [sym__colorscheme] = ACTIONS(865), - [sym__comclear] = ACTIONS(865), - [sym__delcommand] = ACTIONS(865), - [sym__runtime] = ACTIONS(865), - [sym__wincmd] = ACTIONS(865), - [sym__sign] = ACTIONS(865), - [sym__filetype] = ACTIONS(865), - [sym__let] = ACTIONS(865), - [sym__unlet] = ACTIONS(865), - [sym__call] = ACTIONS(865), - [sym__break] = ACTIONS(865), - [sym__continue] = ACTIONS(865), - [sym_unknown_command_name] = ACTIONS(865), + [sym_comment] = ACTIONS(899), + [sym__function] = ACTIONS(899), + [sym__for] = ACTIONS(899), + [sym__endfor] = ACTIONS(899), + [sym__while] = ACTIONS(899), + [sym__if] = ACTIONS(899), + [sym__try] = ACTIONS(899), + [sym__const] = ACTIONS(899), + [sym__normal] = ACTIONS(899), + [sym__return] = ACTIONS(899), + [sym__perl] = ACTIONS(899), + [sym__lua] = ACTIONS(899), + [sym__ruby] = ACTIONS(899), + [sym__python] = ACTIONS(899), + [sym__throw] = ACTIONS(899), + [sym__execute] = ACTIONS(899), + [sym__autocmd] = ACTIONS(899), + [sym__silent] = ACTIONS(899), + [sym__echo] = ACTIONS(899), + [sym__echon] = ACTIONS(899), + [sym__echohl] = ACTIONS(899), + [sym__echomsg] = ACTIONS(899), + [sym__echoerr] = ACTIONS(899), + [sym__map] = ACTIONS(899), + [sym__nmap] = ACTIONS(899), + [sym__vmap] = ACTIONS(899), + [sym__xmap] = ACTIONS(899), + [sym__smap] = ACTIONS(899), + [sym__omap] = ACTIONS(899), + [sym__imap] = ACTIONS(899), + [sym__lmap] = ACTIONS(899), + [sym__cmap] = ACTIONS(899), + [sym__tmap] = ACTIONS(899), + [sym__noremap] = ACTIONS(899), + [sym__vnoremap] = ACTIONS(899), + [sym__nnoremap] = ACTIONS(899), + [sym__xnoremap] = ACTIONS(899), + [sym__snoremap] = ACTIONS(899), + [sym__onoremap] = ACTIONS(899), + [sym__inoremap] = ACTIONS(899), + [sym__lnoremap] = ACTIONS(899), + [sym__cnoremap] = ACTIONS(899), + [sym__tnoremap] = ACTIONS(899), + [sym__augroup] = ACTIONS(899), + [sym__highlight] = ACTIONS(899), + [sym__syntax] = ACTIONS(899), + [sym__set] = ACTIONS(899), + [sym__setlocal] = ACTIONS(899), + [sym__setfiletype] = ACTIONS(899), + [sym__browse] = ACTIONS(899), + [sym__options] = ACTIONS(899), + [sym__startinsert] = ACTIONS(899), + [sym__stopinsert] = ACTIONS(899), + [sym__scriptencoding] = ACTIONS(899), + [sym__source] = ACTIONS(899), + [sym__global] = ACTIONS(899), + [sym__colorscheme] = ACTIONS(899), + [sym__comclear] = ACTIONS(899), + [sym__delcommand] = ACTIONS(899), + [sym__runtime] = ACTIONS(899), + [sym__wincmd] = ACTIONS(899), + [sym__sign] = ACTIONS(899), + [sym__filetype] = ACTIONS(899), + [sym__let] = ACTIONS(899), + [sym__unlet] = ACTIONS(899), + [sym__call] = ACTIONS(899), + [sym__break] = ACTIONS(899), + [sym__continue] = ACTIONS(899), + [sym_unknown_command_name] = ACTIONS(899), }, [237] = { - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_DOT] = ACTIONS(871), - [sym_command_name] = ACTIONS(869), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [sym_mark] = ACTIONS(869), - [anon_sym_PERCENT] = ACTIONS(869), - [anon_sym_SLASH] = ACTIONS(869), - [anon_sym_DOT2] = ACTIONS(871), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DOLLAR] = ACTIONS(869), - [anon_sym_BSLASH_SLASH] = ACTIONS(869), - [anon_sym_BSLASH_QMARK] = ACTIONS(869), - [anon_sym_BSLASH_AMP] = ACTIONS(869), - [anon_sym_LT2] = ACTIONS(871), - [anon_sym_STAR2] = ACTIONS(869), - [anon_sym_PIPE_PIPE] = ACTIONS(869), - [anon_sym_AMP_AMP] = ACTIONS(869), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_DOT_DOT] = ACTIONS(869), - [anon_sym_is] = ACTIONS(871), - [anon_sym_isnot] = ACTIONS(869), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_GT2] = ACTIONS(871), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_EQ_TILDE] = ACTIONS(869), - [anon_sym_BANG_TILDE] = ACTIONS(869), - [sym_integer_literal] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [sym_register] = ACTIONS(869), - [sym__newline_or_pipe] = ACTIONS(869), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(877), + [sym_command_name] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [sym_mark] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_DOT2] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_BSLASH_SLASH] = ACTIONS(875), + [anon_sym_BSLASH_QMARK] = ACTIONS(875), + [anon_sym_BSLASH_AMP] = ACTIONS(875), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_STAR2] = ACTIONS(875), + [anon_sym_PIPE_PIPE] = ACTIONS(875), + [anon_sym_AMP_AMP] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_DOT_DOT] = ACTIONS(875), + [anon_sym_is] = ACTIONS(877), + [anon_sym_isnot] = ACTIONS(875), + [anon_sym_EQ_EQ] = ACTIONS(875), + [anon_sym_BANG_EQ] = ACTIONS(875), + [anon_sym_GT2] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(875), + [anon_sym_LT_EQ] = ACTIONS(875), + [anon_sym_EQ_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(875), + [sym_integer_literal] = ACTIONS(875), + [anon_sym_LBRACK2] = ACTIONS(875), + [sym_register] = ACTIONS(875), + [sym__newline_or_pipe] = ACTIONS(875), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(869), - [sym__function] = ACTIONS(869), - [sym__for] = ACTIONS(869), - [sym__endfor] = ACTIONS(869), - [sym__while] = ACTIONS(869), - [sym__if] = ACTIONS(869), - [sym__try] = ACTIONS(869), - [sym__const] = ACTIONS(869), - [sym__normal] = ACTIONS(869), - [sym__return] = ACTIONS(869), - [sym__perl] = ACTIONS(869), - [sym__lua] = ACTIONS(869), - [sym__ruby] = ACTIONS(869), - [sym__python] = ACTIONS(869), - [sym__throw] = ACTIONS(869), - [sym__execute] = ACTIONS(869), - [sym__autocmd] = ACTIONS(869), - [sym__silent] = ACTIONS(869), - [sym__echo] = ACTIONS(869), - [sym__echon] = ACTIONS(869), - [sym__echohl] = ACTIONS(869), - [sym__echomsg] = ACTIONS(869), - [sym__echoerr] = ACTIONS(869), - [sym__map] = ACTIONS(869), - [sym__nmap] = ACTIONS(869), - [sym__vmap] = ACTIONS(869), - [sym__xmap] = ACTIONS(869), - [sym__smap] = ACTIONS(869), - [sym__omap] = ACTIONS(869), - [sym__imap] = ACTIONS(869), - [sym__lmap] = ACTIONS(869), - [sym__cmap] = ACTIONS(869), - [sym__tmap] = ACTIONS(869), - [sym__noremap] = ACTIONS(869), - [sym__vnoremap] = ACTIONS(869), - [sym__nnoremap] = ACTIONS(869), - [sym__xnoremap] = ACTIONS(869), - [sym__snoremap] = ACTIONS(869), - [sym__onoremap] = ACTIONS(869), - [sym__inoremap] = ACTIONS(869), - [sym__lnoremap] = ACTIONS(869), - [sym__cnoremap] = ACTIONS(869), - [sym__tnoremap] = ACTIONS(869), - [sym__augroup] = ACTIONS(869), - [sym__highlight] = ACTIONS(869), - [sym__syntax] = ACTIONS(869), - [sym__set] = ACTIONS(869), - [sym__setlocal] = ACTIONS(869), - [sym__setfiletype] = ACTIONS(869), - [sym__browse] = ACTIONS(869), - [sym__options] = ACTIONS(869), - [sym__startinsert] = ACTIONS(869), - [sym__stopinsert] = ACTIONS(869), - [sym__scriptencoding] = ACTIONS(869), - [sym__source] = ACTIONS(869), - [sym__global] = ACTIONS(869), - [sym__colorscheme] = ACTIONS(869), - [sym__comclear] = ACTIONS(869), - [sym__delcommand] = ACTIONS(869), - [sym__runtime] = ACTIONS(869), - [sym__wincmd] = ACTIONS(869), - [sym__sign] = ACTIONS(869), - [sym__filetype] = ACTIONS(869), - [sym__let] = ACTIONS(869), - [sym__unlet] = ACTIONS(869), - [sym__call] = ACTIONS(869), - [sym__break] = ACTIONS(869), - [sym__continue] = ACTIONS(869), - [sym_unknown_command_name] = ACTIONS(869), + [sym_comment] = ACTIONS(875), + [sym__function] = ACTIONS(875), + [sym__for] = ACTIONS(875), + [sym__endfor] = ACTIONS(875), + [sym__while] = ACTIONS(875), + [sym__if] = ACTIONS(875), + [sym__try] = ACTIONS(875), + [sym__const] = ACTIONS(875), + [sym__normal] = ACTIONS(875), + [sym__return] = ACTIONS(875), + [sym__perl] = ACTIONS(875), + [sym__lua] = ACTIONS(875), + [sym__ruby] = ACTIONS(875), + [sym__python] = ACTIONS(875), + [sym__throw] = ACTIONS(875), + [sym__execute] = ACTIONS(875), + [sym__autocmd] = ACTIONS(875), + [sym__silent] = ACTIONS(875), + [sym__echo] = ACTIONS(875), + [sym__echon] = ACTIONS(875), + [sym__echohl] = ACTIONS(875), + [sym__echomsg] = ACTIONS(875), + [sym__echoerr] = ACTIONS(875), + [sym__map] = ACTIONS(875), + [sym__nmap] = ACTIONS(875), + [sym__vmap] = ACTIONS(875), + [sym__xmap] = ACTIONS(875), + [sym__smap] = ACTIONS(875), + [sym__omap] = ACTIONS(875), + [sym__imap] = ACTIONS(875), + [sym__lmap] = ACTIONS(875), + [sym__cmap] = ACTIONS(875), + [sym__tmap] = ACTIONS(875), + [sym__noremap] = ACTIONS(875), + [sym__vnoremap] = ACTIONS(875), + [sym__nnoremap] = ACTIONS(875), + [sym__xnoremap] = ACTIONS(875), + [sym__snoremap] = ACTIONS(875), + [sym__onoremap] = ACTIONS(875), + [sym__inoremap] = ACTIONS(875), + [sym__lnoremap] = ACTIONS(875), + [sym__cnoremap] = ACTIONS(875), + [sym__tnoremap] = ACTIONS(875), + [sym__augroup] = ACTIONS(875), + [sym__highlight] = ACTIONS(875), + [sym__syntax] = ACTIONS(875), + [sym__set] = ACTIONS(875), + [sym__setlocal] = ACTIONS(875), + [sym__setfiletype] = ACTIONS(875), + [sym__browse] = ACTIONS(875), + [sym__options] = ACTIONS(875), + [sym__startinsert] = ACTIONS(875), + [sym__stopinsert] = ACTIONS(875), + [sym__scriptencoding] = ACTIONS(875), + [sym__source] = ACTIONS(875), + [sym__global] = ACTIONS(875), + [sym__colorscheme] = ACTIONS(875), + [sym__comclear] = ACTIONS(875), + [sym__delcommand] = ACTIONS(875), + [sym__runtime] = ACTIONS(875), + [sym__wincmd] = ACTIONS(875), + [sym__sign] = ACTIONS(875), + [sym__filetype] = ACTIONS(875), + [sym__let] = ACTIONS(875), + [sym__unlet] = ACTIONS(875), + [sym__call] = ACTIONS(875), + [sym__break] = ACTIONS(875), + [sym__continue] = ACTIONS(875), + [sym_unknown_command_name] = ACTIONS(875), }, [238] = { - [anon_sym_COLON] = ACTIONS(873), - [anon_sym_DOT] = ACTIONS(875), - [sym_command_name] = ACTIONS(873), - [anon_sym_QMARK] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(873), - [sym_mark] = ACTIONS(873), - [anon_sym_PERCENT] = ACTIONS(873), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_DOT2] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(873), - [anon_sym_BSLASH_SLASH] = ACTIONS(873), - [anon_sym_BSLASH_QMARK] = ACTIONS(873), - [anon_sym_BSLASH_AMP] = ACTIONS(873), - [anon_sym_LT2] = ACTIONS(875), - [anon_sym_STAR2] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(873), - [anon_sym_AMP_AMP] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_DOT_DOT] = ACTIONS(873), - [anon_sym_is] = ACTIONS(875), - [anon_sym_isnot] = ACTIONS(873), - [anon_sym_EQ_EQ] = ACTIONS(873), - [anon_sym_BANG_EQ] = ACTIONS(873), - [anon_sym_GT2] = ACTIONS(875), - [anon_sym_GT_EQ] = ACTIONS(873), - [anon_sym_LT_EQ] = ACTIONS(873), - [anon_sym_EQ_TILDE] = ACTIONS(873), - [anon_sym_BANG_TILDE] = ACTIONS(873), - [sym_integer_literal] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(873), - [sym_register] = ACTIONS(873), - [sym__newline_or_pipe] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(913), + [sym_command_name] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [sym_mark] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_DOT2] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_BSLASH_SLASH] = ACTIONS(911), + [anon_sym_BSLASH_QMARK] = ACTIONS(911), + [anon_sym_BSLASH_AMP] = ACTIONS(911), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_STAR2] = ACTIONS(911), + [anon_sym_PIPE_PIPE] = ACTIONS(911), + [anon_sym_AMP_AMP] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_is] = ACTIONS(913), + [anon_sym_isnot] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_GT2] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_EQ_TILDE] = ACTIONS(911), + [anon_sym_BANG_TILDE] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(911), + [anon_sym_LBRACK2] = ACTIONS(911), + [sym_register] = ACTIONS(911), + [sym__newline_or_pipe] = ACTIONS(911), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(873), - [sym__function] = ACTIONS(873), - [sym__for] = ACTIONS(873), - [sym__endfor] = ACTIONS(873), - [sym__while] = ACTIONS(873), - [sym__if] = ACTIONS(873), - [sym__try] = ACTIONS(873), - [sym__const] = ACTIONS(873), - [sym__normal] = ACTIONS(873), - [sym__return] = ACTIONS(873), - [sym__perl] = ACTIONS(873), - [sym__lua] = ACTIONS(873), - [sym__ruby] = ACTIONS(873), - [sym__python] = ACTIONS(873), - [sym__throw] = ACTIONS(873), - [sym__execute] = ACTIONS(873), - [sym__autocmd] = ACTIONS(873), - [sym__silent] = ACTIONS(873), - [sym__echo] = ACTIONS(873), - [sym__echon] = ACTIONS(873), - [sym__echohl] = ACTIONS(873), - [sym__echomsg] = ACTIONS(873), - [sym__echoerr] = ACTIONS(873), - [sym__map] = ACTIONS(873), - [sym__nmap] = ACTIONS(873), - [sym__vmap] = ACTIONS(873), - [sym__xmap] = ACTIONS(873), - [sym__smap] = ACTIONS(873), - [sym__omap] = ACTIONS(873), - [sym__imap] = ACTIONS(873), - [sym__lmap] = ACTIONS(873), - [sym__cmap] = ACTIONS(873), - [sym__tmap] = ACTIONS(873), - [sym__noremap] = ACTIONS(873), - [sym__vnoremap] = ACTIONS(873), - [sym__nnoremap] = ACTIONS(873), - [sym__xnoremap] = ACTIONS(873), - [sym__snoremap] = ACTIONS(873), - [sym__onoremap] = ACTIONS(873), - [sym__inoremap] = ACTIONS(873), - [sym__lnoremap] = ACTIONS(873), - [sym__cnoremap] = ACTIONS(873), - [sym__tnoremap] = ACTIONS(873), - [sym__augroup] = ACTIONS(873), - [sym__highlight] = ACTIONS(873), - [sym__syntax] = ACTIONS(873), - [sym__set] = ACTIONS(873), - [sym__setlocal] = ACTIONS(873), - [sym__setfiletype] = ACTIONS(873), - [sym__browse] = ACTIONS(873), - [sym__options] = ACTIONS(873), - [sym__startinsert] = ACTIONS(873), - [sym__stopinsert] = ACTIONS(873), - [sym__scriptencoding] = ACTIONS(873), - [sym__source] = ACTIONS(873), - [sym__global] = ACTIONS(873), - [sym__colorscheme] = ACTIONS(873), - [sym__comclear] = ACTIONS(873), - [sym__delcommand] = ACTIONS(873), - [sym__runtime] = ACTIONS(873), - [sym__wincmd] = ACTIONS(873), - [sym__sign] = ACTIONS(873), - [sym__filetype] = ACTIONS(873), - [sym__let] = ACTIONS(873), - [sym__unlet] = ACTIONS(873), - [sym__call] = ACTIONS(873), - [sym__break] = ACTIONS(873), - [sym__continue] = ACTIONS(873), - [sym_unknown_command_name] = ACTIONS(873), + [sym_comment] = ACTIONS(911), + [sym__function] = ACTIONS(911), + [sym__for] = ACTIONS(911), + [sym__endfor] = ACTIONS(911), + [sym__while] = ACTIONS(911), + [sym__if] = ACTIONS(911), + [sym__try] = ACTIONS(911), + [sym__const] = ACTIONS(911), + [sym__normal] = ACTIONS(911), + [sym__return] = ACTIONS(911), + [sym__perl] = ACTIONS(911), + [sym__lua] = ACTIONS(911), + [sym__ruby] = ACTIONS(911), + [sym__python] = ACTIONS(911), + [sym__throw] = ACTIONS(911), + [sym__execute] = ACTIONS(911), + [sym__autocmd] = ACTIONS(911), + [sym__silent] = ACTIONS(911), + [sym__echo] = ACTIONS(911), + [sym__echon] = ACTIONS(911), + [sym__echohl] = ACTIONS(911), + [sym__echomsg] = ACTIONS(911), + [sym__echoerr] = ACTIONS(911), + [sym__map] = ACTIONS(911), + [sym__nmap] = ACTIONS(911), + [sym__vmap] = ACTIONS(911), + [sym__xmap] = ACTIONS(911), + [sym__smap] = ACTIONS(911), + [sym__omap] = ACTIONS(911), + [sym__imap] = ACTIONS(911), + [sym__lmap] = ACTIONS(911), + [sym__cmap] = ACTIONS(911), + [sym__tmap] = ACTIONS(911), + [sym__noremap] = ACTIONS(911), + [sym__vnoremap] = ACTIONS(911), + [sym__nnoremap] = ACTIONS(911), + [sym__xnoremap] = ACTIONS(911), + [sym__snoremap] = ACTIONS(911), + [sym__onoremap] = ACTIONS(911), + [sym__inoremap] = ACTIONS(911), + [sym__lnoremap] = ACTIONS(911), + [sym__cnoremap] = ACTIONS(911), + [sym__tnoremap] = ACTIONS(911), + [sym__augroup] = ACTIONS(911), + [sym__highlight] = ACTIONS(911), + [sym__syntax] = ACTIONS(911), + [sym__set] = ACTIONS(911), + [sym__setlocal] = ACTIONS(911), + [sym__setfiletype] = ACTIONS(911), + [sym__browse] = ACTIONS(911), + [sym__options] = ACTIONS(911), + [sym__startinsert] = ACTIONS(911), + [sym__stopinsert] = ACTIONS(911), + [sym__scriptencoding] = ACTIONS(911), + [sym__source] = ACTIONS(911), + [sym__global] = ACTIONS(911), + [sym__colorscheme] = ACTIONS(911), + [sym__comclear] = ACTIONS(911), + [sym__delcommand] = ACTIONS(911), + [sym__runtime] = ACTIONS(911), + [sym__wincmd] = ACTIONS(911), + [sym__sign] = ACTIONS(911), + [sym__filetype] = ACTIONS(911), + [sym__let] = ACTIONS(911), + [sym__unlet] = ACTIONS(911), + [sym__call] = ACTIONS(911), + [sym__break] = ACTIONS(911), + [sym__continue] = ACTIONS(911), + [sym_unknown_command_name] = ACTIONS(911), }, [239] = { - [anon_sym_COLON] = ACTIONS(877), - [anon_sym_DOT] = ACTIONS(879), - [sym_command_name] = ACTIONS(877), - [anon_sym_QMARK] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(877), - [sym_mark] = ACTIONS(877), - [anon_sym_PERCENT] = ACTIONS(877), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_DOT2] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_BSLASH_SLASH] = ACTIONS(877), - [anon_sym_BSLASH_QMARK] = ACTIONS(877), - [anon_sym_BSLASH_AMP] = ACTIONS(877), - [anon_sym_LT2] = ACTIONS(879), - [anon_sym_STAR2] = ACTIONS(877), - [anon_sym_PIPE_PIPE] = ACTIONS(877), - [anon_sym_AMP_AMP] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(877), - [anon_sym_is] = ACTIONS(879), - [anon_sym_isnot] = ACTIONS(877), - [anon_sym_EQ_EQ] = ACTIONS(877), - [anon_sym_BANG_EQ] = ACTIONS(877), - [anon_sym_GT2] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(877), - [anon_sym_EQ_TILDE] = ACTIONS(877), - [anon_sym_BANG_TILDE] = ACTIONS(877), - [sym_integer_literal] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(877), - [sym_register] = ACTIONS(877), - [sym__newline_or_pipe] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(981), + [sym_command_name] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(979), + [sym_mark] = ACTIONS(979), + [anon_sym_PERCENT] = ACTIONS(979), + [anon_sym_SLASH] = ACTIONS(979), + [anon_sym_DOT2] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_BSLASH_SLASH] = ACTIONS(979), + [anon_sym_BSLASH_QMARK] = ACTIONS(979), + [anon_sym_BSLASH_AMP] = ACTIONS(979), + [anon_sym_LT2] = ACTIONS(981), + [anon_sym_STAR2] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(979), + [anon_sym_is] = ACTIONS(981), + [anon_sym_isnot] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_GT2] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_EQ_TILDE] = ACTIONS(979), + [anon_sym_BANG_TILDE] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(979), + [anon_sym_LBRACK2] = ACTIONS(979), + [sym_register] = ACTIONS(979), + [sym__newline_or_pipe] = ACTIONS(979), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(877), - [sym__function] = ACTIONS(877), - [sym__for] = ACTIONS(877), - [sym__endfor] = ACTIONS(877), - [sym__while] = ACTIONS(877), - [sym__if] = ACTIONS(877), - [sym__try] = ACTIONS(877), - [sym__const] = ACTIONS(877), - [sym__normal] = ACTIONS(877), - [sym__return] = ACTIONS(877), - [sym__perl] = ACTIONS(877), - [sym__lua] = ACTIONS(877), - [sym__ruby] = ACTIONS(877), - [sym__python] = ACTIONS(877), - [sym__throw] = ACTIONS(877), - [sym__execute] = ACTIONS(877), - [sym__autocmd] = ACTIONS(877), - [sym__silent] = ACTIONS(877), - [sym__echo] = ACTIONS(877), - [sym__echon] = ACTIONS(877), - [sym__echohl] = ACTIONS(877), - [sym__echomsg] = ACTIONS(877), - [sym__echoerr] = ACTIONS(877), - [sym__map] = ACTIONS(877), - [sym__nmap] = ACTIONS(877), - [sym__vmap] = ACTIONS(877), - [sym__xmap] = ACTIONS(877), - [sym__smap] = ACTIONS(877), - [sym__omap] = ACTIONS(877), - [sym__imap] = ACTIONS(877), - [sym__lmap] = ACTIONS(877), - [sym__cmap] = ACTIONS(877), - [sym__tmap] = ACTIONS(877), - [sym__noremap] = ACTIONS(877), - [sym__vnoremap] = ACTIONS(877), - [sym__nnoremap] = ACTIONS(877), - [sym__xnoremap] = ACTIONS(877), - [sym__snoremap] = ACTIONS(877), - [sym__onoremap] = ACTIONS(877), - [sym__inoremap] = ACTIONS(877), - [sym__lnoremap] = ACTIONS(877), - [sym__cnoremap] = ACTIONS(877), - [sym__tnoremap] = ACTIONS(877), - [sym__augroup] = ACTIONS(877), - [sym__highlight] = ACTIONS(877), - [sym__syntax] = ACTIONS(877), - [sym__set] = ACTIONS(877), - [sym__setlocal] = ACTIONS(877), - [sym__setfiletype] = ACTIONS(877), - [sym__browse] = ACTIONS(877), - [sym__options] = ACTIONS(877), - [sym__startinsert] = ACTIONS(877), - [sym__stopinsert] = ACTIONS(877), - [sym__scriptencoding] = ACTIONS(877), - [sym__source] = ACTIONS(877), - [sym__global] = ACTIONS(877), - [sym__colorscheme] = ACTIONS(877), - [sym__comclear] = ACTIONS(877), - [sym__delcommand] = ACTIONS(877), - [sym__runtime] = ACTIONS(877), - [sym__wincmd] = ACTIONS(877), - [sym__sign] = ACTIONS(877), - [sym__filetype] = ACTIONS(877), - [sym__let] = ACTIONS(877), - [sym__unlet] = ACTIONS(877), - [sym__call] = ACTIONS(877), - [sym__break] = ACTIONS(877), - [sym__continue] = ACTIONS(877), - [sym_unknown_command_name] = ACTIONS(877), + [sym_comment] = ACTIONS(979), + [sym__function] = ACTIONS(979), + [sym__for] = ACTIONS(979), + [sym__endfor] = ACTIONS(979), + [sym__while] = ACTIONS(979), + [sym__if] = ACTIONS(979), + [sym__try] = ACTIONS(979), + [sym__const] = ACTIONS(979), + [sym__normal] = ACTIONS(979), + [sym__return] = ACTIONS(979), + [sym__perl] = ACTIONS(979), + [sym__lua] = ACTIONS(979), + [sym__ruby] = ACTIONS(979), + [sym__python] = ACTIONS(979), + [sym__throw] = ACTIONS(979), + [sym__execute] = ACTIONS(979), + [sym__autocmd] = ACTIONS(979), + [sym__silent] = ACTIONS(979), + [sym__echo] = ACTIONS(979), + [sym__echon] = ACTIONS(979), + [sym__echohl] = ACTIONS(979), + [sym__echomsg] = ACTIONS(979), + [sym__echoerr] = ACTIONS(979), + [sym__map] = ACTIONS(979), + [sym__nmap] = ACTIONS(979), + [sym__vmap] = ACTIONS(979), + [sym__xmap] = ACTIONS(979), + [sym__smap] = ACTIONS(979), + [sym__omap] = ACTIONS(979), + [sym__imap] = ACTIONS(979), + [sym__lmap] = ACTIONS(979), + [sym__cmap] = ACTIONS(979), + [sym__tmap] = ACTIONS(979), + [sym__noremap] = ACTIONS(979), + [sym__vnoremap] = ACTIONS(979), + [sym__nnoremap] = ACTIONS(979), + [sym__xnoremap] = ACTIONS(979), + [sym__snoremap] = ACTIONS(979), + [sym__onoremap] = ACTIONS(979), + [sym__inoremap] = ACTIONS(979), + [sym__lnoremap] = ACTIONS(979), + [sym__cnoremap] = ACTIONS(979), + [sym__tnoremap] = ACTIONS(979), + [sym__augroup] = ACTIONS(979), + [sym__highlight] = ACTIONS(979), + [sym__syntax] = ACTIONS(979), + [sym__set] = ACTIONS(979), + [sym__setlocal] = ACTIONS(979), + [sym__setfiletype] = ACTIONS(979), + [sym__browse] = ACTIONS(979), + [sym__options] = ACTIONS(979), + [sym__startinsert] = ACTIONS(979), + [sym__stopinsert] = ACTIONS(979), + [sym__scriptencoding] = ACTIONS(979), + [sym__source] = ACTIONS(979), + [sym__global] = ACTIONS(979), + [sym__colorscheme] = ACTIONS(979), + [sym__comclear] = ACTIONS(979), + [sym__delcommand] = ACTIONS(979), + [sym__runtime] = ACTIONS(979), + [sym__wincmd] = ACTIONS(979), + [sym__sign] = ACTIONS(979), + [sym__filetype] = ACTIONS(979), + [sym__let] = ACTIONS(979), + [sym__unlet] = ACTIONS(979), + [sym__call] = ACTIONS(979), + [sym__break] = ACTIONS(979), + [sym__continue] = ACTIONS(979), + [sym_unknown_command_name] = ACTIONS(979), }, [240] = { - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_DOT] = ACTIONS(843), - [sym_command_name] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(841), - [anon_sym_LPAREN] = ACTIONS(841), - [sym_mark] = ACTIONS(841), - [anon_sym_PERCENT] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_DOT2] = ACTIONS(843), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DOLLAR] = ACTIONS(841), - [anon_sym_BSLASH_SLASH] = ACTIONS(841), - [anon_sym_BSLASH_QMARK] = ACTIONS(841), - [anon_sym_BSLASH_AMP] = ACTIONS(841), - [anon_sym_LT2] = ACTIONS(843), - [anon_sym_STAR2] = ACTIONS(841), - [anon_sym_PIPE_PIPE] = ACTIONS(841), - [anon_sym_AMP_AMP] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_DOT_DOT] = ACTIONS(841), - [anon_sym_is] = ACTIONS(843), - [anon_sym_isnot] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(841), - [anon_sym_GT2] = ACTIONS(843), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_EQ_TILDE] = ACTIONS(841), - [anon_sym_BANG_TILDE] = ACTIONS(841), - [sym_integer_literal] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(841), - [sym_register] = ACTIONS(841), - [sym__newline_or_pipe] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(883), + [anon_sym_DOT] = ACTIONS(885), + [sym_command_name] = ACTIONS(883), + [anon_sym_QMARK] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(883), + [sym_mark] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_DOT2] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_BSLASH_SLASH] = ACTIONS(883), + [anon_sym_BSLASH_QMARK] = ACTIONS(883), + [anon_sym_BSLASH_AMP] = ACTIONS(883), + [anon_sym_LT2] = ACTIONS(885), + [anon_sym_STAR2] = ACTIONS(883), + [anon_sym_PIPE_PIPE] = ACTIONS(883), + [anon_sym_AMP_AMP] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_DOT_DOT] = ACTIONS(883), + [anon_sym_is] = ACTIONS(885), + [anon_sym_isnot] = ACTIONS(883), + [anon_sym_EQ_EQ] = ACTIONS(883), + [anon_sym_BANG_EQ] = ACTIONS(883), + [anon_sym_GT2] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(883), + [anon_sym_LT_EQ] = ACTIONS(883), + [anon_sym_EQ_TILDE] = ACTIONS(883), + [anon_sym_BANG_TILDE] = ACTIONS(883), + [sym_integer_literal] = ACTIONS(883), + [anon_sym_LBRACK2] = ACTIONS(883), + [sym_register] = ACTIONS(883), + [sym__newline_or_pipe] = ACTIONS(883), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(841), - [sym__function] = ACTIONS(841), - [sym__for] = ACTIONS(841), - [sym__endfor] = ACTIONS(841), - [sym__while] = ACTIONS(841), - [sym__if] = ACTIONS(841), - [sym__try] = ACTIONS(841), - [sym__const] = ACTIONS(841), - [sym__normal] = ACTIONS(841), - [sym__return] = ACTIONS(841), - [sym__perl] = ACTIONS(841), - [sym__lua] = ACTIONS(841), - [sym__ruby] = ACTIONS(841), - [sym__python] = ACTIONS(841), - [sym__throw] = ACTIONS(841), - [sym__execute] = ACTIONS(841), - [sym__autocmd] = ACTIONS(841), - [sym__silent] = ACTIONS(841), - [sym__echo] = ACTIONS(841), - [sym__echon] = ACTIONS(841), - [sym__echohl] = ACTIONS(841), - [sym__echomsg] = ACTIONS(841), - [sym__echoerr] = ACTIONS(841), - [sym__map] = ACTIONS(841), - [sym__nmap] = ACTIONS(841), - [sym__vmap] = ACTIONS(841), - [sym__xmap] = ACTIONS(841), - [sym__smap] = ACTIONS(841), - [sym__omap] = ACTIONS(841), - [sym__imap] = ACTIONS(841), - [sym__lmap] = ACTIONS(841), - [sym__cmap] = ACTIONS(841), - [sym__tmap] = ACTIONS(841), - [sym__noremap] = ACTIONS(841), - [sym__vnoremap] = ACTIONS(841), - [sym__nnoremap] = ACTIONS(841), - [sym__xnoremap] = ACTIONS(841), - [sym__snoremap] = ACTIONS(841), - [sym__onoremap] = ACTIONS(841), - [sym__inoremap] = ACTIONS(841), - [sym__lnoremap] = ACTIONS(841), - [sym__cnoremap] = ACTIONS(841), - [sym__tnoremap] = ACTIONS(841), - [sym__augroup] = ACTIONS(841), - [sym__highlight] = ACTIONS(841), - [sym__syntax] = ACTIONS(841), - [sym__set] = ACTIONS(841), - [sym__setlocal] = ACTIONS(841), - [sym__setfiletype] = ACTIONS(841), - [sym__browse] = ACTIONS(841), - [sym__options] = ACTIONS(841), - [sym__startinsert] = ACTIONS(841), - [sym__stopinsert] = ACTIONS(841), - [sym__scriptencoding] = ACTIONS(841), - [sym__source] = ACTIONS(841), - [sym__global] = ACTIONS(841), - [sym__colorscheme] = ACTIONS(841), - [sym__comclear] = ACTIONS(841), - [sym__delcommand] = ACTIONS(841), - [sym__runtime] = ACTIONS(841), - [sym__wincmd] = ACTIONS(841), - [sym__sign] = ACTIONS(841), - [sym__filetype] = ACTIONS(841), - [sym__let] = ACTIONS(841), - [sym__unlet] = ACTIONS(841), - [sym__call] = ACTIONS(841), - [sym__break] = ACTIONS(841), - [sym__continue] = ACTIONS(841), - [sym_unknown_command_name] = ACTIONS(841), + [sym_comment] = ACTIONS(883), + [sym__function] = ACTIONS(883), + [sym__for] = ACTIONS(883), + [sym__endfor] = ACTIONS(883), + [sym__while] = ACTIONS(883), + [sym__if] = ACTIONS(883), + [sym__try] = ACTIONS(883), + [sym__const] = ACTIONS(883), + [sym__normal] = ACTIONS(883), + [sym__return] = ACTIONS(883), + [sym__perl] = ACTIONS(883), + [sym__lua] = ACTIONS(883), + [sym__ruby] = ACTIONS(883), + [sym__python] = ACTIONS(883), + [sym__throw] = ACTIONS(883), + [sym__execute] = ACTIONS(883), + [sym__autocmd] = ACTIONS(883), + [sym__silent] = ACTIONS(883), + [sym__echo] = ACTIONS(883), + [sym__echon] = ACTIONS(883), + [sym__echohl] = ACTIONS(883), + [sym__echomsg] = ACTIONS(883), + [sym__echoerr] = ACTIONS(883), + [sym__map] = ACTIONS(883), + [sym__nmap] = ACTIONS(883), + [sym__vmap] = ACTIONS(883), + [sym__xmap] = ACTIONS(883), + [sym__smap] = ACTIONS(883), + [sym__omap] = ACTIONS(883), + [sym__imap] = ACTIONS(883), + [sym__lmap] = ACTIONS(883), + [sym__cmap] = ACTIONS(883), + [sym__tmap] = ACTIONS(883), + [sym__noremap] = ACTIONS(883), + [sym__vnoremap] = ACTIONS(883), + [sym__nnoremap] = ACTIONS(883), + [sym__xnoremap] = ACTIONS(883), + [sym__snoremap] = ACTIONS(883), + [sym__onoremap] = ACTIONS(883), + [sym__inoremap] = ACTIONS(883), + [sym__lnoremap] = ACTIONS(883), + [sym__cnoremap] = ACTIONS(883), + [sym__tnoremap] = ACTIONS(883), + [sym__augroup] = ACTIONS(883), + [sym__highlight] = ACTIONS(883), + [sym__syntax] = ACTIONS(883), + [sym__set] = ACTIONS(883), + [sym__setlocal] = ACTIONS(883), + [sym__setfiletype] = ACTIONS(883), + [sym__browse] = ACTIONS(883), + [sym__options] = ACTIONS(883), + [sym__startinsert] = ACTIONS(883), + [sym__stopinsert] = ACTIONS(883), + [sym__scriptencoding] = ACTIONS(883), + [sym__source] = ACTIONS(883), + [sym__global] = ACTIONS(883), + [sym__colorscheme] = ACTIONS(883), + [sym__comclear] = ACTIONS(883), + [sym__delcommand] = ACTIONS(883), + [sym__runtime] = ACTIONS(883), + [sym__wincmd] = ACTIONS(883), + [sym__sign] = ACTIONS(883), + [sym__filetype] = ACTIONS(883), + [sym__let] = ACTIONS(883), + [sym__unlet] = ACTIONS(883), + [sym__call] = ACTIONS(883), + [sym__break] = ACTIONS(883), + [sym__continue] = ACTIONS(883), + [sym_unknown_command_name] = ACTIONS(883), }, [241] = { - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_DOT] = ACTIONS(883), - [sym_command_name] = ACTIONS(881), - [anon_sym_QMARK] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(881), - [sym_mark] = ACTIONS(881), - [anon_sym_PERCENT] = ACTIONS(881), - [anon_sym_SLASH] = ACTIONS(881), - [anon_sym_DOT2] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(881), - [anon_sym_BSLASH_SLASH] = ACTIONS(881), - [anon_sym_BSLASH_QMARK] = ACTIONS(881), - [anon_sym_BSLASH_AMP] = ACTIONS(881), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_STAR2] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(881), - [anon_sym_is] = ACTIONS(883), - [anon_sym_isnot] = ACTIONS(881), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_GT2] = ACTIONS(883), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_EQ_TILDE] = ACTIONS(881), - [anon_sym_BANG_TILDE] = ACTIONS(881), - [sym_integer_literal] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(881), - [sym_register] = ACTIONS(881), - [sym__newline_or_pipe] = ACTIONS(881), + [anon_sym_COLON] = ACTIONS(845), + [anon_sym_DOT] = ACTIONS(167), + [sym_command_name] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(171), + [sym_mark] = ACTIONS(845), + [anon_sym_PERCENT] = ACTIONS(845), + [anon_sym_SLASH] = ACTIONS(845), + [anon_sym_DOT2] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_BSLASH_SLASH] = ACTIONS(845), + [anon_sym_BSLASH_QMARK] = ACTIONS(845), + [anon_sym_BSLASH_AMP] = ACTIONS(845), + [anon_sym_LT2] = ACTIONS(847), + [anon_sym_STAR2] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_DOT_DOT] = ACTIONS(845), + [anon_sym_is] = ACTIONS(847), + [anon_sym_isnot] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_GT2] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(845), + [anon_sym_BANG_TILDE] = ACTIONS(845), + [sym_integer_literal] = ACTIONS(845), + [anon_sym_LBRACK2] = ACTIONS(199), + [sym_register] = ACTIONS(845), + [sym__newline_or_pipe] = ACTIONS(845), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(881), - [sym__function] = ACTIONS(881), - [sym__for] = ACTIONS(881), - [sym__endfor] = ACTIONS(881), - [sym__while] = ACTIONS(881), - [sym__if] = ACTIONS(881), - [sym__try] = ACTIONS(881), - [sym__const] = ACTIONS(881), - [sym__normal] = ACTIONS(881), - [sym__return] = ACTIONS(881), - [sym__perl] = ACTIONS(881), - [sym__lua] = ACTIONS(881), - [sym__ruby] = ACTIONS(881), - [sym__python] = ACTIONS(881), - [sym__throw] = ACTIONS(881), - [sym__execute] = ACTIONS(881), - [sym__autocmd] = ACTIONS(881), - [sym__silent] = ACTIONS(881), - [sym__echo] = ACTIONS(881), - [sym__echon] = ACTIONS(881), - [sym__echohl] = ACTIONS(881), - [sym__echomsg] = ACTIONS(881), - [sym__echoerr] = ACTIONS(881), - [sym__map] = ACTIONS(881), - [sym__nmap] = ACTIONS(881), - [sym__vmap] = ACTIONS(881), - [sym__xmap] = ACTIONS(881), - [sym__smap] = ACTIONS(881), - [sym__omap] = ACTIONS(881), - [sym__imap] = ACTIONS(881), - [sym__lmap] = ACTIONS(881), - [sym__cmap] = ACTIONS(881), - [sym__tmap] = ACTIONS(881), - [sym__noremap] = ACTIONS(881), - [sym__vnoremap] = ACTIONS(881), - [sym__nnoremap] = ACTIONS(881), - [sym__xnoremap] = ACTIONS(881), - [sym__snoremap] = ACTIONS(881), - [sym__onoremap] = ACTIONS(881), - [sym__inoremap] = ACTIONS(881), - [sym__lnoremap] = ACTIONS(881), - [sym__cnoremap] = ACTIONS(881), - [sym__tnoremap] = ACTIONS(881), - [sym__augroup] = ACTIONS(881), - [sym__highlight] = ACTIONS(881), - [sym__syntax] = ACTIONS(881), - [sym__set] = ACTIONS(881), - [sym__setlocal] = ACTIONS(881), - [sym__setfiletype] = ACTIONS(881), - [sym__browse] = ACTIONS(881), - [sym__options] = ACTIONS(881), - [sym__startinsert] = ACTIONS(881), - [sym__stopinsert] = ACTIONS(881), - [sym__scriptencoding] = ACTIONS(881), - [sym__source] = ACTIONS(881), - [sym__global] = ACTIONS(881), - [sym__colorscheme] = ACTIONS(881), - [sym__comclear] = ACTIONS(881), - [sym__delcommand] = ACTIONS(881), - [sym__runtime] = ACTIONS(881), - [sym__wincmd] = ACTIONS(881), - [sym__sign] = ACTIONS(881), - [sym__filetype] = ACTIONS(881), - [sym__let] = ACTIONS(881), - [sym__unlet] = ACTIONS(881), - [sym__call] = ACTIONS(881), - [sym__break] = ACTIONS(881), - [sym__continue] = ACTIONS(881), - [sym_unknown_command_name] = ACTIONS(881), + [sym_comment] = ACTIONS(845), + [sym__function] = ACTIONS(845), + [sym__for] = ACTIONS(845), + [sym__endfor] = ACTIONS(845), + [sym__while] = ACTIONS(845), + [sym__if] = ACTIONS(845), + [sym__try] = ACTIONS(845), + [sym__const] = ACTIONS(845), + [sym__normal] = ACTIONS(845), + [sym__return] = ACTIONS(845), + [sym__perl] = ACTIONS(845), + [sym__lua] = ACTIONS(845), + [sym__ruby] = ACTIONS(845), + [sym__python] = ACTIONS(845), + [sym__throw] = ACTIONS(845), + [sym__execute] = ACTIONS(845), + [sym__autocmd] = ACTIONS(845), + [sym__silent] = ACTIONS(845), + [sym__echo] = ACTIONS(845), + [sym__echon] = ACTIONS(845), + [sym__echohl] = ACTIONS(845), + [sym__echomsg] = ACTIONS(845), + [sym__echoerr] = ACTIONS(845), + [sym__map] = ACTIONS(845), + [sym__nmap] = ACTIONS(845), + [sym__vmap] = ACTIONS(845), + [sym__xmap] = ACTIONS(845), + [sym__smap] = ACTIONS(845), + [sym__omap] = ACTIONS(845), + [sym__imap] = ACTIONS(845), + [sym__lmap] = ACTIONS(845), + [sym__cmap] = ACTIONS(845), + [sym__tmap] = ACTIONS(845), + [sym__noremap] = ACTIONS(845), + [sym__vnoremap] = ACTIONS(845), + [sym__nnoremap] = ACTIONS(845), + [sym__xnoremap] = ACTIONS(845), + [sym__snoremap] = ACTIONS(845), + [sym__onoremap] = ACTIONS(845), + [sym__inoremap] = ACTIONS(845), + [sym__lnoremap] = ACTIONS(845), + [sym__cnoremap] = ACTIONS(845), + [sym__tnoremap] = ACTIONS(845), + [sym__augroup] = ACTIONS(845), + [sym__highlight] = ACTIONS(845), + [sym__syntax] = ACTIONS(845), + [sym__set] = ACTIONS(845), + [sym__setlocal] = ACTIONS(845), + [sym__setfiletype] = ACTIONS(845), + [sym__browse] = ACTIONS(845), + [sym__options] = ACTIONS(845), + [sym__startinsert] = ACTIONS(845), + [sym__stopinsert] = ACTIONS(845), + [sym__scriptencoding] = ACTIONS(845), + [sym__source] = ACTIONS(845), + [sym__global] = ACTIONS(845), + [sym__colorscheme] = ACTIONS(845), + [sym__comclear] = ACTIONS(845), + [sym__delcommand] = ACTIONS(845), + [sym__runtime] = ACTIONS(845), + [sym__wincmd] = ACTIONS(845), + [sym__sign] = ACTIONS(845), + [sym__filetype] = ACTIONS(845), + [sym__let] = ACTIONS(845), + [sym__unlet] = ACTIONS(845), + [sym__call] = ACTIONS(845), + [sym__break] = ACTIONS(845), + [sym__continue] = ACTIONS(845), + [sym_unknown_command_name] = ACTIONS(845), }, [242] = { - [anon_sym_COLON] = ACTIONS(885), - [anon_sym_DOT] = ACTIONS(167), - [sym_command_name] = ACTIONS(885), - [anon_sym_QMARK] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(171), - [sym_mark] = ACTIONS(885), - [anon_sym_PERCENT] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(183), - [anon_sym_DOT2] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_BSLASH_SLASH] = ACTIONS(885), - [anon_sym_BSLASH_QMARK] = ACTIONS(885), - [anon_sym_BSLASH_AMP] = ACTIONS(885), - [anon_sym_LT2] = ACTIONS(181), - [anon_sym_STAR2] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(185), - [anon_sym_AMP_AMP] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(193), - [anon_sym_isnot] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_GT2] = ACTIONS(181), - [anon_sym_GT_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(197), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_BANG_TILDE] = ACTIONS(197), - [sym_integer_literal] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(199), - [sym_register] = ACTIONS(885), - [sym__newline_or_pipe] = ACTIONS(885), + [anon_sym_COLON] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(961), + [sym_command_name] = ACTIONS(959), + [anon_sym_QMARK] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [sym_mark] = ACTIONS(959), + [anon_sym_PERCENT] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_DOT2] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_BSLASH_SLASH] = ACTIONS(959), + [anon_sym_BSLASH_QMARK] = ACTIONS(959), + [anon_sym_BSLASH_AMP] = ACTIONS(959), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_STAR2] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_DOT_DOT] = ACTIONS(959), + [anon_sym_is] = ACTIONS(961), + [anon_sym_isnot] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_BANG_TILDE] = ACTIONS(959), + [sym_integer_literal] = ACTIONS(959), + [anon_sym_LBRACK2] = ACTIONS(959), + [sym_register] = ACTIONS(959), + [sym__newline_or_pipe] = ACTIONS(959), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(885), - [sym__function] = ACTIONS(885), - [sym__for] = ACTIONS(885), - [sym__endfor] = ACTIONS(885), - [sym__while] = ACTIONS(885), - [sym__if] = ACTIONS(885), - [sym__try] = ACTIONS(885), - [sym__const] = ACTIONS(885), - [sym__normal] = ACTIONS(885), - [sym__return] = ACTIONS(885), - [sym__perl] = ACTIONS(885), - [sym__lua] = ACTIONS(885), - [sym__ruby] = ACTIONS(885), - [sym__python] = ACTIONS(885), - [sym__throw] = ACTIONS(885), - [sym__execute] = ACTIONS(885), - [sym__autocmd] = ACTIONS(885), - [sym__silent] = ACTIONS(885), - [sym__echo] = ACTIONS(885), - [sym__echon] = ACTIONS(885), - [sym__echohl] = ACTIONS(885), - [sym__echomsg] = ACTIONS(885), - [sym__echoerr] = ACTIONS(885), - [sym__map] = ACTIONS(885), - [sym__nmap] = ACTIONS(885), - [sym__vmap] = ACTIONS(885), - [sym__xmap] = ACTIONS(885), - [sym__smap] = ACTIONS(885), - [sym__omap] = ACTIONS(885), - [sym__imap] = ACTIONS(885), - [sym__lmap] = ACTIONS(885), - [sym__cmap] = ACTIONS(885), - [sym__tmap] = ACTIONS(885), - [sym__noremap] = ACTIONS(885), - [sym__vnoremap] = ACTIONS(885), - [sym__nnoremap] = ACTIONS(885), - [sym__xnoremap] = ACTIONS(885), - [sym__snoremap] = ACTIONS(885), - [sym__onoremap] = ACTIONS(885), - [sym__inoremap] = ACTIONS(885), - [sym__lnoremap] = ACTIONS(885), - [sym__cnoremap] = ACTIONS(885), - [sym__tnoremap] = ACTIONS(885), - [sym__augroup] = ACTIONS(885), - [sym__highlight] = ACTIONS(885), - [sym__syntax] = ACTIONS(885), - [sym__set] = ACTIONS(885), - [sym__setlocal] = ACTIONS(885), - [sym__setfiletype] = ACTIONS(885), - [sym__browse] = ACTIONS(885), - [sym__options] = ACTIONS(885), - [sym__startinsert] = ACTIONS(885), - [sym__stopinsert] = ACTIONS(885), - [sym__scriptencoding] = ACTIONS(885), - [sym__source] = ACTIONS(885), - [sym__global] = ACTIONS(885), - [sym__colorscheme] = ACTIONS(885), - [sym__comclear] = ACTIONS(885), - [sym__delcommand] = ACTIONS(885), - [sym__runtime] = ACTIONS(885), - [sym__wincmd] = ACTIONS(885), - [sym__sign] = ACTIONS(885), - [sym__filetype] = ACTIONS(885), - [sym__let] = ACTIONS(885), - [sym__unlet] = ACTIONS(885), - [sym__call] = ACTIONS(885), - [sym__break] = ACTIONS(885), - [sym__continue] = ACTIONS(885), - [sym_unknown_command_name] = ACTIONS(885), + [sym_comment] = ACTIONS(959), + [sym__function] = ACTIONS(959), + [sym__for] = ACTIONS(959), + [sym__endfor] = ACTIONS(959), + [sym__while] = ACTIONS(959), + [sym__if] = ACTIONS(959), + [sym__try] = ACTIONS(959), + [sym__const] = ACTIONS(959), + [sym__normal] = ACTIONS(959), + [sym__return] = ACTIONS(959), + [sym__perl] = ACTIONS(959), + [sym__lua] = ACTIONS(959), + [sym__ruby] = ACTIONS(959), + [sym__python] = ACTIONS(959), + [sym__throw] = ACTIONS(959), + [sym__execute] = ACTIONS(959), + [sym__autocmd] = ACTIONS(959), + [sym__silent] = ACTIONS(959), + [sym__echo] = ACTIONS(959), + [sym__echon] = ACTIONS(959), + [sym__echohl] = ACTIONS(959), + [sym__echomsg] = ACTIONS(959), + [sym__echoerr] = ACTIONS(959), + [sym__map] = ACTIONS(959), + [sym__nmap] = ACTIONS(959), + [sym__vmap] = ACTIONS(959), + [sym__xmap] = ACTIONS(959), + [sym__smap] = ACTIONS(959), + [sym__omap] = ACTIONS(959), + [sym__imap] = ACTIONS(959), + [sym__lmap] = ACTIONS(959), + [sym__cmap] = ACTIONS(959), + [sym__tmap] = ACTIONS(959), + [sym__noremap] = ACTIONS(959), + [sym__vnoremap] = ACTIONS(959), + [sym__nnoremap] = ACTIONS(959), + [sym__xnoremap] = ACTIONS(959), + [sym__snoremap] = ACTIONS(959), + [sym__onoremap] = ACTIONS(959), + [sym__inoremap] = ACTIONS(959), + [sym__lnoremap] = ACTIONS(959), + [sym__cnoremap] = ACTIONS(959), + [sym__tnoremap] = ACTIONS(959), + [sym__augroup] = ACTIONS(959), + [sym__highlight] = ACTIONS(959), + [sym__syntax] = ACTIONS(959), + [sym__set] = ACTIONS(959), + [sym__setlocal] = ACTIONS(959), + [sym__setfiletype] = ACTIONS(959), + [sym__browse] = ACTIONS(959), + [sym__options] = ACTIONS(959), + [sym__startinsert] = ACTIONS(959), + [sym__stopinsert] = ACTIONS(959), + [sym__scriptencoding] = ACTIONS(959), + [sym__source] = ACTIONS(959), + [sym__global] = ACTIONS(959), + [sym__colorscheme] = ACTIONS(959), + [sym__comclear] = ACTIONS(959), + [sym__delcommand] = ACTIONS(959), + [sym__runtime] = ACTIONS(959), + [sym__wincmd] = ACTIONS(959), + [sym__sign] = ACTIONS(959), + [sym__filetype] = ACTIONS(959), + [sym__let] = ACTIONS(959), + [sym__unlet] = ACTIONS(959), + [sym__call] = ACTIONS(959), + [sym__break] = ACTIONS(959), + [sym__continue] = ACTIONS(959), + [sym_unknown_command_name] = ACTIONS(959), }, [243] = { - [anon_sym_COLON] = ACTIONS(887), - [anon_sym_DOT] = ACTIONS(889), - [sym_command_name] = ACTIONS(887), - [anon_sym_QMARK] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(887), - [sym_mark] = ACTIONS(887), - [anon_sym_PERCENT] = ACTIONS(887), - [anon_sym_SLASH] = ACTIONS(887), - [anon_sym_DOT2] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_BSLASH_SLASH] = ACTIONS(887), - [anon_sym_BSLASH_QMARK] = ACTIONS(887), - [anon_sym_BSLASH_AMP] = ACTIONS(887), - [anon_sym_LT2] = ACTIONS(889), - [anon_sym_STAR2] = ACTIONS(887), - [anon_sym_PIPE_PIPE] = ACTIONS(887), - [anon_sym_AMP_AMP] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_DOT_DOT] = ACTIONS(887), - [anon_sym_is] = ACTIONS(889), - [anon_sym_isnot] = ACTIONS(887), - [anon_sym_EQ_EQ] = ACTIONS(887), - [anon_sym_BANG_EQ] = ACTIONS(887), - [anon_sym_GT2] = ACTIONS(889), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_EQ_TILDE] = ACTIONS(887), - [anon_sym_BANG_TILDE] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(887), - [sym_register] = ACTIONS(887), - [sym__newline_or_pipe] = ACTIONS(887), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(861), + [sym_command_name] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(859), + [sym_mark] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_DOT2] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_BSLASH_SLASH] = ACTIONS(859), + [anon_sym_BSLASH_QMARK] = ACTIONS(859), + [anon_sym_BSLASH_AMP] = ACTIONS(859), + [anon_sym_LT2] = ACTIONS(861), + [anon_sym_STAR2] = ACTIONS(859), + [anon_sym_PIPE_PIPE] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(859), + [anon_sym_is] = ACTIONS(861), + [anon_sym_isnot] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_GT2] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_EQ_TILDE] = ACTIONS(859), + [anon_sym_BANG_TILDE] = ACTIONS(859), + [sym_integer_literal] = ACTIONS(859), + [anon_sym_LBRACK2] = ACTIONS(859), + [sym_register] = ACTIONS(859), + [sym__newline_or_pipe] = ACTIONS(859), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(887), - [sym__function] = ACTIONS(887), - [sym__for] = ACTIONS(887), - [sym__endfor] = ACTIONS(887), - [sym__while] = ACTIONS(887), - [sym__if] = ACTIONS(887), - [sym__try] = ACTIONS(887), - [sym__const] = ACTIONS(887), - [sym__normal] = ACTIONS(887), - [sym__return] = ACTIONS(887), - [sym__perl] = ACTIONS(887), - [sym__lua] = ACTIONS(887), - [sym__ruby] = ACTIONS(887), - [sym__python] = ACTIONS(887), - [sym__throw] = ACTIONS(887), - [sym__execute] = ACTIONS(887), - [sym__autocmd] = ACTIONS(887), - [sym__silent] = ACTIONS(887), - [sym__echo] = ACTIONS(887), - [sym__echon] = ACTIONS(887), - [sym__echohl] = ACTIONS(887), - [sym__echomsg] = ACTIONS(887), - [sym__echoerr] = ACTIONS(887), - [sym__map] = ACTIONS(887), - [sym__nmap] = ACTIONS(887), - [sym__vmap] = ACTIONS(887), - [sym__xmap] = ACTIONS(887), - [sym__smap] = ACTIONS(887), - [sym__omap] = ACTIONS(887), - [sym__imap] = ACTIONS(887), - [sym__lmap] = ACTIONS(887), - [sym__cmap] = ACTIONS(887), - [sym__tmap] = ACTIONS(887), - [sym__noremap] = ACTIONS(887), - [sym__vnoremap] = ACTIONS(887), - [sym__nnoremap] = ACTIONS(887), - [sym__xnoremap] = ACTIONS(887), - [sym__snoremap] = ACTIONS(887), - [sym__onoremap] = ACTIONS(887), - [sym__inoremap] = ACTIONS(887), - [sym__lnoremap] = ACTIONS(887), - [sym__cnoremap] = ACTIONS(887), - [sym__tnoremap] = ACTIONS(887), - [sym__augroup] = ACTIONS(887), - [sym__highlight] = ACTIONS(887), - [sym__syntax] = ACTIONS(887), - [sym__set] = ACTIONS(887), - [sym__setlocal] = ACTIONS(887), - [sym__setfiletype] = ACTIONS(887), - [sym__browse] = ACTIONS(887), - [sym__options] = ACTIONS(887), - [sym__startinsert] = ACTIONS(887), - [sym__stopinsert] = ACTIONS(887), - [sym__scriptencoding] = ACTIONS(887), - [sym__source] = ACTIONS(887), - [sym__global] = ACTIONS(887), - [sym__colorscheme] = ACTIONS(887), - [sym__comclear] = ACTIONS(887), - [sym__delcommand] = ACTIONS(887), - [sym__runtime] = ACTIONS(887), - [sym__wincmd] = ACTIONS(887), - [sym__sign] = ACTIONS(887), - [sym__filetype] = ACTIONS(887), - [sym__let] = ACTIONS(887), - [sym__unlet] = ACTIONS(887), - [sym__call] = ACTIONS(887), - [sym__break] = ACTIONS(887), - [sym__continue] = ACTIONS(887), - [sym_unknown_command_name] = ACTIONS(887), + [sym_comment] = ACTIONS(859), + [sym__function] = ACTIONS(859), + [sym__for] = ACTIONS(859), + [sym__endfor] = ACTIONS(859), + [sym__while] = ACTIONS(859), + [sym__if] = ACTIONS(859), + [sym__try] = ACTIONS(859), + [sym__const] = ACTIONS(859), + [sym__normal] = ACTIONS(859), + [sym__return] = ACTIONS(859), + [sym__perl] = ACTIONS(859), + [sym__lua] = ACTIONS(859), + [sym__ruby] = ACTIONS(859), + [sym__python] = ACTIONS(859), + [sym__throw] = ACTIONS(859), + [sym__execute] = ACTIONS(859), + [sym__autocmd] = ACTIONS(859), + [sym__silent] = ACTIONS(859), + [sym__echo] = ACTIONS(859), + [sym__echon] = ACTIONS(859), + [sym__echohl] = ACTIONS(859), + [sym__echomsg] = ACTIONS(859), + [sym__echoerr] = ACTIONS(859), + [sym__map] = ACTIONS(859), + [sym__nmap] = ACTIONS(859), + [sym__vmap] = ACTIONS(859), + [sym__xmap] = ACTIONS(859), + [sym__smap] = ACTIONS(859), + [sym__omap] = ACTIONS(859), + [sym__imap] = ACTIONS(859), + [sym__lmap] = ACTIONS(859), + [sym__cmap] = ACTIONS(859), + [sym__tmap] = ACTIONS(859), + [sym__noremap] = ACTIONS(859), + [sym__vnoremap] = ACTIONS(859), + [sym__nnoremap] = ACTIONS(859), + [sym__xnoremap] = ACTIONS(859), + [sym__snoremap] = ACTIONS(859), + [sym__onoremap] = ACTIONS(859), + [sym__inoremap] = ACTIONS(859), + [sym__lnoremap] = ACTIONS(859), + [sym__cnoremap] = ACTIONS(859), + [sym__tnoremap] = ACTIONS(859), + [sym__augroup] = ACTIONS(859), + [sym__highlight] = ACTIONS(859), + [sym__syntax] = ACTIONS(859), + [sym__set] = ACTIONS(859), + [sym__setlocal] = ACTIONS(859), + [sym__setfiletype] = ACTIONS(859), + [sym__browse] = ACTIONS(859), + [sym__options] = ACTIONS(859), + [sym__startinsert] = ACTIONS(859), + [sym__stopinsert] = ACTIONS(859), + [sym__scriptencoding] = ACTIONS(859), + [sym__source] = ACTIONS(859), + [sym__global] = ACTIONS(859), + [sym__colorscheme] = ACTIONS(859), + [sym__comclear] = ACTIONS(859), + [sym__delcommand] = ACTIONS(859), + [sym__runtime] = ACTIONS(859), + [sym__wincmd] = ACTIONS(859), + [sym__sign] = ACTIONS(859), + [sym__filetype] = ACTIONS(859), + [sym__let] = ACTIONS(859), + [sym__unlet] = ACTIONS(859), + [sym__call] = ACTIONS(859), + [sym__break] = ACTIONS(859), + [sym__continue] = ACTIONS(859), + [sym_unknown_command_name] = ACTIONS(859), }, [244] = { - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(167), - [sym_command_name] = ACTIONS(963), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(171), - [sym_mark] = ACTIONS(963), - [anon_sym_PERCENT] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(183), - [anon_sym_DOT2] = ACTIONS(189), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_BSLASH_SLASH] = ACTIONS(963), - [anon_sym_BSLASH_QMARK] = ACTIONS(963), - [anon_sym_BSLASH_AMP] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(181), - [anon_sym_STAR2] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_is] = ACTIONS(193), - [anon_sym_isnot] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(197), - [anon_sym_BANG_EQ] = ACTIONS(197), - [anon_sym_GT2] = ACTIONS(181), - [anon_sym_GT_EQ] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(197), - [anon_sym_EQ_TILDE] = ACTIONS(197), - [anon_sym_BANG_TILDE] = ACTIONS(197), - [sym_integer_literal] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(199), - [sym_register] = ACTIONS(963), - [sym__newline_or_pipe] = ACTIONS(963), + [anon_sym_COLON] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(973), + [sym_command_name] = ACTIONS(971), + [anon_sym_QMARK] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [sym_mark] = ACTIONS(971), + [anon_sym_PERCENT] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_DOT2] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_BSLASH_SLASH] = ACTIONS(971), + [anon_sym_BSLASH_QMARK] = ACTIONS(971), + [anon_sym_BSLASH_AMP] = ACTIONS(971), + [anon_sym_LT2] = ACTIONS(973), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_is] = ACTIONS(973), + [anon_sym_isnot] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(971), + [anon_sym_BANG_EQ] = ACTIONS(971), + [anon_sym_GT2] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(971), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_EQ_TILDE] = ACTIONS(971), + [anon_sym_BANG_TILDE] = ACTIONS(971), + [sym_integer_literal] = ACTIONS(971), + [anon_sym_LBRACK2] = ACTIONS(971), + [sym_register] = ACTIONS(971), + [sym__newline_or_pipe] = ACTIONS(971), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(963), - [sym__function] = ACTIONS(963), - [sym__for] = ACTIONS(963), - [sym__endfor] = ACTIONS(963), - [sym__while] = ACTIONS(963), - [sym__if] = ACTIONS(963), - [sym__try] = ACTIONS(963), - [sym__const] = ACTIONS(963), - [sym__normal] = ACTIONS(963), - [sym__return] = ACTIONS(963), - [sym__perl] = ACTIONS(963), - [sym__lua] = ACTIONS(963), - [sym__ruby] = ACTIONS(963), - [sym__python] = ACTIONS(963), - [sym__throw] = ACTIONS(963), - [sym__execute] = ACTIONS(963), - [sym__autocmd] = ACTIONS(963), - [sym__silent] = ACTIONS(963), - [sym__echo] = ACTIONS(963), - [sym__echon] = ACTIONS(963), - [sym__echohl] = ACTIONS(963), - [sym__echomsg] = ACTIONS(963), - [sym__echoerr] = ACTIONS(963), - [sym__map] = ACTIONS(963), - [sym__nmap] = ACTIONS(963), - [sym__vmap] = ACTIONS(963), - [sym__xmap] = ACTIONS(963), - [sym__smap] = ACTIONS(963), - [sym__omap] = ACTIONS(963), - [sym__imap] = ACTIONS(963), - [sym__lmap] = ACTIONS(963), - [sym__cmap] = ACTIONS(963), - [sym__tmap] = ACTIONS(963), - [sym__noremap] = ACTIONS(963), - [sym__vnoremap] = ACTIONS(963), - [sym__nnoremap] = ACTIONS(963), - [sym__xnoremap] = ACTIONS(963), - [sym__snoremap] = ACTIONS(963), - [sym__onoremap] = ACTIONS(963), - [sym__inoremap] = ACTIONS(963), - [sym__lnoremap] = ACTIONS(963), - [sym__cnoremap] = ACTIONS(963), - [sym__tnoremap] = ACTIONS(963), - [sym__augroup] = ACTIONS(963), - [sym__highlight] = ACTIONS(963), - [sym__syntax] = ACTIONS(963), - [sym__set] = ACTIONS(963), - [sym__setlocal] = ACTIONS(963), - [sym__setfiletype] = ACTIONS(963), - [sym__browse] = ACTIONS(963), - [sym__options] = ACTIONS(963), - [sym__startinsert] = ACTIONS(963), - [sym__stopinsert] = ACTIONS(963), - [sym__scriptencoding] = ACTIONS(963), - [sym__source] = ACTIONS(963), - [sym__global] = ACTIONS(963), - [sym__colorscheme] = ACTIONS(963), - [sym__comclear] = ACTIONS(963), - [sym__delcommand] = ACTIONS(963), - [sym__runtime] = ACTIONS(963), - [sym__wincmd] = ACTIONS(963), - [sym__sign] = ACTIONS(963), - [sym__filetype] = ACTIONS(963), - [sym__let] = ACTIONS(963), - [sym__unlet] = ACTIONS(963), - [sym__call] = ACTIONS(963), - [sym__break] = ACTIONS(963), - [sym__continue] = ACTIONS(963), - [sym_unknown_command_name] = ACTIONS(963), + [sym_comment] = ACTIONS(971), + [sym__function] = ACTIONS(971), + [sym__for] = ACTIONS(971), + [sym__endfor] = ACTIONS(971), + [sym__while] = ACTIONS(971), + [sym__if] = ACTIONS(971), + [sym__try] = ACTIONS(971), + [sym__const] = ACTIONS(971), + [sym__normal] = ACTIONS(971), + [sym__return] = ACTIONS(971), + [sym__perl] = ACTIONS(971), + [sym__lua] = ACTIONS(971), + [sym__ruby] = ACTIONS(971), + [sym__python] = ACTIONS(971), + [sym__throw] = ACTIONS(971), + [sym__execute] = ACTIONS(971), + [sym__autocmd] = ACTIONS(971), + [sym__silent] = ACTIONS(971), + [sym__echo] = ACTIONS(971), + [sym__echon] = ACTIONS(971), + [sym__echohl] = ACTIONS(971), + [sym__echomsg] = ACTIONS(971), + [sym__echoerr] = ACTIONS(971), + [sym__map] = ACTIONS(971), + [sym__nmap] = ACTIONS(971), + [sym__vmap] = ACTIONS(971), + [sym__xmap] = ACTIONS(971), + [sym__smap] = ACTIONS(971), + [sym__omap] = ACTIONS(971), + [sym__imap] = ACTIONS(971), + [sym__lmap] = ACTIONS(971), + [sym__cmap] = ACTIONS(971), + [sym__tmap] = ACTIONS(971), + [sym__noremap] = ACTIONS(971), + [sym__vnoremap] = ACTIONS(971), + [sym__nnoremap] = ACTIONS(971), + [sym__xnoremap] = ACTIONS(971), + [sym__snoremap] = ACTIONS(971), + [sym__onoremap] = ACTIONS(971), + [sym__inoremap] = ACTIONS(971), + [sym__lnoremap] = ACTIONS(971), + [sym__cnoremap] = ACTIONS(971), + [sym__tnoremap] = ACTIONS(971), + [sym__augroup] = ACTIONS(971), + [sym__highlight] = ACTIONS(971), + [sym__syntax] = ACTIONS(971), + [sym__set] = ACTIONS(971), + [sym__setlocal] = ACTIONS(971), + [sym__setfiletype] = ACTIONS(971), + [sym__browse] = ACTIONS(971), + [sym__options] = ACTIONS(971), + [sym__startinsert] = ACTIONS(971), + [sym__stopinsert] = ACTIONS(971), + [sym__scriptencoding] = ACTIONS(971), + [sym__source] = ACTIONS(971), + [sym__global] = ACTIONS(971), + [sym__colorscheme] = ACTIONS(971), + [sym__comclear] = ACTIONS(971), + [sym__delcommand] = ACTIONS(971), + [sym__runtime] = ACTIONS(971), + [sym__wincmd] = ACTIONS(971), + [sym__sign] = ACTIONS(971), + [sym__filetype] = ACTIONS(971), + [sym__let] = ACTIONS(971), + [sym__unlet] = ACTIONS(971), + [sym__call] = ACTIONS(971), + [sym__break] = ACTIONS(971), + [sym__continue] = ACTIONS(971), + [sym_unknown_command_name] = ACTIONS(971), }, [245] = { - [anon_sym_COLON] = ACTIONS(991), - [sym_command_name] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(991), - [sym_mark] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_DOT2] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_BSLASH_SLASH] = ACTIONS(991), - [anon_sym_BSLASH_QMARK] = ACTIONS(991), - [anon_sym_BSLASH_AMP] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(991), - [sym_register] = ACTIONS(991), - [sym__newline_or_pipe] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(294), + [sym_command_name] = ACTIONS(294), + [anon_sym_QMARK] = ACTIONS(294), + [sym_mark] = ACTIONS(294), + [anon_sym_PERCENT] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_DOT2] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(294), + [anon_sym_BSLASH_SLASH] = ACTIONS(294), + [anon_sym_BSLASH_QMARK] = ACTIONS(294), + [anon_sym_BSLASH_AMP] = ACTIONS(294), + [sym_integer_literal] = ACTIONS(294), + [sym_register] = ACTIONS(294), + [sym__newline_or_pipe] = ACTIONS(294), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(991), - [sym__function] = ACTIONS(991), - [sym__for] = ACTIONS(991), - [sym__while] = ACTIONS(991), - [sym__if] = ACTIONS(991), - [sym__elseif] = ACTIONS(991), - [sym__else] = ACTIONS(991), - [sym__endif] = ACTIONS(991), - [sym__try] = ACTIONS(991), - [sym__const] = ACTIONS(991), - [sym__normal] = ACTIONS(991), - [sym__return] = ACTIONS(991), - [sym__perl] = ACTIONS(991), - [sym__lua] = ACTIONS(991), - [sym__ruby] = ACTIONS(991), - [sym__python] = ACTIONS(991), - [sym__throw] = ACTIONS(991), - [sym__execute] = ACTIONS(991), - [sym__autocmd] = ACTIONS(991), - [sym__silent] = ACTIONS(991), - [sym__echo] = ACTIONS(991), - [sym__echon] = ACTIONS(991), - [sym__echohl] = ACTIONS(991), - [sym__echomsg] = ACTIONS(991), - [sym__echoerr] = ACTIONS(991), - [sym__map] = ACTIONS(991), - [sym__nmap] = ACTIONS(991), - [sym__vmap] = ACTIONS(991), - [sym__xmap] = ACTIONS(991), - [sym__smap] = ACTIONS(991), - [sym__omap] = ACTIONS(991), - [sym__imap] = ACTIONS(991), - [sym__lmap] = ACTIONS(991), - [sym__cmap] = ACTIONS(991), - [sym__tmap] = ACTIONS(991), - [sym__noremap] = ACTIONS(991), - [sym__vnoremap] = ACTIONS(991), - [sym__nnoremap] = ACTIONS(991), - [sym__xnoremap] = ACTIONS(991), - [sym__snoremap] = ACTIONS(991), - [sym__onoremap] = ACTIONS(991), - [sym__inoremap] = ACTIONS(991), - [sym__lnoremap] = ACTIONS(991), - [sym__cnoremap] = ACTIONS(991), - [sym__tnoremap] = ACTIONS(991), - [sym__augroup] = ACTIONS(991), - [sym__highlight] = ACTIONS(991), - [sym__syntax] = ACTIONS(991), - [sym__set] = ACTIONS(991), - [sym__setlocal] = ACTIONS(991), - [sym__setfiletype] = ACTIONS(991), - [sym__browse] = ACTIONS(991), - [sym__options] = ACTIONS(991), - [sym__startinsert] = ACTIONS(991), - [sym__stopinsert] = ACTIONS(991), - [sym__scriptencoding] = ACTIONS(991), - [sym__source] = ACTIONS(991), - [sym__global] = ACTIONS(991), - [sym__colorscheme] = ACTIONS(991), - [sym__comclear] = ACTIONS(991), - [sym__delcommand] = ACTIONS(991), - [sym__runtime] = ACTIONS(991), - [sym__wincmd] = ACTIONS(991), - [sym__sign] = ACTIONS(991), - [sym__filetype] = ACTIONS(991), - [sym__let] = ACTIONS(991), - [sym__unlet] = ACTIONS(991), - [sym__call] = ACTIONS(991), - [sym__break] = ACTIONS(991), - [sym__continue] = ACTIONS(991), - [sym_unknown_command_name] = ACTIONS(991), + [sym_comment] = ACTIONS(294), + [sym__function] = ACTIONS(294), + [sym__for] = ACTIONS(294), + [sym__while] = ACTIONS(294), + [sym__if] = ACTIONS(294), + [sym__elseif] = ACTIONS(294), + [sym__else] = ACTIONS(294), + [sym__endif] = ACTIONS(294), + [sym__try] = ACTIONS(294), + [sym__const] = ACTIONS(294), + [sym__normal] = ACTIONS(294), + [sym__return] = ACTIONS(294), + [sym__perl] = ACTIONS(294), + [sym__lua] = ACTIONS(294), + [sym__ruby] = ACTIONS(294), + [sym__python] = ACTIONS(294), + [sym__throw] = ACTIONS(294), + [sym__execute] = ACTIONS(294), + [sym__autocmd] = ACTIONS(294), + [sym__silent] = ACTIONS(294), + [sym__echo] = ACTIONS(294), + [sym__echon] = ACTIONS(294), + [sym__echohl] = ACTIONS(294), + [sym__echomsg] = ACTIONS(294), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(294), + [sym__nmap] = ACTIONS(294), + [sym__vmap] = ACTIONS(294), + [sym__xmap] = ACTIONS(294), + [sym__smap] = ACTIONS(294), + [sym__omap] = ACTIONS(294), + [sym__imap] = ACTIONS(294), + [sym__lmap] = ACTIONS(294), + [sym__cmap] = ACTIONS(294), + [sym__tmap] = ACTIONS(294), + [sym__noremap] = ACTIONS(294), + [sym__vnoremap] = ACTIONS(294), + [sym__nnoremap] = ACTIONS(294), + [sym__xnoremap] = ACTIONS(294), + [sym__snoremap] = ACTIONS(294), + [sym__onoremap] = ACTIONS(294), + [sym__inoremap] = ACTIONS(294), + [sym__lnoremap] = ACTIONS(294), + [sym__cnoremap] = ACTIONS(294), + [sym__tnoremap] = ACTIONS(294), + [sym__augroup] = ACTIONS(294), + [sym__highlight] = ACTIONS(294), + [sym__syntax] = ACTIONS(294), + [sym__set] = ACTIONS(294), + [sym__setlocal] = ACTIONS(294), + [sym__setfiletype] = ACTIONS(294), + [sym__browse] = ACTIONS(294), + [sym__options] = ACTIONS(294), + [sym__startinsert] = ACTIONS(294), + [sym__stopinsert] = ACTIONS(294), + [sym__scriptencoding] = ACTIONS(294), + [sym__source] = ACTIONS(294), + [sym__global] = ACTIONS(294), + [sym__colorscheme] = ACTIONS(294), + [sym__comclear] = ACTIONS(294), + [sym__delcommand] = ACTIONS(294), + [sym__runtime] = ACTIONS(294), + [sym__wincmd] = ACTIONS(294), + [sym__sign] = ACTIONS(294), + [sym__filetype] = ACTIONS(294), + [sym__let] = ACTIONS(294), + [sym__unlet] = ACTIONS(294), + [sym__call] = ACTIONS(294), + [sym__break] = ACTIONS(294), + [sym__continue] = ACTIONS(294), + [sym_unknown_command_name] = ACTIONS(294), }, [246] = { - [anon_sym_COLON] = ACTIONS(286), - [sym_command_name] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(286), - [sym_mark] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_DOT2] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(993), + [sym_command_name] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [sym_mark] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_DOT2] = ACTIONS(993), [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_BSLASH_SLASH] = ACTIONS(286), - [anon_sym_BSLASH_QMARK] = ACTIONS(286), - [anon_sym_BSLASH_AMP] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(286), - [sym_register] = ACTIONS(286), - [sym__newline_or_pipe] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_BSLASH_SLASH] = ACTIONS(993), + [anon_sym_BSLASH_QMARK] = ACTIONS(993), + [anon_sym_BSLASH_AMP] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(993), + [sym_register] = ACTIONS(993), + [sym__newline_or_pipe] = ACTIONS(993), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(286), - [sym__function] = ACTIONS(286), - [sym__for] = ACTIONS(286), - [sym__while] = ACTIONS(286), - [sym__if] = ACTIONS(286), - [sym__try] = ACTIONS(286), - [sym__catch] = ACTIONS(286), - [sym__finally] = ACTIONS(286), - [sym__endtry] = ACTIONS(286), - [sym__const] = ACTIONS(286), - [sym__normal] = ACTIONS(286), - [sym__return] = ACTIONS(286), - [sym__perl] = ACTIONS(286), - [sym__lua] = ACTIONS(286), - [sym__ruby] = ACTIONS(286), - [sym__python] = ACTIONS(286), - [sym__throw] = ACTIONS(286), - [sym__execute] = ACTIONS(286), - [sym__autocmd] = ACTIONS(286), - [sym__silent] = ACTIONS(286), - [sym__echo] = ACTIONS(286), - [sym__echon] = ACTIONS(286), - [sym__echohl] = ACTIONS(286), - [sym__echomsg] = ACTIONS(286), - [sym__echoerr] = ACTIONS(286), - [sym__map] = ACTIONS(286), - [sym__nmap] = ACTIONS(286), - [sym__vmap] = ACTIONS(286), - [sym__xmap] = ACTIONS(286), - [sym__smap] = ACTIONS(286), - [sym__omap] = ACTIONS(286), - [sym__imap] = ACTIONS(286), - [sym__lmap] = ACTIONS(286), - [sym__cmap] = ACTIONS(286), - [sym__tmap] = ACTIONS(286), - [sym__noremap] = ACTIONS(286), - [sym__vnoremap] = ACTIONS(286), - [sym__nnoremap] = ACTIONS(286), - [sym__xnoremap] = ACTIONS(286), - [sym__snoremap] = ACTIONS(286), - [sym__onoremap] = ACTIONS(286), - [sym__inoremap] = ACTIONS(286), - [sym__lnoremap] = ACTIONS(286), - [sym__cnoremap] = ACTIONS(286), - [sym__tnoremap] = ACTIONS(286), - [sym__augroup] = ACTIONS(286), - [sym__highlight] = ACTIONS(286), - [sym__syntax] = ACTIONS(286), - [sym__set] = ACTIONS(286), - [sym__setlocal] = ACTIONS(286), - [sym__setfiletype] = ACTIONS(286), - [sym__browse] = ACTIONS(286), - [sym__options] = ACTIONS(286), - [sym__startinsert] = ACTIONS(286), - [sym__stopinsert] = ACTIONS(286), - [sym__scriptencoding] = ACTIONS(286), - [sym__source] = ACTIONS(286), - [sym__global] = ACTIONS(286), - [sym__colorscheme] = ACTIONS(286), - [sym__comclear] = ACTIONS(286), - [sym__delcommand] = ACTIONS(286), - [sym__runtime] = ACTIONS(286), - [sym__wincmd] = ACTIONS(286), - [sym__sign] = ACTIONS(286), - [sym__filetype] = ACTIONS(286), - [sym__let] = ACTIONS(286), - [sym__unlet] = ACTIONS(286), - [sym__call] = ACTIONS(286), - [sym__break] = ACTIONS(286), - [sym__continue] = ACTIONS(286), - [sym_unknown_command_name] = ACTIONS(286), + [sym_comment] = ACTIONS(993), + [sym__function] = ACTIONS(993), + [sym__for] = ACTIONS(993), + [sym__while] = ACTIONS(993), + [sym__if] = ACTIONS(993), + [sym__try] = ACTIONS(993), + [sym__catch] = ACTIONS(993), + [sym__finally] = ACTIONS(993), + [sym__endtry] = ACTIONS(993), + [sym__const] = ACTIONS(993), + [sym__normal] = ACTIONS(993), + [sym__return] = ACTIONS(993), + [sym__perl] = ACTIONS(993), + [sym__lua] = ACTIONS(993), + [sym__ruby] = ACTIONS(993), + [sym__python] = ACTIONS(993), + [sym__throw] = ACTIONS(993), + [sym__execute] = ACTIONS(993), + [sym__autocmd] = ACTIONS(993), + [sym__silent] = ACTIONS(993), + [sym__echo] = ACTIONS(993), + [sym__echon] = ACTIONS(993), + [sym__echohl] = ACTIONS(993), + [sym__echomsg] = ACTIONS(993), + [sym__echoerr] = ACTIONS(993), + [sym__map] = ACTIONS(993), + [sym__nmap] = ACTIONS(993), + [sym__vmap] = ACTIONS(993), + [sym__xmap] = ACTIONS(993), + [sym__smap] = ACTIONS(993), + [sym__omap] = ACTIONS(993), + [sym__imap] = ACTIONS(993), + [sym__lmap] = ACTIONS(993), + [sym__cmap] = ACTIONS(993), + [sym__tmap] = ACTIONS(993), + [sym__noremap] = ACTIONS(993), + [sym__vnoremap] = ACTIONS(993), + [sym__nnoremap] = ACTIONS(993), + [sym__xnoremap] = ACTIONS(993), + [sym__snoremap] = ACTIONS(993), + [sym__onoremap] = ACTIONS(993), + [sym__inoremap] = ACTIONS(993), + [sym__lnoremap] = ACTIONS(993), + [sym__cnoremap] = ACTIONS(993), + [sym__tnoremap] = ACTIONS(993), + [sym__augroup] = ACTIONS(993), + [sym__highlight] = ACTIONS(993), + [sym__syntax] = ACTIONS(993), + [sym__set] = ACTIONS(993), + [sym__setlocal] = ACTIONS(993), + [sym__setfiletype] = ACTIONS(993), + [sym__browse] = ACTIONS(993), + [sym__options] = ACTIONS(993), + [sym__startinsert] = ACTIONS(993), + [sym__stopinsert] = ACTIONS(993), + [sym__scriptencoding] = ACTIONS(993), + [sym__source] = ACTIONS(993), + [sym__global] = ACTIONS(993), + [sym__colorscheme] = ACTIONS(993), + [sym__comclear] = ACTIONS(993), + [sym__delcommand] = ACTIONS(993), + [sym__runtime] = ACTIONS(993), + [sym__wincmd] = ACTIONS(993), + [sym__sign] = ACTIONS(993), + [sym__filetype] = ACTIONS(993), + [sym__let] = ACTIONS(993), + [sym__unlet] = ACTIONS(993), + [sym__call] = ACTIONS(993), + [sym__break] = ACTIONS(993), + [sym__continue] = ACTIONS(993), + [sym_unknown_command_name] = ACTIONS(993), }, [247] = { - [anon_sym_COLON] = ACTIONS(286), - [sym_command_name] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(286), - [sym_mark] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_DOT2] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_BSLASH_SLASH] = ACTIONS(286), - [anon_sym_BSLASH_QMARK] = ACTIONS(286), - [anon_sym_BSLASH_AMP] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(286), - [sym_register] = ACTIONS(286), - [sym__newline_or_pipe] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(294), + [sym_command_name] = ACTIONS(294), + [anon_sym_QMARK] = ACTIONS(294), + [sym_mark] = ACTIONS(294), + [anon_sym_PERCENT] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_DOT2] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(294), + [anon_sym_BSLASH_SLASH] = ACTIONS(294), + [anon_sym_BSLASH_QMARK] = ACTIONS(294), + [anon_sym_BSLASH_AMP] = ACTIONS(294), + [sym_integer_literal] = ACTIONS(294), + [sym_register] = ACTIONS(294), + [sym__newline_or_pipe] = ACTIONS(294), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(286), - [sym__function] = ACTIONS(286), - [sym__for] = ACTIONS(286), - [sym__while] = ACTIONS(286), - [sym__if] = ACTIONS(286), - [sym__elseif] = ACTIONS(286), - [sym__else] = ACTIONS(286), - [sym__endif] = ACTIONS(286), - [sym__try] = ACTIONS(286), - [sym__const] = ACTIONS(286), - [sym__normal] = ACTIONS(286), - [sym__return] = ACTIONS(286), - [sym__perl] = ACTIONS(286), - [sym__lua] = ACTIONS(286), - [sym__ruby] = ACTIONS(286), - [sym__python] = ACTIONS(286), - [sym__throw] = ACTIONS(286), - [sym__execute] = ACTIONS(286), - [sym__autocmd] = ACTIONS(286), - [sym__silent] = ACTIONS(286), - [sym__echo] = ACTIONS(286), - [sym__echon] = ACTIONS(286), - [sym__echohl] = ACTIONS(286), - [sym__echomsg] = ACTIONS(286), - [sym__echoerr] = ACTIONS(286), - [sym__map] = ACTIONS(286), - [sym__nmap] = ACTIONS(286), - [sym__vmap] = ACTIONS(286), - [sym__xmap] = ACTIONS(286), - [sym__smap] = ACTIONS(286), - [sym__omap] = ACTIONS(286), - [sym__imap] = ACTIONS(286), - [sym__lmap] = ACTIONS(286), - [sym__cmap] = ACTIONS(286), - [sym__tmap] = ACTIONS(286), - [sym__noremap] = ACTIONS(286), - [sym__vnoremap] = ACTIONS(286), - [sym__nnoremap] = ACTIONS(286), - [sym__xnoremap] = ACTIONS(286), - [sym__snoremap] = ACTIONS(286), - [sym__onoremap] = ACTIONS(286), - [sym__inoremap] = ACTIONS(286), - [sym__lnoremap] = ACTIONS(286), - [sym__cnoremap] = ACTIONS(286), - [sym__tnoremap] = ACTIONS(286), - [sym__augroup] = ACTIONS(286), - [sym__highlight] = ACTIONS(286), - [sym__syntax] = ACTIONS(286), - [sym__set] = ACTIONS(286), - [sym__setlocal] = ACTIONS(286), - [sym__setfiletype] = ACTIONS(286), - [sym__browse] = ACTIONS(286), - [sym__options] = ACTIONS(286), - [sym__startinsert] = ACTIONS(286), - [sym__stopinsert] = ACTIONS(286), - [sym__scriptencoding] = ACTIONS(286), - [sym__source] = ACTIONS(286), - [sym__global] = ACTIONS(286), - [sym__colorscheme] = ACTIONS(286), - [sym__comclear] = ACTIONS(286), - [sym__delcommand] = ACTIONS(286), - [sym__runtime] = ACTIONS(286), - [sym__wincmd] = ACTIONS(286), - [sym__sign] = ACTIONS(286), - [sym__filetype] = ACTIONS(286), - [sym__let] = ACTIONS(286), - [sym__unlet] = ACTIONS(286), - [sym__call] = ACTIONS(286), - [sym__break] = ACTIONS(286), - [sym__continue] = ACTIONS(286), - [sym_unknown_command_name] = ACTIONS(286), + [sym_comment] = ACTIONS(294), + [sym__function] = ACTIONS(294), + [sym__for] = ACTIONS(294), + [sym__while] = ACTIONS(294), + [sym__if] = ACTIONS(294), + [sym__try] = ACTIONS(294), + [sym__catch] = ACTIONS(294), + [sym__finally] = ACTIONS(294), + [sym__endtry] = ACTIONS(294), + [sym__const] = ACTIONS(294), + [sym__normal] = ACTIONS(294), + [sym__return] = ACTIONS(294), + [sym__perl] = ACTIONS(294), + [sym__lua] = ACTIONS(294), + [sym__ruby] = ACTIONS(294), + [sym__python] = ACTIONS(294), + [sym__throw] = ACTIONS(294), + [sym__execute] = ACTIONS(294), + [sym__autocmd] = ACTIONS(294), + [sym__silent] = ACTIONS(294), + [sym__echo] = ACTIONS(294), + [sym__echon] = ACTIONS(294), + [sym__echohl] = ACTIONS(294), + [sym__echomsg] = ACTIONS(294), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(294), + [sym__nmap] = ACTIONS(294), + [sym__vmap] = ACTIONS(294), + [sym__xmap] = ACTIONS(294), + [sym__smap] = ACTIONS(294), + [sym__omap] = ACTIONS(294), + [sym__imap] = ACTIONS(294), + [sym__lmap] = ACTIONS(294), + [sym__cmap] = ACTIONS(294), + [sym__tmap] = ACTIONS(294), + [sym__noremap] = ACTIONS(294), + [sym__vnoremap] = ACTIONS(294), + [sym__nnoremap] = ACTIONS(294), + [sym__xnoremap] = ACTIONS(294), + [sym__snoremap] = ACTIONS(294), + [sym__onoremap] = ACTIONS(294), + [sym__inoremap] = ACTIONS(294), + [sym__lnoremap] = ACTIONS(294), + [sym__cnoremap] = ACTIONS(294), + [sym__tnoremap] = ACTIONS(294), + [sym__augroup] = ACTIONS(294), + [sym__highlight] = ACTIONS(294), + [sym__syntax] = ACTIONS(294), + [sym__set] = ACTIONS(294), + [sym__setlocal] = ACTIONS(294), + [sym__setfiletype] = ACTIONS(294), + [sym__browse] = ACTIONS(294), + [sym__options] = ACTIONS(294), + [sym__startinsert] = ACTIONS(294), + [sym__stopinsert] = ACTIONS(294), + [sym__scriptencoding] = ACTIONS(294), + [sym__source] = ACTIONS(294), + [sym__global] = ACTIONS(294), + [sym__colorscheme] = ACTIONS(294), + [sym__comclear] = ACTIONS(294), + [sym__delcommand] = ACTIONS(294), + [sym__runtime] = ACTIONS(294), + [sym__wincmd] = ACTIONS(294), + [sym__sign] = ACTIONS(294), + [sym__filetype] = ACTIONS(294), + [sym__let] = ACTIONS(294), + [sym__unlet] = ACTIONS(294), + [sym__call] = ACTIONS(294), + [sym__break] = ACTIONS(294), + [sym__continue] = ACTIONS(294), + [sym_unknown_command_name] = ACTIONS(294), }, [248] = { - [anon_sym_COLON] = ACTIONS(991), - [sym_command_name] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(991), - [sym_mark] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_DOT2] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_BSLASH_SLASH] = ACTIONS(991), - [anon_sym_BSLASH_QMARK] = ACTIONS(991), - [anon_sym_BSLASH_AMP] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(991), - [sym_register] = ACTIONS(991), - [sym__newline_or_pipe] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(993), + [sym_command_name] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [sym_mark] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_DOT2] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_BSLASH_SLASH] = ACTIONS(993), + [anon_sym_BSLASH_QMARK] = ACTIONS(993), + [anon_sym_BSLASH_AMP] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(993), + [sym_register] = ACTIONS(993), + [sym__newline_or_pipe] = ACTIONS(993), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(991), - [sym__function] = ACTIONS(991), - [sym__for] = ACTIONS(991), - [sym__while] = ACTIONS(991), - [sym__if] = ACTIONS(991), - [sym__try] = ACTIONS(991), - [sym__catch] = ACTIONS(991), - [sym__finally] = ACTIONS(991), - [sym__endtry] = ACTIONS(991), - [sym__const] = ACTIONS(991), - [sym__normal] = ACTIONS(991), - [sym__return] = ACTIONS(991), - [sym__perl] = ACTIONS(991), - [sym__lua] = ACTIONS(991), - [sym__ruby] = ACTIONS(991), - [sym__python] = ACTIONS(991), - [sym__throw] = ACTIONS(991), - [sym__execute] = ACTIONS(991), - [sym__autocmd] = ACTIONS(991), - [sym__silent] = ACTIONS(991), - [sym__echo] = ACTIONS(991), - [sym__echon] = ACTIONS(991), - [sym__echohl] = ACTIONS(991), - [sym__echomsg] = ACTIONS(991), - [sym__echoerr] = ACTIONS(991), - [sym__map] = ACTIONS(991), - [sym__nmap] = ACTIONS(991), - [sym__vmap] = ACTIONS(991), - [sym__xmap] = ACTIONS(991), - [sym__smap] = ACTIONS(991), - [sym__omap] = ACTIONS(991), - [sym__imap] = ACTIONS(991), - [sym__lmap] = ACTIONS(991), - [sym__cmap] = ACTIONS(991), - [sym__tmap] = ACTIONS(991), - [sym__noremap] = ACTIONS(991), - [sym__vnoremap] = ACTIONS(991), - [sym__nnoremap] = ACTIONS(991), - [sym__xnoremap] = ACTIONS(991), - [sym__snoremap] = ACTIONS(991), - [sym__onoremap] = ACTIONS(991), - [sym__inoremap] = ACTIONS(991), - [sym__lnoremap] = ACTIONS(991), - [sym__cnoremap] = ACTIONS(991), - [sym__tnoremap] = ACTIONS(991), - [sym__augroup] = ACTIONS(991), - [sym__highlight] = ACTIONS(991), - [sym__syntax] = ACTIONS(991), - [sym__set] = ACTIONS(991), - [sym__setlocal] = ACTIONS(991), - [sym__setfiletype] = ACTIONS(991), - [sym__browse] = ACTIONS(991), - [sym__options] = ACTIONS(991), - [sym__startinsert] = ACTIONS(991), - [sym__stopinsert] = ACTIONS(991), - [sym__scriptencoding] = ACTIONS(991), - [sym__source] = ACTIONS(991), - [sym__global] = ACTIONS(991), - [sym__colorscheme] = ACTIONS(991), - [sym__comclear] = ACTIONS(991), - [sym__delcommand] = ACTIONS(991), - [sym__runtime] = ACTIONS(991), - [sym__wincmd] = ACTIONS(991), - [sym__sign] = ACTIONS(991), - [sym__filetype] = ACTIONS(991), - [sym__let] = ACTIONS(991), - [sym__unlet] = ACTIONS(991), - [sym__call] = ACTIONS(991), - [sym__break] = ACTIONS(991), - [sym__continue] = ACTIONS(991), - [sym_unknown_command_name] = ACTIONS(991), + [sym_comment] = ACTIONS(993), + [sym__function] = ACTIONS(993), + [sym__for] = ACTIONS(993), + [sym__while] = ACTIONS(993), + [sym__if] = ACTIONS(993), + [sym__elseif] = ACTIONS(993), + [sym__else] = ACTIONS(993), + [sym__endif] = ACTIONS(993), + [sym__try] = ACTIONS(993), + [sym__const] = ACTIONS(993), + [sym__normal] = ACTIONS(993), + [sym__return] = ACTIONS(993), + [sym__perl] = ACTIONS(993), + [sym__lua] = ACTIONS(993), + [sym__ruby] = ACTIONS(993), + [sym__python] = ACTIONS(993), + [sym__throw] = ACTIONS(993), + [sym__execute] = ACTIONS(993), + [sym__autocmd] = ACTIONS(993), + [sym__silent] = ACTIONS(993), + [sym__echo] = ACTIONS(993), + [sym__echon] = ACTIONS(993), + [sym__echohl] = ACTIONS(993), + [sym__echomsg] = ACTIONS(993), + [sym__echoerr] = ACTIONS(993), + [sym__map] = ACTIONS(993), + [sym__nmap] = ACTIONS(993), + [sym__vmap] = ACTIONS(993), + [sym__xmap] = ACTIONS(993), + [sym__smap] = ACTIONS(993), + [sym__omap] = ACTIONS(993), + [sym__imap] = ACTIONS(993), + [sym__lmap] = ACTIONS(993), + [sym__cmap] = ACTIONS(993), + [sym__tmap] = ACTIONS(993), + [sym__noremap] = ACTIONS(993), + [sym__vnoremap] = ACTIONS(993), + [sym__nnoremap] = ACTIONS(993), + [sym__xnoremap] = ACTIONS(993), + [sym__snoremap] = ACTIONS(993), + [sym__onoremap] = ACTIONS(993), + [sym__inoremap] = ACTIONS(993), + [sym__lnoremap] = ACTIONS(993), + [sym__cnoremap] = ACTIONS(993), + [sym__tnoremap] = ACTIONS(993), + [sym__augroup] = ACTIONS(993), + [sym__highlight] = ACTIONS(993), + [sym__syntax] = ACTIONS(993), + [sym__set] = ACTIONS(993), + [sym__setlocal] = ACTIONS(993), + [sym__setfiletype] = ACTIONS(993), + [sym__browse] = ACTIONS(993), + [sym__options] = ACTIONS(993), + [sym__startinsert] = ACTIONS(993), + [sym__stopinsert] = ACTIONS(993), + [sym__scriptencoding] = ACTIONS(993), + [sym__source] = ACTIONS(993), + [sym__global] = ACTIONS(993), + [sym__colorscheme] = ACTIONS(993), + [sym__comclear] = ACTIONS(993), + [sym__delcommand] = ACTIONS(993), + [sym__runtime] = ACTIONS(993), + [sym__wincmd] = ACTIONS(993), + [sym__sign] = ACTIONS(993), + [sym__filetype] = ACTIONS(993), + [sym__let] = ACTIONS(993), + [sym__unlet] = ACTIONS(993), + [sym__call] = ACTIONS(993), + [sym__break] = ACTIONS(993), + [sym__continue] = ACTIONS(993), + [sym_unknown_command_name] = ACTIONS(993), }, [249] = { [aux_sym_autocmd_statement_repeat1] = STATE(249), @@ -58700,700 +57953,700 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(997), }, [250] = { - [anon_sym_COLON] = ACTIONS(991), - [sym_command_name] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(991), - [sym_mark] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_DOT2] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_BSLASH_SLASH] = ACTIONS(991), - [anon_sym_BSLASH_QMARK] = ACTIONS(991), - [anon_sym_BSLASH_AMP] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(991), - [sym_register] = ACTIONS(991), - [sym__newline_or_pipe] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(294), + [sym_command_name] = ACTIONS(294), + [anon_sym_QMARK] = ACTIONS(294), + [sym_mark] = ACTIONS(294), + [anon_sym_PERCENT] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_DOT2] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(294), + [anon_sym_BSLASH_SLASH] = ACTIONS(294), + [anon_sym_BSLASH_QMARK] = ACTIONS(294), + [anon_sym_BSLASH_AMP] = ACTIONS(294), + [sym_integer_literal] = ACTIONS(294), + [sym_register] = ACTIONS(294), + [sym__newline_or_pipe] = ACTIONS(294), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(991), - [sym__function] = ACTIONS(991), - [sym__for] = ACTIONS(991), - [sym__endfor] = ACTIONS(991), - [sym__while] = ACTIONS(991), - [sym__if] = ACTIONS(991), - [sym__try] = ACTIONS(991), - [sym__const] = ACTIONS(991), - [sym__normal] = ACTIONS(991), - [sym__return] = ACTIONS(991), - [sym__perl] = ACTIONS(991), - [sym__lua] = ACTIONS(991), - [sym__ruby] = ACTIONS(991), - [sym__python] = ACTIONS(991), - [sym__throw] = ACTIONS(991), - [sym__execute] = ACTIONS(991), - [sym__autocmd] = ACTIONS(991), - [sym__silent] = ACTIONS(991), - [sym__echo] = ACTIONS(991), - [sym__echon] = ACTIONS(991), - [sym__echohl] = ACTIONS(991), - [sym__echomsg] = ACTIONS(991), - [sym__echoerr] = ACTIONS(991), - [sym__map] = ACTIONS(991), - [sym__nmap] = ACTIONS(991), - [sym__vmap] = ACTIONS(991), - [sym__xmap] = ACTIONS(991), - [sym__smap] = ACTIONS(991), - [sym__omap] = ACTIONS(991), - [sym__imap] = ACTIONS(991), - [sym__lmap] = ACTIONS(991), - [sym__cmap] = ACTIONS(991), - [sym__tmap] = ACTIONS(991), - [sym__noremap] = ACTIONS(991), - [sym__vnoremap] = ACTIONS(991), - [sym__nnoremap] = ACTIONS(991), - [sym__xnoremap] = ACTIONS(991), - [sym__snoremap] = ACTIONS(991), - [sym__onoremap] = ACTIONS(991), - [sym__inoremap] = ACTIONS(991), - [sym__lnoremap] = ACTIONS(991), - [sym__cnoremap] = ACTIONS(991), - [sym__tnoremap] = ACTIONS(991), - [sym__augroup] = ACTIONS(991), - [sym__highlight] = ACTIONS(991), - [sym__syntax] = ACTIONS(991), - [sym__set] = ACTIONS(991), - [sym__setlocal] = ACTIONS(991), - [sym__setfiletype] = ACTIONS(991), - [sym__browse] = ACTIONS(991), - [sym__options] = ACTIONS(991), - [sym__startinsert] = ACTIONS(991), - [sym__stopinsert] = ACTIONS(991), - [sym__scriptencoding] = ACTIONS(991), - [sym__source] = ACTIONS(991), - [sym__global] = ACTIONS(991), - [sym__colorscheme] = ACTIONS(991), - [sym__comclear] = ACTIONS(991), - [sym__delcommand] = ACTIONS(991), - [sym__runtime] = ACTIONS(991), - [sym__wincmd] = ACTIONS(991), - [sym__sign] = ACTIONS(991), - [sym__filetype] = ACTIONS(991), - [sym__let] = ACTIONS(991), - [sym__unlet] = ACTIONS(991), - [sym__call] = ACTIONS(991), - [sym__break] = ACTIONS(991), - [sym__continue] = ACTIONS(991), - [sym_unknown_command_name] = ACTIONS(991), + [sym_comment] = ACTIONS(294), + [sym__function] = ACTIONS(294), + [sym__endfunction] = ACTIONS(294), + [sym__for] = ACTIONS(294), + [sym__while] = ACTIONS(294), + [sym__if] = ACTIONS(294), + [sym__try] = ACTIONS(294), + [sym__const] = ACTIONS(294), + [sym__normal] = ACTIONS(294), + [sym__return] = ACTIONS(294), + [sym__perl] = ACTIONS(294), + [sym__lua] = ACTIONS(294), + [sym__ruby] = ACTIONS(294), + [sym__python] = ACTIONS(294), + [sym__throw] = ACTIONS(294), + [sym__execute] = ACTIONS(294), + [sym__autocmd] = ACTIONS(294), + [sym__silent] = ACTIONS(294), + [sym__echo] = ACTIONS(294), + [sym__echon] = ACTIONS(294), + [sym__echohl] = ACTIONS(294), + [sym__echomsg] = ACTIONS(294), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(294), + [sym__nmap] = ACTIONS(294), + [sym__vmap] = ACTIONS(294), + [sym__xmap] = ACTIONS(294), + [sym__smap] = ACTIONS(294), + [sym__omap] = ACTIONS(294), + [sym__imap] = ACTIONS(294), + [sym__lmap] = ACTIONS(294), + [sym__cmap] = ACTIONS(294), + [sym__tmap] = ACTIONS(294), + [sym__noremap] = ACTIONS(294), + [sym__vnoremap] = ACTIONS(294), + [sym__nnoremap] = ACTIONS(294), + [sym__xnoremap] = ACTIONS(294), + [sym__snoremap] = ACTIONS(294), + [sym__onoremap] = ACTIONS(294), + [sym__inoremap] = ACTIONS(294), + [sym__lnoremap] = ACTIONS(294), + [sym__cnoremap] = ACTIONS(294), + [sym__tnoremap] = ACTIONS(294), + [sym__augroup] = ACTIONS(294), + [sym__highlight] = ACTIONS(294), + [sym__syntax] = ACTIONS(294), + [sym__set] = ACTIONS(294), + [sym__setlocal] = ACTIONS(294), + [sym__setfiletype] = ACTIONS(294), + [sym__browse] = ACTIONS(294), + [sym__options] = ACTIONS(294), + [sym__startinsert] = ACTIONS(294), + [sym__stopinsert] = ACTIONS(294), + [sym__scriptencoding] = ACTIONS(294), + [sym__source] = ACTIONS(294), + [sym__global] = ACTIONS(294), + [sym__colorscheme] = ACTIONS(294), + [sym__comclear] = ACTIONS(294), + [sym__delcommand] = ACTIONS(294), + [sym__runtime] = ACTIONS(294), + [sym__wincmd] = ACTIONS(294), + [sym__sign] = ACTIONS(294), + [sym__filetype] = ACTIONS(294), + [sym__let] = ACTIONS(294), + [sym__unlet] = ACTIONS(294), + [sym__call] = ACTIONS(294), + [sym__break] = ACTIONS(294), + [sym__continue] = ACTIONS(294), + [sym_unknown_command_name] = ACTIONS(294), }, [251] = { - [anon_sym_COLON] = ACTIONS(991), - [sym_command_name] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(991), - [sym_mark] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_DOT2] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_BSLASH_SLASH] = ACTIONS(991), - [anon_sym_BSLASH_QMARK] = ACTIONS(991), - [anon_sym_BSLASH_AMP] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(991), - [sym_register] = ACTIONS(991), - [sym__newline_or_pipe] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(294), + [sym_command_name] = ACTIONS(294), + [anon_sym_QMARK] = ACTIONS(294), + [sym_mark] = ACTIONS(294), + [anon_sym_PERCENT] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_DOT2] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(294), + [anon_sym_BSLASH_SLASH] = ACTIONS(294), + [anon_sym_BSLASH_QMARK] = ACTIONS(294), + [anon_sym_BSLASH_AMP] = ACTIONS(294), + [sym_integer_literal] = ACTIONS(294), + [sym_register] = ACTIONS(294), + [sym__newline_or_pipe] = ACTIONS(294), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(991), - [sym__function] = ACTIONS(991), - [sym__for] = ACTIONS(991), - [sym__while] = ACTIONS(991), - [sym__endwhile] = ACTIONS(991), - [sym__if] = ACTIONS(991), - [sym__try] = ACTIONS(991), - [sym__const] = ACTIONS(991), - [sym__normal] = ACTIONS(991), - [sym__return] = ACTIONS(991), - [sym__perl] = ACTIONS(991), - [sym__lua] = ACTIONS(991), - [sym__ruby] = ACTIONS(991), - [sym__python] = ACTIONS(991), - [sym__throw] = ACTIONS(991), - [sym__execute] = ACTIONS(991), - [sym__autocmd] = ACTIONS(991), - [sym__silent] = ACTIONS(991), - [sym__echo] = ACTIONS(991), - [sym__echon] = ACTIONS(991), - [sym__echohl] = ACTIONS(991), - [sym__echomsg] = ACTIONS(991), - [sym__echoerr] = ACTIONS(991), - [sym__map] = ACTIONS(991), - [sym__nmap] = ACTIONS(991), - [sym__vmap] = ACTIONS(991), - [sym__xmap] = ACTIONS(991), - [sym__smap] = ACTIONS(991), - [sym__omap] = ACTIONS(991), - [sym__imap] = ACTIONS(991), - [sym__lmap] = ACTIONS(991), - [sym__cmap] = ACTIONS(991), - [sym__tmap] = ACTIONS(991), - [sym__noremap] = ACTIONS(991), - [sym__vnoremap] = ACTIONS(991), - [sym__nnoremap] = ACTIONS(991), - [sym__xnoremap] = ACTIONS(991), - [sym__snoremap] = ACTIONS(991), - [sym__onoremap] = ACTIONS(991), - [sym__inoremap] = ACTIONS(991), - [sym__lnoremap] = ACTIONS(991), - [sym__cnoremap] = ACTIONS(991), - [sym__tnoremap] = ACTIONS(991), - [sym__augroup] = ACTIONS(991), - [sym__highlight] = ACTIONS(991), - [sym__syntax] = ACTIONS(991), - [sym__set] = ACTIONS(991), - [sym__setlocal] = ACTIONS(991), - [sym__setfiletype] = ACTIONS(991), - [sym__browse] = ACTIONS(991), - [sym__options] = ACTIONS(991), - [sym__startinsert] = ACTIONS(991), - [sym__stopinsert] = ACTIONS(991), - [sym__scriptencoding] = ACTIONS(991), - [sym__source] = ACTIONS(991), - [sym__global] = ACTIONS(991), - [sym__colorscheme] = ACTIONS(991), - [sym__comclear] = ACTIONS(991), - [sym__delcommand] = ACTIONS(991), - [sym__runtime] = ACTIONS(991), - [sym__wincmd] = ACTIONS(991), - [sym__sign] = ACTIONS(991), - [sym__filetype] = ACTIONS(991), - [sym__let] = ACTIONS(991), - [sym__unlet] = ACTIONS(991), - [sym__call] = ACTIONS(991), - [sym__break] = ACTIONS(991), - [sym__continue] = ACTIONS(991), - [sym_unknown_command_name] = ACTIONS(991), + [sym_comment] = ACTIONS(294), + [sym__function] = ACTIONS(294), + [sym__for] = ACTIONS(294), + [sym__while] = ACTIONS(294), + [sym__if] = ACTIONS(294), + [sym__try] = ACTIONS(294), + [sym__endtry] = ACTIONS(294), + [sym__const] = ACTIONS(294), + [sym__normal] = ACTIONS(294), + [sym__return] = ACTIONS(294), + [sym__perl] = ACTIONS(294), + [sym__lua] = ACTIONS(294), + [sym__ruby] = ACTIONS(294), + [sym__python] = ACTIONS(294), + [sym__throw] = ACTIONS(294), + [sym__execute] = ACTIONS(294), + [sym__autocmd] = ACTIONS(294), + [sym__silent] = ACTIONS(294), + [sym__echo] = ACTIONS(294), + [sym__echon] = ACTIONS(294), + [sym__echohl] = ACTIONS(294), + [sym__echomsg] = ACTIONS(294), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(294), + [sym__nmap] = ACTIONS(294), + [sym__vmap] = ACTIONS(294), + [sym__xmap] = ACTIONS(294), + [sym__smap] = ACTIONS(294), + [sym__omap] = ACTIONS(294), + [sym__imap] = ACTIONS(294), + [sym__lmap] = ACTIONS(294), + [sym__cmap] = ACTIONS(294), + [sym__tmap] = ACTIONS(294), + [sym__noremap] = ACTIONS(294), + [sym__vnoremap] = ACTIONS(294), + [sym__nnoremap] = ACTIONS(294), + [sym__xnoremap] = ACTIONS(294), + [sym__snoremap] = ACTIONS(294), + [sym__onoremap] = ACTIONS(294), + [sym__inoremap] = ACTIONS(294), + [sym__lnoremap] = ACTIONS(294), + [sym__cnoremap] = ACTIONS(294), + [sym__tnoremap] = ACTIONS(294), + [sym__augroup] = ACTIONS(294), + [sym__highlight] = ACTIONS(294), + [sym__syntax] = ACTIONS(294), + [sym__set] = ACTIONS(294), + [sym__setlocal] = ACTIONS(294), + [sym__setfiletype] = ACTIONS(294), + [sym__browse] = ACTIONS(294), + [sym__options] = ACTIONS(294), + [sym__startinsert] = ACTIONS(294), + [sym__stopinsert] = ACTIONS(294), + [sym__scriptencoding] = ACTIONS(294), + [sym__source] = ACTIONS(294), + [sym__global] = ACTIONS(294), + [sym__colorscheme] = ACTIONS(294), + [sym__comclear] = ACTIONS(294), + [sym__delcommand] = ACTIONS(294), + [sym__runtime] = ACTIONS(294), + [sym__wincmd] = ACTIONS(294), + [sym__sign] = ACTIONS(294), + [sym__filetype] = ACTIONS(294), + [sym__let] = ACTIONS(294), + [sym__unlet] = ACTIONS(294), + [sym__call] = ACTIONS(294), + [sym__break] = ACTIONS(294), + [sym__continue] = ACTIONS(294), + [sym_unknown_command_name] = ACTIONS(294), }, [252] = { - [anon_sym_COLON] = ACTIONS(286), - [sym_command_name] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(286), - [sym_mark] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_DOT2] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(993), + [sym_command_name] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [sym_mark] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_DOT2] = ACTIONS(993), [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_BSLASH_SLASH] = ACTIONS(286), - [anon_sym_BSLASH_QMARK] = ACTIONS(286), - [anon_sym_BSLASH_AMP] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(286), - [sym_register] = ACTIONS(286), - [sym__newline_or_pipe] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_BSLASH_SLASH] = ACTIONS(993), + [anon_sym_BSLASH_QMARK] = ACTIONS(993), + [anon_sym_BSLASH_AMP] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(993), + [sym_register] = ACTIONS(993), + [sym__newline_or_pipe] = ACTIONS(993), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(286), - [sym__function] = ACTIONS(286), - [sym__for] = ACTIONS(286), - [sym__while] = ACTIONS(286), - [sym__endwhile] = ACTIONS(286), - [sym__if] = ACTIONS(286), - [sym__try] = ACTIONS(286), - [sym__const] = ACTIONS(286), - [sym__normal] = ACTIONS(286), - [sym__return] = ACTIONS(286), - [sym__perl] = ACTIONS(286), - [sym__lua] = ACTIONS(286), - [sym__ruby] = ACTIONS(286), - [sym__python] = ACTIONS(286), - [sym__throw] = ACTIONS(286), - [sym__execute] = ACTIONS(286), - [sym__autocmd] = ACTIONS(286), - [sym__silent] = ACTIONS(286), - [sym__echo] = ACTIONS(286), - [sym__echon] = ACTIONS(286), - [sym__echohl] = ACTIONS(286), - [sym__echomsg] = ACTIONS(286), - [sym__echoerr] = ACTIONS(286), - [sym__map] = ACTIONS(286), - [sym__nmap] = ACTIONS(286), - [sym__vmap] = ACTIONS(286), - [sym__xmap] = ACTIONS(286), - [sym__smap] = ACTIONS(286), - [sym__omap] = ACTIONS(286), - [sym__imap] = ACTIONS(286), - [sym__lmap] = ACTIONS(286), - [sym__cmap] = ACTIONS(286), - [sym__tmap] = ACTIONS(286), - [sym__noremap] = ACTIONS(286), - [sym__vnoremap] = ACTIONS(286), - [sym__nnoremap] = ACTIONS(286), - [sym__xnoremap] = ACTIONS(286), - [sym__snoremap] = ACTIONS(286), - [sym__onoremap] = ACTIONS(286), - [sym__inoremap] = ACTIONS(286), - [sym__lnoremap] = ACTIONS(286), - [sym__cnoremap] = ACTIONS(286), - [sym__tnoremap] = ACTIONS(286), - [sym__augroup] = ACTIONS(286), - [sym__highlight] = ACTIONS(286), - [sym__syntax] = ACTIONS(286), - [sym__set] = ACTIONS(286), - [sym__setlocal] = ACTIONS(286), - [sym__setfiletype] = ACTIONS(286), - [sym__browse] = ACTIONS(286), - [sym__options] = ACTIONS(286), - [sym__startinsert] = ACTIONS(286), - [sym__stopinsert] = ACTIONS(286), - [sym__scriptencoding] = ACTIONS(286), - [sym__source] = ACTIONS(286), - [sym__global] = ACTIONS(286), - [sym__colorscheme] = ACTIONS(286), - [sym__comclear] = ACTIONS(286), - [sym__delcommand] = ACTIONS(286), - [sym__runtime] = ACTIONS(286), - [sym__wincmd] = ACTIONS(286), - [sym__sign] = ACTIONS(286), - [sym__filetype] = ACTIONS(286), - [sym__let] = ACTIONS(286), - [sym__unlet] = ACTIONS(286), - [sym__call] = ACTIONS(286), - [sym__break] = ACTIONS(286), - [sym__continue] = ACTIONS(286), - [sym_unknown_command_name] = ACTIONS(286), + [sym_comment] = ACTIONS(993), + [sym__function] = ACTIONS(993), + [sym__for] = ACTIONS(993), + [sym__while] = ACTIONS(993), + [sym__if] = ACTIONS(993), + [sym__try] = ACTIONS(993), + [sym__endtry] = ACTIONS(993), + [sym__const] = ACTIONS(993), + [sym__normal] = ACTIONS(993), + [sym__return] = ACTIONS(993), + [sym__perl] = ACTIONS(993), + [sym__lua] = ACTIONS(993), + [sym__ruby] = ACTIONS(993), + [sym__python] = ACTIONS(993), + [sym__throw] = ACTIONS(993), + [sym__execute] = ACTIONS(993), + [sym__autocmd] = ACTIONS(993), + [sym__silent] = ACTIONS(993), + [sym__echo] = ACTIONS(993), + [sym__echon] = ACTIONS(993), + [sym__echohl] = ACTIONS(993), + [sym__echomsg] = ACTIONS(993), + [sym__echoerr] = ACTIONS(993), + [sym__map] = ACTIONS(993), + [sym__nmap] = ACTIONS(993), + [sym__vmap] = ACTIONS(993), + [sym__xmap] = ACTIONS(993), + [sym__smap] = ACTIONS(993), + [sym__omap] = ACTIONS(993), + [sym__imap] = ACTIONS(993), + [sym__lmap] = ACTIONS(993), + [sym__cmap] = ACTIONS(993), + [sym__tmap] = ACTIONS(993), + [sym__noremap] = ACTIONS(993), + [sym__vnoremap] = ACTIONS(993), + [sym__nnoremap] = ACTIONS(993), + [sym__xnoremap] = ACTIONS(993), + [sym__snoremap] = ACTIONS(993), + [sym__onoremap] = ACTIONS(993), + [sym__inoremap] = ACTIONS(993), + [sym__lnoremap] = ACTIONS(993), + [sym__cnoremap] = ACTIONS(993), + [sym__tnoremap] = ACTIONS(993), + [sym__augroup] = ACTIONS(993), + [sym__highlight] = ACTIONS(993), + [sym__syntax] = ACTIONS(993), + [sym__set] = ACTIONS(993), + [sym__setlocal] = ACTIONS(993), + [sym__setfiletype] = ACTIONS(993), + [sym__browse] = ACTIONS(993), + [sym__options] = ACTIONS(993), + [sym__startinsert] = ACTIONS(993), + [sym__stopinsert] = ACTIONS(993), + [sym__scriptencoding] = ACTIONS(993), + [sym__source] = ACTIONS(993), + [sym__global] = ACTIONS(993), + [sym__colorscheme] = ACTIONS(993), + [sym__comclear] = ACTIONS(993), + [sym__delcommand] = ACTIONS(993), + [sym__runtime] = ACTIONS(993), + [sym__wincmd] = ACTIONS(993), + [sym__sign] = ACTIONS(993), + [sym__filetype] = ACTIONS(993), + [sym__let] = ACTIONS(993), + [sym__unlet] = ACTIONS(993), + [sym__call] = ACTIONS(993), + [sym__break] = ACTIONS(993), + [sym__continue] = ACTIONS(993), + [sym_unknown_command_name] = ACTIONS(993), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(286), - [anon_sym_COLON] = ACTIONS(286), - [sym_command_name] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(286), - [sym_mark] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_DOT2] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(993), + [sym_command_name] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [sym_mark] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_DOT2] = ACTIONS(993), [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_BSLASH_SLASH] = ACTIONS(286), - [anon_sym_BSLASH_QMARK] = ACTIONS(286), - [anon_sym_BSLASH_AMP] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(286), - [sym_register] = ACTIONS(286), - [sym__newline_or_pipe] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_BSLASH_SLASH] = ACTIONS(993), + [anon_sym_BSLASH_QMARK] = ACTIONS(993), + [anon_sym_BSLASH_AMP] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(993), + [sym_register] = ACTIONS(993), + [sym__newline_or_pipe] = ACTIONS(993), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(286), - [sym__function] = ACTIONS(286), - [sym__for] = ACTIONS(286), - [sym__while] = ACTIONS(286), - [sym__if] = ACTIONS(286), - [sym__try] = ACTIONS(286), - [sym__const] = ACTIONS(286), - [sym__normal] = ACTIONS(286), - [sym__return] = ACTIONS(286), - [sym__perl] = ACTIONS(286), - [sym__lua] = ACTIONS(286), - [sym__ruby] = ACTIONS(286), - [sym__python] = ACTIONS(286), - [sym__throw] = ACTIONS(286), - [sym__execute] = ACTIONS(286), - [sym__autocmd] = ACTIONS(286), - [sym__silent] = ACTIONS(286), - [sym__echo] = ACTIONS(286), - [sym__echon] = ACTIONS(286), - [sym__echohl] = ACTIONS(286), - [sym__echomsg] = ACTIONS(286), - [sym__echoerr] = ACTIONS(286), - [sym__map] = ACTIONS(286), - [sym__nmap] = ACTIONS(286), - [sym__vmap] = ACTIONS(286), - [sym__xmap] = ACTIONS(286), - [sym__smap] = ACTIONS(286), - [sym__omap] = ACTIONS(286), - [sym__imap] = ACTIONS(286), - [sym__lmap] = ACTIONS(286), - [sym__cmap] = ACTIONS(286), - [sym__tmap] = ACTIONS(286), - [sym__noremap] = ACTIONS(286), - [sym__vnoremap] = ACTIONS(286), - [sym__nnoremap] = ACTIONS(286), - [sym__xnoremap] = ACTIONS(286), - [sym__snoremap] = ACTIONS(286), - [sym__onoremap] = ACTIONS(286), - [sym__inoremap] = ACTIONS(286), - [sym__lnoremap] = ACTIONS(286), - [sym__cnoremap] = ACTIONS(286), - [sym__tnoremap] = ACTIONS(286), - [sym__augroup] = ACTIONS(286), - [sym__highlight] = ACTIONS(286), - [sym__syntax] = ACTIONS(286), - [sym__set] = ACTIONS(286), - [sym__setlocal] = ACTIONS(286), - [sym__setfiletype] = ACTIONS(286), - [sym__browse] = ACTIONS(286), - [sym__options] = ACTIONS(286), - [sym__startinsert] = ACTIONS(286), - [sym__stopinsert] = ACTIONS(286), - [sym__scriptencoding] = ACTIONS(286), - [sym__source] = ACTIONS(286), - [sym__global] = ACTIONS(286), - [sym__colorscheme] = ACTIONS(286), - [sym__comclear] = ACTIONS(286), - [sym__delcommand] = ACTIONS(286), - [sym__runtime] = ACTIONS(286), - [sym__wincmd] = ACTIONS(286), - [sym__sign] = ACTIONS(286), - [sym__filetype] = ACTIONS(286), - [sym__let] = ACTIONS(286), - [sym__unlet] = ACTIONS(286), - [sym__call] = ACTIONS(286), - [sym__break] = ACTIONS(286), - [sym__continue] = ACTIONS(286), - [sym_unknown_command_name] = ACTIONS(286), + [sym_comment] = ACTIONS(993), + [sym__function] = ACTIONS(993), + [sym__for] = ACTIONS(993), + [sym__while] = ACTIONS(993), + [sym__endwhile] = ACTIONS(993), + [sym__if] = ACTIONS(993), + [sym__try] = ACTIONS(993), + [sym__const] = ACTIONS(993), + [sym__normal] = ACTIONS(993), + [sym__return] = ACTIONS(993), + [sym__perl] = ACTIONS(993), + [sym__lua] = ACTIONS(993), + [sym__ruby] = ACTIONS(993), + [sym__python] = ACTIONS(993), + [sym__throw] = ACTIONS(993), + [sym__execute] = ACTIONS(993), + [sym__autocmd] = ACTIONS(993), + [sym__silent] = ACTIONS(993), + [sym__echo] = ACTIONS(993), + [sym__echon] = ACTIONS(993), + [sym__echohl] = ACTIONS(993), + [sym__echomsg] = ACTIONS(993), + [sym__echoerr] = ACTIONS(993), + [sym__map] = ACTIONS(993), + [sym__nmap] = ACTIONS(993), + [sym__vmap] = ACTIONS(993), + [sym__xmap] = ACTIONS(993), + [sym__smap] = ACTIONS(993), + [sym__omap] = ACTIONS(993), + [sym__imap] = ACTIONS(993), + [sym__lmap] = ACTIONS(993), + [sym__cmap] = ACTIONS(993), + [sym__tmap] = ACTIONS(993), + [sym__noremap] = ACTIONS(993), + [sym__vnoremap] = ACTIONS(993), + [sym__nnoremap] = ACTIONS(993), + [sym__xnoremap] = ACTIONS(993), + [sym__snoremap] = ACTIONS(993), + [sym__onoremap] = ACTIONS(993), + [sym__inoremap] = ACTIONS(993), + [sym__lnoremap] = ACTIONS(993), + [sym__cnoremap] = ACTIONS(993), + [sym__tnoremap] = ACTIONS(993), + [sym__augroup] = ACTIONS(993), + [sym__highlight] = ACTIONS(993), + [sym__syntax] = ACTIONS(993), + [sym__set] = ACTIONS(993), + [sym__setlocal] = ACTIONS(993), + [sym__setfiletype] = ACTIONS(993), + [sym__browse] = ACTIONS(993), + [sym__options] = ACTIONS(993), + [sym__startinsert] = ACTIONS(993), + [sym__stopinsert] = ACTIONS(993), + [sym__scriptencoding] = ACTIONS(993), + [sym__source] = ACTIONS(993), + [sym__global] = ACTIONS(993), + [sym__colorscheme] = ACTIONS(993), + [sym__comclear] = ACTIONS(993), + [sym__delcommand] = ACTIONS(993), + [sym__runtime] = ACTIONS(993), + [sym__wincmd] = ACTIONS(993), + [sym__sign] = ACTIONS(993), + [sym__filetype] = ACTIONS(993), + [sym__let] = ACTIONS(993), + [sym__unlet] = ACTIONS(993), + [sym__call] = ACTIONS(993), + [sym__break] = ACTIONS(993), + [sym__continue] = ACTIONS(993), + [sym_unknown_command_name] = ACTIONS(993), }, [254] = { - [anon_sym_COLON] = ACTIONS(286), - [sym_command_name] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(286), - [sym_mark] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_DOT2] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(993), + [sym_command_name] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [sym_mark] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_DOT2] = ACTIONS(993), [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_BSLASH_SLASH] = ACTIONS(286), - [anon_sym_BSLASH_QMARK] = ACTIONS(286), - [anon_sym_BSLASH_AMP] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(286), - [sym_register] = ACTIONS(286), - [sym__newline_or_pipe] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_BSLASH_SLASH] = ACTIONS(993), + [anon_sym_BSLASH_QMARK] = ACTIONS(993), + [anon_sym_BSLASH_AMP] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(993), + [sym_register] = ACTIONS(993), + [sym__newline_or_pipe] = ACTIONS(993), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(286), - [sym__function] = ACTIONS(286), - [sym__for] = ACTIONS(286), - [sym__while] = ACTIONS(286), - [sym__if] = ACTIONS(286), - [sym__endif] = ACTIONS(286), - [sym__try] = ACTIONS(286), - [sym__const] = ACTIONS(286), - [sym__normal] = ACTIONS(286), - [sym__return] = ACTIONS(286), - [sym__perl] = ACTIONS(286), - [sym__lua] = ACTIONS(286), - [sym__ruby] = ACTIONS(286), - [sym__python] = ACTIONS(286), - [sym__throw] = ACTIONS(286), - [sym__execute] = ACTIONS(286), - [sym__autocmd] = ACTIONS(286), - [sym__silent] = ACTIONS(286), - [sym__echo] = ACTIONS(286), - [sym__echon] = ACTIONS(286), - [sym__echohl] = ACTIONS(286), - [sym__echomsg] = ACTIONS(286), - [sym__echoerr] = ACTIONS(286), - [sym__map] = ACTIONS(286), - [sym__nmap] = ACTIONS(286), - [sym__vmap] = ACTIONS(286), - [sym__xmap] = ACTIONS(286), - [sym__smap] = ACTIONS(286), - [sym__omap] = ACTIONS(286), - [sym__imap] = ACTIONS(286), - [sym__lmap] = ACTIONS(286), - [sym__cmap] = ACTIONS(286), - [sym__tmap] = ACTIONS(286), - [sym__noremap] = ACTIONS(286), - [sym__vnoremap] = ACTIONS(286), - [sym__nnoremap] = ACTIONS(286), - [sym__xnoremap] = ACTIONS(286), - [sym__snoremap] = ACTIONS(286), - [sym__onoremap] = ACTIONS(286), - [sym__inoremap] = ACTIONS(286), - [sym__lnoremap] = ACTIONS(286), - [sym__cnoremap] = ACTIONS(286), - [sym__tnoremap] = ACTIONS(286), - [sym__augroup] = ACTIONS(286), - [sym__highlight] = ACTIONS(286), - [sym__syntax] = ACTIONS(286), - [sym__set] = ACTIONS(286), - [sym__setlocal] = ACTIONS(286), - [sym__setfiletype] = ACTIONS(286), - [sym__browse] = ACTIONS(286), - [sym__options] = ACTIONS(286), - [sym__startinsert] = ACTIONS(286), - [sym__stopinsert] = ACTIONS(286), - [sym__scriptencoding] = ACTIONS(286), - [sym__source] = ACTIONS(286), - [sym__global] = ACTIONS(286), - [sym__colorscheme] = ACTIONS(286), - [sym__comclear] = ACTIONS(286), - [sym__delcommand] = ACTIONS(286), - [sym__runtime] = ACTIONS(286), - [sym__wincmd] = ACTIONS(286), - [sym__sign] = ACTIONS(286), - [sym__filetype] = ACTIONS(286), - [sym__let] = ACTIONS(286), - [sym__unlet] = ACTIONS(286), - [sym__call] = ACTIONS(286), - [sym__break] = ACTIONS(286), - [sym__continue] = ACTIONS(286), - [sym_unknown_command_name] = ACTIONS(286), + [sym_comment] = ACTIONS(993), + [sym__function] = ACTIONS(993), + [sym__endfunction] = ACTIONS(993), + [sym__for] = ACTIONS(993), + [sym__while] = ACTIONS(993), + [sym__if] = ACTIONS(993), + [sym__try] = ACTIONS(993), + [sym__const] = ACTIONS(993), + [sym__normal] = ACTIONS(993), + [sym__return] = ACTIONS(993), + [sym__perl] = ACTIONS(993), + [sym__lua] = ACTIONS(993), + [sym__ruby] = ACTIONS(993), + [sym__python] = ACTIONS(993), + [sym__throw] = ACTIONS(993), + [sym__execute] = ACTIONS(993), + [sym__autocmd] = ACTIONS(993), + [sym__silent] = ACTIONS(993), + [sym__echo] = ACTIONS(993), + [sym__echon] = ACTIONS(993), + [sym__echohl] = ACTIONS(993), + [sym__echomsg] = ACTIONS(993), + [sym__echoerr] = ACTIONS(993), + [sym__map] = ACTIONS(993), + [sym__nmap] = ACTIONS(993), + [sym__vmap] = ACTIONS(993), + [sym__xmap] = ACTIONS(993), + [sym__smap] = ACTIONS(993), + [sym__omap] = ACTIONS(993), + [sym__imap] = ACTIONS(993), + [sym__lmap] = ACTIONS(993), + [sym__cmap] = ACTIONS(993), + [sym__tmap] = ACTIONS(993), + [sym__noremap] = ACTIONS(993), + [sym__vnoremap] = ACTIONS(993), + [sym__nnoremap] = ACTIONS(993), + [sym__xnoremap] = ACTIONS(993), + [sym__snoremap] = ACTIONS(993), + [sym__onoremap] = ACTIONS(993), + [sym__inoremap] = ACTIONS(993), + [sym__lnoremap] = ACTIONS(993), + [sym__cnoremap] = ACTIONS(993), + [sym__tnoremap] = ACTIONS(993), + [sym__augroup] = ACTIONS(993), + [sym__highlight] = ACTIONS(993), + [sym__syntax] = ACTIONS(993), + [sym__set] = ACTIONS(993), + [sym__setlocal] = ACTIONS(993), + [sym__setfiletype] = ACTIONS(993), + [sym__browse] = ACTIONS(993), + [sym__options] = ACTIONS(993), + [sym__startinsert] = ACTIONS(993), + [sym__stopinsert] = ACTIONS(993), + [sym__scriptencoding] = ACTIONS(993), + [sym__source] = ACTIONS(993), + [sym__global] = ACTIONS(993), + [sym__colorscheme] = ACTIONS(993), + [sym__comclear] = ACTIONS(993), + [sym__delcommand] = ACTIONS(993), + [sym__runtime] = ACTIONS(993), + [sym__wincmd] = ACTIONS(993), + [sym__sign] = ACTIONS(993), + [sym__filetype] = ACTIONS(993), + [sym__let] = ACTIONS(993), + [sym__unlet] = ACTIONS(993), + [sym__call] = ACTIONS(993), + [sym__break] = ACTIONS(993), + [sym__continue] = ACTIONS(993), + [sym_unknown_command_name] = ACTIONS(993), }, [255] = { - [anon_sym_COLON] = ACTIONS(991), - [sym_command_name] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(991), - [sym_mark] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_DOT2] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_BSLASH_SLASH] = ACTIONS(991), - [anon_sym_BSLASH_QMARK] = ACTIONS(991), - [anon_sym_BSLASH_AMP] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(991), - [sym_register] = ACTIONS(991), - [sym__newline_or_pipe] = ACTIONS(991), + [ts_builtin_sym_end] = ACTIONS(993), + [anon_sym_COLON] = ACTIONS(993), + [sym_command_name] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [sym_mark] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_DOT2] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_BSLASH_SLASH] = ACTIONS(993), + [anon_sym_BSLASH_QMARK] = ACTIONS(993), + [anon_sym_BSLASH_AMP] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(993), + [sym_register] = ACTIONS(993), + [sym__newline_or_pipe] = ACTIONS(993), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(991), - [sym__function] = ACTIONS(991), - [sym__for] = ACTIONS(991), - [sym__while] = ACTIONS(991), - [sym__if] = ACTIONS(991), - [sym__try] = ACTIONS(991), - [sym__endtry] = ACTIONS(991), - [sym__const] = ACTIONS(991), - [sym__normal] = ACTIONS(991), - [sym__return] = ACTIONS(991), - [sym__perl] = ACTIONS(991), - [sym__lua] = ACTIONS(991), - [sym__ruby] = ACTIONS(991), - [sym__python] = ACTIONS(991), - [sym__throw] = ACTIONS(991), - [sym__execute] = ACTIONS(991), - [sym__autocmd] = ACTIONS(991), - [sym__silent] = ACTIONS(991), - [sym__echo] = ACTIONS(991), - [sym__echon] = ACTIONS(991), - [sym__echohl] = ACTIONS(991), - [sym__echomsg] = ACTIONS(991), - [sym__echoerr] = ACTIONS(991), - [sym__map] = ACTIONS(991), - [sym__nmap] = ACTIONS(991), - [sym__vmap] = ACTIONS(991), - [sym__xmap] = ACTIONS(991), - [sym__smap] = ACTIONS(991), - [sym__omap] = ACTIONS(991), - [sym__imap] = ACTIONS(991), - [sym__lmap] = ACTIONS(991), - [sym__cmap] = ACTIONS(991), - [sym__tmap] = ACTIONS(991), - [sym__noremap] = ACTIONS(991), - [sym__vnoremap] = ACTIONS(991), - [sym__nnoremap] = ACTIONS(991), - [sym__xnoremap] = ACTIONS(991), - [sym__snoremap] = ACTIONS(991), - [sym__onoremap] = ACTIONS(991), - [sym__inoremap] = ACTIONS(991), - [sym__lnoremap] = ACTIONS(991), - [sym__cnoremap] = ACTIONS(991), - [sym__tnoremap] = ACTIONS(991), - [sym__augroup] = ACTIONS(991), - [sym__highlight] = ACTIONS(991), - [sym__syntax] = ACTIONS(991), - [sym__set] = ACTIONS(991), - [sym__setlocal] = ACTIONS(991), - [sym__setfiletype] = ACTIONS(991), - [sym__browse] = ACTIONS(991), - [sym__options] = ACTIONS(991), - [sym__startinsert] = ACTIONS(991), - [sym__stopinsert] = ACTIONS(991), - [sym__scriptencoding] = ACTIONS(991), - [sym__source] = ACTIONS(991), - [sym__global] = ACTIONS(991), - [sym__colorscheme] = ACTIONS(991), - [sym__comclear] = ACTIONS(991), - [sym__delcommand] = ACTIONS(991), - [sym__runtime] = ACTIONS(991), - [sym__wincmd] = ACTIONS(991), - [sym__sign] = ACTIONS(991), - [sym__filetype] = ACTIONS(991), - [sym__let] = ACTIONS(991), - [sym__unlet] = ACTIONS(991), - [sym__call] = ACTIONS(991), - [sym__break] = ACTIONS(991), - [sym__continue] = ACTIONS(991), - [sym_unknown_command_name] = ACTIONS(991), + [sym_comment] = ACTIONS(993), + [sym__function] = ACTIONS(993), + [sym__for] = ACTIONS(993), + [sym__while] = ACTIONS(993), + [sym__if] = ACTIONS(993), + [sym__try] = ACTIONS(993), + [sym__const] = ACTIONS(993), + [sym__normal] = ACTIONS(993), + [sym__return] = ACTIONS(993), + [sym__perl] = ACTIONS(993), + [sym__lua] = ACTIONS(993), + [sym__ruby] = ACTIONS(993), + [sym__python] = ACTIONS(993), + [sym__throw] = ACTIONS(993), + [sym__execute] = ACTIONS(993), + [sym__autocmd] = ACTIONS(993), + [sym__silent] = ACTIONS(993), + [sym__echo] = ACTIONS(993), + [sym__echon] = ACTIONS(993), + [sym__echohl] = ACTIONS(993), + [sym__echomsg] = ACTIONS(993), + [sym__echoerr] = ACTIONS(993), + [sym__map] = ACTIONS(993), + [sym__nmap] = ACTIONS(993), + [sym__vmap] = ACTIONS(993), + [sym__xmap] = ACTIONS(993), + [sym__smap] = ACTIONS(993), + [sym__omap] = ACTIONS(993), + [sym__imap] = ACTIONS(993), + [sym__lmap] = ACTIONS(993), + [sym__cmap] = ACTIONS(993), + [sym__tmap] = ACTIONS(993), + [sym__noremap] = ACTIONS(993), + [sym__vnoremap] = ACTIONS(993), + [sym__nnoremap] = ACTIONS(993), + [sym__xnoremap] = ACTIONS(993), + [sym__snoremap] = ACTIONS(993), + [sym__onoremap] = ACTIONS(993), + [sym__inoremap] = ACTIONS(993), + [sym__lnoremap] = ACTIONS(993), + [sym__cnoremap] = ACTIONS(993), + [sym__tnoremap] = ACTIONS(993), + [sym__augroup] = ACTIONS(993), + [sym__highlight] = ACTIONS(993), + [sym__syntax] = ACTIONS(993), + [sym__set] = ACTIONS(993), + [sym__setlocal] = ACTIONS(993), + [sym__setfiletype] = ACTIONS(993), + [sym__browse] = ACTIONS(993), + [sym__options] = ACTIONS(993), + [sym__startinsert] = ACTIONS(993), + [sym__stopinsert] = ACTIONS(993), + [sym__scriptencoding] = ACTIONS(993), + [sym__source] = ACTIONS(993), + [sym__global] = ACTIONS(993), + [sym__colorscheme] = ACTIONS(993), + [sym__comclear] = ACTIONS(993), + [sym__delcommand] = ACTIONS(993), + [sym__runtime] = ACTIONS(993), + [sym__wincmd] = ACTIONS(993), + [sym__sign] = ACTIONS(993), + [sym__filetype] = ACTIONS(993), + [sym__let] = ACTIONS(993), + [sym__unlet] = ACTIONS(993), + [sym__call] = ACTIONS(993), + [sym__break] = ACTIONS(993), + [sym__continue] = ACTIONS(993), + [sym_unknown_command_name] = ACTIONS(993), }, [256] = { - [anon_sym_COLON] = ACTIONS(286), - [sym_command_name] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(286), - [sym_mark] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_DOT2] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_BSLASH_SLASH] = ACTIONS(286), - [anon_sym_BSLASH_QMARK] = ACTIONS(286), - [anon_sym_BSLASH_AMP] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(286), - [sym_register] = ACTIONS(286), - [sym__newline_or_pipe] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(294), + [sym_command_name] = ACTIONS(294), + [anon_sym_QMARK] = ACTIONS(294), + [sym_mark] = ACTIONS(294), + [anon_sym_PERCENT] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_DOT2] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(294), + [anon_sym_BSLASH_SLASH] = ACTIONS(294), + [anon_sym_BSLASH_QMARK] = ACTIONS(294), + [anon_sym_BSLASH_AMP] = ACTIONS(294), + [sym_integer_literal] = ACTIONS(294), + [sym_register] = ACTIONS(294), + [sym__newline_or_pipe] = ACTIONS(294), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(286), - [sym__function] = ACTIONS(286), - [sym__for] = ACTIONS(286), - [sym__while] = ACTIONS(286), - [sym__if] = ACTIONS(286), - [sym__try] = ACTIONS(286), - [sym__endtry] = ACTIONS(286), - [sym__const] = ACTIONS(286), - [sym__normal] = ACTIONS(286), - [sym__return] = ACTIONS(286), - [sym__perl] = ACTIONS(286), - [sym__lua] = ACTIONS(286), - [sym__ruby] = ACTIONS(286), - [sym__python] = ACTIONS(286), - [sym__throw] = ACTIONS(286), - [sym__execute] = ACTIONS(286), - [sym__autocmd] = ACTIONS(286), - [sym__silent] = ACTIONS(286), - [sym__echo] = ACTIONS(286), - [sym__echon] = ACTIONS(286), - [sym__echohl] = ACTIONS(286), - [sym__echomsg] = ACTIONS(286), - [sym__echoerr] = ACTIONS(286), - [sym__map] = ACTIONS(286), - [sym__nmap] = ACTIONS(286), - [sym__vmap] = ACTIONS(286), - [sym__xmap] = ACTIONS(286), - [sym__smap] = ACTIONS(286), - [sym__omap] = ACTIONS(286), - [sym__imap] = ACTIONS(286), - [sym__lmap] = ACTIONS(286), - [sym__cmap] = ACTIONS(286), - [sym__tmap] = ACTIONS(286), - [sym__noremap] = ACTIONS(286), - [sym__vnoremap] = ACTIONS(286), - [sym__nnoremap] = ACTIONS(286), - [sym__xnoremap] = ACTIONS(286), - [sym__snoremap] = ACTIONS(286), - [sym__onoremap] = ACTIONS(286), - [sym__inoremap] = ACTIONS(286), - [sym__lnoremap] = ACTIONS(286), - [sym__cnoremap] = ACTIONS(286), - [sym__tnoremap] = ACTIONS(286), - [sym__augroup] = ACTIONS(286), - [sym__highlight] = ACTIONS(286), - [sym__syntax] = ACTIONS(286), - [sym__set] = ACTIONS(286), - [sym__setlocal] = ACTIONS(286), - [sym__setfiletype] = ACTIONS(286), - [sym__browse] = ACTIONS(286), - [sym__options] = ACTIONS(286), - [sym__startinsert] = ACTIONS(286), - [sym__stopinsert] = ACTIONS(286), - [sym__scriptencoding] = ACTIONS(286), - [sym__source] = ACTIONS(286), - [sym__global] = ACTIONS(286), - [sym__colorscheme] = ACTIONS(286), - [sym__comclear] = ACTIONS(286), - [sym__delcommand] = ACTIONS(286), - [sym__runtime] = ACTIONS(286), - [sym__wincmd] = ACTIONS(286), - [sym__sign] = ACTIONS(286), - [sym__filetype] = ACTIONS(286), - [sym__let] = ACTIONS(286), - [sym__unlet] = ACTIONS(286), - [sym__call] = ACTIONS(286), - [sym__break] = ACTIONS(286), - [sym__continue] = ACTIONS(286), - [sym_unknown_command_name] = ACTIONS(286), + [sym_comment] = ACTIONS(294), + [sym__function] = ACTIONS(294), + [sym__for] = ACTIONS(294), + [sym__while] = ACTIONS(294), + [sym__if] = ACTIONS(294), + [sym__endif] = ACTIONS(294), + [sym__try] = ACTIONS(294), + [sym__const] = ACTIONS(294), + [sym__normal] = ACTIONS(294), + [sym__return] = ACTIONS(294), + [sym__perl] = ACTIONS(294), + [sym__lua] = ACTIONS(294), + [sym__ruby] = ACTIONS(294), + [sym__python] = ACTIONS(294), + [sym__throw] = ACTIONS(294), + [sym__execute] = ACTIONS(294), + [sym__autocmd] = ACTIONS(294), + [sym__silent] = ACTIONS(294), + [sym__echo] = ACTIONS(294), + [sym__echon] = ACTIONS(294), + [sym__echohl] = ACTIONS(294), + [sym__echomsg] = ACTIONS(294), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(294), + [sym__nmap] = ACTIONS(294), + [sym__vmap] = ACTIONS(294), + [sym__xmap] = ACTIONS(294), + [sym__smap] = ACTIONS(294), + [sym__omap] = ACTIONS(294), + [sym__imap] = ACTIONS(294), + [sym__lmap] = ACTIONS(294), + [sym__cmap] = ACTIONS(294), + [sym__tmap] = ACTIONS(294), + [sym__noremap] = ACTIONS(294), + [sym__vnoremap] = ACTIONS(294), + [sym__nnoremap] = ACTIONS(294), + [sym__xnoremap] = ACTIONS(294), + [sym__snoremap] = ACTIONS(294), + [sym__onoremap] = ACTIONS(294), + [sym__inoremap] = ACTIONS(294), + [sym__lnoremap] = ACTIONS(294), + [sym__cnoremap] = ACTIONS(294), + [sym__tnoremap] = ACTIONS(294), + [sym__augroup] = ACTIONS(294), + [sym__highlight] = ACTIONS(294), + [sym__syntax] = ACTIONS(294), + [sym__set] = ACTIONS(294), + [sym__setlocal] = ACTIONS(294), + [sym__setfiletype] = ACTIONS(294), + [sym__browse] = ACTIONS(294), + [sym__options] = ACTIONS(294), + [sym__startinsert] = ACTIONS(294), + [sym__stopinsert] = ACTIONS(294), + [sym__scriptencoding] = ACTIONS(294), + [sym__source] = ACTIONS(294), + [sym__global] = ACTIONS(294), + [sym__colorscheme] = ACTIONS(294), + [sym__comclear] = ACTIONS(294), + [sym__delcommand] = ACTIONS(294), + [sym__runtime] = ACTIONS(294), + [sym__wincmd] = ACTIONS(294), + [sym__sign] = ACTIONS(294), + [sym__filetype] = ACTIONS(294), + [sym__let] = ACTIONS(294), + [sym__unlet] = ACTIONS(294), + [sym__call] = ACTIONS(294), + [sym__break] = ACTIONS(294), + [sym__continue] = ACTIONS(294), + [sym_unknown_command_name] = ACTIONS(294), }, [257] = { - [anon_sym_COLON] = ACTIONS(991), - [sym_command_name] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(991), - [sym_mark] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_DOT2] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_BSLASH_SLASH] = ACTIONS(991), - [anon_sym_BSLASH_QMARK] = ACTIONS(991), - [anon_sym_BSLASH_AMP] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(991), - [sym_register] = ACTIONS(991), - [sym__newline_or_pipe] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(294), + [sym_command_name] = ACTIONS(294), + [anon_sym_QMARK] = ACTIONS(294), + [sym_mark] = ACTIONS(294), + [anon_sym_PERCENT] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_DOT2] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(294), + [anon_sym_BSLASH_SLASH] = ACTIONS(294), + [anon_sym_BSLASH_QMARK] = ACTIONS(294), + [anon_sym_BSLASH_AMP] = ACTIONS(294), + [sym_integer_literal] = ACTIONS(294), + [sym_register] = ACTIONS(294), + [sym__newline_or_pipe] = ACTIONS(294), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(991), - [sym__function] = ACTIONS(991), - [sym__endfunction] = ACTIONS(991), - [sym__for] = ACTIONS(991), - [sym__while] = ACTIONS(991), - [sym__if] = ACTIONS(991), - [sym__try] = ACTIONS(991), - [sym__const] = ACTIONS(991), - [sym__normal] = ACTIONS(991), - [sym__return] = ACTIONS(991), - [sym__perl] = ACTIONS(991), - [sym__lua] = ACTIONS(991), - [sym__ruby] = ACTIONS(991), - [sym__python] = ACTIONS(991), - [sym__throw] = ACTIONS(991), - [sym__execute] = ACTIONS(991), - [sym__autocmd] = ACTIONS(991), - [sym__silent] = ACTIONS(991), - [sym__echo] = ACTIONS(991), - [sym__echon] = ACTIONS(991), - [sym__echohl] = ACTIONS(991), - [sym__echomsg] = ACTIONS(991), - [sym__echoerr] = ACTIONS(991), - [sym__map] = ACTIONS(991), - [sym__nmap] = ACTIONS(991), - [sym__vmap] = ACTIONS(991), - [sym__xmap] = ACTIONS(991), - [sym__smap] = ACTIONS(991), - [sym__omap] = ACTIONS(991), - [sym__imap] = ACTIONS(991), - [sym__lmap] = ACTIONS(991), - [sym__cmap] = ACTIONS(991), - [sym__tmap] = ACTIONS(991), - [sym__noremap] = ACTIONS(991), - [sym__vnoremap] = ACTIONS(991), - [sym__nnoremap] = ACTIONS(991), - [sym__xnoremap] = ACTIONS(991), - [sym__snoremap] = ACTIONS(991), - [sym__onoremap] = ACTIONS(991), - [sym__inoremap] = ACTIONS(991), - [sym__lnoremap] = ACTIONS(991), - [sym__cnoremap] = ACTIONS(991), - [sym__tnoremap] = ACTIONS(991), - [sym__augroup] = ACTIONS(991), - [sym__highlight] = ACTIONS(991), - [sym__syntax] = ACTIONS(991), - [sym__set] = ACTIONS(991), - [sym__setlocal] = ACTIONS(991), - [sym__setfiletype] = ACTIONS(991), - [sym__browse] = ACTIONS(991), - [sym__options] = ACTIONS(991), - [sym__startinsert] = ACTIONS(991), - [sym__stopinsert] = ACTIONS(991), - [sym__scriptencoding] = ACTIONS(991), - [sym__source] = ACTIONS(991), - [sym__global] = ACTIONS(991), - [sym__colorscheme] = ACTIONS(991), - [sym__comclear] = ACTIONS(991), - [sym__delcommand] = ACTIONS(991), - [sym__runtime] = ACTIONS(991), - [sym__wincmd] = ACTIONS(991), - [sym__sign] = ACTIONS(991), - [sym__filetype] = ACTIONS(991), - [sym__let] = ACTIONS(991), - [sym__unlet] = ACTIONS(991), - [sym__call] = ACTIONS(991), - [sym__break] = ACTIONS(991), - [sym__continue] = ACTIONS(991), - [sym_unknown_command_name] = ACTIONS(991), + [sym_comment] = ACTIONS(294), + [sym__function] = ACTIONS(294), + [sym__for] = ACTIONS(294), + [sym__endfor] = ACTIONS(294), + [sym__while] = ACTIONS(294), + [sym__if] = ACTIONS(294), + [sym__try] = ACTIONS(294), + [sym__const] = ACTIONS(294), + [sym__normal] = ACTIONS(294), + [sym__return] = ACTIONS(294), + [sym__perl] = ACTIONS(294), + [sym__lua] = ACTIONS(294), + [sym__ruby] = ACTIONS(294), + [sym__python] = ACTIONS(294), + [sym__throw] = ACTIONS(294), + [sym__execute] = ACTIONS(294), + [sym__autocmd] = ACTIONS(294), + [sym__silent] = ACTIONS(294), + [sym__echo] = ACTIONS(294), + [sym__echon] = ACTIONS(294), + [sym__echohl] = ACTIONS(294), + [sym__echomsg] = ACTIONS(294), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(294), + [sym__nmap] = ACTIONS(294), + [sym__vmap] = ACTIONS(294), + [sym__xmap] = ACTIONS(294), + [sym__smap] = ACTIONS(294), + [sym__omap] = ACTIONS(294), + [sym__imap] = ACTIONS(294), + [sym__lmap] = ACTIONS(294), + [sym__cmap] = ACTIONS(294), + [sym__tmap] = ACTIONS(294), + [sym__noremap] = ACTIONS(294), + [sym__vnoremap] = ACTIONS(294), + [sym__nnoremap] = ACTIONS(294), + [sym__xnoremap] = ACTIONS(294), + [sym__snoremap] = ACTIONS(294), + [sym__onoremap] = ACTIONS(294), + [sym__inoremap] = ACTIONS(294), + [sym__lnoremap] = ACTIONS(294), + [sym__cnoremap] = ACTIONS(294), + [sym__tnoremap] = ACTIONS(294), + [sym__augroup] = ACTIONS(294), + [sym__highlight] = ACTIONS(294), + [sym__syntax] = ACTIONS(294), + [sym__set] = ACTIONS(294), + [sym__setlocal] = ACTIONS(294), + [sym__setfiletype] = ACTIONS(294), + [sym__browse] = ACTIONS(294), + [sym__options] = ACTIONS(294), + [sym__startinsert] = ACTIONS(294), + [sym__stopinsert] = ACTIONS(294), + [sym__scriptencoding] = ACTIONS(294), + [sym__source] = ACTIONS(294), + [sym__global] = ACTIONS(294), + [sym__colorscheme] = ACTIONS(294), + [sym__comclear] = ACTIONS(294), + [sym__delcommand] = ACTIONS(294), + [sym__runtime] = ACTIONS(294), + [sym__wincmd] = ACTIONS(294), + [sym__sign] = ACTIONS(294), + [sym__filetype] = ACTIONS(294), + [sym__let] = ACTIONS(294), + [sym__unlet] = ACTIONS(294), + [sym__call] = ACTIONS(294), + [sym__break] = ACTIONS(294), + [sym__continue] = ACTIONS(294), + [sym_unknown_command_name] = ACTIONS(294), }, [258] = { [anon_sym_COLON] = ACTIONS(997), @@ -59483,352 +58736,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(997), }, [259] = { - [anon_sym_COLON] = ACTIONS(286), - [sym_command_name] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(286), - [sym_mark] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_DOT2] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(993), + [sym_command_name] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [sym_mark] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_DOT2] = ACTIONS(993), [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_BSLASH_SLASH] = ACTIONS(286), - [anon_sym_BSLASH_QMARK] = ACTIONS(286), - [anon_sym_BSLASH_AMP] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(286), - [sym_register] = ACTIONS(286), - [sym__newline_or_pipe] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_BSLASH_SLASH] = ACTIONS(993), + [anon_sym_BSLASH_QMARK] = ACTIONS(993), + [anon_sym_BSLASH_AMP] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(993), + [sym_register] = ACTIONS(993), + [sym__newline_or_pipe] = ACTIONS(993), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(286), - [sym__function] = ACTIONS(286), - [sym__for] = ACTIONS(286), - [sym__endfor] = ACTIONS(286), - [sym__while] = ACTIONS(286), - [sym__if] = ACTIONS(286), - [sym__try] = ACTIONS(286), - [sym__const] = ACTIONS(286), - [sym__normal] = ACTIONS(286), - [sym__return] = ACTIONS(286), - [sym__perl] = ACTIONS(286), - [sym__lua] = ACTIONS(286), - [sym__ruby] = ACTIONS(286), - [sym__python] = ACTIONS(286), - [sym__throw] = ACTIONS(286), - [sym__execute] = ACTIONS(286), - [sym__autocmd] = ACTIONS(286), - [sym__silent] = ACTIONS(286), - [sym__echo] = ACTIONS(286), - [sym__echon] = ACTIONS(286), - [sym__echohl] = ACTIONS(286), - [sym__echomsg] = ACTIONS(286), - [sym__echoerr] = ACTIONS(286), - [sym__map] = ACTIONS(286), - [sym__nmap] = ACTIONS(286), - [sym__vmap] = ACTIONS(286), - [sym__xmap] = ACTIONS(286), - [sym__smap] = ACTIONS(286), - [sym__omap] = ACTIONS(286), - [sym__imap] = ACTIONS(286), - [sym__lmap] = ACTIONS(286), - [sym__cmap] = ACTIONS(286), - [sym__tmap] = ACTIONS(286), - [sym__noremap] = ACTIONS(286), - [sym__vnoremap] = ACTIONS(286), - [sym__nnoremap] = ACTIONS(286), - [sym__xnoremap] = ACTIONS(286), - [sym__snoremap] = ACTIONS(286), - [sym__onoremap] = ACTIONS(286), - [sym__inoremap] = ACTIONS(286), - [sym__lnoremap] = ACTIONS(286), - [sym__cnoremap] = ACTIONS(286), - [sym__tnoremap] = ACTIONS(286), - [sym__augroup] = ACTIONS(286), - [sym__highlight] = ACTIONS(286), - [sym__syntax] = ACTIONS(286), - [sym__set] = ACTIONS(286), - [sym__setlocal] = ACTIONS(286), - [sym__setfiletype] = ACTIONS(286), - [sym__browse] = ACTIONS(286), - [sym__options] = ACTIONS(286), - [sym__startinsert] = ACTIONS(286), - [sym__stopinsert] = ACTIONS(286), - [sym__scriptencoding] = ACTIONS(286), - [sym__source] = ACTIONS(286), - [sym__global] = ACTIONS(286), - [sym__colorscheme] = ACTIONS(286), - [sym__comclear] = ACTIONS(286), - [sym__delcommand] = ACTIONS(286), - [sym__runtime] = ACTIONS(286), - [sym__wincmd] = ACTIONS(286), - [sym__sign] = ACTIONS(286), - [sym__filetype] = ACTIONS(286), - [sym__let] = ACTIONS(286), - [sym__unlet] = ACTIONS(286), - [sym__call] = ACTIONS(286), - [sym__break] = ACTIONS(286), - [sym__continue] = ACTIONS(286), - [sym_unknown_command_name] = ACTIONS(286), + [sym_comment] = ACTIONS(993), + [sym__function] = ACTIONS(993), + [sym__for] = ACTIONS(993), + [sym__while] = ACTIONS(993), + [sym__if] = ACTIONS(993), + [sym__endif] = ACTIONS(993), + [sym__try] = ACTIONS(993), + [sym__const] = ACTIONS(993), + [sym__normal] = ACTIONS(993), + [sym__return] = ACTIONS(993), + [sym__perl] = ACTIONS(993), + [sym__lua] = ACTIONS(993), + [sym__ruby] = ACTIONS(993), + [sym__python] = ACTIONS(993), + [sym__throw] = ACTIONS(993), + [sym__execute] = ACTIONS(993), + [sym__autocmd] = ACTIONS(993), + [sym__silent] = ACTIONS(993), + [sym__echo] = ACTIONS(993), + [sym__echon] = ACTIONS(993), + [sym__echohl] = ACTIONS(993), + [sym__echomsg] = ACTIONS(993), + [sym__echoerr] = ACTIONS(993), + [sym__map] = ACTIONS(993), + [sym__nmap] = ACTIONS(993), + [sym__vmap] = ACTIONS(993), + [sym__xmap] = ACTIONS(993), + [sym__smap] = ACTIONS(993), + [sym__omap] = ACTIONS(993), + [sym__imap] = ACTIONS(993), + [sym__lmap] = ACTIONS(993), + [sym__cmap] = ACTIONS(993), + [sym__tmap] = ACTIONS(993), + [sym__noremap] = ACTIONS(993), + [sym__vnoremap] = ACTIONS(993), + [sym__nnoremap] = ACTIONS(993), + [sym__xnoremap] = ACTIONS(993), + [sym__snoremap] = ACTIONS(993), + [sym__onoremap] = ACTIONS(993), + [sym__inoremap] = ACTIONS(993), + [sym__lnoremap] = ACTIONS(993), + [sym__cnoremap] = ACTIONS(993), + [sym__tnoremap] = ACTIONS(993), + [sym__augroup] = ACTIONS(993), + [sym__highlight] = ACTIONS(993), + [sym__syntax] = ACTIONS(993), + [sym__set] = ACTIONS(993), + [sym__setlocal] = ACTIONS(993), + [sym__setfiletype] = ACTIONS(993), + [sym__browse] = ACTIONS(993), + [sym__options] = ACTIONS(993), + [sym__startinsert] = ACTIONS(993), + [sym__stopinsert] = ACTIONS(993), + [sym__scriptencoding] = ACTIONS(993), + [sym__source] = ACTIONS(993), + [sym__global] = ACTIONS(993), + [sym__colorscheme] = ACTIONS(993), + [sym__comclear] = ACTIONS(993), + [sym__delcommand] = ACTIONS(993), + [sym__runtime] = ACTIONS(993), + [sym__wincmd] = ACTIONS(993), + [sym__sign] = ACTIONS(993), + [sym__filetype] = ACTIONS(993), + [sym__let] = ACTIONS(993), + [sym__unlet] = ACTIONS(993), + [sym__call] = ACTIONS(993), + [sym__break] = ACTIONS(993), + [sym__continue] = ACTIONS(993), + [sym_unknown_command_name] = ACTIONS(993), }, [260] = { - [anon_sym_COLON] = ACTIONS(991), - [sym_command_name] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(991), - [sym_mark] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_DOT2] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_BSLASH_SLASH] = ACTIONS(991), - [anon_sym_BSLASH_QMARK] = ACTIONS(991), - [anon_sym_BSLASH_AMP] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(991), - [sym_register] = ACTIONS(991), - [sym__newline_or_pipe] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(993), + [sym_command_name] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [sym_mark] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_DOT2] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_BSLASH_SLASH] = ACTIONS(993), + [anon_sym_BSLASH_QMARK] = ACTIONS(993), + [anon_sym_BSLASH_AMP] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(993), + [sym_register] = ACTIONS(993), + [sym__newline_or_pipe] = ACTIONS(993), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(991), - [sym__function] = ACTIONS(991), - [sym__for] = ACTIONS(991), - [sym__while] = ACTIONS(991), - [sym__if] = ACTIONS(991), - [sym__endif] = ACTIONS(991), - [sym__try] = ACTIONS(991), - [sym__const] = ACTIONS(991), - [sym__normal] = ACTIONS(991), - [sym__return] = ACTIONS(991), - [sym__perl] = ACTIONS(991), - [sym__lua] = ACTIONS(991), - [sym__ruby] = ACTIONS(991), - [sym__python] = ACTIONS(991), - [sym__throw] = ACTIONS(991), - [sym__execute] = ACTIONS(991), - [sym__autocmd] = ACTIONS(991), - [sym__silent] = ACTIONS(991), - [sym__echo] = ACTIONS(991), - [sym__echon] = ACTIONS(991), - [sym__echohl] = ACTIONS(991), - [sym__echomsg] = ACTIONS(991), - [sym__echoerr] = ACTIONS(991), - [sym__map] = ACTIONS(991), - [sym__nmap] = ACTIONS(991), - [sym__vmap] = ACTIONS(991), - [sym__xmap] = ACTIONS(991), - [sym__smap] = ACTIONS(991), - [sym__omap] = ACTIONS(991), - [sym__imap] = ACTIONS(991), - [sym__lmap] = ACTIONS(991), - [sym__cmap] = ACTIONS(991), - [sym__tmap] = ACTIONS(991), - [sym__noremap] = ACTIONS(991), - [sym__vnoremap] = ACTIONS(991), - [sym__nnoremap] = ACTIONS(991), - [sym__xnoremap] = ACTIONS(991), - [sym__snoremap] = ACTIONS(991), - [sym__onoremap] = ACTIONS(991), - [sym__inoremap] = ACTIONS(991), - [sym__lnoremap] = ACTIONS(991), - [sym__cnoremap] = ACTIONS(991), - [sym__tnoremap] = ACTIONS(991), - [sym__augroup] = ACTIONS(991), - [sym__highlight] = ACTIONS(991), - [sym__syntax] = ACTIONS(991), - [sym__set] = ACTIONS(991), - [sym__setlocal] = ACTIONS(991), - [sym__setfiletype] = ACTIONS(991), - [sym__browse] = ACTIONS(991), - [sym__options] = ACTIONS(991), - [sym__startinsert] = ACTIONS(991), - [sym__stopinsert] = ACTIONS(991), - [sym__scriptencoding] = ACTIONS(991), - [sym__source] = ACTIONS(991), - [sym__global] = ACTIONS(991), - [sym__colorscheme] = ACTIONS(991), - [sym__comclear] = ACTIONS(991), - [sym__delcommand] = ACTIONS(991), - [sym__runtime] = ACTIONS(991), - [sym__wincmd] = ACTIONS(991), - [sym__sign] = ACTIONS(991), - [sym__filetype] = ACTIONS(991), - [sym__let] = ACTIONS(991), - [sym__unlet] = ACTIONS(991), - [sym__call] = ACTIONS(991), - [sym__break] = ACTIONS(991), - [sym__continue] = ACTIONS(991), - [sym_unknown_command_name] = ACTIONS(991), + [sym_comment] = ACTIONS(993), + [sym__function] = ACTIONS(993), + [sym__for] = ACTIONS(993), + [sym__endfor] = ACTIONS(993), + [sym__while] = ACTIONS(993), + [sym__if] = ACTIONS(993), + [sym__try] = ACTIONS(993), + [sym__const] = ACTIONS(993), + [sym__normal] = ACTIONS(993), + [sym__return] = ACTIONS(993), + [sym__perl] = ACTIONS(993), + [sym__lua] = ACTIONS(993), + [sym__ruby] = ACTIONS(993), + [sym__python] = ACTIONS(993), + [sym__throw] = ACTIONS(993), + [sym__execute] = ACTIONS(993), + [sym__autocmd] = ACTIONS(993), + [sym__silent] = ACTIONS(993), + [sym__echo] = ACTIONS(993), + [sym__echon] = ACTIONS(993), + [sym__echohl] = ACTIONS(993), + [sym__echomsg] = ACTIONS(993), + [sym__echoerr] = ACTIONS(993), + [sym__map] = ACTIONS(993), + [sym__nmap] = ACTIONS(993), + [sym__vmap] = ACTIONS(993), + [sym__xmap] = ACTIONS(993), + [sym__smap] = ACTIONS(993), + [sym__omap] = ACTIONS(993), + [sym__imap] = ACTIONS(993), + [sym__lmap] = ACTIONS(993), + [sym__cmap] = ACTIONS(993), + [sym__tmap] = ACTIONS(993), + [sym__noremap] = ACTIONS(993), + [sym__vnoremap] = ACTIONS(993), + [sym__nnoremap] = ACTIONS(993), + [sym__xnoremap] = ACTIONS(993), + [sym__snoremap] = ACTIONS(993), + [sym__onoremap] = ACTIONS(993), + [sym__inoremap] = ACTIONS(993), + [sym__lnoremap] = ACTIONS(993), + [sym__cnoremap] = ACTIONS(993), + [sym__tnoremap] = ACTIONS(993), + [sym__augroup] = ACTIONS(993), + [sym__highlight] = ACTIONS(993), + [sym__syntax] = ACTIONS(993), + [sym__set] = ACTIONS(993), + [sym__setlocal] = ACTIONS(993), + [sym__setfiletype] = ACTIONS(993), + [sym__browse] = ACTIONS(993), + [sym__options] = ACTIONS(993), + [sym__startinsert] = ACTIONS(993), + [sym__stopinsert] = ACTIONS(993), + [sym__scriptencoding] = ACTIONS(993), + [sym__source] = ACTIONS(993), + [sym__global] = ACTIONS(993), + [sym__colorscheme] = ACTIONS(993), + [sym__comclear] = ACTIONS(993), + [sym__delcommand] = ACTIONS(993), + [sym__runtime] = ACTIONS(993), + [sym__wincmd] = ACTIONS(993), + [sym__sign] = ACTIONS(993), + [sym__filetype] = ACTIONS(993), + [sym__let] = ACTIONS(993), + [sym__unlet] = ACTIONS(993), + [sym__call] = ACTIONS(993), + [sym__break] = ACTIONS(993), + [sym__continue] = ACTIONS(993), + [sym_unknown_command_name] = ACTIONS(993), }, [261] = { - [anon_sym_COLON] = ACTIONS(286), - [sym_command_name] = ACTIONS(286), - [anon_sym_QMARK] = ACTIONS(286), - [sym_mark] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_DOT2] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(286), - [anon_sym_BSLASH_SLASH] = ACTIONS(286), - [anon_sym_BSLASH_QMARK] = ACTIONS(286), - [anon_sym_BSLASH_AMP] = ACTIONS(286), - [sym_integer_literal] = ACTIONS(286), - [sym_register] = ACTIONS(286), - [sym__newline_or_pipe] = ACTIONS(286), + [ts_builtin_sym_end] = ACTIONS(294), + [anon_sym_COLON] = ACTIONS(294), + [sym_command_name] = ACTIONS(294), + [anon_sym_QMARK] = ACTIONS(294), + [sym_mark] = ACTIONS(294), + [anon_sym_PERCENT] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_DOT2] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(294), + [anon_sym_BSLASH_SLASH] = ACTIONS(294), + [anon_sym_BSLASH_QMARK] = ACTIONS(294), + [anon_sym_BSLASH_AMP] = ACTIONS(294), + [sym_integer_literal] = ACTIONS(294), + [sym_register] = ACTIONS(294), + [sym__newline_or_pipe] = ACTIONS(294), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(286), - [sym__function] = ACTIONS(286), - [sym__endfunction] = ACTIONS(286), - [sym__for] = ACTIONS(286), - [sym__while] = ACTIONS(286), - [sym__if] = ACTIONS(286), - [sym__try] = ACTIONS(286), - [sym__const] = ACTIONS(286), - [sym__normal] = ACTIONS(286), - [sym__return] = ACTIONS(286), - [sym__perl] = ACTIONS(286), - [sym__lua] = ACTIONS(286), - [sym__ruby] = ACTIONS(286), - [sym__python] = ACTIONS(286), - [sym__throw] = ACTIONS(286), - [sym__execute] = ACTIONS(286), - [sym__autocmd] = ACTIONS(286), - [sym__silent] = ACTIONS(286), - [sym__echo] = ACTIONS(286), - [sym__echon] = ACTIONS(286), - [sym__echohl] = ACTIONS(286), - [sym__echomsg] = ACTIONS(286), - [sym__echoerr] = ACTIONS(286), - [sym__map] = ACTIONS(286), - [sym__nmap] = ACTIONS(286), - [sym__vmap] = ACTIONS(286), - [sym__xmap] = ACTIONS(286), - [sym__smap] = ACTIONS(286), - [sym__omap] = ACTIONS(286), - [sym__imap] = ACTIONS(286), - [sym__lmap] = ACTIONS(286), - [sym__cmap] = ACTIONS(286), - [sym__tmap] = ACTIONS(286), - [sym__noremap] = ACTIONS(286), - [sym__vnoremap] = ACTIONS(286), - [sym__nnoremap] = ACTIONS(286), - [sym__xnoremap] = ACTIONS(286), - [sym__snoremap] = ACTIONS(286), - [sym__onoremap] = ACTIONS(286), - [sym__inoremap] = ACTIONS(286), - [sym__lnoremap] = ACTIONS(286), - [sym__cnoremap] = ACTIONS(286), - [sym__tnoremap] = ACTIONS(286), - [sym__augroup] = ACTIONS(286), - [sym__highlight] = ACTIONS(286), - [sym__syntax] = ACTIONS(286), - [sym__set] = ACTIONS(286), - [sym__setlocal] = ACTIONS(286), - [sym__setfiletype] = ACTIONS(286), - [sym__browse] = ACTIONS(286), - [sym__options] = ACTIONS(286), - [sym__startinsert] = ACTIONS(286), - [sym__stopinsert] = ACTIONS(286), - [sym__scriptencoding] = ACTIONS(286), - [sym__source] = ACTIONS(286), - [sym__global] = ACTIONS(286), - [sym__colorscheme] = ACTIONS(286), - [sym__comclear] = ACTIONS(286), - [sym__delcommand] = ACTIONS(286), - [sym__runtime] = ACTIONS(286), - [sym__wincmd] = ACTIONS(286), - [sym__sign] = ACTIONS(286), - [sym__filetype] = ACTIONS(286), - [sym__let] = ACTIONS(286), - [sym__unlet] = ACTIONS(286), - [sym__call] = ACTIONS(286), - [sym__break] = ACTIONS(286), - [sym__continue] = ACTIONS(286), - [sym_unknown_command_name] = ACTIONS(286), + [sym_comment] = ACTIONS(294), + [sym__function] = ACTIONS(294), + [sym__for] = ACTIONS(294), + [sym__while] = ACTIONS(294), + [sym__if] = ACTIONS(294), + [sym__try] = ACTIONS(294), + [sym__const] = ACTIONS(294), + [sym__normal] = ACTIONS(294), + [sym__return] = ACTIONS(294), + [sym__perl] = ACTIONS(294), + [sym__lua] = ACTIONS(294), + [sym__ruby] = ACTIONS(294), + [sym__python] = ACTIONS(294), + [sym__throw] = ACTIONS(294), + [sym__execute] = ACTIONS(294), + [sym__autocmd] = ACTIONS(294), + [sym__silent] = ACTIONS(294), + [sym__echo] = ACTIONS(294), + [sym__echon] = ACTIONS(294), + [sym__echohl] = ACTIONS(294), + [sym__echomsg] = ACTIONS(294), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(294), + [sym__nmap] = ACTIONS(294), + [sym__vmap] = ACTIONS(294), + [sym__xmap] = ACTIONS(294), + [sym__smap] = ACTIONS(294), + [sym__omap] = ACTIONS(294), + [sym__imap] = ACTIONS(294), + [sym__lmap] = ACTIONS(294), + [sym__cmap] = ACTIONS(294), + [sym__tmap] = ACTIONS(294), + [sym__noremap] = ACTIONS(294), + [sym__vnoremap] = ACTIONS(294), + [sym__nnoremap] = ACTIONS(294), + [sym__xnoremap] = ACTIONS(294), + [sym__snoremap] = ACTIONS(294), + [sym__onoremap] = ACTIONS(294), + [sym__inoremap] = ACTIONS(294), + [sym__lnoremap] = ACTIONS(294), + [sym__cnoremap] = ACTIONS(294), + [sym__tnoremap] = ACTIONS(294), + [sym__augroup] = ACTIONS(294), + [sym__highlight] = ACTIONS(294), + [sym__syntax] = ACTIONS(294), + [sym__set] = ACTIONS(294), + [sym__setlocal] = ACTIONS(294), + [sym__setfiletype] = ACTIONS(294), + [sym__browse] = ACTIONS(294), + [sym__options] = ACTIONS(294), + [sym__startinsert] = ACTIONS(294), + [sym__stopinsert] = ACTIONS(294), + [sym__scriptencoding] = ACTIONS(294), + [sym__source] = ACTIONS(294), + [sym__global] = ACTIONS(294), + [sym__colorscheme] = ACTIONS(294), + [sym__comclear] = ACTIONS(294), + [sym__delcommand] = ACTIONS(294), + [sym__runtime] = ACTIONS(294), + [sym__wincmd] = ACTIONS(294), + [sym__sign] = ACTIONS(294), + [sym__filetype] = ACTIONS(294), + [sym__let] = ACTIONS(294), + [sym__unlet] = ACTIONS(294), + [sym__call] = ACTIONS(294), + [sym__break] = ACTIONS(294), + [sym__continue] = ACTIONS(294), + [sym_unknown_command_name] = ACTIONS(294), }, [262] = { - [ts_builtin_sym_end] = ACTIONS(991), - [anon_sym_COLON] = ACTIONS(991), - [sym_command_name] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(991), - [sym_mark] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_DOT2] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_BSLASH_SLASH] = ACTIONS(991), - [anon_sym_BSLASH_QMARK] = ACTIONS(991), - [anon_sym_BSLASH_AMP] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(991), - [sym_register] = ACTIONS(991), - [sym__newline_or_pipe] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(294), + [sym_command_name] = ACTIONS(294), + [anon_sym_QMARK] = ACTIONS(294), + [sym_mark] = ACTIONS(294), + [anon_sym_PERCENT] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(294), + [anon_sym_DOT2] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(294), + [anon_sym_BSLASH_SLASH] = ACTIONS(294), + [anon_sym_BSLASH_QMARK] = ACTIONS(294), + [anon_sym_BSLASH_AMP] = ACTIONS(294), + [sym_integer_literal] = ACTIONS(294), + [sym_register] = ACTIONS(294), + [sym__newline_or_pipe] = ACTIONS(294), [sym__line_continuation] = ACTIONS(3), - [sym_comment] = ACTIONS(991), - [sym__function] = ACTIONS(991), - [sym__for] = ACTIONS(991), - [sym__while] = ACTIONS(991), - [sym__if] = ACTIONS(991), - [sym__try] = ACTIONS(991), - [sym__const] = ACTIONS(991), - [sym__normal] = ACTIONS(991), - [sym__return] = ACTIONS(991), - [sym__perl] = ACTIONS(991), - [sym__lua] = ACTIONS(991), - [sym__ruby] = ACTIONS(991), - [sym__python] = ACTIONS(991), - [sym__throw] = ACTIONS(991), - [sym__execute] = ACTIONS(991), - [sym__autocmd] = ACTIONS(991), - [sym__silent] = ACTIONS(991), - [sym__echo] = ACTIONS(991), - [sym__echon] = ACTIONS(991), - [sym__echohl] = ACTIONS(991), - [sym__echomsg] = ACTIONS(991), - [sym__echoerr] = ACTIONS(991), - [sym__map] = ACTIONS(991), - [sym__nmap] = ACTIONS(991), - [sym__vmap] = ACTIONS(991), - [sym__xmap] = ACTIONS(991), - [sym__smap] = ACTIONS(991), - [sym__omap] = ACTIONS(991), - [sym__imap] = ACTIONS(991), - [sym__lmap] = ACTIONS(991), - [sym__cmap] = ACTIONS(991), - [sym__tmap] = ACTIONS(991), - [sym__noremap] = ACTIONS(991), - [sym__vnoremap] = ACTIONS(991), - [sym__nnoremap] = ACTIONS(991), - [sym__xnoremap] = ACTIONS(991), - [sym__snoremap] = ACTIONS(991), - [sym__onoremap] = ACTIONS(991), - [sym__inoremap] = ACTIONS(991), - [sym__lnoremap] = ACTIONS(991), - [sym__cnoremap] = ACTIONS(991), - [sym__tnoremap] = ACTIONS(991), - [sym__augroup] = ACTIONS(991), - [sym__highlight] = ACTIONS(991), - [sym__syntax] = ACTIONS(991), - [sym__set] = ACTIONS(991), - [sym__setlocal] = ACTIONS(991), - [sym__setfiletype] = ACTIONS(991), - [sym__browse] = ACTIONS(991), - [sym__options] = ACTIONS(991), - [sym__startinsert] = ACTIONS(991), - [sym__stopinsert] = ACTIONS(991), - [sym__scriptencoding] = ACTIONS(991), - [sym__source] = ACTIONS(991), - [sym__global] = ACTIONS(991), - [sym__colorscheme] = ACTIONS(991), - [sym__comclear] = ACTIONS(991), - [sym__delcommand] = ACTIONS(991), - [sym__runtime] = ACTIONS(991), - [sym__wincmd] = ACTIONS(991), - [sym__sign] = ACTIONS(991), - [sym__filetype] = ACTIONS(991), - [sym__let] = ACTIONS(991), - [sym__unlet] = ACTIONS(991), - [sym__call] = ACTIONS(991), - [sym__break] = ACTIONS(991), - [sym__continue] = ACTIONS(991), - [sym_unknown_command_name] = ACTIONS(991), + [sym_comment] = ACTIONS(294), + [sym__function] = ACTIONS(294), + [sym__for] = ACTIONS(294), + [sym__while] = ACTIONS(294), + [sym__endwhile] = ACTIONS(294), + [sym__if] = ACTIONS(294), + [sym__try] = ACTIONS(294), + [sym__const] = ACTIONS(294), + [sym__normal] = ACTIONS(294), + [sym__return] = ACTIONS(294), + [sym__perl] = ACTIONS(294), + [sym__lua] = ACTIONS(294), + [sym__ruby] = ACTIONS(294), + [sym__python] = ACTIONS(294), + [sym__throw] = ACTIONS(294), + [sym__execute] = ACTIONS(294), + [sym__autocmd] = ACTIONS(294), + [sym__silent] = ACTIONS(294), + [sym__echo] = ACTIONS(294), + [sym__echon] = ACTIONS(294), + [sym__echohl] = ACTIONS(294), + [sym__echomsg] = ACTIONS(294), + [sym__echoerr] = ACTIONS(294), + [sym__map] = ACTIONS(294), + [sym__nmap] = ACTIONS(294), + [sym__vmap] = ACTIONS(294), + [sym__xmap] = ACTIONS(294), + [sym__smap] = ACTIONS(294), + [sym__omap] = ACTIONS(294), + [sym__imap] = ACTIONS(294), + [sym__lmap] = ACTIONS(294), + [sym__cmap] = ACTIONS(294), + [sym__tmap] = ACTIONS(294), + [sym__noremap] = ACTIONS(294), + [sym__vnoremap] = ACTIONS(294), + [sym__nnoremap] = ACTIONS(294), + [sym__xnoremap] = ACTIONS(294), + [sym__snoremap] = ACTIONS(294), + [sym__onoremap] = ACTIONS(294), + [sym__inoremap] = ACTIONS(294), + [sym__lnoremap] = ACTIONS(294), + [sym__cnoremap] = ACTIONS(294), + [sym__tnoremap] = ACTIONS(294), + [sym__augroup] = ACTIONS(294), + [sym__highlight] = ACTIONS(294), + [sym__syntax] = ACTIONS(294), + [sym__set] = ACTIONS(294), + [sym__setlocal] = ACTIONS(294), + [sym__setfiletype] = ACTIONS(294), + [sym__browse] = ACTIONS(294), + [sym__options] = ACTIONS(294), + [sym__startinsert] = ACTIONS(294), + [sym__stopinsert] = ACTIONS(294), + [sym__scriptencoding] = ACTIONS(294), + [sym__source] = ACTIONS(294), + [sym__global] = ACTIONS(294), + [sym__colorscheme] = ACTIONS(294), + [sym__comclear] = ACTIONS(294), + [sym__delcommand] = ACTIONS(294), + [sym__runtime] = ACTIONS(294), + [sym__wincmd] = ACTIONS(294), + [sym__sign] = ACTIONS(294), + [sym__filetype] = ACTIONS(294), + [sym__let] = ACTIONS(294), + [sym__unlet] = ACTIONS(294), + [sym__call] = ACTIONS(294), + [sym__break] = ACTIONS(294), + [sym__continue] = ACTIONS(294), + [sym_unknown_command_name] = ACTIONS(294), }, [263] = { [aux_sym__statement_repeat1] = STATE(263), @@ -59916,9 +59169,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unknown_command_name] = ACTIONS(1007), }, [264] = { - [sym__keycode_in] = STATE(3186), - [sym__immediate_keycode] = STATE(1170), - [aux_sym__map_lhs_repeat1] = STATE(1115), + [sym__keycode_in] = STATE(3283), + [sym__immediate_keycode] = STATE(1173), + [aux_sym__map_lhs_repeat1] = STATE(1129), [anon_sym_a_COLON] = ACTIONS(1011), [aux_sym__bang_filter_command_argument_token3] = ACTIONS(1013), [anon_sym_LBRACE] = ACTIONS(1011), @@ -59977,7 +59230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(1011), [sym_float_literal] = ACTIONS(1011), [sym_integer_literal] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1011), + [anon_sym_LBRACK2] = ACTIONS(1011), [sym_register] = ACTIONS(1011), [anon_sym_POUND_LBRACE] = ACTIONS(1011), [sym__line_continuation] = ACTIONS(3), @@ -59986,7 +59239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = ACTIONS(1011), }, [265] = { - [sym__keycode_in] = STATE(3209), + [sym__keycode_in] = STATE(3261), [anon_sym_a_COLON] = ACTIONS(1027), [aux_sym__bang_filter_command_argument_token3] = ACTIONS(1029), [anon_sym_LBRACE] = ACTIONS(1027), @@ -60045,7 +59298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(1027), [sym_float_literal] = ACTIONS(1027), [sym_integer_literal] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_LBRACK2] = ACTIONS(1027), [sym_register] = ACTIONS(1027), [anon_sym_POUND_LBRACE] = ACTIONS(1027), [sym__line_continuation] = ACTIONS(3), @@ -60059,7 +59312,7 @@ static const uint16_t ts_small_parse_table[] = { [0] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(2739), 1, + STATE(2904), 1, sym_encoding, ACTIONS(1039), 2, anon_sym_BSLASH_PIPE, @@ -60127,7 +59380,7 @@ static const uint16_t ts_small_parse_table[] = { [73] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(2850), 1, + STATE(2655), 1, sym_encoding, ACTIONS(1039), 2, sym__newline_or_pipe, @@ -60203,11 +59456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(1053), 1, anon_sym_BSLASH2, - STATE(1717), 1, + STATE(1728), 1, aux_sym__map_lhs_repeat1, - STATE(1905), 1, + STATE(1933), 1, sym__immediate_keycode, - STATE(3103), 1, + STATE(3115), 1, sym__keycode_in, ACTIONS(1011), 2, anon_sym_COLON, @@ -60266,7 +59519,7 @@ static const uint16_t ts_small_parse_table[] = { sym__line_continuation, ACTIONS(1017), 1, sym__keycode_modifier, - STATE(3090), 1, + STATE(2990), 1, sym__keycode_in, ACTIONS(1027), 3, anon_sym_COLON, @@ -60323,96 +59576,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [296] = 11, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1017), 1, - sym__keycode_modifier, - ACTIONS(1063), 1, - anon_sym_LT, - ACTIONS(1065), 1, - anon_sym_BSLASH2, - ACTIONS(1067), 1, - aux_sym__map_rhs_token2, - STATE(1994), 1, - aux_sym__map_rhs_repeat1, - STATE(2165), 1, - sym__immediate_keycode, - STATE(3163), 1, - sym__keycode_in, - ACTIONS(1069), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1061), 3, - aux_sym__keycode_in_token2, - aux_sym__keycode_in_token20, - aux_sym__keycode_in_token21, - ACTIONS(1059), 40, - aux_sym__keycode_in_token1, - aux_sym__keycode_in_token3, - aux_sym__keycode_in_token4, - aux_sym__keycode_in_token5, - aux_sym__keycode_in_token6, - aux_sym__keycode_in_token7, - aux_sym__keycode_in_token8, - aux_sym__keycode_in_token9, - aux_sym__keycode_in_token10, - aux_sym__keycode_in_token11, - aux_sym__keycode_in_token12, - aux_sym__keycode_in_token13, - aux_sym__keycode_in_token14, - aux_sym__keycode_in_token15, - aux_sym__keycode_in_token16, - aux_sym__keycode_in_token17, - aux_sym__keycode_in_token18, - aux_sym__keycode_in_token19, - aux_sym__keycode_in_token22, - aux_sym__keycode_in_token23, - aux_sym__keycode_in_token24, - aux_sym__keycode_in_token25, - aux_sym__keycode_in_token26, - aux_sym__keycode_in_token27, - aux_sym__keycode_in_token28, - aux_sym__keycode_in_token29, - aux_sym__keycode_in_token30, - aux_sym__keycode_in_token31, - aux_sym__keycode_in_token32, - aux_sym__keycode_in_token33, - aux_sym__keycode_in_token34, - aux_sym__keycode_in_token35, - aux_sym__keycode_in_token36, - aux_sym__keycode_in_token37, - aux_sym__keycode_in_token38, - aux_sym__keycode_in_token39, - aux_sym__keycode_in_token40, - aux_sym__keycode_in_token41, - aux_sym__keycode_in_token42, - aux_sym__keycode_in_token43, - [372] = 11, + [296] = 11, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1017), 1, sym__keycode_modifier, - ACTIONS(1075), 1, + ACTIONS(1063), 1, anon_sym_LT, - ACTIONS(1077), 1, + ACTIONS(1065), 1, anon_sym_BSLASH2, - ACTIONS(1079), 1, + ACTIONS(1067), 1, aux_sym__map_rhs_token2, - STATE(1929), 1, + STATE(1983), 1, aux_sym__map_rhs_repeat1, - STATE(2144), 1, + STATE(2247), 1, sym__immediate_keycode, - STATE(3082), 1, + STATE(3077), 1, sym__keycode_in, - ACTIONS(1081), 2, + ACTIONS(1069), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(1073), 3, + ACTIONS(1061), 3, aux_sym__keycode_in_token2, aux_sym__keycode_in_token20, aux_sym__keycode_in_token21, - ACTIONS(1071), 40, + ACTIONS(1059), 40, aux_sym__keycode_in_token1, aux_sym__keycode_in_token3, aux_sym__keycode_in_token4, @@ -60453,30 +59641,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [448] = 11, + [372] = 11, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1017), 1, sym__keycode_modifier, - ACTIONS(1081), 1, - aux_sym__map_rhs_token4, - ACTIONS(1087), 1, + ACTIONS(1075), 1, anon_sym_LT, - ACTIONS(1089), 1, + ACTIONS(1077), 1, anon_sym_BSLASH2, - ACTIONS(1091), 1, + ACTIONS(1079), 1, aux_sym__map_rhs_token2, - STATE(2061), 1, + STATE(1988), 1, aux_sym__map_rhs_repeat1, - STATE(2307), 1, + STATE(2242), 1, sym__immediate_keycode, - STATE(2990), 1, + STATE(3175), 1, sym__keycode_in, - ACTIONS(1085), 3, + ACTIONS(1081), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1073), 3, aux_sym__keycode_in_token2, aux_sym__keycode_in_token20, aux_sym__keycode_in_token21, - ACTIONS(1083), 40, + ACTIONS(1071), 40, aux_sym__keycode_in_token1, aux_sym__keycode_in_token3, aux_sym__keycode_in_token4, @@ -60517,24 +59706,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [523] = 6, + [448] = 11, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1017), 1, sym__keycode_modifier, - STATE(2976), 1, + ACTIONS(1069), 1, + aux_sym__map_rhs_token4, + ACTIONS(1087), 1, + anon_sym_LT, + ACTIONS(1089), 1, + anon_sym_BSLASH2, + ACTIONS(1091), 1, + aux_sym__map_rhs_token2, + STATE(2138), 1, + aux_sym__map_rhs_repeat1, + STATE(2363), 1, + sym__immediate_keycode, + STATE(3012), 1, sym__keycode_in, - ACTIONS(1095), 3, + ACTIONS(1085), 3, aux_sym__keycode_in_token2, aux_sym__keycode_in_token20, aux_sym__keycode_in_token21, - ACTIONS(1097), 5, - anon_sym_LT, - anon_sym_BSLASH2, - aux_sym__map_rhs_token2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1093), 40, + ACTIONS(1083), 40, aux_sym__keycode_in_token1, aux_sym__keycode_in_token3, aux_sym__keycode_in_token4, @@ -60575,25 +59770,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [587] = 7, + [523] = 6, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1017), 1, sym__keycode_modifier, - ACTIONS(1097), 1, - aux_sym__map_rhs_token2, - STATE(3139), 1, + STATE(2997), 1, sym__keycode_in, - ACTIONS(1101), 3, + ACTIONS(1095), 3, aux_sym__keycode_in_token2, aux_sym__keycode_in_token20, aux_sym__keycode_in_token21, - ACTIONS(1103), 4, - sym__newline_or_pipe, - sym_comment, + ACTIONS(1097), 5, anon_sym_LT, anon_sym_BSLASH2, - ACTIONS(1099), 40, + aux_sym__map_rhs_token2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1093), 40, aux_sym__keycode_in_token1, aux_sym__keycode_in_token3, aux_sym__keycode_in_token4, @@ -60634,24 +59828,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [653] = 7, + [587] = 7, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1017), 1, sym__keycode_modifier, - ACTIONS(1103), 1, - anon_sym_BSLASH2, - STATE(2920), 1, - sym__keycode_in, - ACTIONS(1097), 3, - anon_sym_LT, + ACTIONS(1097), 1, aux_sym__map_rhs_token2, - aux_sym__map_rhs_token4, - ACTIONS(1107), 3, + STATE(3156), 1, + sym__keycode_in, + ACTIONS(1101), 3, aux_sym__keycode_in_token2, aux_sym__keycode_in_token20, aux_sym__keycode_in_token21, - ACTIONS(1105), 40, + ACTIONS(1103), 4, + sym__newline_or_pipe, + sym_comment, + anon_sym_LT, + anon_sym_BSLASH2, + ACTIONS(1099), 40, aux_sym__keycode_in_token1, aux_sym__keycode_in_token3, aux_sym__keycode_in_token4, @@ -60692,60 +59887,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [718] = 23, + [653] = 23, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1109), 1, + ACTIONS(1105), 1, anon_sym_a_COLON, - ACTIONS(1111), 1, + ACTIONS(1107), 1, anon_sym_BSLASH, - ACTIONS(1113), 1, + ACTIONS(1109), 1, anon_sym_LBRACE, - ACTIONS(1115), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1117), 1, + ACTIONS(1113), 1, anon_sym_AMP, - ACTIONS(1119), 1, + ACTIONS(1115), 1, anon_sym_LPAREN, - ACTIONS(1123), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR, - ACTIONS(1127), 1, - anon_sym_LBRACK, - ACTIONS(1129), 1, + ACTIONS(1123), 1, + anon_sym_LBRACK2, + ACTIONS(1125), 1, aux_sym__pattern_ordinary_atom_token2, - ACTIONS(1133), 1, + ACTIONS(1129), 1, anon_sym_POUND_LBRACE, - ACTIONS(1135), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1137), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1139), 1, + ACTIONS(1135), 1, sym_string_literal, - STATE(147), 1, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(1632), 1, + STATE(1695), 1, sym__pattern_branch, - STATE(1776), 1, + STATE(1804), 1, sym_pattern, - STATE(1117), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1118), 2, + STATE(1114), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(1121), 3, + STATE(1115), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(1117), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(1125), 3, + ACTIONS(1121), 3, sym_float_literal, sym_integer_literal, sym_register, - ACTIONS(1131), 3, + ACTIONS(1127), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - STATE(196), 20, + STATE(993), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -60766,6 +59961,64 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, + [750] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1017), 1, + sym__keycode_modifier, + ACTIONS(1103), 1, + anon_sym_BSLASH2, + STATE(2971), 1, + sym__keycode_in, + ACTIONS(1097), 3, + anon_sym_LT, + aux_sym__map_rhs_token2, + aux_sym__map_rhs_token4, + ACTIONS(1139), 3, + aux_sym__keycode_in_token2, + aux_sym__keycode_in_token20, + aux_sym__keycode_in_token21, + ACTIONS(1137), 40, + aux_sym__keycode_in_token1, + aux_sym__keycode_in_token3, + aux_sym__keycode_in_token4, + aux_sym__keycode_in_token5, + aux_sym__keycode_in_token6, + aux_sym__keycode_in_token7, + aux_sym__keycode_in_token8, + aux_sym__keycode_in_token9, + aux_sym__keycode_in_token10, + aux_sym__keycode_in_token11, + aux_sym__keycode_in_token12, + aux_sym__keycode_in_token13, + aux_sym__keycode_in_token14, + aux_sym__keycode_in_token15, + aux_sym__keycode_in_token16, + aux_sym__keycode_in_token17, + aux_sym__keycode_in_token18, + aux_sym__keycode_in_token19, + aux_sym__keycode_in_token22, + aux_sym__keycode_in_token23, + aux_sym__keycode_in_token24, + aux_sym__keycode_in_token25, + aux_sym__keycode_in_token26, + aux_sym__keycode_in_token27, + aux_sym__keycode_in_token28, + aux_sym__keycode_in_token29, + aux_sym__keycode_in_token30, + aux_sym__keycode_in_token31, + aux_sym__keycode_in_token32, + aux_sym__keycode_in_token33, + aux_sym__keycode_in_token34, + aux_sym__keycode_in_token35, + aux_sym__keycode_in_token36, + aux_sym__keycode_in_token37, + aux_sym__keycode_in_token38, + aux_sym__keycode_in_token39, + aux_sym__keycode_in_token40, + aux_sym__keycode_in_token41, + aux_sym__keycode_in_token42, + aux_sym__keycode_in_token43, [815] = 23, ACTIONS(3), 1, sym__line_continuation, @@ -60784,7 +60037,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1155), 1, anon_sym_DOLLAR, ACTIONS(1159), 1, - anon_sym_LBRACK, + anon_sym_LBRACK2, ACTIONS(1161), 1, aux_sym__pattern_ordinary_atom_token2, ACTIONS(1165), 1, @@ -60795,18 +60048,18 @@ static const uint16_t ts_small_parse_table[] = { sym_scope, ACTIONS(1171), 1, sym_string_literal, - STATE(683), 1, + STATE(145), 1, sym__curly_braces_name_expression, - STATE(1650), 1, + STATE(1674), 1, sym__pattern_branch, - STATE(1774), 1, + STATE(1805), 1, sym_pattern, - STATE(1113), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1119), 2, + STATE(1124), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, + STATE(1125), 2, + sym__pattern_piece, + aux_sym__pattern_concat, ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, @@ -60819,7 +60072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - STATE(991), 20, + STATE(162), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -60843,57 +60096,57 @@ static const uint16_t ts_small_parse_table[] = { [912] = 23, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1111), 1, - anon_sym_BSLASH, - ACTIONS(1129), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(1173), 1, + ACTIONS(1105), 1, anon_sym_a_COLON, - ACTIONS(1175), 1, + ACTIONS(1107), 1, + anon_sym_BSLASH, + ACTIONS(1109), 1, anon_sym_LBRACE, - ACTIONS(1177), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1179), 1, + ACTIONS(1113), 1, anon_sym_AMP, - ACTIONS(1181), 1, + ACTIONS(1115), 1, anon_sym_LPAREN, - ACTIONS(1185), 1, + ACTIONS(1119), 1, anon_sym_DOLLAR, - ACTIONS(1189), 1, - anon_sym_LBRACK, - ACTIONS(1191), 1, + ACTIONS(1123), 1, + anon_sym_LBRACK2, + ACTIONS(1125), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(1129), 1, anon_sym_POUND_LBRACE, - ACTIONS(1193), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1195), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1197), 1, + ACTIONS(1175), 1, sym_string_literal, - STATE(148), 1, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(1632), 1, + STATE(1695), 1, sym__pattern_branch, - STATE(1776), 1, + STATE(1804), 1, sym_pattern, - STATE(1117), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1118), 2, + STATE(1114), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(1131), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(1183), 3, + STATE(1115), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(1117), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(1187), 3, + ACTIONS(1127), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(1173), 3, sym_float_literal, sym_integer_literal, sym_register, - STATE(217), 20, + STATE(985), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -60917,57 +60170,57 @@ static const uint16_t ts_small_parse_table[] = { [1009] = 23, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1141), 1, - anon_sym_a_COLON, ACTIONS(1143), 1, anon_sym_BSLASH, - ACTIONS(1145), 1, + ACTIONS(1161), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(1177), 1, + anon_sym_a_COLON, + ACTIONS(1179), 1, anon_sym_LBRACE, - ACTIONS(1147), 1, + ACTIONS(1181), 1, aux_sym_identifier_token1, - ACTIONS(1149), 1, + ACTIONS(1183), 1, anon_sym_AMP, - ACTIONS(1151), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1155), 1, + ACTIONS(1189), 1, anon_sym_DOLLAR, - ACTIONS(1159), 1, - anon_sym_LBRACK, - ACTIONS(1161), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(1165), 1, + ACTIONS(1193), 1, + anon_sym_LBRACK2, + ACTIONS(1195), 1, anon_sym_POUND_LBRACE, - ACTIONS(1167), 1, + ACTIONS(1197), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1199), 1, sym_scope, ACTIONS(1201), 1, sym_string_literal, - STATE(683), 1, + STATE(148), 1, sym__curly_braces_name_expression, - STATE(1650), 1, + STATE(1674), 1, sym__pattern_branch, - STATE(1774), 1, + STATE(1805), 1, sym_pattern, - STATE(1113), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1119), 2, + STATE(1124), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(1153), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + STATE(1125), 2, + sym__pattern_piece, + aux_sym__pattern_concat, ACTIONS(1163), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(1199), 3, + ACTIONS(1187), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(1191), 3, sym_float_literal, sym_integer_literal, sym_register, - STATE(1004), 20, + STATE(241), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -60988,95 +60241,42 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1106] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1017), 1, - sym__keycode_modifier, - STATE(3089), 1, - sym__keycode_in, - ACTIONS(1203), 4, - aux_sym__bang_filter_command_argument_token3, - aux_sym__keycode_in_token2, - aux_sym__keycode_in_token20, - aux_sym__keycode_in_token21, - ACTIONS(1205), 40, - aux_sym__keycode_in_token1, - aux_sym__keycode_in_token3, - aux_sym__keycode_in_token4, - aux_sym__keycode_in_token5, - aux_sym__keycode_in_token6, - aux_sym__keycode_in_token7, - aux_sym__keycode_in_token8, - aux_sym__keycode_in_token9, - aux_sym__keycode_in_token10, - aux_sym__keycode_in_token11, - aux_sym__keycode_in_token12, - aux_sym__keycode_in_token13, - aux_sym__keycode_in_token14, - aux_sym__keycode_in_token15, - aux_sym__keycode_in_token16, - aux_sym__keycode_in_token17, - aux_sym__keycode_in_token18, - aux_sym__keycode_in_token19, - aux_sym__keycode_in_token22, - aux_sym__keycode_in_token23, - aux_sym__keycode_in_token24, - aux_sym__keycode_in_token25, - aux_sym__keycode_in_token26, - aux_sym__keycode_in_token27, - aux_sym__keycode_in_token28, - aux_sym__keycode_in_token29, - aux_sym__keycode_in_token30, - aux_sym__keycode_in_token31, - aux_sym__keycode_in_token32, - aux_sym__keycode_in_token33, - aux_sym__keycode_in_token34, - aux_sym__keycode_in_token35, - aux_sym__keycode_in_token36, - aux_sym__keycode_in_token37, - aux_sym__keycode_in_token38, - aux_sym__keycode_in_token39, - aux_sym__keycode_in_token40, - aux_sym__keycode_in_token41, - aux_sym__keycode_in_token42, - aux_sym__keycode_in_token43, - [1164] = 17, + [1106] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, + ACTIONS(1181), 1, aux_sym_identifier_token1, - ACTIONS(1135), 1, + ACTIONS(1197), 1, sym__scope_dict, - ACTIONS(1137), 1, + ACTIONS(1199), 1, sym_scope, - ACTIONS(1209), 1, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1211), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1215), 1, + ACTIONS(1211), 1, anon_sym_LPAREN, - ACTIONS(1217), 1, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1221), 1, + ACTIONS(1217), 1, sym_integer_literal, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, anon_sym_POUND_LBRACE, - STATE(147), 1, + STATE(148), 1, sym__curly_braces_name_expression, - ACTIONS(1121), 3, + ACTIONS(1187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(1219), 3, + ACTIONS(1215), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(1207), 8, + ACTIONS(1203), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -61085,7 +60285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_bang, anon_sym_SEMI, - STATE(193), 20, + STATE(226), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -61106,42 +60306,42 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1246] = 17, + [1188] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, + ACTIONS(1181), 1, aux_sym_identifier_token1, - ACTIONS(1135), 1, + ACTIONS(1197), 1, sym__scope_dict, - ACTIONS(1137), 1, + ACTIONS(1199), 1, sym_scope, - ACTIONS(1209), 1, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1211), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1215), 1, + ACTIONS(1211), 1, anon_sym_LPAREN, - ACTIONS(1217), 1, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1221), 1, + ACTIONS(1217), 1, sym_integer_literal, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, anon_sym_POUND_LBRACE, - STATE(147), 1, + STATE(148), 1, sym__curly_braces_name_expression, - ACTIONS(1121), 3, + ACTIONS(1187), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(1219), 3, + ACTIONS(1215), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(1227), 8, + ACTIONS(1223), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -61150,7 +60350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_bang, anon_sym_SEMI, - STATE(193), 20, + STATE(226), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -61171,42 +60371,42 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1328] = 17, + [1270] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, + ACTIONS(1147), 1, aux_sym_identifier_token1, - ACTIONS(1193), 1, + ACTIONS(1167), 1, sym__scope_dict, - ACTIONS(1195), 1, + ACTIONS(1169), 1, sym_scope, - ACTIONS(1229), 1, + ACTIONS(1225), 1, anon_sym_a_COLON, - ACTIONS(1231), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1229), 1, anon_sym_AMP, - ACTIONS(1235), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1233), 1, anon_sym_DOLLAR, - ACTIONS(1241), 1, + ACTIONS(1237), 1, sym_integer_literal, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, anon_sym_POUND_LBRACE, - STATE(148), 1, + STATE(145), 1, sym__curly_braces_name_expression, - ACTIONS(1183), 3, + ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(1239), 3, + ACTIONS(1235), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(1227), 8, + ACTIONS(1203), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -61215,7 +60415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_bang, anon_sym_SEMI, - STATE(218), 20, + STATE(158), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -61236,42 +60436,42 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [1410] = 17, + [1352] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, + ACTIONS(1147), 1, aux_sym_identifier_token1, - ACTIONS(1193), 1, + ACTIONS(1167), 1, sym__scope_dict, - ACTIONS(1195), 1, + ACTIONS(1169), 1, sym_scope, - ACTIONS(1229), 1, + ACTIONS(1225), 1, anon_sym_a_COLON, - ACTIONS(1231), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1229), 1, anon_sym_AMP, - ACTIONS(1235), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1233), 1, anon_sym_DOLLAR, - ACTIONS(1241), 1, + ACTIONS(1237), 1, sym_integer_literal, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, anon_sym_POUND_LBRACE, - STATE(148), 1, + STATE(145), 1, sym__curly_braces_name_expression, - ACTIONS(1183), 3, + ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(1239), 3, + ACTIONS(1235), 3, sym_string_literal, sym_float_literal, sym_register, - ACTIONS(1207), 8, + ACTIONS(1223), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -61280,7 +60480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_bang, anon_sym_SEMI, - STATE(218), 20, + STATE(158), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -61301,12 +60501,65 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, + [1434] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1017), 1, + sym__keycode_modifier, + STATE(2994), 1, + sym__keycode_in, + ACTIONS(1243), 4, + aux_sym__bang_filter_command_argument_token3, + aux_sym__keycode_in_token2, + aux_sym__keycode_in_token20, + aux_sym__keycode_in_token21, + ACTIONS(1245), 40, + aux_sym__keycode_in_token1, + aux_sym__keycode_in_token3, + aux_sym__keycode_in_token4, + aux_sym__keycode_in_token5, + aux_sym__keycode_in_token6, + aux_sym__keycode_in_token7, + aux_sym__keycode_in_token8, + aux_sym__keycode_in_token9, + aux_sym__keycode_in_token10, + aux_sym__keycode_in_token11, + aux_sym__keycode_in_token12, + aux_sym__keycode_in_token13, + aux_sym__keycode_in_token14, + aux_sym__keycode_in_token15, + aux_sym__keycode_in_token16, + aux_sym__keycode_in_token17, + aux_sym__keycode_in_token18, + aux_sym__keycode_in_token19, + aux_sym__keycode_in_token22, + aux_sym__keycode_in_token23, + aux_sym__keycode_in_token24, + aux_sym__keycode_in_token25, + aux_sym__keycode_in_token26, + aux_sym__keycode_in_token27, + aux_sym__keycode_in_token28, + aux_sym__keycode_in_token29, + aux_sym__keycode_in_token30, + aux_sym__keycode_in_token31, + aux_sym__keycode_in_token32, + aux_sym__keycode_in_token33, + aux_sym__keycode_in_token34, + aux_sym__keycode_in_token35, + aux_sym__keycode_in_token36, + aux_sym__keycode_in_token37, + aux_sym__keycode_in_token38, + aux_sym__keycode_in_token39, + aux_sym__keycode_in_token40, + aux_sym__keycode_in_token41, + aux_sym__keycode_in_token42, + aux_sym__keycode_in_token43, [1492] = 5, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1017), 1, sym__keycode_modifier, - STATE(3048), 1, + STATE(2965), 1, sym__keycode_in, ACTIONS(1249), 3, aux_sym__keycode_in_token2, @@ -61358,7 +60611,7 @@ static const uint16_t ts_small_parse_table[] = { sym__line_continuation, ACTIONS(1017), 1, sym__keycode_modifier, - STATE(2951), 1, + STATE(3064), 1, sym__keycode_in, ACTIONS(1253), 3, aux_sym__keycode_in_token2, @@ -61410,7 +60663,7 @@ static const uint16_t ts_small_parse_table[] = { sym__line_continuation, ACTIONS(1017), 1, sym__keycode_modifier, - STATE(2912), 1, + STATE(3002), 1, sym__keycode_in, ACTIONS(1257), 3, aux_sym__keycode_in_token2, @@ -61457,454 +60710,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__keycode_in_token41, aux_sym__keycode_in_token42, aux_sym__keycode_in_token43, - [1663] = 17, + [1663] = 26, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, - aux_sym_identifier_token1, - ACTIONS(1125), 1, - sym_integer_literal, - ACTIONS(1135), 1, - sym__scope_dict, - ACTIONS(1137), 1, - sym_scope, - ACTIONS(1209), 1, + ACTIONS(1259), 1, anon_sym_a_COLON, - ACTIONS(1211), 1, - anon_sym_LBRACE, - ACTIONS(1213), 1, - anon_sym_AMP, - ACTIONS(1215), 1, - anon_sym_LPAREN, - ACTIONS(1217), 1, - anon_sym_DOLLAR, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - STATE(147), 1, - sym__curly_braces_name_expression, - ACTIONS(1121), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(1139), 3, - sym_string_literal, - sym_float_literal, - sym_register, - ACTIONS(1259), 6, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, - STATE(196), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [1743] = 26, - ACTIONS(3), 1, - sym__line_continuation, ACTIONS(1261), 1, - anon_sym_a_COLON, - ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1263), 1, aux_sym_identifier_token1, - ACTIONS(1267), 1, + ACTIONS(1265), 1, anon_sym_AMP, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1271), 1, - anon_sym_DOLLAR, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1279), 1, - sym_integer_literal, - ACTIONS(1281), 1, - anon_sym_LBRACK, - ACTIONS(1283), 1, - sym_register, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1287), 1, - sym__scope_dict, - ACTIONS(1289), 1, - sym_scope, - STATE(346), 1, - sym__curly_braces_name_expression, - STATE(678), 1, - sym_identifier, - STATE(752), 1, - sym_scope_dict, - STATE(1698), 1, - sym_list_assignment, - STATE(2723), 1, - sym__let_assignment, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1273), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1277), 2, - sym_string_literal, - sym_float_literal, - STATE(686), 2, - sym_index_expression, - sym_field_expression, - STATE(1611), 2, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - STATE(693), 5, - sym_scoped_identifier, - sym_argument, - sym__ident, - sym_env_variable, - sym_option, - STATE(1092), 11, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_slice_expression, - sym_call_expression, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [1841] = 26, - ACTIONS(3), 1, - sym__line_continuation, ACTIONS(1267), 1, - anon_sym_AMP, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1271), 1, - anon_sym_DOLLAR, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1279), 1, - sym_integer_literal, - ACTIONS(1281), 1, - anon_sym_LBRACK, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1289), 1, - sym_scope, - ACTIONS(1291), 1, - anon_sym_a_COLON, - ACTIONS(1293), 1, - anon_sym_LBRACE, - ACTIONS(1295), 1, - aux_sym_identifier_token1, - ACTIONS(1297), 1, - sym_register, - ACTIONS(1299), 1, - sym__scope_dict, - STATE(313), 1, - sym__curly_braces_name_expression, - STATE(679), 1, - sym_identifier, - STATE(745), 1, - sym_scope_dict, - STATE(1734), 1, - sym_list_assignment, - STATE(2860), 1, - sym__let_assignment, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1273), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1277), 2, - sym_string_literal, - sym_float_literal, - STATE(691), 2, - sym_index_expression, - sym_field_expression, - STATE(1627), 2, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - STATE(692), 5, - sym_scoped_identifier, - sym_argument, - sym__ident, - sym_env_variable, - sym_option, - STATE(1092), 11, - sym__variable, - sym__expression, - sym_ternary_expression, - sym_binary_operation, - sym_unary_operation, - sym_list, - sym_slice_expression, - sym_call_expression, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [1939] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1177), 1, - aux_sym_identifier_token1, - ACTIONS(1187), 1, - sym_integer_literal, - ACTIONS(1193), 1, - sym__scope_dict, - ACTIONS(1195), 1, - sym_scope, - ACTIONS(1229), 1, - anon_sym_a_COLON, - ACTIONS(1231), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_AMP, - ACTIONS(1235), 1, - anon_sym_LPAREN, - ACTIONS(1237), 1, - anon_sym_DOLLAR, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - anon_sym_POUND_LBRACE, - STATE(148), 1, - sym__curly_braces_name_expression, - ACTIONS(1183), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - ACTIONS(1197), 3, - sym_string_literal, - sym_float_literal, - sym_register, - ACTIONS(1259), 6, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, - STATE(217), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [2019] = 21, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1141), 1, - anon_sym_a_COLON, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1149), 1, - anon_sym_AMP, - ACTIONS(1151), 1, anon_sym_LPAREN, - ACTIONS(1155), 1, + ACTIONS(1269), 1, anon_sym_DOLLAR, - ACTIONS(1165), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1301), 1, - anon_sym_COMMA, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(1307), 1, - anon_sym_LBRACK, - ACTIONS(1309), 1, - anon_sym_RBRACK, - ACTIONS(1311), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(1313), 1, - sym_string_literal, - STATE(683), 1, - sym__curly_braces_name_expression, - STATE(2300), 1, - aux_sym__pattern_ordinary_atom_repeat1, - ACTIONS(1153), 3, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1305), 3, - sym_float_literal, + ACTIONS(1275), 1, sym_integer_literal, + ACTIONS(1277), 1, + anon_sym_LBRACK2, + ACTIONS(1279), 1, sym_register, - STATE(824), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [2106] = 21, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1141), 1, - anon_sym_a_COLON, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1149), 1, - anon_sym_AMP, - ACTIONS(1151), 1, - anon_sym_LPAREN, - ACTIONS(1155), 1, - anon_sym_DOLLAR, - ACTIONS(1165), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(1307), 1, - anon_sym_LBRACK, - ACTIONS(1315), 1, - anon_sym_COMMA, - ACTIONS(1319), 1, - anon_sym_RBRACK, - ACTIONS(1321), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(1323), 1, - sym_string_literal, - STATE(683), 1, + ACTIONS(1285), 1, + sym__scope_dict, + ACTIONS(1287), 1, + sym_scope, + STATE(323), 1, sym__curly_braces_name_expression, - STATE(2259), 1, - aux_sym__pattern_ordinary_atom_repeat1, - ACTIONS(1153), 3, + STATE(679), 1, + sym_identifier, + STATE(723), 1, + sym_scope_dict, + STATE(1706), 1, + sym_list_assignment, + STATE(2700), 1, + sym__let_assignment, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - ACTIONS(1317), 3, + ACTIONS(1273), 2, + sym_string_literal, sym_float_literal, - sym_integer_literal, - sym_register, - STATE(813), 20, - sym_scope_dict, + ACTIONS(1283), 2, + sym__newline_or_pipe, + sym_comment, + STATE(690), 2, + sym_index_expression, + sym_field_expression, + STATE(1694), 2, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + STATE(688), 5, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, + sym_env_variable, + sym_option, + STATE(1085), 11, 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_env_variable, - sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2193] = 21, + [1761] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1141), 1, - anon_sym_a_COLON, - ACTIONS(1145), 1, - anon_sym_LBRACE, ACTIONS(1147), 1, aux_sym_identifier_token1, - ACTIONS(1149), 1, - anon_sym_AMP, - ACTIONS(1151), 1, - anon_sym_LPAREN, - ACTIONS(1155), 1, - anon_sym_DOLLAR, - ACTIONS(1165), 1, - anon_sym_POUND_LBRACE, + ACTIONS(1157), 1, + sym_integer_literal, ACTIONS(1167), 1, sym__scope_dict, ACTIONS(1169), 1, sym_scope, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(1307), 1, - anon_sym_LBRACK, - ACTIONS(1321), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(1325), 1, - anon_sym_COMMA, - ACTIONS(1329), 1, - anon_sym_RBRACK, - ACTIONS(1331), 1, - sym_string_literal, - STATE(683), 1, + ACTIONS(1225), 1, + anon_sym_a_COLON, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(1229), 1, + anon_sym_AMP, + ACTIONS(1231), 1, + anon_sym_LPAREN, + ACTIONS(1233), 1, + anon_sym_DOLLAR, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, + anon_sym_POUND_LBRACE, + STATE(145), 1, sym__curly_braces_name_expression, - STATE(2259), 1, - aux_sym__pattern_ordinary_atom_repeat1, ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(1327), 3, + ACTIONS(1171), 3, + sym_string_literal, sym_float_literal, - sym_integer_literal, sym_register, - STATE(809), 20, + ACTIONS(1289), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, + STATE(162), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -61925,255 +60845,53 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2280] = 6, + [1841] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1333), 1, - anon_sym_LBRACE2, - ACTIONS(1335), 1, - aux_sym_identifier_token2, - STATE(298), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(787), 13, - anon_sym_DOT, - anon_sym_LBRACE, + ACTIONS(1181), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, + ACTIONS(1191), 1, sym_integer_literal, - ACTIONS(785), 25, + ACTIONS(1197), 1, sym__scope_dict, + ACTIONS(1199), 1, sym_scope, - sym_string_literal, + ACTIONS(1205), 1, anon_sym_a_COLON, - anon_sym_QMARK, + ACTIONS(1207), 1, + anon_sym_LBRACE, + ACTIONS(1209), 1, + anon_sym_AMP, + ACTIONS(1211), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1213), 1, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - sym_register, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, anon_sym_POUND_LBRACE, - [2336] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1333), 1, - anon_sym_LBRACE2, - ACTIONS(1337), 1, - aux_sym_identifier_token2, - STATE(295), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(805), 13, - anon_sym_DOT, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, + STATE(148), 1, + sym__curly_braces_name_expression, + ACTIONS(1187), 3, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, anon_sym_BANG, - sym_integer_literal, - ACTIONS(803), 25, - sym__scope_dict, - sym_scope, + ACTIONS(1201), 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_token4, - 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, sym_register, - anon_sym_POUND_LBRACE, - [2392] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(771), 3, - anon_sym_COLON, - anon_sym_STAR2, - anon_sym_LBRACK, - ACTIONS(778), 5, + ACTIONS(1289), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, - anon_sym_QMARK2, - ACTIONS(776), 13, - anon_sym_COMMA, - anon_sym_BSLASH, + anon_sym_COLON, sym_bang, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - 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, - ACTIONS(774), 21, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_is, - anon_sym_isnot, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [2446] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1339), 1, - anon_sym_LBRACE2, - ACTIONS(1342), 1, - aux_sym_identifier_token2, - STATE(298), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(795), 13, - anon_sym_DOT, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(793), 25, - sym__scope_dict, - sym_scope, - 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_token4, - 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, - sym_register, - anon_sym_POUND_LBRACE, - [2502] = 22, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, - anon_sym_a_COLON, - ACTIONS(1347), 1, - anon_sym_COMMA, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1351), 1, - anon_sym_RBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1359), 1, - sym_integer_literal, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1363), 1, - anon_sym_DASH_GT, - STATE(683), 1, - sym__curly_braces_name_expression, - STATE(772), 1, - sym_identifier, - STATE(2464), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1357), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(878), 19, + STATE(241), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, @@ -62190,172 +60908,128 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2590] = 22, + [1921] = 26, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, + ACTIONS(1265), 1, + anon_sym_AMP, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1269), 1, + anon_sym_DOLLAR, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1275), 1, + sym_integer_literal, + ACTIONS(1277), 1, + anon_sym_LBRACK2, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1287), 1, + sym_scope, + ACTIONS(1291), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1293), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1365), 1, - anon_sym_COMMA, - ACTIONS(1367), 1, - anon_sym_RBRACE, - ACTIONS(1371), 1, - sym_integer_literal, - ACTIONS(1373), 1, - anon_sym_DASH_GT, - STATE(683), 1, + ACTIONS(1295), 1, + aux_sym_identifier_token1, + ACTIONS(1297), 1, + sym_register, + ACTIONS(1299), 1, + sym__scope_dict, + STATE(346), 1, sym__curly_braces_name_expression, - STATE(777), 1, + STATE(678), 1, sym_identifier, - STATE(2437), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + STATE(769), 1, + sym_scope_dict, + STATE(1717), 1, + sym_list_assignment, + STATE(2781), 1, + sym__let_assignment, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1369), 3, + ACTIONS(1273), 2, sym_string_literal, sym_float_literal, - sym_register, - STATE(857), 19, - sym_scope_dict, + ACTIONS(1283), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(693), 2, + sym_index_expression, + sym_field_expression, + STATE(1672), 2, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + STATE(689), 5, sym_scoped_identifier, sym_argument, sym__ident, + sym_env_variable, + sym_option, + STATE(1085), 11, 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_env_variable, - sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2678] = 6, + [2019] = 21, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1375), 1, - anon_sym_LBRACE2, - ACTIONS(1377), 1, - aux_sym_identifier_token2, - STATE(306), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(805), 13, - anon_sym_DOT, + ACTIONS(1105), 1, + anon_sym_a_COLON, + ACTIONS(1109), 1, anon_sym_LBRACE, + ACTIONS(1111), 1, aux_sym_identifier_token1, + ACTIONS(1113), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(803), 25, - sym__newline_or_pipe, - sym__scope_dict, - sym_scope, - sym_string_literal, - sym_comment, - anon_sym_a_COLON, - anon_sym_QMARK, + ACTIONS(1115), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1119), 1, 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, - sym_register, + ACTIONS(1129), 1, anon_sym_POUND_LBRACE, - [2734] = 22, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, - anon_sym_a_COLON, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1379), 1, + ACTIONS(1301), 1, anon_sym_COMMA, - ACTIONS(1381), 1, - anon_sym_RBRACE, - ACTIONS(1385), 1, - sym_integer_literal, - ACTIONS(1387), 1, - anon_sym_DASH_GT, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(1307), 1, + anon_sym_LBRACK2, + ACTIONS(1309), 1, + anon_sym_RBRACK2, + ACTIONS(1311), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(1313), 1, + sym_string_literal, STATE(683), 1, sym__curly_braces_name_expression, - STATE(782), 1, - sym_identifier, - STATE(2369), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + STATE(2364), 1, + aux_sym__pattern_ordinary_atom_repeat1, + ACTIONS(1117), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 3, - sym_string_literal, + anon_sym_BANG, + ACTIONS(1305), 3, sym_float_literal, + sym_integer_literal, sym_register, - STATE(901), 19, + STATE(822), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, @@ -62372,56 +61046,56 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2822] = 22, + [2106] = 21, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1105), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1109), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1113), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1379), 1, - anon_sym_COMMA, - ACTIONS(1381), 1, - anon_sym_RBRACE, - ACTIONS(1387), 1, - anon_sym_DASH_GT, - ACTIONS(1391), 1, - sym_integer_literal, + ACTIONS(1129), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(1307), 1, + anon_sym_LBRACK2, + ACTIONS(1315), 1, + anon_sym_COMMA, + ACTIONS(1319), 1, + anon_sym_RBRACK2, + ACTIONS(1321), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(1323), 1, + sym_string_literal, STATE(683), 1, sym__curly_braces_name_expression, - STATE(782), 1, - sym_identifier, - STATE(2369), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + STATE(2354), 1, + aux_sym__pattern_ordinary_atom_repeat1, + ACTIONS(1117), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1389), 3, - sym_string_literal, + anon_sym_BANG, + ACTIONS(1317), 3, sym_float_literal, + sym_integer_literal, sym_register, - STATE(969), 19, + STATE(814), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, @@ -62438,56 +61112,56 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2910] = 22, + [2193] = 21, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1105), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1109), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1113), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1115), 1, + anon_sym_LPAREN, + ACTIONS(1119), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1129), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(1307), 1, + anon_sym_LBRACK2, + ACTIONS(1311), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(1325), 1, anon_sym_COMMA, - ACTIONS(1395), 1, - anon_sym_RBRACE, - ACTIONS(1399), 1, - sym_integer_literal, - ACTIONS(1401), 1, - anon_sym_DASH_GT, + ACTIONS(1329), 1, + anon_sym_RBRACK2, + ACTIONS(1331), 1, + sym_string_literal, STATE(683), 1, sym__curly_braces_name_expression, - STATE(780), 1, - sym_identifier, - STATE(2416), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + STATE(2364), 1, + aux_sym__pattern_ordinary_atom_repeat1, + ACTIONS(1117), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 3, - sym_string_literal, + anon_sym_BANG, + ACTIONS(1327), 3, sym_float_literal, + sym_integer_literal, sym_register, - STATE(849), 19, + STATE(807), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, + sym_identifier, sym__ident, sym__variable, sym__expression, @@ -62504,53 +61178,53 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [2998] = 22, + [2280] = 22, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1335), 1, + anon_sym_COMMA, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1339), 1, + anon_sym_RBRACE, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1403), 1, - anon_sym_COMMA, - ACTIONS(1405), 1, - anon_sym_RBRACE, - ACTIONS(1409), 1, + ACTIONS(1347), 1, sym_integer_literal, - ACTIONS(1411), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1351), 1, anon_sym_DASH_GT, STATE(683), 1, sym__curly_braces_name_expression, - STATE(776), 1, + STATE(779), 1, sym_identifier, - STATE(2442), 1, + STATE(2567), 1, sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1407), 3, + ACTIONS(1345), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(859), 19, + STATE(970), 19, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -62570,103 +61244,53 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3086] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1375), 1, - anon_sym_LBRACE2, - ACTIONS(1413), 1, - aux_sym_identifier_token2, - STATE(308), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(787), 13, - anon_sym_DOT, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(785), 25, - 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, - sym_register, - anon_sym_POUND_LBRACE, - [3142] = 22, + [2368] = 22, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1379), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1353), 1, anon_sym_COMMA, - ACTIONS(1381), 1, + ACTIONS(1355), 1, anon_sym_RBRACE, - ACTIONS(1387), 1, - anon_sym_DASH_GT, - ACTIONS(1417), 1, + ACTIONS(1359), 1, sym_integer_literal, + ACTIONS(1361), 1, + anon_sym_DASH_GT, STATE(683), 1, sym__curly_braces_name_expression, - STATE(782), 1, + STATE(770), 1, sym_identifier, - STATE(2369), 1, + STATE(2553), 1, sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1415), 3, + ACTIONS(1357), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(924), 19, + STATE(906), 19, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -62686,14 +61310,14 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3230] = 6, + [2456] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1419), 1, + ACTIONS(1363), 1, anon_sym_LBRACE2, - ACTIONS(1422), 1, + ACTIONS(1365), 1, aux_sym_identifier_token2, - STATE(308), 2, + STATE(300), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, ACTIONS(795), 13, @@ -62711,17 +61335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym_integer_literal, ACTIONS(793), 25, - 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_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -62733,56 +61357,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [3286] = 22, + [2512] = 22, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1425), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1367), 1, anon_sym_COMMA, - ACTIONS(1427), 1, + ACTIONS(1369), 1, anon_sym_RBRACE, - ACTIONS(1431), 1, + ACTIONS(1373), 1, sym_integer_literal, - ACTIONS(1433), 1, + ACTIONS(1375), 1, anon_sym_DASH_GT, STATE(683), 1, sym__curly_braces_name_expression, - STATE(781), 1, + STATE(776), 1, sym_identifier, - STATE(2535), 1, + STATE(2514), 1, sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1429), 3, + ACTIONS(1371), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(847), 19, + STATE(865), 19, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -62802,53 +61426,53 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3374] = 22, + [2600] = 22, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1435), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1377), 1, anon_sym_COMMA, - ACTIONS(1437), 1, + ACTIONS(1379), 1, anon_sym_RBRACE, - ACTIONS(1441), 1, + ACTIONS(1383), 1, sym_integer_literal, - ACTIONS(1443), 1, + ACTIONS(1385), 1, anon_sym_DASH_GT, STATE(683), 1, sym__curly_braces_name_expression, - STATE(779), 1, + STATE(773), 1, sym_identifier, - STATE(2424), 1, + STATE(2412), 1, sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1439), 3, + ACTIONS(1381), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(974), 19, + STATE(971), 19, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -62868,114 +61492,106 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3462] = 19, + [2688] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, - anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1387), 1, + anon_sym_LBRACE2, + ACTIONS(1390), 1, + aux_sym_identifier_token2, + STATE(300), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(801), 13, + anon_sym_DOT, anon_sym_LBRACE, - ACTIONS(1449), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1459), 1, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, - ACTIONS(1463), 1, sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, + ACTIONS(799), 25, sym__scope_dict, - ACTIONS(1473), 1, sym_scope, - STATE(301), 1, - sym__curly_braces_name_expression, - STATE(335), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1469), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1461), 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_token4, + 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_LBRACK2, sym_register, - STATE(573), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [3543] = 19, + anon_sym_POUND_LBRACE, + [2744] = 22, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, - aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, - anon_sym_BANG, - ACTIONS(1463), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1353), 1, + anon_sym_COMMA, + ACTIONS(1355), 1, + anon_sym_RBRACE, + ACTIONS(1361), 1, + anon_sym_DASH_GT, + ACTIONS(1395), 1, sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, - sym__scope_dict, - ACTIONS(1473), 1, - sym_scope, - STATE(301), 1, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(338), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + STATE(770), 1, + sym_identifier, + STATE(2553), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1475), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1461), 3, + ACTIONS(1393), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(844), 19, sym_scope_dict, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, sym__variable, sym__expression, @@ -62992,45 +61608,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3624] = 6, + [2832] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1477), 1, + ACTIONS(1397), 1, anon_sym_LBRACE2, - ACTIONS(1479), 1, + ACTIONS(1400), 1, aux_sym_identifier_token2, - STATE(315), 2, + STATE(302), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(805), 14, + ACTIONS(801), 13, anon_sym_DOT, anon_sym_LBRACE, aux_sym_identifier_token1, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_SLASH, + anon_sym_AMP, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, - anon_sym_STAR2, anon_sym_DASH, anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(803), 23, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(799), 25, sym__newline_or_pipe, sym__scope_dict, + sym_scope, + sym_string_literal, 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_EQ_LT_LT, 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, @@ -63040,53 +61654,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [3679] = 19, + sym_float_literal, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [2888] = 22, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, - aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1489), 1, - anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, - anon_sym_BANG, - ACTIONS(1501), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1403), 1, + anon_sym_COMMA, + ACTIONS(1405), 1, + anon_sym_RBRACE, + ACTIONS(1409), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, - sym__scope_dict, - ACTIONS(1509), 1, - sym_scope, - STATE(296), 1, + ACTIONS(1411), 1, + anon_sym_DASH_GT, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(341), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 2, + STATE(774), 1, + sym_identifier, + STATE(2453), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1499), 3, + ACTIONS(1407), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(953), 19, sym_scope_dict, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, sym__variable, sym__expression, @@ -63103,102 +61724,105 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3760] = 6, + [2976] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1477), 1, - anon_sym_LBRACE2, - ACTIONS(1511), 1, - aux_sym_identifier_token2, - STATE(317), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(787), 14, + ACTIONS(771), 3, + anon_sym_COLON, + anon_sym_STAR2, + anon_sym_LBRACK2, + ACTIONS(778), 5, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + anon_sym_QMARK2, + ACTIONS(776), 13, + anon_sym_COMMA, + anon_sym_BSLASH, + sym_bang, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + 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, + ACTIONS(774), 21, anon_sym_DOT, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, - anon_sym_STAR2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - ACTIONS(785), 23, - 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_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_is, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT2, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [3815] = 20, + [3030] = 22, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, - aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1489), 1, - anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, - anon_sym_BANG, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, - sym__scope_dict, - ACTIONS(1509), 1, - sym_scope, - ACTIONS(1513), 1, - anon_sym_QMARK, - ACTIONS(1515), 1, - anon_sym_POUND, - ACTIONS(1519), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1413), 1, + anon_sym_COMMA, + ACTIONS(1415), 1, + anon_sym_RBRACE, + ACTIONS(1419), 1, sym_integer_literal, - STATE(296), 1, + ACTIONS(1421), 1, + anon_sym_DASH_GT, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(601), 1, - sym_match_case, - ACTIONS(1491), 2, + STATE(775), 1, + sym_identifier, + STATE(2486), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1517), 3, + ACTIONS(1417), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(602), 20, + STATE(910), 19, sym_scope_dict, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, sym__variable, sym__expression, @@ -63215,45 +61839,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [3898] = 6, + [3118] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1521), 1, + ACTIONS(1423), 1, anon_sym_LBRACE2, - ACTIONS(1524), 1, + ACTIONS(1425), 1, aux_sym_identifier_token2, - STATE(317), 2, + STATE(302), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(795), 14, + ACTIONS(795), 13, anon_sym_DOT, anon_sym_LBRACE, aux_sym_identifier_token1, - anon_sym_EQ, - anon_sym_PERCENT, - anon_sym_SLASH, + anon_sym_AMP, anon_sym_DOT2, anon_sym_PLUS, anon_sym_LT2, - anon_sym_STAR2, anon_sym_DASH, anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(793), 23, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(793), 25, sym__newline_or_pipe, sym__scope_dict, + sym_scope, + sym_string_literal, 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_EQ_LT_LT, 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, @@ -63263,53 +61885,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [3953] = 19, + sym_float_literal, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [3174] = 22, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, - aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1489), 1, - anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, - anon_sym_BANG, - ACTIONS(1501), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1353), 1, + anon_sym_COMMA, + ACTIONS(1355), 1, + anon_sym_RBRACE, + ACTIONS(1361), 1, + anon_sym_DASH_GT, + ACTIONS(1429), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, - sym__scope_dict, - ACTIONS(1509), 1, - sym_scope, - STATE(296), 1, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(341), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 2, + STATE(770), 1, + sym_identifier, + STATE(2553), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1527), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1499), 3, + ACTIONS(1427), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(974), 19, sym_scope_dict, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, sym__variable, sym__expression, @@ -63326,53 +61955,56 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4034] = 20, + [3262] = 22, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1193), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1195), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1229), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1231), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1235), 1, - anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1513), 1, - anon_sym_QMARK, - ACTIONS(1515), 1, - anon_sym_POUND, - ACTIONS(1529), 1, - anon_sym_BANG, - ACTIONS(1533), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1431), 1, + anon_sym_COMMA, + ACTIONS(1433), 1, + anon_sym_RBRACE, + ACTIONS(1437), 1, sym_integer_literal, - STATE(148), 1, + ACTIONS(1439), 1, + anon_sym_DASH_GT, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(639), 1, - sym_match_case, - ACTIONS(1183), 2, + STATE(771), 1, + sym_identifier, + STATE(2489), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1531), 3, + ACTIONS(1435), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(220), 20, + STATE(960), 19, sym_scope_dict, sym_scoped_identifier, sym_argument, - sym_identifier, sym__ident, sym__variable, sym__expression, @@ -63389,359 +62021,197 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4117] = 19, + [3350] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, - anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1363), 1, + anon_sym_LBRACE2, + ACTIONS(1441), 1, + aux_sym_identifier_token2, + STATE(297), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(787), 13, + anon_sym_DOT, anon_sym_LBRACE, - ACTIONS(1485), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, anon_sym_AMP, - ACTIONS(1489), 1, - anon_sym_LPAREN, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1497), 1, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, - ACTIONS(1501), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + ACTIONS(785), 25, sym__scope_dict, - ACTIONS(1509), 1, sym_scope, - STATE(296), 1, - sym__curly_braces_name_expression, - STATE(341), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1535), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1499), 3, sym_string_literal, - sym_float_literal, - sym_register, - STATE(559), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [4198] = 19, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1481), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, - anon_sym_LBRACE, - ACTIONS(1485), 1, - aux_sym_identifier_token1, - ACTIONS(1487), 1, - anon_sym_AMP, - ACTIONS(1489), 1, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1493), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1497), 1, - anon_sym_BANG, - ACTIONS(1501), 1, - sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, - sym__scope_dict, - ACTIONS(1509), 1, - sym_scope, - STATE(296), 1, - sym__curly_braces_name_expression, - STATE(341), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1537), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(1499), 3, - sym_string_literal, + 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_LBRACK2, sym_register, - STATE(559), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [4279] = 19, + anon_sym_POUND_LBRACE, + [3406] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, - anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1423), 1, + anon_sym_LBRACE2, + ACTIONS(1443), 1, + aux_sym_identifier_token2, + STATE(306), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(787), 13, + anon_sym_DOT, anon_sym_LBRACE, - ACTIONS(1485), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, anon_sym_AMP, - ACTIONS(1489), 1, - anon_sym_LPAREN, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1497), 1, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, - ACTIONS(1501), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + ACTIONS(785), 25, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1509), 1, sym_scope, - STATE(296), 1, - sym__curly_braces_name_expression, - STATE(341), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1539), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1499), 3, 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_LBRACK2, sym_register, - STATE(559), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [4360] = 19, + anon_sym_POUND_LBRACE, + [3462] = 6, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1445), 1, - anon_sym_a_COLON, + anon_sym_LBRACE2, ACTIONS(1447), 1, + aux_sym_identifier_token2, + STATE(347), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(795), 14, + anon_sym_DOT, anon_sym_LBRACE, - ACTIONS(1449), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, - anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1459), 1, - anon_sym_BANG, - ACTIONS(1463), 1, - sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, - sym__scope_dict, - ACTIONS(1473), 1, - sym_scope, - STATE(301), 1, - sym__curly_braces_name_expression, - STATE(338), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + anon_sym_EQ, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_STAR2, anon_sym_DASH, - ACTIONS(1537), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1461), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(573), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [4441] = 19, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + ACTIONS(793), 23, + 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_EQ_LT_LT, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + [3517] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1453), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, - anon_sym_BANG, ACTIONS(1463), 1, - sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, + anon_sym_BANG, ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, + sym_integer_literal, + ACTIONS(1469), 1, + anon_sym_LBRACK2, ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1473), 1, + ACTIONS(1477), 1, sym_scope, - STATE(301), 1, + STATE(310), 1, sym__curly_braces_name_expression, - STATE(340), 1, + STATE(322), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, + ACTIONS(1473), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(1461), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(573), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [4522] = 20, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, - anon_sym_a_COLON, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1543), 1, - anon_sym_COMMA, - ACTIONS(1545), 1, - anon_sym_SEMI, - ACTIONS(1549), 1, - sym_integer_literal, - ACTIONS(1551), 1, - anon_sym_RBRACK, - STATE(683), 1, - sym__curly_braces_name_expression, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1547), 3, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(785), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -63762,48 +62232,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4605] = 19, + [3598] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1453), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, - anon_sym_BANG, ACTIONS(1463), 1, - sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, + anon_sym_BANG, ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, + sym_integer_literal, + ACTIONS(1469), 1, + anon_sym_LBRACK2, ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1473), 1, + ACTIONS(1477), 1, sym_scope, - STATE(301), 1, + STATE(310), 1, sym__curly_braces_name_expression, - STATE(339), 1, + STATE(322), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1553), 2, + ACTIONS(1479), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(1461), 3, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -63824,49 +62294,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4686] = 20, + [3679] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1453), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, + ACTIONS(1463), 1, anon_sym_BANG, - ACTIONS(1465), 1, - anon_sym_LBRACK, ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, + sym_integer_literal, + ACTIONS(1469), 1, + anon_sym_LBRACK2, ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1473), 1, + ACTIONS(1477), 1, sym_scope, - ACTIONS(1513), 1, - anon_sym_QMARK, - ACTIONS(1515), 1, - anon_sym_POUND, - ACTIONS(1557), 1, - sym_integer_literal, - STATE(301), 1, + STATE(310), 1, sym__curly_braces_name_expression, - STATE(511), 1, - sym_match_case, - ACTIONS(1455), 2, + STATE(322), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1555), 3, + ACTIONS(1481), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(509), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -63887,49 +62356,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4769] = 20, + [3760] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1513), 1, - anon_sym_QMARK, - ACTIONS(1515), 1, - anon_sym_POUND, - ACTIONS(1559), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1561), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1453), 1, aux_sym_identifier_token1, - ACTIONS(1565), 1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1567), 1, + ACTIONS(1457), 1, anon_sym_LPAREN, - ACTIONS(1571), 1, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1573), 1, + ACTIONS(1463), 1, anon_sym_BANG, - ACTIONS(1577), 1, + ACTIONS(1467), 1, sym_integer_literal, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1585), 1, + ACTIONS(1477), 1, sym_scope, - STATE(662), 1, - sym_match_case, - STATE(718), 1, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + STATE(322), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1575), 3, + ACTIONS(1483), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(973), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -63950,48 +62418,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4852] = 19, + [3841] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(1453), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1489), 1, + ACTIONS(1457), 1, anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, + ACTIONS(1463), 1, anon_sym_BANG, - ACTIONS(1501), 1, + ACTIONS(1467), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1509), 1, + ACTIONS(1477), 1, sym_scope, - STATE(296), 1, + STATE(310), 1, sym__curly_braces_name_expression, STATE(322), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1499), 3, + ACTIONS(1485), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64012,97 +62480,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [4933] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1587), 1, - anon_sym_LBRACE2, - ACTIONS(1590), 1, - aux_sym_identifier_token2, - STATE(330), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(795), 14, - anon_sym_DOT, - 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_is, - anon_sym_isnot, - anon_sym_GT2, - ACTIONS(793), 23, - 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_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [4988] = 19, + [3922] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(1491), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1489), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, + ACTIONS(1503), 1, anon_sym_BANG, - ACTIONS(1501), 1, + ACTIONS(1507), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1513), 1, sym__scope_dict, - ACTIONS(1509), 1, + ACTIONS(1515), 1, sym_scope, - STATE(296), 1, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(320), 1, + STATE(341), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 2, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1553), 2, + ACTIONS(1501), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(1499), 3, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64123,48 +62542,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5069] = 19, + [4003] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(1453), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1489), 1, + ACTIONS(1457), 1, anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, + ACTIONS(1463), 1, anon_sym_BANG, - ACTIONS(1501), 1, + ACTIONS(1467), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1509), 1, + ACTIONS(1477), 1, sym_scope, - STATE(296), 1, + STATE(310), 1, sym__curly_braces_name_expression, - STATE(318), 1, + STATE(322), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1469), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1491), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1499), 3, + ACTIONS(1517), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64185,49 +62604,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5150] = 20, + [4084] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1513), 1, - anon_sym_QMARK, - ACTIONS(1515), 1, - anon_sym_POUND, - ACTIONS(1593), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1595), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1491), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1503), 1, anon_sym_BANG, - ACTIONS(1611), 1, + ACTIONS(1507), 1, sym_integer_literal, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1513), 1, sym__scope_dict, - ACTIONS(1619), 1, + ACTIONS(1515), 1, sym_scope, - STATE(441), 1, - sym_match_case, - STATE(739), 1, + STATE(309), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + STATE(340), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 3, + ACTIONS(1519), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(868), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64248,48 +62666,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5233] = 19, + [4165] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1491), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1453), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, + ACTIONS(1503), 1, anon_sym_BANG, - ACTIONS(1463), 1, + ACTIONS(1507), 1, sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, + ACTIONS(1513), 1, sym__scope_dict, - ACTIONS(1473), 1, + ACTIONS(1515), 1, sym_scope, - STATE(301), 1, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(338), 1, + STATE(339), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1495), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1461), 3, + ACTIONS(1521), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64310,48 +62728,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5314] = 19, + [4246] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1491), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1453), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, + ACTIONS(1503), 1, anon_sym_BANG, - ACTIONS(1463), 1, + ACTIONS(1507), 1, sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, + ACTIONS(1513), 1, sym__scope_dict, - ACTIONS(1473), 1, + ACTIONS(1515), 1, sym_scope, - STATE(301), 1, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(338), 1, + STATE(337), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1527), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1461), 3, + ACTIONS(1523), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64372,48 +62790,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5395] = 19, + [4327] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1525), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1528), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(1531), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1534), 1, anon_sym_AMP, - ACTIONS(1489), 1, + ACTIONS(1537), 1, anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1543), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, + ACTIONS(1546), 1, anon_sym_BANG, - ACTIONS(1501), 1, + ACTIONS(1552), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1555), 1, + anon_sym_LBRACK2, + ACTIONS(1558), 1, anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1563), 1, sym__scope_dict, - ACTIONS(1509), 1, + ACTIONS(1566), 1, sym_scope, - STATE(296), 1, + STATE(310), 1, sym__curly_braces_name_expression, - STATE(314), 1, + STATE(322), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 2, + ACTIONS(1540), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1621), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1499), 3, + ACTIONS(1561), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1549), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64434,49 +62852,97 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5476] = 20, + [4408] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1569), 1, + anon_sym_LBRACE2, + ACTIONS(1571), 1, + aux_sym_identifier_token2, + STATE(333), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(787), 14, + anon_sym_DOT, + anon_sym_LBRACE, aux_sym_identifier_token1, - ACTIONS(1167), 1, + 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_is, + anon_sym_isnot, + anon_sym_GT2, + ACTIONS(785), 23, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, + 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_EQ_LT_LT, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + 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_LBRACK2, + [4463] = 19, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1453), 1, + aux_sym_identifier_token1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_QMARK, - ACTIONS(1515), 1, - anon_sym_POUND, - ACTIONS(1625), 1, + ACTIONS(1463), 1, + anon_sym_BANG, + ACTIONS(1467), 1, sym_integer_literal, - STATE(479), 1, - sym_match_case, - STATE(683), 1, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, + sym__scope_dict, + ACTIONS(1477), 1, + sym_scope, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(316), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 3, + ACTIONS(1523), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(717), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64497,48 +62963,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5559] = 19, + [4544] = 20, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1627), 1, + ACTIONS(1181), 1, + aux_sym_identifier_token1, + ACTIONS(1197), 1, + sym__scope_dict, + ACTIONS(1199), 1, + sym_scope, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1630), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, - aux_sym_identifier_token1, - ACTIONS(1636), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1639), 1, + ACTIONS(1211), 1, anon_sym_LPAREN, - ACTIONS(1645), 1, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1648), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1573), 1, + anon_sym_QMARK, + ACTIONS(1575), 1, + anon_sym_POUND, + ACTIONS(1577), 1, anon_sym_BANG, - ACTIONS(1654), 1, + ACTIONS(1581), 1, sym_integer_literal, - ACTIONS(1657), 1, - anon_sym_LBRACK, - ACTIONS(1660), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1665), 1, - sym__scope_dict, - ACTIONS(1668), 1, - sym_scope, - STATE(301), 1, + STATE(148), 1, sym__curly_braces_name_expression, - STATE(338), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1642), 2, + STATE(550), 1, + sym_match_case, + ACTIONS(1187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1663), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1651), 3, + ACTIONS(1579), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(230), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64559,48 +63026,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5640] = 19, + [4627] = 20, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1491), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1453), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, + ACTIONS(1503), 1, anon_sym_BANG, - ACTIONS(1463), 1, - sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, + ACTIONS(1513), 1, sym__scope_dict, - ACTIONS(1473), 1, + ACTIONS(1515), 1, sym_scope, - STATE(301), 1, + ACTIONS(1573), 1, + anon_sym_QMARK, + ACTIONS(1575), 1, + anon_sym_POUND, + ACTIONS(1585), 1, + sym_integer_literal, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(338), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + STATE(513), 1, + sym_match_case, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1535), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1461), 3, + ACTIONS(1583), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(514), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64621,48 +63089,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5721] = 19, + [4710] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1453), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, - anon_sym_BANG, ACTIONS(1463), 1, - sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, + anon_sym_BANG, ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, + sym_integer_literal, + ACTIONS(1469), 1, + anon_sym_LBRACK2, ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1473), 1, + ACTIONS(1477), 1, sym_scope, - STATE(301), 1, + STATE(310), 1, sym__curly_braces_name_expression, - STATE(338), 1, + STATE(315), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1539), 2, + ACTIONS(1521), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(1461), 3, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64683,48 +63151,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5802] = 19, + [4791] = 20, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1671), 1, + ACTIONS(1573), 1, + anon_sym_QMARK, + ACTIONS(1575), 1, + anon_sym_POUND, + ACTIONS(1587), 1, anon_sym_a_COLON, - ACTIONS(1674), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1677), 1, + ACTIONS(1591), 1, aux_sym_identifier_token1, - ACTIONS(1680), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1683), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1689), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR, - ACTIONS(1692), 1, + ACTIONS(1601), 1, anon_sym_BANG, - ACTIONS(1698), 1, + ACTIONS(1605), 1, sym_integer_literal, - ACTIONS(1701), 1, - anon_sym_LBRACK, - ACTIONS(1704), 1, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, anon_sym_POUND_LBRACE, - ACTIONS(1707), 1, + ACTIONS(1611), 1, sym__scope_dict, - ACTIONS(1710), 1, + ACTIONS(1613), 1, sym_scope, - STATE(296), 1, + STATE(591), 1, + sym_match_case, + STATE(717), 1, sym__curly_braces_name_expression, - STATE(341), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1663), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1686), 2, + ACTIONS(1597), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1695), 3, + ACTIONS(1603), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(849), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64745,48 +63214,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5883] = 19, + [4874] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(1491), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1489), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, + ACTIONS(1503), 1, anon_sym_BANG, - ACTIONS(1501), 1, + ACTIONS(1507), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1513), 1, sym__scope_dict, - ACTIONS(1509), 1, + ACTIONS(1515), 1, sym_scope, - STATE(296), 1, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(341), 1, + STATE(335), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1475), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1491), 2, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1499), 3, + ACTIONS(1615), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64807,48 +63276,97 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [5964] = 19, + [4955] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1617), 1, + anon_sym_LBRACE2, + ACTIONS(1620), 1, + aux_sym_identifier_token2, + STATE(330), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(801), 14, + anon_sym_DOT, + 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_is, + anon_sym_isnot, + anon_sym_GT2, + ACTIONS(799), 23, + 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_EQ_LT_LT, + anon_sym_QMARK, + anon_sym_LPAREN, + 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_LBRACK2, + [5010] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(1453), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1489), 1, + ACTIONS(1457), 1, anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, + ACTIONS(1463), 1, anon_sym_BANG, - ACTIONS(1501), 1, + ACTIONS(1467), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1509), 1, + ACTIONS(1477), 1, sym_scope, - STATE(296), 1, + STATE(310), 1, sym__curly_braces_name_expression, - STATE(341), 1, + STATE(314), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(1499), 3, + ACTIONS(1519), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64869,97 +63387,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6045] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1715), 1, - anon_sym_LBRACE2, - ACTIONS(1717), 1, - aux_sym_identifier_token2, - STATE(330), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(787), 14, - anon_sym_DOT, - 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_is, - anon_sym_isnot, - anon_sym_GT2, - ACTIONS(785), 23, - 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_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [6100] = 19, + [5091] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1453), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, - anon_sym_BANG, ACTIONS(1463), 1, - sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, + anon_sym_BANG, ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, + sym_integer_literal, + ACTIONS(1469), 1, + anon_sym_LBRACK2, ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1473), 1, + ACTIONS(1477), 1, sym_scope, - STATE(301), 1, + STATE(310), 1, sym__curly_braces_name_expression, - STATE(338), 1, + STATE(313), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1713), 2, + ACTIONS(1501), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(1461), 3, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -64980,17 +63449,17 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6181] = 6, + [5172] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1715), 1, + ACTIONS(1569), 1, anon_sym_LBRACE2, - ACTIONS(1719), 1, + ACTIONS(1623), 1, aux_sym_identifier_token2, - STATE(344), 2, + STATE(330), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(805), 14, + ACTIONS(795), 14, anon_sym_DOT, anon_sym_LBRACE, aux_sym_identifier_token1, @@ -65005,8 +63474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(803), 23, + ACTIONS(793), 23, + sym__newline_or_pipe, sym__scope_dict, + sym_comment, anon_sym_a_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -65017,8 +63488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_LT_LT, anon_sym_QMARK, anon_sym_LPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -65028,50 +63497,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [6236] = 20, + anon_sym_LBRACK2, + [5227] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, - aux_sym_identifier_token1, - ACTIONS(1135), 1, - sym__scope_dict, - ACTIONS(1137), 1, - sym_scope, - ACTIONS(1209), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1211), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1215), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1217), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1503), 1, + anon_sym_BANG, + ACTIONS(1507), 1, + sym_integer_literal, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, ACTIONS(1513), 1, - anon_sym_QMARK, + sym__scope_dict, ACTIONS(1515), 1, - anon_sym_POUND, - ACTIONS(1721), 1, - anon_sym_BANG, - ACTIONS(1725), 1, - sym_integer_literal, - STATE(147), 1, + sym_scope, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(652), 1, - sym_match_case, - ACTIONS(1121), 2, + STATE(335), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1723), 3, + ACTIONS(1517), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(192), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65092,48 +63560,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6319] = 19, + [5308] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1625), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1628), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1631), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1634), 1, anon_sym_AMP, - ACTIONS(1453), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, + ACTIONS(1646), 1, anon_sym_BANG, - ACTIONS(1463), 1, + ACTIONS(1652), 1, sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, + ACTIONS(1655), 1, + anon_sym_LBRACK2, + ACTIONS(1658), 1, anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, + ACTIONS(1661), 1, sym__scope_dict, - ACTIONS(1473), 1, + ACTIONS(1664), 1, sym_scope, - STATE(301), 1, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(334), 1, + STATE(335), 1, aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + ACTIONS(1561), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1640), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1621), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1461), 3, + ACTIONS(1649), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65154,47 +63622,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6400] = 19, + [5389] = 20, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1573), 1, + anon_sym_QMARK, + ACTIONS(1575), 1, + anon_sym_POUND, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1671), 1, + aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, - anon_sym_RBRACE, - ACTIONS(1731), 1, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1685), 1, sym_integer_literal, - STATE(683), 1, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, + sym__scope_dict, + ACTIONS(1693), 1, + sym_scope, + STATE(621), 1, + sym_match_case, + STATE(757), 1, sym__curly_braces_name_expression, - STATE(2803), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1683), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(832), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65215,46 +63685,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6480] = 18, + [5472] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1561), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1491), 1, aux_sym_identifier_token1, - ACTIONS(1565), 1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1567), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1571), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1573), 1, + ACTIONS(1503), 1, anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + ACTIONS(1507), 1, + sym_integer_literal, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, + ACTIONS(1513), 1, sym__scope_dict, - ACTIONS(1585), 1, + ACTIONS(1515), 1, sym_scope, - ACTIONS(1737), 1, - sym_integer_literal, - STATE(718), 1, + STATE(309), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1733), 2, + STATE(335), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1485), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(1735), 3, + ACTIONS(1497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(902), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65275,47 +63747,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6558] = 19, + [5553] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1503), 1, + anon_sym_BANG, + ACTIONS(1507), 1, sym_integer_literal, - ACTIONS(1739), 1, - anon_sym_RBRACE, - STATE(683), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(2803), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + STATE(335), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1473), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65336,47 +63809,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6638] = 19, + [5634] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1503), 1, + anon_sym_BANG, + ACTIONS(1507), 1, sym_integer_literal, - ACTIONS(1741), 1, - anon_sym_RBRACE, - STATE(683), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(2803), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + STATE(335), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1483), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65397,47 +63871,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6718] = 19, + [5715] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1503), 1, + anon_sym_BANG, + ACTIONS(1507), 1, sym_integer_literal, - ACTIONS(1743), 1, - anon_sym_RBRACE, - STATE(683), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(2803), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + STATE(335), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1481), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65458,47 +63933,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6798] = 19, + [5796] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1503), 1, + anon_sym_BANG, + ACTIONS(1507), 1, sym_integer_literal, - ACTIONS(1745), 1, - anon_sym_RBRACE, - STATE(683), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(2803), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + STATE(335), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1479), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65519,92 +63995,48 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [6878] = 3, + [5877] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(815), 14, - anon_sym_DOT, + ACTIONS(1449), 1, + anon_sym_a_COLON, + ACTIONS(1451), 1, anon_sym_LBRACE, + ACTIONS(1453), 1, aux_sym_identifier_token1, - aux_sym_identifier_token2, + ACTIONS(1455), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(813), 26, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_QMARK, + ACTIONS(1457), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1461), 1, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - sym_register, + ACTIONS(1463), 1, + anon_sym_BANG, + ACTIONS(1467), 1, + sym_integer_literal, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, anon_sym_POUND_LBRACE, - [6926] = 19, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1477), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, - anon_sym_a_COLON, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1747), 1, - anon_sym_COMMA, - ACTIONS(1751), 1, - sym_integer_literal, - ACTIONS(1753), 1, - anon_sym_RBRACK, - STATE(683), 1, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(322), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1749), 3, + ACTIONS(1615), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(818), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65625,92 +64057,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7006] = 3, + [5958] = 20, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(825), 14, - anon_sym_DOT, + ACTIONS(1449), 1, + anon_sym_a_COLON, + ACTIONS(1451), 1, anon_sym_LBRACE, + ACTIONS(1453), 1, aux_sym_identifier_token1, - aux_sym_identifier_token2, + ACTIONS(1455), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(823), 26, - sym__scope_dict, - sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_QMARK, + ACTIONS(1457), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1461), 1, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - sym_register, + ACTIONS(1463), 1, + anon_sym_BANG, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, anon_sym_POUND_LBRACE, - [7054] = 19, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1477), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, - anon_sym_a_COLON, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1573), 1, + anon_sym_QMARK, + ACTIONS(1575), 1, + anon_sym_POUND, + ACTIONS(1697), 1, sym_integer_literal, - ACTIONS(1755), 1, - anon_sym_RBRACE, - STATE(683), 1, + STATE(310), 1, sym__curly_braces_name_expression, - STATE(2803), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + STATE(600), 1, + sym_match_case, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1695), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(602), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65731,94 +64120,49 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7134] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1757), 1, - aux_sym_argument_token1, - ACTIONS(1759), 1, - aux_sym_argument_token2, - ACTIONS(831), 12, - anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(829), 26, - 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_token4, - 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, - sym_register, - anon_sym_POUND_LBRACE, - [7186] = 19, + [6041] = 20, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1699), 1, + anon_sym_COMMA, + ACTIONS(1701), 1, + anon_sym_SEMI, + ACTIONS(1705), 1, sym_integer_literal, - ACTIONS(1761), 1, - anon_sym_RBRACE, + ACTIONS(1707), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - STATE(2803), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1703), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(802), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65839,7 +64183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7266] = 19, + [6124] = 20, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1147), 1, @@ -65848,38 +64192,40 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_dict, ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1225), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1229), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1231), 1, + anon_sym_LPAREN, + ACTIONS(1233), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1573), 1, + anon_sym_QMARK, + ACTIONS(1575), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + anon_sym_BANG, + ACTIONS(1713), 1, sym_integer_literal, - ACTIONS(1763), 1, - anon_sym_RBRACE, - STATE(683), 1, + STATE(145), 1, sym__curly_braces_name_expression, - STATE(2803), 1, - sym_dictionnary_entry, + STATE(549), 1, + sym_match_case, ACTIONS(1153), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1711), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(156), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -65900,38 +64246,94 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7346] = 3, + [6207] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(825), 14, + ACTIONS(1445), 1, + anon_sym_LBRACE2, + ACTIONS(1715), 1, + aux_sym_identifier_token2, + STATE(311), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(787), 14, anon_sym_DOT, anon_sym_LBRACE, aux_sym_identifier_token1, - aux_sym_identifier_token2, - anon_sym_AMP, + 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_is, anon_sym_isnot, anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(823), 26, - sym__newline_or_pipe, + ACTIONS(785), 23, sym__scope_dict, - sym_scope, - sym_string_literal, - 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_EQ_LT_LT, anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + [6262] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1717), 1, + anon_sym_LBRACE2, + ACTIONS(1720), 1, + aux_sym_identifier_token2, + STATE(347), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(801), 14, + anon_sym_DOT, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, 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_is, + anon_sym_isnot, + anon_sym_GT2, + ACTIONS(799), 23, + 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_EQ_LT_LT, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -65941,51 +64343,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [7394] = 19, + anon_sym_LBRACK2, + [6317] = 20, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1765), 1, - anon_sym_COMMA, - ACTIONS(1769), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1573), 1, + anon_sym_QMARK, + ACTIONS(1575), 1, + anon_sym_POUND, + ACTIONS(1725), 1, sym_integer_literal, - ACTIONS(1771), 1, - anon_sym_RBRACK, + STATE(484), 1, + sym_match_case, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1767), 3, + ACTIONS(1723), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(821), 20, + STATE(744), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66006,54 +64407,51 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7474] = 20, + [6400] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1773), 1, - sym_bang, - ACTIONS(1777), 1, + ACTIONS(1507), 1, sym_integer_literal, - STATE(683), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, + ACTIONS(1727), 1, + sym_bang, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(1041), 1, - sym_field_expression, - STATE(1832), 1, - sym_function_declaration, - ACTIONS(1153), 3, + STATE(338), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1497), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, - ACTIONS(1775), 3, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1045), 4, + STATE(474), 20, + sym_scope_dict, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, - STATE(1100), 15, - sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, @@ -66062,52 +64460,54 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_index_expression, sym_slice_expression, + sym_field_expression, sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7556] = 18, + [6478] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1317), 1, + sym_integer_literal, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, - aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1463), 1, - sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, - sym__scope_dict, - ACTIONS(1473), 1, - sym_scope, - ACTIONS(1779), 1, - sym_bang, - STATE(301), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1699), 1, + anon_sym_COMMA, + ACTIONS(1729), 1, + anon_sym_RBRACK2, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(312), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 3, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - ACTIONS(1461), 3, + ACTIONS(1323), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(814), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66128,47 +64528,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7634] = 19, + [6558] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1305), 1, + sym_integer_literal, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(1731), 1, - sym_integer_literal, - ACTIONS(1781), 1, - anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1733), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - STATE(2803), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1313), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(822), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66189,93 +64589,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7714] = 5, + [6638] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1783), 1, - aux_sym_argument_token1, - ACTIONS(1785), 1, - aux_sym_argument_token2, - ACTIONS(831), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(829), 26, - sym__newline_or_pipe, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(1267), 1, 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, - sym_register, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - [7766] = 18, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, - aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1489), 1, - anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1501), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1735), 1, + anon_sym_RBRACE, + ACTIONS(1739), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, - sym__scope_dict, - ACTIONS(1509), 1, - sym_scope, - ACTIONS(1787), 1, - sym_bang, - STATE(296), 1, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(342), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 3, + STATE(2742), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - ACTIONS(1499), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66296,47 +64650,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7844] = 19, + [6718] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, - ACTIONS(1789), 1, + ACTIONS(1741), 1, anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - STATE(2803), 1, + STATE(2742), 1, sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66357,47 +64711,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [7924] = 19, + [6798] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, - ACTIONS(1791), 1, + ACTIONS(1743), 1, anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - STATE(2803), 1, + STATE(2742), 1, sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66418,47 +64772,107 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8004] = 19, + [6878] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1449), 1, + anon_sym_a_COLON, + ACTIONS(1451), 1, + anon_sym_LBRACE, + ACTIONS(1453), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1455), 1, + anon_sym_AMP, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_DOLLAR, + ACTIONS(1467), 1, + sym_integer_literal, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1477), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1745), 1, + sym_bang, + STATE(310), 1, + sym__curly_braces_name_expression, + STATE(312), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1459), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + ACTIONS(1465), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(624), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [6956] = 19, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1793), 1, - anon_sym_COMMA, - ACTIONS(1797), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, - ACTIONS(1799), 1, - anon_sym_RBRACK, + ACTIONS(1747), 1, + anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(2742), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(815), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66479,47 +64893,184 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8084] = 19, + [7036] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(815), 14, + anon_sym_DOT, + anon_sym_LBRACE, aux_sym_identifier_token1, - ACTIONS(1167), 1, + aux_sym_identifier_token2, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(813), 26, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE2, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1275), 1, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [7084] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(835), 14, + anon_sym_DOT, + 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_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, - ACTIONS(1285), 1, + sym_integer_literal, + ACTIONS(833), 26, + 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, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + [7132] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1749), 1, + aux_sym_argument_token1, + ACTIONS(1751), 1, + aux_sym_argument_token2, + ACTIONS(821), 12, + anon_sym_DOT, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(819), 26, + sym__scope_dict, + sym_scope, + sym_string_literal, anon_sym_a_COLON, - ACTIONS(1349), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [7184] = 19, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1545), 1, - anon_sym_SEMI, - ACTIONS(1803), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, - ACTIONS(1805), 1, - anon_sym_RBRACK, + ACTIONS(1753), 1, + anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(2742), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1801), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(792), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66540,47 +65091,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8164] = 19, + [7264] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, - ACTIONS(1807), 1, + ACTIONS(1755), 1, anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - STATE(2803), 1, + STATE(2742), 1, sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66601,47 +65152,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8244] = 19, + [7344] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1327), 1, + sym_integer_literal, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, - sym_integer_literal, - ACTIONS(1809), 1, - anon_sym_RBRACE, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1757), 1, + anon_sym_COMMA, + ACTIONS(1759), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - STATE(2803), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1331), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(807), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66662,47 +65213,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8324] = 19, + [7424] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1811), 1, - anon_sym_COMMA, - ACTIONS(1815), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, - ACTIONS(1817), 1, - anon_sym_RBRACK, + ACTIONS(1761), 1, + anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(2742), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1813), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(814), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66723,47 +65274,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8404] = 19, + [7504] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, - ACTIONS(1819), 1, + ACTIONS(1763), 1, anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - STATE(2803), 1, + STATE(2742), 1, sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66784,47 +65335,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8484] = 19, + [7584] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1327), 1, - sym_integer_literal, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1821), 1, - anon_sym_COMMA, - ACTIONS(1823), 1, - anon_sym_RBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, + sym_integer_literal, + ACTIONS(1765), 1, + anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(2742), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1331), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(809), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66845,10 +65396,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8564] = 3, + [7664] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(815), 14, + ACTIONS(835), 14, anon_sym_DOT, anon_sym_LBRACE, aux_sym_identifier_token1, @@ -66863,7 +65414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(813), 26, + ACTIONS(833), 26, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -66887,49 +65438,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [8612] = 18, + [7712] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1767), 1, + anon_sym_COMMA, + ACTIONS(1771), 1, + sym_integer_literal, + ACTIONS(1773), 1, + anon_sym_RBRACK2, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1769), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(813), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [7792] = 19, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1619), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1827), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, - STATE(739), 1, + ACTIONS(1775), 1, + anon_sym_RBRACE, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + STATE(2742), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1733), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(1825), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(909), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -66950,47 +65563,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8690] = 19, + [7872] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1317), 1, - sym_integer_literal, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1829), 1, - anon_sym_COMMA, - ACTIONS(1831), 1, - anon_sym_RBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, + sym_integer_literal, + ACTIONS(1777), 1, + anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(2742), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1323), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(813), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67011,54 +65624,52 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8770] = 20, + [7952] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1701), 1, + anon_sym_SEMI, + ACTIONS(1781), 1, sym_integer_literal, - ACTIONS(1833), 1, - sym_bang, + ACTIONS(1783), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - STATE(1041), 1, - sym_field_expression, - STATE(1857), 1, - sym_function_declaration, - ACTIONS(1153), 3, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - ACTIONS(1775), 3, + ACTIONS(1779), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1045), 4, + STATE(793), 20, + sym_scope_dict, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, - STATE(1100), 15, - sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, @@ -67067,53 +65678,54 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_index_expression, sym_slice_expression, + sym_field_expression, sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8852] = 19, + [8032] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1305), 1, - sym_integer_literal, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1543), 1, - anon_sym_COMMA, - ACTIONS(1835), 1, - anon_sym_RBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1785), 1, + anon_sym_COMMA, + ACTIONS(1789), 1, + sym_integer_literal, + ACTIONS(1791), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1313), 3, + ACTIONS(1787), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(824), 20, + STATE(808), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67134,45 +65746,47 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [8932] = 18, + [8112] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1839), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, - ACTIONS(1841), 1, - anon_sym_RBRACK, + ACTIONS(1793), 1, + anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(2742), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1837), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(997), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67193,45 +65807,94 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9009] = 18, + [8192] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1795), 1, + aux_sym_argument_token1, + ACTIONS(1797), 1, + aux_sym_argument_token2, + ACTIONS(821), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(819), 26, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1275), 1, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [8244] = 19, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1799), 1, + anon_sym_COMMA, + ACTIONS(1803), 1, sym_integer_literal, - ACTIONS(1847), 1, - anon_sym_RBRACK, + ACTIONS(1805), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1801), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(812), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67252,45 +65915,91 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9086] = 18, + [8324] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(815), 14, + anon_sym_DOT, + anon_sym_LBRACE, aux_sym_identifier_token1, - ACTIONS(1167), 1, + aux_sym_identifier_token2, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(813), 26, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE2, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, + 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_LBRACK2, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + [8372] = 18, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1587), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1591), 1, + aux_sym_identifier_token1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1601), 1, + anon_sym_BANG, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1611), 1, + sym__scope_dict, + ACTIONS(1613), 1, + sym_scope, + ACTIONS(1811), 1, sym_integer_literal, - ACTIONS(1849), 1, - anon_sym_RBRACK, - STATE(683), 1, + STATE(717), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1597), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1807), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(1809), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(939), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67311,45 +66020,46 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9163] = 18, + [8450] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1671), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1453), 1, + ACTIONS(1675), 1, anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, + ACTIONS(1681), 1, anon_sym_BANG, - ACTIONS(1463), 1, - sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, + ACTIONS(1691), 1, sym__scope_dict, - ACTIONS(1473), 1, + ACTIONS(1693), 1, sym_scope, - STATE(301), 1, + ACTIONS(1815), 1, + sym_integer_literal, + STATE(757), 1, sym__curly_braces_name_expression, - STATE(345), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1461), 3, + ACTIONS(1807), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(1813), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(840), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67370,53 +66080,52 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9240] = 20, + [8528] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, + ACTIONS(1817), 1, + anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - STATE(1041), 1, - sym_field_expression, - STATE(1810), 1, - sym_function_declaration, - ACTIONS(1153), 2, + STATE(2742), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1045), 4, + STATE(1063), 20, + sym_scope_dict, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, - STATE(1100), 15, - sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, @@ -67425,56 +66134,61 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_index_expression, sym_slice_expression, + sym_field_expression, sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9321] = 18, + [8608] = 20, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1851), 1, - anon_sym_COLON, - ACTIONS(1855), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1819), 1, + sym_bang, + ACTIONS(1823), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(1011), 1, + sym_field_expression, + STATE(1877), 1, + sym_function_declaration, + ACTIONS(1117), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1853), 3, + anon_sym_BANG, + ACTIONS(1821), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(896), 20, - sym_scope_dict, + STATE(1005), 4, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, + STATE(1084), 15, + sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, @@ -67483,57 +66197,60 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_index_expression, sym_slice_expression, - sym_field_expression, sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9398] = 18, + [8690] = 20, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1857), 1, - anon_sym_COLON, - ACTIONS(1861), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1823), 1, sym_integer_literal, + ACTIONS(1825), 1, + sym_bang, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(1011), 1, + sym_field_expression, + STATE(1901), 1, + sym_function_declaration, + ACTIONS(1117), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1859), 3, + anon_sym_BANG, + ACTIONS(1821), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(861), 20, - sym_scope_dict, + STATE(1005), 4, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, + STATE(1084), 15, + sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, @@ -67542,52 +66259,53 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_index_expression, sym_slice_expression, - sym_field_expression, sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9475] = 18, + [8772] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1863), 1, - anon_sym_COLON, - ACTIONS(1867), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1827), 1, + anon_sym_COMMA, + ACTIONS(1831), 1, sym_integer_literal, + ACTIONS(1833), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1865), 3, + ACTIONS(1829), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(838), 20, + STATE(819), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67608,53 +66326,52 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9552] = 20, + [8852] = 19, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1777), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, + ACTIONS(1835), 1, + anon_sym_RBRACE, STATE(683), 1, sym__curly_braces_name_expression, - STATE(1041), 1, - sym_field_expression, - STATE(1868), 1, - sym_function_declaration, - ACTIONS(1153), 2, + STATE(2742), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1045), 4, + STATE(1063), 20, + sym_scope_dict, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, - STATE(1100), 15, - sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, @@ -67663,51 +66380,52 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_index_expression, sym_slice_expression, + sym_field_expression, sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9633] = 18, + [8932] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1869), 1, - anon_sym_COLON, - ACTIONS(1873), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1839), 1, sym_integer_literal, + ACTIONS(1841), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1871), 3, + ACTIONS(1837), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(949), 20, + STATE(1010), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67728,45 +66446,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9710] = 18, + [9009] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1875), 1, - anon_sym_COLON, - ACTIONS(1879), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1843), 1, + anon_sym_RPAREN, + ACTIONS(1847), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1877), 3, + ACTIONS(1845), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(951), 20, + STATE(820), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67787,45 +66505,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9787] = 18, + [9086] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_COLON, - ACTIONS(1885), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1849), 1, + anon_sym_RPAREN, + ACTIONS(1853), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1883), 3, + ACTIONS(1851), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(840), 20, + STATE(817), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67846,45 +66564,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9864] = 18, + [9163] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1889), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1855), 1, + anon_sym_COLON, + ACTIONS(1859), 1, sym_integer_literal, - ACTIONS(1891), 1, - anon_sym_RBRACK, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1887), 3, + ACTIONS(1857), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1037), 20, + STATE(969), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67905,45 +66623,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [9941] = 18, + [9240] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1861), 1, anon_sym_COLON, - ACTIONS(1897), 1, + ACTIONS(1865), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1895), 3, + ACTIONS(1863), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(954), 20, + STATE(888), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -67964,45 +66682,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10018] = 18, + [9317] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1899), 1, - anon_sym_RPAREN, - ACTIONS(1903), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1869), 1, sym_integer_literal, + ACTIONS(1871), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1901), 3, + ACTIONS(1867), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(819), 20, + STATE(1013), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68023,45 +66741,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10095] = 18, + [9394] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1907), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1873), 1, + anon_sym_COLON, + ACTIONS(1877), 1, sym_integer_literal, - ACTIONS(1909), 1, - anon_sym_RBRACK, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1905), 3, + ACTIONS(1875), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1039), 20, + STATE(973), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68082,45 +66800,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10172] = 18, + [9471] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, - ACTIONS(1911), 1, - anon_sym_RBRACK, + ACTIONS(1883), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68141,45 +66859,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10249] = 18, + [9548] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1915), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1887), 1, sym_integer_literal, - ACTIONS(1917), 1, - anon_sym_RBRACK, + ACTIONS(1889), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1913), 3, + ACTIONS(1885), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1043), 20, + STATE(1061), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68200,45 +66918,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10326] = 18, + [9625] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, - ACTIONS(1919), 1, - anon_sym_RBRACK, + ACTIONS(1891), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68259,45 +66977,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10403] = 18, + [9702] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, - aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1489), 1, - anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, - anon_sym_BANG, - ACTIONS(1501), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, - sym__scope_dict, - ACTIONS(1509), 1, - sym_scope, - STATE(296), 1, + ACTIONS(1893), 1, + anon_sym_RBRACK2, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(321), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1499), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68318,45 +67036,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10480] = 18, + [9779] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1921), 1, - anon_sym_RPAREN, - ACTIONS(1925), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1897), 1, sym_integer_literal, + ACTIONS(1899), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1923), 3, + ACTIONS(1895), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(816), 20, + STATE(1059), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68377,45 +67095,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10557] = 18, + [9856] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1929), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1739), 1, sym_integer_literal, - ACTIONS(1931), 1, - anon_sym_RBRACK, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(2742), 1, + sym_dictionnary_entry, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1927), 3, + ACTIONS(1737), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(993), 20, + STATE(1063), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68436,45 +67154,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10634] = 18, + [9933] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1901), 1, + anon_sym_COLON, + ACTIONS(1905), 1, sym_integer_literal, - ACTIONS(1933), 1, - anon_sym_RBRACK, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1903), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(848), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68495,50 +67213,53 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10711] = 18, + [10010] = 20, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1937), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1823), 1, sym_integer_literal, - ACTIONS(1939), 1, - anon_sym_RBRACK, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(1011), 1, + sym_field_expression, + STATE(1925), 1, + sym_function_declaration, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1935), 3, + ACTIONS(1821), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1064), 20, - sym_scope_dict, + STATE(1005), 4, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, + STATE(1084), 15, + sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, @@ -68547,52 +67268,51 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_index_expression, sym_slice_expression, - sym_field_expression, sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10788] = 18, + [10091] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1909), 1, sym_integer_literal, - ACTIONS(1941), 1, - anon_sym_RBRACK, + ACTIONS(1911), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1907), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(1039), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68613,45 +67333,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10865] = 18, + [10168] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, - aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, - anon_sym_BANG, - ACTIONS(1463), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1913), 1, + anon_sym_RPAREN, + ACTIONS(1917), 1, sym_integer_literal, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, - sym__scope_dict, - ACTIONS(1473), 1, - sym_scope, - STATE(301), 1, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(323), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1455), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1461), 3, + ACTIONS(1915), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(573), 20, + STATE(823), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68672,45 +67392,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [10942] = 18, + [10245] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1943), 1, - anon_sym_RPAREN, - ACTIONS(1947), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, + ACTIONS(1919), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1945), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(823), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68731,45 +67451,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11019] = 18, + [10322] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1731), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, + ACTIONS(1921), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - STATE(2803), 1, - sym_dictionnary_entry, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1729), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1062), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68790,45 +67510,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11096] = 18, + [10399] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1951), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1925), 1, sym_integer_literal, - ACTIONS(1953), 1, - anon_sym_RBRACK, + ACTIONS(1927), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1949), 3, + ACTIONS(1923), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1034), 20, + STATE(991), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68849,45 +67569,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11173] = 18, + [10476] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1931), 1, sym_integer_literal, - ACTIONS(1955), 1, - anon_sym_RBRACK, + ACTIONS(1933), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1929), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(983), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68908,45 +67628,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11250] = 18, + [10553] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1959), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, - ACTIONS(1961), 1, - anon_sym_RBRACK, + ACTIONS(1935), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1957), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(989), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -68967,45 +67687,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11327] = 18, + [10630] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, - ACTIONS(1963), 1, - anon_sym_RBRACK, + ACTIONS(1937), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69026,45 +67746,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11404] = 18, + [10707] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1965), 1, - anon_sym_RPAREN, - ACTIONS(1969), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1941), 1, sym_integer_literal, + ACTIONS(1943), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1967), 3, + ACTIONS(1939), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(817), 20, + STATE(987), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69085,45 +67805,89 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11481] = 18, + [10784] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(835), 15, + anon_sym_DOT, + anon_sym_LBRACE, aux_sym_identifier_token1, - ACTIONS(1167), 1, + aux_sym_identifier_token2, + 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_is, + anon_sym_isnot, + anon_sym_GT2, + ACTIONS(833), 24, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, + 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_EQ_LT_LT, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + 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_LBRACK2, + [10831] = 18, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1453), 1, + aux_sym_identifier_token1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1463), 1, + anon_sym_BANG, + ACTIONS(1467), 1, sym_integer_literal, - ACTIONS(1971), 1, - anon_sym_RBRACK, - STATE(683), 1, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, + sym__scope_dict, + ACTIONS(1477), 1, + sym_scope, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(342), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69144,50 +67908,53 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11558] = 18, + [10908] = 20, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1975), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1823), 1, sym_integer_literal, - ACTIONS(1977), 1, - anon_sym_RBRACK, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(1011), 1, + sym_field_expression, + STATE(1950), 1, + sym_function_declaration, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1973), 3, + ACTIONS(1821), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(980), 20, - sym_scope_dict, + STATE(1005), 4, sym_scoped_identifier, sym_argument, sym_identifier, sym__ident, + STATE(1084), 15, + sym_scope_dict, sym__variable, sym__expression, sym_ternary_expression, @@ -69196,52 +67963,51 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_index_expression, sym_slice_expression, - sym_field_expression, sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11635] = 18, + [10989] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, - aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1489), 1, - anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, - anon_sym_BANG, - ACTIONS(1501), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1945), 1, + anon_sym_COLON, + ACTIONS(1949), 1, sym_integer_literal, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, - sym__scope_dict, - ACTIONS(1509), 1, - sym_scope, - STATE(296), 1, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(343), 1, - aux_sym_unlet_statement_repeat1, - ACTIONS(1491), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1499), 3, + ACTIONS(1947), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(559), 20, + STATE(918), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69262,45 +68028,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11712] = 18, + [11066] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1951), 1, anon_sym_RPAREN, - ACTIONS(1983), 1, + ACTIONS(1955), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1981), 3, + ACTIONS(1953), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(825), 20, + STATE(821), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69321,89 +68087,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11789] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(825), 15, - anon_sym_DOT, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym_identifier_token2, - 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_is, - anon_sym_isnot, - anon_sym_GT2, - ACTIONS(823), 24, - 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_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [11836] = 18, + [11143] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1453), 1, + aux_sym_identifier_token1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1881), 1, - anon_sym_COLON, - ACTIONS(1987), 1, + ACTIONS(1463), 1, + anon_sym_BANG, + ACTIONS(1467), 1, sym_integer_literal, - STATE(683), 1, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, + sym__scope_dict, + ACTIONS(1477), 1, + sym_scope, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(318), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1985), 3, + ACTIONS(1465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(882), 20, + STATE(624), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69424,45 +68146,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11913] = 18, + [11220] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1957), 1, + anon_sym_COLON, + ACTIONS(1961), 1, sym_integer_literal, - ACTIONS(1989), 1, - anon_sym_RBRACK, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1959), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(927), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69483,89 +68205,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [11990] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(815), 15, - anon_sym_DOT, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym_identifier_token2, - 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_is, - anon_sym_isnot, - anon_sym_GT2, - ACTIONS(813), 24, - 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_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [12037] = 18, + [11297] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1993), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1965), 1, sym_integer_literal, - ACTIONS(1995), 1, - anon_sym_RBRACK, + ACTIONS(1967), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1991), 3, + ACTIONS(1963), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(990), 20, + STATE(1037), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69586,45 +68264,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12114] = 18, + [11374] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1999), 1, + ACTIONS(1503), 1, + anon_sym_BANG, + ACTIONS(1507), 1, sym_integer_literal, - ACTIONS(2001), 1, - anon_sym_RBRACK, - STATE(683), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, + STATE(309), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(329), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1997), 3, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1071), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69645,45 +68323,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12191] = 18, + [11451] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2005), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, - ACTIONS(2007), 1, - anon_sym_RBRACK, + ACTIONS(1969), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2003), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(984), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69704,45 +68382,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12268] = 18, + [11528] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1973), 1, sym_integer_literal, - ACTIONS(2009), 1, - anon_sym_RBRACK, + ACTIONS(1975), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1971), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(986), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69763,45 +68441,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12345] = 18, + [11605] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1979), 1, sym_integer_literal, - ACTIONS(2011), 1, - anon_sym_RBRACK, + ACTIONS(1981), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1977), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(1015), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69822,45 +68500,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12422] = 18, + [11682] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_RPAREN, - ACTIONS(2017), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, + ACTIONS(1983), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2015), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(822), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -69881,133 +68559,104 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12499] = 3, + [11759] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(815), 15, - anon_sym_DOT, - anon_sym_LBRACE, + ACTIONS(1111), 1, aux_sym_identifier_token1, - aux_sym_identifier_token2, - 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_is, - anon_sym_isnot, - anon_sym_GT2, - ACTIONS(813), 24, - sym__newline_or_pipe, + ACTIONS(1131), 1, 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_EQ_LT_LT, - anon_sym_QMARK, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - 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, - [12546] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(825), 15, - anon_sym_DOT, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym_identifier_token2, - 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_is, - anon_sym_isnot, - anon_sym_GT2, - ACTIONS(823), 24, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, 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_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, - 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, - [12593] = 18, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1987), 1, + sym_integer_literal, + ACTIONS(1989), 1, + anon_sym_RBRACK2, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1985), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(996), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [11836] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1991), 1, + anon_sym_COLON, + ACTIONS(1995), 1, sym_integer_literal, - ACTIONS(2019), 1, - anon_sym_RBRACK, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1993), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(895), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70028,45 +68677,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12670] = 18, + [11913] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2023), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, - ACTIONS(2025), 1, - anon_sym_RBRACK, + ACTIONS(1997), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2021), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1046), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70087,45 +68736,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12747] = 18, + [11990] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_RPAREN, - ACTIONS(2031), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, + ACTIONS(1999), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2029), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(811), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70146,45 +68795,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12824] = 18, + [12067] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2035), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, - ACTIONS(2037), 1, - anon_sym_RBRACK, + ACTIONS(2001), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2033), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1049), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70205,45 +68854,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12901] = 18, + [12144] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1901), 1, + anon_sym_COLON, + ACTIONS(2005), 1, sym_integer_literal, - ACTIONS(2039), 1, - anon_sym_RBRACK, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(2003), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(929), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70264,86 +68913,104 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [12978] = 3, + [12221] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(889), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(887), 26, - sym__newline_or_pipe, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, - sym_comment, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, + ACTIONS(1337), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, 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, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, + sym_integer_literal, + ACTIONS(2007), 1, + anon_sym_RBRACK2, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1879), 3, + sym_string_literal, sym_float_literal, - anon_sym_LBRACK, sym_register, - anon_sym_POUND_LBRACE, - [13024] = 17, + STATE(798), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [12298] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2043), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, + ACTIONS(2009), 1, + anon_sym_RBRACK2, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2041), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1025), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70364,43 +69031,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13098] = 17, + [12375] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, - ACTIONS(2047), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2011), 1, + anon_sym_RPAREN, + ACTIONS(2015), 1, sym_integer_literal, - STATE(739), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2045), 3, + ACTIONS(2013), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(807), 20, + STATE(816), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70421,43 +69090,133 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13172] = 17, + [12452] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, + ACTIONS(815), 15, + anon_sym_DOT, + anon_sym_LBRACE, + aux_sym_identifier_token1, + aux_sym_identifier_token2, + 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_is, + anon_sym_isnot, + anon_sym_GT2, + ACTIONS(813), 24, + sym__scope_dict, anon_sym_a_COLON, - ACTIONS(1595), 1, + 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_EQ_LT_LT, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + [12499] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(835), 15, + anon_sym_DOT, anon_sym_LBRACE, - ACTIONS(1597), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, + aux_sym_identifier_token2, + 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_is, + anon_sym_isnot, + anon_sym_GT2, + ACTIONS(833), 24, + 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_EQ_LT_LT, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + [12546] = 18, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1487), 1, + anon_sym_a_COLON, + ACTIONS(1489), 1, + anon_sym_LBRACE, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1503), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1507), 1, + sym_integer_literal, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1513), 1, sym__scope_dict, - ACTIONS(1619), 1, + ACTIONS(1515), 1, sym_scope, - ACTIONS(2051), 1, - sym_integer_literal, - STATE(739), 1, + STATE(309), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + STATE(334), 1, + aux_sym_unlet_statement_repeat1, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2049), 3, + ACTIONS(1505), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(806), 20, + STATE(474), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70478,43 +69237,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13246] = 17, + [12623] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, - ACTIONS(2055), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2019), 1, sym_integer_literal, - STATE(739), 1, + ACTIONS(2021), 1, + anon_sym_RBRACK2, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 3, + ACTIONS(2017), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(913), 20, + STATE(1031), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70535,43 +69296,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13320] = 17, + [12700] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, - ACTIONS(2059), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2023), 1, + anon_sym_RPAREN, + ACTIONS(2027), 1, sym_integer_literal, - STATE(739), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2057), 3, + ACTIONS(2025), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(936), 20, + STATE(811), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70592,43 +69355,89 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13394] = 17, + [12777] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, + ACTIONS(815), 15, + anon_sym_DOT, anon_sym_LBRACE, - ACTIONS(1597), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, + aux_sym_identifier_token2, + 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_is, + anon_sym_isnot, + anon_sym_GT2, + ACTIONS(813), 24, + 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_EQ_LT_LT, + anon_sym_QMARK, + anon_sym_LPAREN, + 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_LBRACK2, + [12824] = 18, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, - ACTIONS(2063), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2031), 1, sym_integer_literal, - STATE(739), 1, + ACTIONS(2033), 1, + anon_sym_RBRACK2, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2061), 3, + ACTIONS(2029), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(923), 20, + STATE(1017), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70649,43 +69458,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13468] = 17, + [12901] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2067), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2035), 1, + anon_sym_RPAREN, + ACTIONS(2039), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2065), 3, + ACTIONS(2037), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1053), 20, + STATE(815), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70706,43 +69517,140 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13542] = 17, + [12978] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, + ACTIONS(2041), 1, + anon_sym_DOT, + ACTIONS(2045), 1, + anon_sym_LPAREN, + ACTIONS(2053), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2055), 1, + anon_sym_AMP_AMP, + ACTIONS(2057), 1, + anon_sym_DOT_DOT, + ACTIONS(2063), 1, + anon_sym_LBRACK2, + ACTIONS(2051), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2059), 2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(2047), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2049), 3, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2043), 4, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(2061), 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(853), 12, + sym__newline_or_pipe, + sym__scope_dict, + sym_scope, + sym_string_literal, + sym_comment, anon_sym_a_COLON, - ACTIONS(1561), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, + anon_sym_QMARK, + anon_sym_DOLLAR, + sym_float_literal, + sym_register, + anon_sym_POUND_LBRACE, + [13046] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(913), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1565), 1, anon_sym_AMP, - ACTIONS(1567), 1, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + 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_LBRACE, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1571), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1573), 1, - anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + 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_LBRACK2, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, + [13092] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1147), 1, + aux_sym_identifier_token1, + ACTIONS(1167), 1, sym__scope_dict, - ACTIONS(1585), 1, + ACTIONS(1169), 1, sym_scope, - ACTIONS(2071), 1, + ACTIONS(1225), 1, + anon_sym_a_COLON, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(1229), 1, + anon_sym_AMP, + ACTIONS(1231), 1, + anon_sym_LPAREN, + ACTIONS(1233), 1, + anon_sym_DOLLAR, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1709), 1, + anon_sym_BANG, + ACTIONS(2067), 1, sym_integer_literal, - STATE(718), 1, + STATE(145), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1153), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2069), 3, + ACTIONS(2065), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(890), 20, + STATE(159), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70763,43 +69671,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13616] = 17, + [13166] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2071), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2073), 3, + ACTIONS(2069), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(850), 20, + STATE(1016), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70820,43 +69728,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13690] = 17, + [13240] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, - ACTIONS(2079), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2075), 1, sym_integer_literal, - STATE(739), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2077), 3, + ACTIONS(2073), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(812), 20, + STATE(1033), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70877,43 +69785,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13764] = 17, + [13314] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1595), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1671), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1675), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1681), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1691), 1, sym__scope_dict, - ACTIONS(1619), 1, + ACTIONS(1693), 1, sym_scope, - ACTIONS(2083), 1, + ACTIONS(2079), 1, sym_integer_literal, - STATE(739), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2081), 3, + ACTIONS(2077), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(810), 20, + STATE(893), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70934,43 +69842,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13838] = 17, + [13388] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2083), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2085), 3, + ACTIONS(2081), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(994), 20, + STATE(1019), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -70991,43 +69899,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13912] = 17, + [13462] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2091), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2087), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2089), 3, + ACTIONS(2085), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(999), 20, + STATE(1012), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71048,100 +69956,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [13986] = 17, + [13536] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(881), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(879), 26, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + sym_string_literal, + sym_comment, anon_sym_a_COLON, - ACTIONS(1349), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2095), 1, - sym_integer_literal, - STATE(683), 1, - sym__curly_braces_name_expression, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2093), 3, - sym_string_literal, + 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_LBRACK2, sym_register, - STATE(1001), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [14060] = 17, + anon_sym_POUND_LBRACE, + [13582] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1181), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1197), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1199), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1211), 1, + anon_sym_LPAREN, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2099), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1577), 1, + anon_sym_BANG, + ACTIONS(1581), 1, sym_integer_literal, - STATE(683), 1, + STATE(148), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2097), 3, + ACTIONS(1579), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1005), 20, + STATE(230), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71162,43 +70056,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14134] = 17, + [13656] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1181), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1197), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1199), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1211), 1, + anon_sym_LPAREN, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2103), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1577), 1, + anon_sym_BANG, + ACTIONS(2091), 1, sym_integer_literal, - STATE(683), 1, + STATE(148), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2101), 3, + ACTIONS(2089), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1006), 20, + STATE(227), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71219,43 +70113,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14208] = 17, + [13730] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(901), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(899), 26, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + [13776] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1181), 1, + aux_sym_identifier_token1, + ACTIONS(1197), 1, + sym__scope_dict, + ACTIONS(1199), 1, + sym_scope, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1211), 1, + anon_sym_LPAREN, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2107), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1577), 1, + anon_sym_BANG, + ACTIONS(2095), 1, sym_integer_literal, - STATE(683), 1, + STATE(148), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 3, + ACTIONS(2093), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1007), 20, + STATE(224), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71276,43 +70213,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14282] = 17, + [13850] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2099), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2109), 3, + ACTIONS(2097), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1008), 20, + STATE(994), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71333,43 +70270,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14356] = 17, + [13924] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1181), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1197), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1199), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1211), 1, + anon_sym_LPAREN, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2115), 1, + ACTIONS(1217), 1, sym_integer_literal, - STATE(683), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1577), 1, + anon_sym_BANG, + STATE(148), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2113), 3, + ACTIONS(1215), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1009), 20, + STATE(226), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71390,43 +70327,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14430] = 17, + [13998] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1181), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1191), 1, + sym_integer_literal, + ACTIONS(1197), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1199), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1211), 1, + anon_sym_LPAREN, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2119), 1, - sym_integer_literal, - STATE(683), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1577), 1, + anon_sym_BANG, + STATE(148), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2117), 3, + ACTIONS(1201), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1011), 20, + STATE(241), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71447,43 +70384,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14504] = 17, + [14072] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2103), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2121), 3, + ACTIONS(2101), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1012), 20, + STATE(1067), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71504,43 +70441,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14578] = 17, + [14146] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(897), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(895), 26, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1275), 1, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [14192] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2127), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2107), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2125), 3, + ACTIONS(2105), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(855), 20, + STATE(958), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71561,43 +70541,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14652] = 17, + [14266] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2131), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2111), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2129), 3, + ACTIONS(2109), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1013), 20, + STATE(1002), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71618,43 +70598,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14726] = 17, + [14340] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1671), 1, + aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, + sym__scope_dict, + ACTIONS(1693), 1, + sym_scope, + ACTIONS(2115), 1, sym_integer_literal, - STATE(683), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2133), 3, + ACTIONS(2113), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1027), 20, + STATE(912), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71675,43 +70655,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14800] = 17, + [14414] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1181), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1197), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1199), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1211), 1, + anon_sym_LPAREN, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2139), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1577), 1, + anon_sym_BANG, + ACTIONS(2119), 1, sym_integer_literal, - STATE(683), 1, + STATE(148), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2137), 3, + ACTIONS(2117), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1015), 20, + STATE(4), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71732,45 +70712,172 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14874] = 18, + [14488] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(893), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(891), 26, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1275), 1, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [14534] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(881), 12, + anon_sym_DOT, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, - ACTIONS(1285), 1, + sym_integer_literal, + ACTIONS(879), 26, + 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_token4, + 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_LBRACK2, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + [14580] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(889), 12, + anon_sym_DOT, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(887), 26, + sym__scope_dict, + sym_scope, + sym_string_literal, anon_sym_a_COLON, - ACTIONS(1349), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [14626] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1667), 1, + anon_sym_a_COLON, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(1671), 1, + aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, + sym__scope_dict, + ACTIONS(1693), 1, + sym_scope, + ACTIONS(2123), 1, sym_integer_literal, - STATE(683), 1, + STATE(757), 1, sym__curly_braces_name_expression, - STATE(853), 1, - sym_call_expression, - ACTIONS(1153), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2141), 3, + ACTIONS(2121), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1103), 19, + STATE(877), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71785,48 +70892,49 @@ static const uint16_t ts_small_parse_table[] = { sym_index_expression, sym_slice_expression, sym_field_expression, + sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [14950] = 17, + [14700] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2147), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2127), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2145), 3, + ACTIONS(2125), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1017), 20, + STATE(1003), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71847,43 +70955,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15024] = 17, + [14774] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1587), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1591), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1453), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, + ACTIONS(1601), 1, anon_sym_BANG, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, + ACTIONS(1611), 1, sym__scope_dict, - ACTIONS(1473), 1, + ACTIONS(1613), 1, sym_scope, - ACTIONS(2151), 1, + ACTIONS(2131), 1, sym_integer_literal, - STATE(301), 1, + STATE(717), 1, sym__curly_braces_name_expression, - ACTIONS(1455), 2, + ACTIONS(1597), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2149), 3, + ACTIONS(2129), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(482), 20, + STATE(917), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71904,43 +71012,45 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15098] = 17, + [14848] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2155), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2135), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(898), 1, + sym_call_expression, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2153), 3, + ACTIONS(2133), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1018), 20, + STATE(1082), 19, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -71955,49 +71065,48 @@ static const uint16_t ts_small_parse_table[] = { sym_index_expression, sym_slice_expression, sym_field_expression, - sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15172] = 17, + [14924] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2159), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2139), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2157), 3, + ACTIONS(2137), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1021), 20, + STATE(1077), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72018,43 +71127,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15246] = 17, + [14998] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2163), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2143), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 3, + ACTIONS(2141), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1022), 20, + STATE(914), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72075,43 +71184,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15320] = 17, + [15072] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2167), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2147), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2165), 3, + ACTIONS(2145), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1024), 20, + STATE(1000), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72132,43 +71241,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15394] = 17, + [15146] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(861), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1599), 1, anon_sym_AMP, - ACTIONS(1601), 1, - anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, - ACTIONS(1611), 1, sym_integer_literal, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(859), 26, + 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_token4, + 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_LBRACK2, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, + [15192] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1619), 1, + ACTIONS(1133), 1, sym_scope, - STATE(739), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1725), 1, + sym_integer_literal, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1609), 3, + ACTIONS(1723), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(868), 20, + STATE(744), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72189,43 +71341,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15468] = 17, + [15266] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, - ACTIONS(2171), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2151), 1, sym_integer_literal, - STATE(739), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2169), 3, + ACTIONS(2149), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(862), 20, + STATE(989), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72246,43 +71398,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15542] = 17, + [15340] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, - ACTIONS(2175), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2155), 1, sym_integer_literal, - STATE(739), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2173), 3, + ACTIONS(2153), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(867), 20, + STATE(746), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72303,43 +71455,141 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15616] = 17, + [15414] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(909), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1599), 1, anon_sym_AMP, - ACTIONS(1601), 1, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(907), 26, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1605), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1607), 1, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [15460] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2159), 1, + anon_sym_DOT, + ACTIONS(2163), 1, + anon_sym_QMARK, + ACTIONS(2165), 1, + anon_sym_LPAREN, + ACTIONS(2173), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2175), 1, + anon_sym_AMP_AMP, + ACTIONS(2177), 1, + anon_sym_DOT_DOT, + ACTIONS(2183), 1, + anon_sym_LBRACK2, + ACTIONS(2171), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2179), 2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(2167), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2169), 3, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2161), 4, + aux_sym_identifier_token1, + anon_sym_AMP, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + sym_integer_literal, + ACTIONS(2181), 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(2157), 11, + 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_token4, + sym_float_literal, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, + [15530] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1619), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(2179), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2187), 1, sym_integer_literal, - STATE(739), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2177), 3, + ACTIONS(2185), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(869), 20, + STATE(743), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72360,43 +71610,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15690] = 17, + [15604] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, - ACTIONS(2183), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2191), 1, sym_integer_literal, - STATE(739), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2181), 3, + ACTIONS(2189), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(870), 20, + STATE(1028), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72417,53 +71667,64 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [15764] = 3, + [15678] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(859), 12, + ACTIONS(2159), 1, anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, + ACTIONS(2165), 1, + anon_sym_LPAREN, + ACTIONS(2173), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2175), 1, + anon_sym_AMP_AMP, + ACTIONS(2177), 1, + anon_sym_DOT_DOT, + ACTIONS(2183), 1, + anon_sym_LBRACK2, + ACTIONS(2171), 2, anon_sym_LT2, - anon_sym_DASH, + anon_sym_GT2, + ACTIONS(2179), 2, anon_sym_is, anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(857), 26, - 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, + ACTIONS(2167), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_DOLLAR, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2169), 3, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2043), 4, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(2181), 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(853), 12, + 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_token4, sym_float_literal, - anon_sym_LBRACK, sym_register, anon_sym_POUND_LBRACE, - [15810] = 3, + [15746] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(855), 12, + ACTIONS(851), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -72476,12 +71737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(853), 26, - sym__newline_or_pipe, + ACTIONS(849), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -72489,6 +71748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72500,10 +71761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [15856] = 3, + [15792] = 3, ACTIONS(3), 1, sym__line_continuation, ACTIONS(929), 12, @@ -72520,11 +71781,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym_integer_literal, ACTIONS(927), 26, - sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -72532,6 +71791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72543,13 +71804,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [15902] = 3, + [15838] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(925), 12, + ACTIONS(1587), 1, + anon_sym_a_COLON, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(1591), 1, + aux_sym_identifier_token1, + ACTIONS(1593), 1, + anon_sym_AMP, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_DOLLAR, + ACTIONS(1601), 1, + anon_sym_BANG, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1611), 1, + sym__scope_dict, + ACTIONS(1613), 1, + sym_scope, + ACTIONS(2195), 1, + sym_integer_literal, + STATE(717), 1, + sym__curly_braces_name_expression, + ACTIONS(1597), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2193), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(938), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [15912] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(937), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -72562,12 +71880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(923), 26, - sym__newline_or_pipe, + ACTIONS(935), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -72575,6 +71891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72586,46 +71904,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_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [15948] = 17, + [15958] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2187), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2199), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2185), 3, + ACTIONS(2197), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(728), 20, + STATE(742), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72646,43 +71964,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16022] = 17, + [16032] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(989), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(987), 26, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1275), 1, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [16078] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2191), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2203), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 3, + ACTIONS(2201), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1031), 20, + STATE(735), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72703,10 +72064,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16096] = 3, + [16152] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(909), 12, + ACTIONS(985), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -72719,12 +72080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(907), 26, - sym__newline_or_pipe, + ACTIONS(983), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -72732,6 +72091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -72743,135 +72104,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [16142] = 6, + [16198] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2193), 1, - anon_sym_DOT, - ACTIONS(2195), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_LBRACK, - ACTIONS(941), 11, + ACTIONS(1587), 1, + anon_sym_a_COLON, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(1591), 1, aux_sym_identifier_token1, + ACTIONS(1593), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_DOLLAR, + ACTIONS(1601), 1, anon_sym_BANG, - sym_integer_literal, - ACTIONS(939), 24, - sym__newline_or_pipe, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1611), 1, sym__scope_dict, + ACTIONS(1613), 1, sym_scope, + ACTIONS(2207), 1, + sym_integer_literal, + STATE(717), 1, + sym__curly_braces_name_expression, + ACTIONS(1597), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2205), 3, sym_string_literal, - 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, sym_float_literal, sym_register, - anon_sym_POUND_LBRACE, - [16194] = 3, + STATE(913), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [16272] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(961), 12, - anon_sym_DOT, + ACTIONS(1587), 1, + anon_sym_a_COLON, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(1591), 1, aux_sym_identifier_token1, + ACTIONS(1593), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_DOLLAR, + ACTIONS(1601), 1, anon_sym_BANG, - sym_integer_literal, - ACTIONS(959), 26, - sym__newline_or_pipe, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1611), 1, sym__scope_dict, + ACTIONS(1613), 1, sym_scope, + ACTIONS(2211), 1, + sym_integer_literal, + STATE(717), 1, + sym__curly_braces_name_expression, + ACTIONS(1597), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2209), 3, 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, sym_register, - anon_sym_POUND_LBRACE, - [16240] = 17, + STATE(957), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [16346] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1845), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(1881), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1843), 3, + ACTIONS(1879), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(797), 20, + STATE(798), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72892,43 +72278,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16314] = 17, + [16420] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2201), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2215), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2199), 3, + ACTIONS(2213), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1069), 20, + STATE(1027), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -72949,10 +72335,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16388] = 3, + [16494] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(774), 12, + ACTIONS(909), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -72965,7 +72351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(783), 26, + ACTIONS(907), 26, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -72989,13 +72375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [16434] = 3, + [16540] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(945), 12, + ACTIONS(973), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -73008,12 +72394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(943), 26, - sym__newline_or_pipe, + ACTIONS(971), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -73021,6 +72405,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73032,46 +72418,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_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [16480] = 17, + [16586] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, - anon_sym_a_COLON, - ACTIONS(1447), 1, - anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, - anon_sym_AMP, - ACTIONS(1453), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1459), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, - sym__scope_dict, - ACTIONS(1473), 1, - sym_scope, - ACTIONS(2205), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2219), 1, sym_integer_literal, - STATE(301), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1455), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2203), 3, + ACTIONS(2217), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(506), 20, + STATE(1009), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73092,100 +72478,94 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16554] = 17, + [16660] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, - anon_sym_a_COLON, - ACTIONS(1447), 1, - anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(2159), 1, + anon_sym_DOT, + ACTIONS(2165), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_DOT_DOT, + ACTIONS(2183), 1, + anon_sym_LBRACK2, + ACTIONS(2167), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2169), 3, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(957), 8, aux_sym_identifier_token1, - ACTIONS(1451), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1459), 1, + anon_sym_LT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, + sym_integer_literal, + ACTIONS(955), 20, sym__scope_dict, - ACTIONS(1473), 1, sym_scope, - ACTIONS(2209), 1, - sym_integer_literal, - STATE(301), 1, - sym__curly_braces_name_expression, - ACTIONS(1455), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2207), 3, sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, - STATE(507), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [16628] = 17, + anon_sym_POUND_LBRACE, + [16718] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2213), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2223), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + STATE(860), 1, + sym_call_expression, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2211), 3, + ACTIONS(2221), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1032), 20, + STATE(1100), 19, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73200,45 +72580,44 @@ static const uint16_t ts_small_parse_table[] = { sym_index_expression, sym_slice_expression, sym_field_expression, - sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16702] = 17, + [16794] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, + ACTIONS(1147), 1, aux_sym_identifier_token1, - ACTIONS(1135), 1, + ACTIONS(1167), 1, sym__scope_dict, - ACTIONS(1137), 1, + ACTIONS(1169), 1, sym_scope, - ACTIONS(1209), 1, + ACTIONS(1225), 1, anon_sym_a_COLON, - ACTIONS(1211), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, + ACTIONS(1229), 1, anon_sym_AMP, - ACTIONS(1215), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1217), 1, + ACTIONS(1233), 1, anon_sym_DOLLAR, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, anon_sym_POUND_LBRACE, - ACTIONS(1721), 1, + ACTIONS(1709), 1, anon_sym_BANG, - ACTIONS(2217), 1, + ACTIONS(2227), 1, sym_integer_literal, - STATE(147), 1, + STATE(145), 1, sym__curly_braces_name_expression, - ACTIONS(1121), 2, + ACTIONS(1153), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2215), 3, + ACTIONS(2225), 3, sym_string_literal, sym_float_literal, sym_register, @@ -73263,100 +72642,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16776] = 17, + [16868] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, - anon_sym_a_COLON, - ACTIONS(1447), 1, - anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(933), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1451), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1459), 1, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, + sym_integer_literal, + ACTIONS(931), 26, sym__scope_dict, - ACTIONS(1473), 1, sym_scope, - ACTIONS(2221), 1, - sym_integer_literal, - STATE(301), 1, - sym__curly_braces_name_expression, - ACTIONS(1455), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2219), 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_token4, + 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_LBRACK2, sym_register, - STATE(513), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [16850] = 17, + anon_sym_POUND_LBRACE, + [16914] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2225), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2231), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2223), 3, + ACTIONS(2229), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1076), 20, + STATE(1032), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73377,43 +72742,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16924] = 17, + [16988] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, - anon_sym_a_COLON, - ACTIONS(1447), 1, - anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, - anon_sym_AMP, - ACTIONS(1453), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1459), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, - sym__scope_dict, - ACTIONS(1473), 1, - sym_scope, - ACTIONS(2229), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2235), 1, sym_integer_literal, - STATE(301), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1455), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2227), 3, + ACTIONS(2233), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(514), 20, + STATE(1035), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73434,43 +72799,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [16998] = 17, + [17062] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1181), 1, + aux_sym_identifier_token1, + ACTIONS(1197), 1, + sym__scope_dict, + ACTIONS(1199), 1, + sym_scope, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, - aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1453), 1, + ACTIONS(1211), 1, anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, - anon_sym_BANG, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, - sym__scope_dict, - ACTIONS(1473), 1, - sym_scope, - ACTIONS(1557), 1, + ACTIONS(1577), 1, + anon_sym_BANG, + ACTIONS(2239), 1, sym_integer_literal, - STATE(301), 1, + STATE(148), 1, sym__curly_braces_name_expression, - ACTIONS(1455), 2, + ACTIONS(1187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1555), 3, + ACTIONS(2237), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(509), 20, + STATE(212), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73491,43 +72856,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17072] = 17, + [17136] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2233), 1, + ACTIONS(1503), 1, + anon_sym_BANG, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, + ACTIONS(2243), 1, sym_integer_literal, - STATE(683), 1, + STATE(309), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2231), 3, + ACTIONS(2241), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1040), 20, + STATE(477), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73548,43 +72913,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17146] = 17, + [17210] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1587), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1591), 1, + aux_sym_identifier_token1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2237), 1, + ACTIONS(1601), 1, + anon_sym_BANG, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1611), 1, + sym__scope_dict, + ACTIONS(1613), 1, + sym_scope, + ACTIONS(2247), 1, sym_integer_literal, - STATE(683), 1, + STATE(717), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1597), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2235), 3, + ACTIONS(2245), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1047), 20, + STATE(891), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -73605,10 +72970,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17220] = 3, + [17284] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(973), 12, + ACTIONS(921), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -73621,12 +72986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(971), 26, - sym__newline_or_pipe, + ACTIONS(919), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -73634,6 +72997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73645,13 +73010,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [17266] = 3, + [17330] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(969), 12, + ACTIONS(821), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -73664,7 +73029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(967), 26, + ACTIONS(819), 26, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -73688,13 +73053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [17312] = 3, + [17376] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(989), 12, + ACTIONS(913), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -73707,12 +73072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(987), 26, - sym__newline_or_pipe, + ACTIONS(911), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -73720,6 +73083,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73731,13 +73096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [17358] = 3, + [17422] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(957), 12, + ACTIONS(905), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -73750,12 +73115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(955), 26, - sym__newline_or_pipe, + ACTIONS(903), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -73763,6 +73126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73774,13 +73139,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [17404] = 3, + [17468] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(985), 12, + ACTIONS(869), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -73793,12 +73158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(983), 26, - sym__newline_or_pipe, + ACTIONS(867), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -73806,6 +73169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73817,13 +73182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [17450] = 3, + [17514] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(981), 12, + ACTIONS(857), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -73836,12 +73201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(979), 26, - sym__newline_or_pipe, + ACTIONS(855), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -73849,6 +73212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -73860,360 +73225,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [17496] = 3, + [17560] = 12, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(905), 12, + ACTIONS(2159), 1, anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(903), 26, - sym__newline_or_pipe, - sym__scope_dict, - sym_scope, - sym_string_literal, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(2165), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2177), 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, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [17542] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(977), 12, - anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, + ACTIONS(2183), 1, + anon_sym_LBRACK2, + ACTIONS(2171), 2, anon_sym_LT2, - anon_sym_DASH, + anon_sym_GT2, + ACTIONS(2179), 2, anon_sym_is, anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(975), 26, - 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, + ACTIONS(2167), 3, 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, - sym_register, - anon_sym_POUND_LBRACE, - [17588] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2193), 1, - anon_sym_DOT, - ACTIONS(2195), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_LBRACK, - ACTIONS(965), 11, - aux_sym_identifier_token1, - anon_sym_AMP, + ACTIONS(2169), 3, anon_sym_DOT2, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(963), 24, - 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_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, - sym_register, - anon_sym_POUND_LBRACE, - [17640] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2193), 1, - anon_sym_DOT, - ACTIONS(2195), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_LBRACK, - ACTIONS(2239), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(965), 11, + ACTIONS(847), 4, aux_sym_identifier_token1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(963), 21, - 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_DOLLAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, + ACTIONS(2181), 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, - sym_float_literal, - sym_register, - anon_sym_POUND_LBRACE, - [17694] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(851), 12, - anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(849), 26, + ACTIONS(845), 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_token4, - 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, - sym_register, - anon_sym_POUND_LBRACE, - [17740] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2193), 1, - anon_sym_DOT, - ACTIONS(2195), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_LBRACK, - ACTIONS(2243), 1, - anon_sym_DOT_DOT, - ACTIONS(2239), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2241), 3, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(965), 8, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_LT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(963), 20, - 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_DOLLAR, 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, - [17798] = 3, + [17624] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(847), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(845), 26, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(1267), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - sym_register, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - [17844] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1445), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1447), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1449), 1, - aux_sym_identifier_token1, - ACTIONS(1451), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1459), 1, - anon_sym_BANG, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, - sym__scope_dict, - ACTIONS(1473), 1, - sym_scope, - ACTIONS(2247), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2251), 1, sym_integer_literal, - STATE(301), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1455), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2245), 3, + ACTIONS(2249), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(530), 20, + STATE(1021), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74234,191 +73337,153 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [17918] = 3, + [17698] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(831), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(829), 26, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, + ACTIONS(1337), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - sym_register, - anon_sym_POUND_LBRACE, - [17964] = 13, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2193), 1, - anon_sym_DOT, - ACTIONS(2195), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_LBRACK, - ACTIONS(2243), 1, - anon_sym_DOT_DOT, - ACTIONS(2251), 1, - anon_sym_AMP_AMP, - ACTIONS(2249), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2253), 2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(2239), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2241), 3, - anon_sym_DOT2, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2255), 1, + sym_integer_literal, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(965), 4, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(2255), 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(963), 13, - sym__newline_or_pipe, - sym__scope_dict, - sym_scope, + ACTIONS(2253), 3, sym_string_literal, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_PIPE_PIPE, sym_float_literal, sym_register, - anon_sym_POUND_LBRACE, - [18030] = 12, + STATE(1038), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [17772] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2193), 1, + ACTIONS(2159), 1, anon_sym_DOT, - ACTIONS(2195), 1, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_LBRACK, - ACTIONS(2243), 1, + ACTIONS(2175), 1, + anon_sym_AMP_AMP, + ACTIONS(2177), 1, anon_sym_DOT_DOT, - ACTIONS(2249), 2, + ACTIONS(2183), 1, + anon_sym_LBRACK2, + ACTIONS(2171), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2253), 2, + ACTIONS(2179), 2, anon_sym_is, anon_sym_isnot, - ACTIONS(2239), 3, + ACTIONS(2167), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2241), 3, + ACTIONS(2169), 3, anon_sym_DOT2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(965), 4, + ACTIONS(847), 4, aux_sym_identifier_token1, anon_sym_AMP, anon_sym_BANG, sym_integer_literal, - ACTIONS(2255), 6, + ACTIONS(2181), 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(963), 14, - sym__newline_or_pipe, + ACTIONS(845), 13, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [18094] = 17, + [17838] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2259), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2257), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1058), 20, + STATE(1018), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74439,43 +73504,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18168] = 17, + [17912] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1503), 1, + anon_sym_BANG, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, ACTIONS(2263), 1, sym_integer_literal, - STATE(683), 1, + STATE(309), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2261), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1077), 20, + STATE(493), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74496,43 +73561,92 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18242] = 17, + [17986] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(2159), 1, + anon_sym_DOT, + ACTIONS(2165), 1, + anon_sym_LPAREN, + ACTIONS(2177), 1, + anon_sym_DOT_DOT, + ACTIONS(2183), 1, + anon_sym_LBRACK2, + ACTIONS(2167), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2169), 3, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(847), 8, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_LT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(845), 20, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, - ACTIONS(1345), 1, + [18044] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1671), 1, + aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, + sym__scope_dict, + ACTIONS(1693), 1, + sym_scope, ACTIONS(2267), 1, sym_integer_literal, - STATE(683), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2265), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1055), 20, + STATE(830), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74553,43 +73667,136 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18316] = 17, + [18118] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(2159), 1, + anon_sym_DOT, + ACTIONS(2165), 1, + anon_sym_LPAREN, + ACTIONS(2183), 1, + anon_sym_LBRACK2, + ACTIONS(2167), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(847), 11, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(845), 21, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, + [18172] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2159), 1, + anon_sym_DOT, + ACTIONS(2165), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(2183), 1, + anon_sym_LBRACK2, + ACTIONS(847), 11, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, - ACTIONS(1285), 1, + sym_integer_literal, + ACTIONS(845), 24, + 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_token4, + 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, + [18224] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2271), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2269), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1060), 20, + STATE(1023), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74610,43 +73817,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18390] = 17, + [18298] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2275), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2273), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1061), 20, + STATE(999), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74667,43 +73874,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18464] = 17, + [18372] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2279), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2277), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1065), 20, + STATE(1034), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74724,129 +73931,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18538] = 3, + [18446] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(949), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(947), 26, - sym__newline_or_pipe, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(1267), 1, 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, - sym_register, - anon_sym_POUND_LBRACE, - [18584] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(937), 12, - anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, + ACTIONS(1271), 1, anon_sym_BANG, - sym_integer_literal, - ACTIONS(935), 26, - 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, - sym_register, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - [18630] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1115), 1, - aux_sym_identifier_token1, - ACTIONS(1125), 1, - sym_integer_literal, - ACTIONS(1135), 1, - sym__scope_dict, - ACTIONS(1137), 1, - sym_scope, - ACTIONS(1209), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1211), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1215), 1, - anon_sym_LPAREN, - ACTIONS(1217), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1721), 1, - anon_sym_BANG, - STATE(147), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2283), 1, + sym_integer_literal, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1121), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1139), 3, + ACTIONS(2281), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(196), 20, + STATE(1022), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -74867,172 +73988,100 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18704] = 3, + [18520] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(933), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(931), 26, - sym__newline_or_pipe, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(1267), 1, 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, - sym_register, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - [18750] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(843), 12, - anon_sym_DOT, - aux_sym_identifier_token1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, anon_sym_AMP, - anon_sym_DOT2, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2287), 1, + sym_integer_literal, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(841), 26, - sym__newline_or_pipe, - sym__scope_dict, - sym_scope, + ACTIONS(2285), 3, 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, sym_register, - anon_sym_POUND_LBRACE, - [18796] = 3, + STATE(1041), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [18594] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(921), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(919), 26, - sym__newline_or_pipe, + ACTIONS(1131), 1, 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, - sym_register, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - [18842] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1593), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1595), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1597), 1, - aux_sym_identifier_token1, - ACTIONS(1599), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1601), 1, - anon_sym_LPAREN, - ACTIONS(1605), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1607), 1, - anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, - ACTIONS(2283), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2291), 1, sym_integer_literal, - STATE(739), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2281), 3, + ACTIONS(2289), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(966), 20, + STATE(998), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75053,43 +74102,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18916] = 17, + [18668] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1445), 1, - anon_sym_a_COLON, - ACTIONS(1447), 1, - anon_sym_LBRACE, - ACTIONS(1449), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1451), 1, - anon_sym_AMP, - ACTIONS(1453), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1457), 1, - anon_sym_DOLLAR, - ACTIONS(1459), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1465), 1, - anon_sym_LBRACK, - ACTIONS(1467), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1471), 1, - sym__scope_dict, - ACTIONS(1473), 1, - sym_scope, - ACTIONS(2287), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2295), 1, sym_integer_literal, - STATE(301), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1455), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2285), 3, + ACTIONS(2293), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(544), 20, + STATE(997), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75110,10 +74159,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [18990] = 3, + [18742] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(917), 12, + ACTIONS(865), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -75126,12 +74175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(915), 26, - sym__newline_or_pipe, + ACTIONS(863), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -75139,6 +74186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -75150,49 +74199,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_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [19036] = 9, + [18788] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2193), 1, + ACTIONS(877), 12, anon_sym_DOT, - ACTIONS(2195), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_LBRACK, - ACTIONS(2243), 1, - anon_sym_DOT_DOT, - ACTIONS(2239), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2241), 3, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(913), 8, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, anon_sym_LT2, + anon_sym_DASH, anon_sym_is, anon_sym_isnot, anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(911), 20, - sym__newline_or_pipe, + ACTIONS(875), 26, 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_token4, + 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, @@ -75200,55 +74242,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [19094] = 3, + [18834] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(839), 12, - anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_a_COLON, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(1671), 1, aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_DOLLAR, + ACTIONS(1681), 1, anon_sym_BANG, - sym_integer_literal, - ACTIONS(837), 26, - sym__newline_or_pipe, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, sym__scope_dict, + ACTIONS(1693), 1, sym_scope, + ACTIONS(2299), 1, + sym_integer_literal, + STATE(757), 1, + sym__curly_braces_name_expression, + ACTIONS(1677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2297), 3, 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, sym_register, - anon_sym_POUND_LBRACE, - [19140] = 3, + STATE(950), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [18908] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(953), 12, + ACTIONS(885), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -75261,12 +74318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(951), 26, - sym__newline_or_pipe, + ACTIONS(883), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -75274,6 +74329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -75285,46 +74342,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_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [19186] = 17, + [18954] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, + ACTIONS(1587), 1, anon_sym_a_COLON, - ACTIONS(1561), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1591), 1, aux_sym_identifier_token1, - ACTIONS(1565), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1567), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1571), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR, - ACTIONS(1573), 1, + ACTIONS(1601), 1, anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, + ACTIONS(1611), 1, sym__scope_dict, - ACTIONS(1585), 1, + ACTIONS(1613), 1, sym_scope, - ACTIONS(2291), 1, + ACTIONS(2303), 1, sym_integer_literal, - STATE(718), 1, + STATE(717), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1597), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2289), 3, + ACTIONS(2301), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(834), 20, + STATE(855), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75345,43 +74402,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19260] = 17, + [19028] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, + ACTIONS(1587), 1, anon_sym_a_COLON, - ACTIONS(1561), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1591), 1, aux_sym_identifier_token1, - ACTIONS(1565), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1567), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1571), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR, - ACTIONS(1573), 1, + ACTIONS(1601), 1, anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, + ACTIONS(1611), 1, sym__scope_dict, - ACTIONS(1585), 1, + ACTIONS(1613), 1, sym_scope, - ACTIONS(2295), 1, + ACTIONS(2307), 1, sym_integer_literal, - STATE(718), 1, + STATE(717), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1597), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2293), 3, + ACTIONS(2305), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(860), 20, + STATE(919), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75402,10 +74459,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19334] = 3, + [19102] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(953), 12, + ACTIONS(901), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -75418,10 +74475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(951), 26, + ACTIONS(899), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -75429,8 +74488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -75442,46 +74499,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_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [19380] = 17, + [19148] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1587), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1591), 1, + aux_sym_identifier_token1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2299), 1, + ACTIONS(1601), 1, + anon_sym_BANG, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1611), 1, + sym__scope_dict, + ACTIONS(1613), 1, + sym_scope, + ACTIONS(2311), 1, sym_integer_literal, - STATE(683), 1, + STATE(717), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1597), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2297), 3, + ACTIONS(2309), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(725), 20, + STATE(854), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75502,43 +74559,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19454] = 17, + [19222] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2303), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2315), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2301), 3, + ACTIONS(2313), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1051), 20, + STATE(1048), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75559,43 +74616,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19528] = 17, + [19296] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1671), 1, + aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, + sym__scope_dict, + ACTIONS(1693), 1, + sym_scope, + ACTIONS(2319), 1, sym_integer_literal, - STATE(683), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2305), 3, + ACTIONS(2317), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1072), 20, + STATE(835), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -75616,10 +74673,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [19602] = 3, + [19370] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(901), 12, + ACTIONS(897), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -75632,7 +74689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(899), 26, + ACTIONS(895), 26, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -75656,325 +74713,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [19648] = 3, + [19416] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(905), 12, - anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_a_COLON, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(1671), 1, aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_DOLLAR, + ACTIONS(1681), 1, anon_sym_BANG, - sym_integer_literal, - ACTIONS(903), 26, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, sym__scope_dict, + ACTIONS(1693), 1, sym_scope, + ACTIONS(2323), 1, + sym_integer_literal, + STATE(757), 1, + sym__curly_braces_name_expression, + ACTIONS(1677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2321), 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_token4, - 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, sym_register, - anon_sym_POUND_LBRACE, - [19694] = 3, + STATE(834), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [19490] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(969), 12, - anon_sym_DOT, + ACTIONS(1587), 1, + anon_sym_a_COLON, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(1591), 1, aux_sym_identifier_token1, + ACTIONS(1593), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_DOLLAR, + ACTIONS(1601), 1, anon_sym_BANG, - sym_integer_literal, - ACTIONS(967), 26, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1611), 1, sym__scope_dict, + ACTIONS(1613), 1, sym_scope, + ACTIONS(2327), 1, + sym_integer_literal, + STATE(717), 1, + sym__curly_braces_name_expression, + ACTIONS(1597), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2325), 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_token4, - 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, sym_register, - anon_sym_POUND_LBRACE, - [19740] = 3, + STATE(846), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [19564] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(897), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(895), 26, - sym__newline_or_pipe, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, - sym_comment, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, + ACTIONS(1337), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, 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, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2331), 1, + sym_integer_literal, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2329), 3, + sym_string_literal, sym_float_literal, - anon_sym_LBRACK, sym_register, - anon_sym_POUND_LBRACE, - [19786] = 3, + STATE(1036), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [19638] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(893), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(891), 26, - sym__newline_or_pipe, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, - sym_comment, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, + ACTIONS(1337), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, 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, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2335), 1, + sym_integer_literal, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2333), 3, + sym_string_literal, sym_float_literal, - anon_sym_LBRACK, sym_register, - anon_sym_POUND_LBRACE, - [19832] = 14, + STATE(1050), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [19712] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2193), 1, - anon_sym_DOT, - ACTIONS(2195), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_LBRACK, - ACTIONS(2243), 1, - anon_sym_DOT_DOT, - ACTIONS(2251), 1, - anon_sym_AMP_AMP, - ACTIONS(2311), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2249), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2253), 2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(2239), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2241), 3, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2309), 4, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(2255), 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(885), 12, - sym__newline_or_pipe, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, - sym_comment, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, + ACTIONS(1337), 1, anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2339), 1, + sym_integer_literal, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2337), 3, + sym_string_literal, sym_float_literal, sym_register, - anon_sym_POUND_LBRACE, - [19900] = 3, + STATE(1047), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [19786] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(883), 12, - anon_sym_DOT, + ACTIONS(1587), 1, + anon_sym_a_COLON, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(1591), 1, aux_sym_identifier_token1, + ACTIONS(1593), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_DOLLAR, + ACTIONS(1601), 1, anon_sym_BANG, - sym_integer_literal, - ACTIONS(881), 26, - sym__newline_or_pipe, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1611), 1, sym__scope_dict, + ACTIONS(1613), 1, sym_scope, + ACTIONS(2343), 1, + sym_integer_literal, + STATE(717), 1, + sym__curly_braces_name_expression, + ACTIONS(1597), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2341), 3, 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, sym_register, - anon_sym_POUND_LBRACE, - [19946] = 3, + STATE(915), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [19860] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(879), 12, - anon_sym_DOT, + ACTIONS(1587), 1, + anon_sym_a_COLON, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(1591), 1, aux_sym_identifier_token1, + ACTIONS(1593), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_DOLLAR, + ACTIONS(1601), 1, anon_sym_BANG, + ACTIONS(1605), 1, sym_integer_literal, - ACTIONS(877), 26, - sym__newline_or_pipe, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1611), 1, sym__scope_dict, + ACTIONS(1613), 1, sym_scope, + STATE(717), 1, + sym__curly_braces_name_expression, + ACTIONS(1597), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1603), 3, 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, sym_register, - anon_sym_POUND_LBRACE, - [19992] = 3, + STATE(849), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [19934] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(961), 12, + ACTIONS(945), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -75987,7 +75131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(959), 26, + ACTIONS(943), 26, sym__scope_dict, sym_scope, sym_string_literal, @@ -76011,13 +75155,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [20038] = 3, + [19980] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(909), 12, + ACTIONS(961), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -76030,7 +75174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(907), 26, + ACTIONS(959), 26, sym__scope_dict, sym_scope, sym_string_literal, @@ -76054,56 +75198,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [20084] = 3, + [20026] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(929), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(927), 26, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, + ACTIONS(1337), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2347), 1, + sym_integer_literal, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 3, + sym_string_literal, sym_float_literal, - anon_sym_LBRACK, sym_register, - anon_sym_POUND_LBRACE, - [20130] = 3, + STATE(1057), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [20100] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(855), 12, + ACTIONS(893), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -76116,10 +75274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(853), 26, + ACTIONS(891), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -76127,8 +75287,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76140,13 +75298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [20176] = 3, + [20146] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(859), 12, + ACTIONS(889), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -76159,10 +75317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(857), 26, + ACTIONS(887), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -76170,8 +75330,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76183,13 +75341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [20222] = 3, + [20192] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(875), 12, + ACTIONS(861), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -76202,7 +75360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(873), 26, + ACTIONS(859), 26, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -76226,67 +75384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [20268] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, - anon_sym_a_COLON, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2315), 1, - sym_integer_literal, - STATE(683), 1, - sym__curly_braces_name_expression, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2313), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(1074), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [20342] = 17, + [20238] = 17, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1147), 1, @@ -76295,91 +75396,34 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_dict, ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1225), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1229), 1, anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2319), 1, - sym_integer_literal, - STATE(683), 1, - sym__curly_braces_name_expression, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2317), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(1042), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [20416] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, - anon_sym_a_COLON, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1233), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2323), 1, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1709), 1, + anon_sym_BANG, + ACTIONS(2351), 1, sym_integer_literal, - STATE(683), 1, + STATE(145), 1, sym__curly_braces_name_expression, ACTIONS(1153), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2321), 3, + ACTIONS(2349), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1073), 20, + STATE(189), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76400,43 +75444,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20490] = 17, + [20312] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1181), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1197), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1199), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1211), 1, + anon_sym_LPAREN, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2327), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1577), 1, + anon_sym_BANG, + ACTIONS(2355), 1, sym_integer_literal, - STATE(683), 1, + STATE(148), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2325), 3, + ACTIONS(2353), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1036), 20, + STATE(225), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76457,43 +75501,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20564] = 17, + [20386] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1671), 1, + aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2331), 1, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, + sym__scope_dict, + ACTIONS(1693), 1, + sym_scope, + ACTIONS(2359), 1, sym_integer_literal, - STATE(683), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2329), 3, + ACTIONS(2357), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1019), 20, + STATE(829), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76514,43 +75558,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20638] = 17, + [20460] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(929), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(927), 26, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, + 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_LBRACK2, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + [20506] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1671), 1, + aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2335), 1, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, + sym__scope_dict, + ACTIONS(1693), 1, + sym_scope, + ACTIONS(2363), 1, sym_integer_literal, - STATE(683), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2333), 3, + ACTIONS(2361), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(986), 20, + STATE(828), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76571,98 +75658,172 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20712] = 15, + [20580] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2339), 1, + ACTIONS(937), 12, anon_sym_DOT, - ACTIONS(2343), 1, - anon_sym_QMARK, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2355), 1, - anon_sym_AMP_AMP, - ACTIONS(2357), 1, - anon_sym_DOT_DOT, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(2351), 2, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2359), 2, + anon_sym_DASH, anon_sym_is, anon_sym_isnot, - ACTIONS(2347), 3, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(935), 26, + 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, - ACTIONS(2349), 3, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [20626] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(989), 12, + anon_sym_DOT, + aux_sym_identifier_token1, + anon_sym_AMP, anon_sym_DOT2, anon_sym_PLUS, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2341), 4, - aux_sym_identifier_token1, - anon_sym_AMP, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(2361), 6, + ACTIONS(987), 26, + 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, - ACTIONS(2337), 11, + sym_float_literal, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [20672] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(985), 12, + anon_sym_DOT, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + 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_LBRACE, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + 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_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [20782] = 17, + [20718] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2367), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2365), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1068), 20, + STATE(995), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76683,43 +75844,100 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20856] = 17, + [20792] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1667), 1, + anon_sym_a_COLON, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(1671), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1673), 1, + anon_sym_AMP, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_DOLLAR, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1685), 1, + sym_integer_literal, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1693), 1, sym_scope, - ACTIONS(1269), 1, + STATE(757), 1, + sym__curly_braces_name_expression, + ACTIONS(1677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1683), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(832), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [20866] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2371), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2369), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1003), 20, + STATE(988), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76740,10 +75958,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [20930] = 3, + [20940] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(871), 12, + ACTIONS(873), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -76756,12 +75974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(869), 26, - sym__newline_or_pipe, + ACTIONS(871), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -76769,6 +75985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76780,13 +75998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [20976] = 3, + [20986] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(867), 12, + ACTIONS(949), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -76799,12 +76017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(865), 26, - sym__newline_or_pipe, + ACTIONS(947), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -76812,6 +76028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76823,103 +76041,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_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [21022] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, - aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, - anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, - anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, - ACTIONS(2375), 1, - sym_integer_literal, - STATE(739), 1, - sym__curly_braces_name_expression, - ACTIONS(1603), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2373), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(912), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [21096] = 17, + [21032] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2375), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2377), 3, + ACTIONS(2373), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1010), 20, + STATE(1043), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -76940,100 +76101,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21170] = 17, + [21106] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(925), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(923), 26, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + sym_string_literal, anon_sym_a_COLON, - ACTIONS(1349), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2383), 1, - sym_integer_literal, - STATE(683), 1, - sym__curly_braces_name_expression, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2381), 3, - sym_string_literal, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, sym_register, - STATE(1020), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [21244] = 17, + anon_sym_POUND_LBRACE, + [21152] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2379), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2385), 3, + ACTIONS(2377), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(995), 20, + STATE(1060), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77054,43 +76201,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21318] = 17, + [21226] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2383), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2389), 3, + ACTIONS(2381), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(981), 20, + STATE(755), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77111,43 +76258,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21392] = 17, + [21300] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2387), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2393), 3, + ACTIONS(2385), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1023), 20, + STATE(1029), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77168,43 +76315,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21466] = 17, + [21374] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1671), 1, + aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, + sym__scope_dict, + ACTIONS(1693), 1, + sym_scope, + ACTIONS(2391), 1, sym_integer_literal, - STATE(683), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2397), 3, + ACTIONS(2389), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(976), 20, + STATE(901), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77225,10 +76372,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [21540] = 3, + [21448] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(867), 12, + ACTIONS(925), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -77241,10 +76388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(865), 26, + ACTIONS(923), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -77252,8 +76401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77265,13 +76412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [21586] = 3, + [21494] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(871), 12, + ACTIONS(965), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -77284,7 +76431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(869), 26, + ACTIONS(963), 26, sym__scope_dict, sym_scope, sym_string_literal, @@ -77308,68 +76455,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [21632] = 15, + [21540] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2193), 1, - anon_sym_DOT, - ACTIONS(2195), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_LBRACK, - ACTIONS(2243), 1, - anon_sym_DOT_DOT, - ACTIONS(2251), 1, - anon_sym_AMP_AMP, - ACTIONS(2311), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2401), 1, - anon_sym_QMARK, - ACTIONS(2249), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2253), 2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(2239), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2241), 3, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2341), 4, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(2255), 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(2337), 11, - sym__newline_or_pipe, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, - sym_comment, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, + ACTIONS(1337), 1, anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2395), 1, + sym_integer_literal, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2393), 3, + sym_string_literal, sym_float_literal, sym_register, - anon_sym_POUND_LBRACE, - [21702] = 3, + STATE(1001), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [21614] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(875), 12, + ACTIONS(973), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -77382,10 +76531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(873), 26, + ACTIONS(971), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -77393,8 +76544,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77406,42 +76555,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [21748] = 3, + [21660] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(879), 12, + ACTIONS(2041), 1, anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_AMP, + ACTIONS(2045), 1, + anon_sym_LPAREN, + ACTIONS(2057), 1, + anon_sym_DOT_DOT, + ACTIONS(2063), 1, + anon_sym_LBRACK2, + ACTIONS(2047), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2049), 3, anon_sym_DOT2, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, + ACTIONS(957), 8, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_LT2, anon_sym_is, anon_sym_isnot, anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(877), 26, + ACTIONS(955), 20, + 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_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, @@ -77449,13 +76605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, sym_register, anon_sym_POUND_LBRACE, - [21794] = 3, + [21718] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(883), 12, + ACTIONS(933), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -77468,10 +76623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(881), 26, + ACTIONS(931), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -77479,8 +76636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77492,67 +76647,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [21840] = 14, + [21764] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2339), 1, - anon_sym_DOT, - ACTIONS(2345), 1, + ACTIONS(1449), 1, + anon_sym_a_COLON, + ACTIONS(1451), 1, + anon_sym_LBRACE, + ACTIONS(1453), 1, + aux_sym_identifier_token1, + ACTIONS(1455), 1, + anon_sym_AMP, + ACTIONS(1457), 1, anon_sym_LPAREN, - ACTIONS(2353), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2355), 1, - anon_sym_AMP_AMP, - ACTIONS(2357), 1, - anon_sym_DOT_DOT, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(2351), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2359), 2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(2347), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2349), 3, - anon_sym_DOT2, + ACTIONS(1461), 1, + anon_sym_DOLLAR, + ACTIONS(1463), 1, + anon_sym_BANG, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, + sym__scope_dict, + ACTIONS(1477), 1, + sym_scope, + ACTIONS(2399), 1, + sym_integer_literal, + STATE(310), 1, + sym__curly_braces_name_expression, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 4, + ACTIONS(2397), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(437), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [21838] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(921), 12, + anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(2361), 6, + ACTIONS(919), 26, + 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, - ACTIONS(885), 12, + sym_float_literal, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [21884] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1181), 1, + aux_sym_identifier_token1, + ACTIONS(1197), 1, sym__scope_dict, + ACTIONS(1199), 1, sym_scope, - sym_string_literal, + ACTIONS(1205), 1, anon_sym_a_COLON, + ACTIONS(1207), 1, anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(1209), 1, + anon_sym_AMP, + ACTIONS(1211), 1, + anon_sym_LPAREN, + ACTIONS(1213), 1, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1577), 1, + anon_sym_BANG, + ACTIONS(2403), 1, + sym_integer_literal, + STATE(148), 1, + sym__curly_braces_name_expression, + ACTIONS(1187), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2401), 3, + sym_string_literal, sym_float_literal, sym_register, - anon_sym_POUND_LBRACE, - [21908] = 3, + STATE(3), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [21958] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(889), 12, + ACTIONS(905), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -77565,10 +76823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(887), 26, + ACTIONS(903), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -77576,8 +76836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77589,13 +76847,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [21954] = 3, + [22004] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(893), 12, + ACTIONS(1487), 1, + anon_sym_a_COLON, + ACTIONS(1489), 1, + anon_sym_LBRACE, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, + anon_sym_AMP, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1503), 1, + anon_sym_BANG, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, + ACTIONS(1585), 1, + sym_integer_literal, + STATE(309), 1, + sym__curly_braces_name_expression, + ACTIONS(1497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1583), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(514), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [22078] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(869), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -77608,10 +76923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(891), 26, + ACTIONS(867), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -77619,8 +76936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77632,13 +76947,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [22000] = 3, + [22124] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(897), 12, + ACTIONS(857), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -77651,10 +76966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(895), 26, + ACTIONS(855), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -77662,8 +76979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77675,89 +76990,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [22170] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1487), 1, + anon_sym_a_COLON, + ACTIONS(1489), 1, + anon_sym_LBRACE, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, + anon_sym_AMP, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1503), 1, + anon_sym_BANG, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, + ACTIONS(2407), 1, + sym_integer_literal, + STATE(309), 1, + sym__curly_braces_name_expression, + ACTIONS(1497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2405), 3, + sym_string_literal, + sym_float_literal, sym_register, + STATE(508), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [22244] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1487), 1, + anon_sym_a_COLON, + ACTIONS(1489), 1, + anon_sym_LBRACE, + ACTIONS(1491), 1, + aux_sym_identifier_token1, + ACTIONS(1493), 1, + anon_sym_AMP, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1503), 1, + anon_sym_BANG, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, - [22046] = 3, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, + ACTIONS(2411), 1, + sym_integer_literal, + STATE(309), 1, + sym__curly_braces_name_expression, + ACTIONS(1497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2409), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(511), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [22318] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(901), 12, - anon_sym_DOT, + ACTIONS(1667), 1, + anon_sym_a_COLON, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(1671), 1, aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, + anon_sym_DOLLAR, + ACTIONS(1681), 1, anon_sym_BANG, - sym_integer_literal, - ACTIONS(899), 26, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, sym__scope_dict, + ACTIONS(1693), 1, sym_scope, + ACTIONS(2415), 1, + sym_integer_literal, + STATE(757), 1, + sym__curly_braces_name_expression, + ACTIONS(1677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2413), 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_token4, - 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, sym_register, - anon_sym_POUND_LBRACE, - [22092] = 17, + STATE(825), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [22392] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1487), 1, + anon_sym_a_COLON, + ACTIONS(1489), 1, + anon_sym_LBRACE, + ACTIONS(1491), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, + ACTIONS(1493), 1, + anon_sym_AMP, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1503), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1513), 1, + sym__scope_dict, + ACTIONS(1515), 1, + sym_scope, + ACTIONS(2419), 1, + sym_integer_literal, + STATE(309), 1, + sym__curly_braces_name_expression, + ACTIONS(1497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2417), 3, + sym_string_literal, + sym_float_literal, + sym_register, + STATE(516), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [22466] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1671), 1, + aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, + sym__scope_dict, + ACTIONS(1693), 1, + sym_scope, + ACTIONS(2423), 1, sym_integer_literal, - STATE(683), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2403), 3, + ACTIONS(2421), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1048), 20, + STATE(824), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77778,10 +77278,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22166] = 3, + [22540] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(831), 12, + ACTIONS(981), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -77794,12 +77294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(829), 26, - sym__newline_or_pipe, + ACTIONS(979), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -77807,6 +77305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77818,46 +77318,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_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [22212] = 17, + [22586] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2409), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2427), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2425), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(978), 20, + STATE(976), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -77878,178 +77378,157 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22286] = 3, + [22660] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(839), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(837), 26, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, + ACTIONS(1337), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - sym_register, - anon_sym_POUND_LBRACE, - [22332] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2339), 1, - anon_sym_DOT, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2357), 1, - anon_sym_DOT_DOT, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(2347), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2349), 3, - anon_sym_DOT2, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2431), 1, + sym_integer_literal, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(913), 8, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_LT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(911), 20, - sym__scope_dict, - sym_scope, + ACTIONS(2429), 3, sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [22390] = 3, + STATE(1014), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [22734] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(917), 12, - anon_sym_DOT, + ACTIONS(1487), 1, + anon_sym_a_COLON, + ACTIONS(1489), 1, + anon_sym_LBRACE, + ACTIONS(1491), 1, aux_sym_identifier_token1, + ACTIONS(1493), 1, anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, + ACTIONS(1495), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, + anon_sym_DOLLAR, + ACTIONS(1503), 1, anon_sym_BANG, - sym_integer_literal, - ACTIONS(915), 26, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1513), 1, sym__scope_dict, + ACTIONS(1515), 1, sym_scope, + ACTIONS(2435), 1, + sym_integer_literal, + STATE(309), 1, + sym__curly_braces_name_expression, + ACTIONS(1497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2433), 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_token4, - 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, sym_register, - anon_sym_POUND_LBRACE, - [22436] = 17, + STATE(517), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [22808] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1193), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1195), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1229), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1231), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1235), 1, - anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1529), 1, - anon_sym_BANG, - ACTIONS(2413), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2439), 1, sym_integer_literal, - STATE(148), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1183), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2411), 3, + ACTIONS(2437), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(206), 20, + STATE(1062), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78070,43 +77549,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22510] = 17, + [22882] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1587), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(1591), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1489), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, + ACTIONS(1601), 1, anon_sym_BANG, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1611), 1, sym__scope_dict, - ACTIONS(1509), 1, + ACTIONS(1613), 1, sym_scope, - ACTIONS(2417), 1, + ACTIONS(2443), 1, sym_integer_literal, - STATE(296), 1, + STATE(717), 1, sym__curly_braces_name_expression, - ACTIONS(1491), 2, + ACTIONS(1597), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2415), 3, + ACTIONS(2441), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(577), 20, + STATE(916), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78127,172 +77606,157 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22584] = 3, + [22956] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(921), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(919), 26, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(1267), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - sym_register, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - [22630] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(843), 12, - anon_sym_DOT, - aux_sym_identifier_token1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, anon_sym_AMP, - anon_sym_DOT2, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2447), 1, + sym_integer_literal, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, anon_sym_PLUS, - anon_sym_LT2, anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(841), 26, - sym__scope_dict, - sym_scope, + ACTIONS(2445), 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_token4, - 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, sym_register, - anon_sym_POUND_LBRACE, - [22676] = 3, + STATE(1024), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [23030] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(933), 12, - anon_sym_DOT, + ACTIONS(1111), 1, aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(931), 26, + ACTIONS(1131), 1, sym__scope_dict, + ACTIONS(1133), 1, sym_scope, - sym_string_literal, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, + ACTIONS(1337), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2451), 1, + sym_integer_literal, + STATE(683), 1, + sym__curly_braces_name_expression, + ACTIONS(1117), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2449), 3, + sym_string_literal, sym_float_literal, - anon_sym_LBRACK, sym_register, - anon_sym_POUND_LBRACE, - [22722] = 17, + STATE(977), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [23104] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2421), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2455), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2419), 3, + ACTIONS(2453), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1063), 20, + STATE(1020), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78313,10 +77777,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [22796] = 3, + [23178] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(937), 12, + ACTIONS(821), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -78329,7 +77793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(935), 26, + ACTIONS(819), 26, sym__scope_dict, sym_scope, sym_string_literal, @@ -78353,13 +77817,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [22842] = 3, + [23224] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(949), 12, + ACTIONS(977), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -78372,7 +77836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(947), 26, + ACTIONS(975), 26, sym__scope_dict, sym_scope, sym_string_literal, @@ -78396,13 +77860,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [23270] = 12, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2041), 1, + anon_sym_DOT, + ACTIONS(2045), 1, + anon_sym_LPAREN, + ACTIONS(2057), 1, + anon_sym_DOT_DOT, + ACTIONS(2063), 1, + anon_sym_LBRACK2, + ACTIONS(2051), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2059), 2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(2047), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2049), 3, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(847), 4, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(2061), 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(845), 14, + 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_DOLLAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [22888] = 3, + [23334] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(847), 12, + ACTIONS(774), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -78415,12 +77931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(845), 26, - sym__newline_or_pipe, + ACTIONS(783), 26, sym__scope_dict, sym_scope, sym_string_literal, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -78428,6 +77942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78439,46 +77955,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [22934] = 17, + [23380] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(2041), 1, + anon_sym_DOT, + ACTIONS(2045), 1, + anon_sym_LPAREN, + ACTIONS(2055), 1, + anon_sym_AMP_AMP, + ACTIONS(2057), 1, + anon_sym_DOT_DOT, + ACTIONS(2063), 1, + anon_sym_LBRACK2, + ACTIONS(2051), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2059), 2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(2047), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2049), 3, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(847), 4, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(2061), 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(845), 13, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_PIPE_PIPE, + sym_float_literal, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + [23446] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1453), 1, + aux_sym_identifier_token1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, + ACTIONS(1463), 1, + anon_sym_BANG, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, + sym__scope_dict, + ACTIONS(1477), 1, + sym_scope, + ACTIONS(2459), 1, sym_integer_literal, - STATE(683), 1, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2423), 3, + ACTIONS(2457), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1057), 20, + STATE(572), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78499,7 +78068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [23008] = 17, + [23520] = 17, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1147), 1, @@ -78508,34 +78077,34 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_dict, ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1225), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1229), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1231), 1, + anon_sym_LPAREN, + ACTIONS(1233), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2429), 1, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1709), 1, + anon_sym_BANG, + ACTIONS(1713), 1, sym_integer_literal, - STATE(683), 1, + STATE(145), 1, sym__curly_braces_name_expression, ACTIONS(1153), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2427), 3, + ACTIONS(1711), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1033), 20, + STATE(156), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78556,148 +78125,92 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [23082] = 12, + [23594] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2339), 1, + ACTIONS(2041), 1, anon_sym_DOT, - ACTIONS(2345), 1, + ACTIONS(2045), 1, anon_sym_LPAREN, - ACTIONS(2357), 1, + ACTIONS(2057), 1, anon_sym_DOT_DOT, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(2351), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2359), 2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(2347), 3, + ACTIONS(2063), 1, + anon_sym_LBRACK2, + ACTIONS(2047), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2349), 3, + ACTIONS(2049), 3, anon_sym_DOT2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(965), 4, + ACTIONS(847), 8, aux_sym_identifier_token1, anon_sym_AMP, + anon_sym_LT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(2361), 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(963), 14, + ACTIONS(845), 20, + 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_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - sym_float_literal, - sym_register, - anon_sym_POUND_LBRACE, - [23146] = 13, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2339), 1, - anon_sym_DOT, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2355), 1, - anon_sym_AMP_AMP, - ACTIONS(2357), 1, - anon_sym_DOT_DOT, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(2351), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2359), 2, - anon_sym_is, - anon_sym_isnot, - ACTIONS(2347), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2349), 3, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(965), 4, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(2361), 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(963), 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_token4, - anon_sym_PIPE_PIPE, sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [23212] = 17, + [23652] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, - anon_sym_a_COLON, - ACTIONS(1483), 1, - anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, - anon_sym_AMP, - ACTIONS(1489), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1497), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, - sym__scope_dict, - ACTIONS(1509), 1, - sym_scope, - ACTIONS(2433), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2463), 1, sym_integer_literal, - STATE(296), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1491), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2431), 3, + ACTIONS(2461), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(586), 20, + STATE(1030), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -78718,112 +78231,20 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [23286] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2339), 1, - anon_sym_DOT, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2357), 1, - anon_sym_DOT_DOT, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(2347), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2349), 3, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(965), 8, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_LT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(963), 20, - 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_token4, - 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, - [23344] = 7, + [23726] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2339), 1, + ACTIONS(2041), 1, anon_sym_DOT, - ACTIONS(2345), 1, + ACTIONS(2045), 1, anon_sym_LPAREN, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(2347), 3, + ACTIONS(2063), 1, + anon_sym_LBRACK2, + ACTIONS(2047), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(965), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(963), 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_token4, - 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, - [23398] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2339), 1, - anon_sym_DOT, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(965), 11, + ACTIONS(847), 11, aux_sym_identifier_token1, anon_sym_AMP, anon_sym_DOT2, @@ -78835,19 +78256,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(963), 24, + ACTIONS(845), 21, + 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_PERCENT, - anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, @@ -78860,111 +78278,16 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_register, anon_sym_POUND_LBRACE, - [23450] = 3, + [23780] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(977), 12, + ACTIONS(2041), 1, anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(975), 26, - 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_token4, - 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, - sym_register, - anon_sym_POUND_LBRACE, - [23496] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, + ACTIONS(2045), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, - anon_sym_a_COLON, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - sym_integer_literal, - STATE(683), 1, - sym__curly_braces_name_expression, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2435), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(1066), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [23570] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(981), 12, - anon_sym_DOT, + ACTIONS(2063), 1, + anon_sym_LBRACK2, + ACTIONS(847), 11, aux_sym_identifier_token1, anon_sym_AMP, anon_sym_DOT2, @@ -78976,19 +78299,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(979), 26, + ACTIONS(845), 24, + 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_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79000,13 +78322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, sym_register, anon_sym_POUND_LBRACE, - [23616] = 3, + [23832] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(985), 12, + ACTIONS(865), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -79019,10 +78340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(983), 26, + ACTIONS(863), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -79030,8 +78353,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79043,13 +78364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [23662] = 3, + [23878] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(957), 12, + ACTIONS(961), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -79062,10 +78383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(955), 26, + ACTIONS(959), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -79073,8 +78396,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79086,13 +78407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [23708] = 3, + [23924] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(989), 12, + ACTIONS(877), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -79105,10 +78426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(987), 26, + ACTIONS(875), 26, + sym__newline_or_pipe, sym__scope_dict, sym_scope, sym_string_literal, + sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -79116,8 +78439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOLLAR, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79129,10 +78450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [23754] = 17, + [23970] = 17, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1147), 1, @@ -79141,148 +78462,34 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_dict, ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, - anon_sym_a_COLON, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2441), 1, - sym_integer_literal, - STATE(683), 1, - sym__curly_braces_name_expression, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2439), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(1075), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [23828] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1593), 1, + ACTIONS(1225), 1, anon_sym_a_COLON, - ACTIONS(1595), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1597), 1, - aux_sym_identifier_token1, - ACTIONS(1599), 1, + ACTIONS(1229), 1, anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, + ACTIONS(1233), 1, anon_sym_DOLLAR, - ACTIONS(1607), 1, - anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, - ACTIONS(2445), 1, - sym_integer_literal, - STATE(739), 1, - sym__curly_braces_name_expression, - ACTIONS(1603), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2443), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(833), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [23902] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1709), 1, anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, - anon_sym_a_COLON, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2467), 1, sym_integer_literal, - STATE(683), 1, + STATE(145), 1, sym__curly_braces_name_expression, ACTIONS(1153), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2447), 3, + ACTIONS(2465), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(977), 20, + STATE(179), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79303,11 +78510,16 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [23976] = 3, + [24044] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(973), 12, + ACTIONS(2159), 1, anon_sym_DOT, + ACTIONS(2165), 1, + anon_sym_LPAREN, + ACTIONS(2183), 1, + anon_sym_LBRACK2, + ACTIONS(941), 11, aux_sym_identifier_token1, anon_sym_AMP, anon_sym_DOT2, @@ -79319,14 +78531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(971), 26, + ACTIONS(939), 24, 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, @@ -79343,124 +78554,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, sym_float_literal, - anon_sym_LBRACK, sym_register, anon_sym_POUND_LBRACE, - [24022] = 17, + [24096] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(885), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, - anon_sym_a_COLON, - ACTIONS(1349), 1, - anon_sym_LBRACE, - ACTIONS(1353), 1, anon_sym_AMP, - ACTIONS(1355), 1, - anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2453), 1, - sym_integer_literal, - STATE(683), 1, - sym__curly_braces_name_expression, - ACTIONS(1153), 2, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2451), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(1056), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [24096] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(883), 26, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + sym_string_literal, + sym_comment, anon_sym_a_COLON, - ACTIONS(1349), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2457), 1, - sym_integer_literal, - STATE(683), 1, - sym__curly_braces_name_expression, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2455), 3, - sym_string_literal, + 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_LBRACK2, sym_register, - STATE(1054), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [24170] = 17, + anon_sym_POUND_LBRACE, + [24142] = 17, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1147), 1, @@ -79469,34 +78608,34 @@ static const uint16_t ts_small_parse_table[] = { sym__scope_dict, ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1225), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1229), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1231), 1, + anon_sym_LPAREN, + ACTIONS(1233), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1709), 1, + anon_sym_BANG, + ACTIONS(2471), 1, sym_integer_literal, - STATE(683), 1, + STATE(145), 1, sym__curly_braces_name_expression, ACTIONS(1153), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2459), 3, + ACTIONS(2469), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1052), 20, + STATE(176), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79517,328 +78656,172 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [24244] = 17, + [24216] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, - anon_sym_a_COLON, - ACTIONS(1483), 1, - anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(945), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1487), 1, anon_sym_AMP, - ACTIONS(1489), 1, - anon_sym_LPAREN, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1497), 1, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + sym_integer_literal, + ACTIONS(943), 26, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1509), 1, sym_scope, - ACTIONS(1519), 1, - sym_integer_literal, - STATE(296), 1, - sym__curly_braces_name_expression, - ACTIONS(1491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1517), 3, sym_string_literal, - sym_float_literal, - sym_register, - STATE(602), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [24318] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1481), 1, + sym_comment, anon_sym_a_COLON, - ACTIONS(1483), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, - aux_sym_identifier_token1, - ACTIONS(1487), 1, - anon_sym_AMP, - ACTIONS(1489), 1, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1493), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1497), 1, - anon_sym_BANG, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, - sym__scope_dict, - ACTIONS(1509), 1, - sym_scope, - ACTIONS(2465), 1, - sym_integer_literal, - STATE(296), 1, - sym__curly_braces_name_expression, - ACTIONS(1491), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2463), 3, - sym_string_literal, + 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_LBRACK2, sym_register, - STATE(599), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [24392] = 17, + anon_sym_POUND_LBRACE, + [24262] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, + ACTIONS(949), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1187), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, sym_integer_literal, - ACTIONS(1193), 1, + ACTIONS(947), 26, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1195), 1, sym_scope, - ACTIONS(1229), 1, + sym_string_literal, + sym_comment, anon_sym_a_COLON, - ACTIONS(1231), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_AMP, - ACTIONS(1235), 1, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1237), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1529), 1, - anon_sym_BANG, - STATE(148), 1, - sym__curly_braces_name_expression, - ACTIONS(1183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1197), 3, - sym_string_literal, + 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_LBRACK2, sym_register, - STATE(217), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [24466] = 17, + anon_sym_POUND_LBRACE, + [24308] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, - anon_sym_a_COLON, - ACTIONS(1483), 1, - anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(843), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1487), 1, anon_sym_AMP, - ACTIONS(1489), 1, - anon_sym_LPAREN, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1497), 1, - anon_sym_BANG, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, - sym__scope_dict, - ACTIONS(1509), 1, - sym_scope, - ACTIONS(2469), 1, - sym_integer_literal, - STATE(296), 1, - sym__curly_braces_name_expression, - ACTIONS(1491), 2, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_LT2, anon_sym_DASH, - ACTIONS(2467), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(600), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [24540] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1177), 1, - aux_sym_identifier_token1, - ACTIONS(1193), 1, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(841), 26, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1195), 1, sym_scope, - ACTIONS(1229), 1, + sym_string_literal, + sym_comment, anon_sym_a_COLON, - ACTIONS(1231), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_AMP, - ACTIONS(1235), 1, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1237), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1241), 1, - sym_integer_literal, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1529), 1, - anon_sym_BANG, - STATE(148), 1, - sym__curly_braces_name_expression, - ACTIONS(1183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1239), 3, - sym_string_literal, + 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_LBRACK2, sym_register, - STATE(218), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [24614] = 17, + anon_sym_POUND_LBRACE, + [24354] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1193), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1195), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1229), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1231), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1235), 1, - anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1529), 1, - anon_sym_BANG, - ACTIONS(2473), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2475), 1, sym_integer_literal, - STATE(148), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1183), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2471), 3, + ACTIONS(2473), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(244), 20, + STATE(1006), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79859,43 +78842,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [24688] = 17, + [24428] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, + ACTIONS(1147), 1, aux_sym_identifier_token1, - ACTIONS(1193), 1, + ACTIONS(1167), 1, sym__scope_dict, - ACTIONS(1195), 1, + ACTIONS(1169), 1, sym_scope, - ACTIONS(1229), 1, + ACTIONS(1225), 1, anon_sym_a_COLON, - ACTIONS(1231), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1229), 1, anon_sym_AMP, - ACTIONS(1235), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1233), 1, anon_sym_DOLLAR, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, + ACTIONS(1237), 1, + sym_integer_literal, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, anon_sym_POUND_LBRACE, - ACTIONS(1529), 1, + ACTIONS(1709), 1, anon_sym_BANG, - ACTIONS(2477), 1, - sym_integer_literal, - STATE(148), 1, + STATE(145), 1, sym__curly_braces_name_expression, - ACTIONS(1183), 2, + ACTIONS(1153), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2475), 3, + ACTIONS(1235), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(230), 20, + STATE(158), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79916,43 +78899,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [24762] = 17, + [24502] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(1671), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1489), 1, + ACTIONS(1675), 1, anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, + ACTIONS(1681), 1, anon_sym_BANG, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1691), 1, sym__scope_dict, - ACTIONS(1509), 1, + ACTIONS(1693), 1, sym_scope, - ACTIONS(2481), 1, + ACTIONS(2479), 1, sym_integer_literal, - STATE(296), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1491), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2479), 3, + ACTIONS(2477), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(603), 20, + STATE(810), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -79973,43 +78956,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [24836] = 17, + [24576] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, - aux_sym_identifier_token1, - ACTIONS(1193), 1, - sym__scope_dict, - ACTIONS(1195), 1, - sym_scope, - ACTIONS(1229), 1, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1231), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1671), 1, + aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1235), 1, + ACTIONS(1675), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1529), 1, + ACTIONS(1681), 1, anon_sym_BANG, - ACTIONS(1533), 1, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, + sym__scope_dict, + ACTIONS(1693), 1, + sym_scope, + ACTIONS(2483), 1, sym_integer_literal, - STATE(148), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1183), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1531), 3, + ACTIONS(2481), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(220), 20, + STATE(809), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80030,10 +79013,10 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [24910] = 3, + [24650] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(851), 12, + ACTIONS(965), 12, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_AMP, @@ -80046,7 +79029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_BANG, sym_integer_literal, - ACTIONS(849), 26, + ACTIONS(963), 26, sym__newline_or_pipe, sym__scope_dict, sym_scope, @@ -80070,46 +79053,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_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [24956] = 17, + [24696] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1483), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(1671), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1489), 1, + ACTIONS(1675), 1, anon_sym_LPAREN, - ACTIONS(1493), 1, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1497), 1, + ACTIONS(1681), 1, anon_sym_BANG, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, + ACTIONS(1691), 1, sym__scope_dict, - ACTIONS(1509), 1, + ACTIONS(1693), 1, sym_scope, - ACTIONS(2485), 1, + ACTIONS(2487), 1, sym_integer_literal, - STATE(296), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1491), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2483), 3, + ACTIONS(2485), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(604), 20, + STATE(903), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80130,129 +79113,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [25030] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(945), 12, - anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(943), 26, - 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_token4, - 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, - sym_register, - anon_sym_POUND_LBRACE, - [25076] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(774), 12, - anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(783), 26, - 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_token4, - 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, - sym_register, - anon_sym_POUND_LBRACE, - [25122] = 17, + [24770] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2491), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2487), 3, + ACTIONS(2489), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(988), 20, + STATE(981), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80273,89 +79170,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [25196] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2339), 1, - anon_sym_DOT, - ACTIONS(2345), 1, - anon_sym_LPAREN, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(941), 11, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(939), 24, - 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_token4, - 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, - [25248] = 17, + [24844] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, + ACTIONS(1181), 1, aux_sym_identifier_token1, - ACTIONS(1193), 1, + ACTIONS(1197), 1, sym__scope_dict, - ACTIONS(1195), 1, + ACTIONS(1199), 1, sym_scope, - ACTIONS(1229), 1, + ACTIONS(1205), 1, anon_sym_a_COLON, - ACTIONS(1231), 1, + ACTIONS(1207), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1209), 1, anon_sym_AMP, - ACTIONS(1235), 1, + ACTIONS(1211), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1213), 1, anon_sym_DOLLAR, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, + ACTIONS(1219), 1, + anon_sym_LBRACK2, + ACTIONS(1221), 1, anon_sym_POUND_LBRACE, - ACTIONS(1529), 1, + ACTIONS(1577), 1, anon_sym_BANG, - ACTIONS(2493), 1, + ACTIONS(2495), 1, sym_integer_literal, STATE(148), 1, sym__curly_braces_name_expression, - ACTIONS(1183), 2, + ACTIONS(1187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2491), 3, + ACTIONS(2493), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(3), 20, + STATE(217), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80376,43 +79227,98 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [25322] = 17, + [24918] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(2041), 1, + anon_sym_DOT, + ACTIONS(2045), 1, + anon_sym_LPAREN, + ACTIONS(2053), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2055), 1, + anon_sym_AMP_AMP, + ACTIONS(2057), 1, + anon_sym_DOT_DOT, + ACTIONS(2063), 1, + anon_sym_LBRACK2, + ACTIONS(2497), 1, + anon_sym_QMARK, + ACTIONS(2051), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2059), 2, + anon_sym_is, + anon_sym_isnot, + ACTIONS(2047), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2049), 3, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2161), 4, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(2061), 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(2157), 11, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, + sym_string_literal, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_DOLLAR, + sym_float_literal, + sym_register, + anon_sym_POUND_LBRACE, + [24988] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2497), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2501), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2495), 3, + ACTIONS(2499), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1050), 20, + STATE(992), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80433,86 +79339,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [25396] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(925), 12, - anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_AMP, - anon_sym_DOT2, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DASH, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - anon_sym_BANG, - sym_integer_literal, - ACTIONS(923), 26, - 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_token4, - 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, - sym_register, - anon_sym_POUND_LBRACE, - [25442] = 17, + [25062] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2501), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2505), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2499), 3, + ACTIONS(2503), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1035), 20, + STATE(1064), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80533,43 +79396,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [25516] = 17, + [25136] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1453), 1, + aux_sym_identifier_token1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(2505), 1, + ACTIONS(1463), 1, + anon_sym_BANG, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, + sym__scope_dict, + ACTIONS(1477), 1, + sym_scope, + ACTIONS(1697), 1, sym_integer_literal, - STATE(683), 1, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2503), 3, + ACTIONS(1695), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(998), 20, + STATE(602), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80590,43 +79453,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [25590] = 17, + [25210] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1453), 1, + aux_sym_identifier_token1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1463), 1, + anon_sym_BANG, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, + sym__scope_dict, + ACTIONS(1477), 1, + sym_scope, ACTIONS(2509), 1, sym_integer_literal, - STATE(683), 1, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2507), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1067), 20, + STATE(597), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80647,43 +79510,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [25664] = 17, + [25284] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, - aux_sym_identifier_token1, - ACTIONS(1193), 1, - sym__scope_dict, - ACTIONS(1195), 1, - sym_scope, - ACTIONS(1229), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1231), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1453), 1, + aux_sym_identifier_token1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1235), 1, + ACTIONS(1457), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1529), 1, + ACTIONS(1463), 1, anon_sym_BANG, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, + sym__scope_dict, + ACTIONS(1477), 1, + sym_scope, ACTIONS(2513), 1, sym_integer_literal, - STATE(148), 1, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1183), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2511), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(205), 20, + STATE(599), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80704,43 +79567,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [25738] = 17, + [25358] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2517), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2515), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1044), 20, + STATE(1026), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80761,43 +79624,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [25812] = 17, + [25432] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, - aux_sym_identifier_token1, - ACTIONS(1193), 1, - sym__scope_dict, - ACTIONS(1195), 1, - sym_scope, - ACTIONS(1229), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1231), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1453), 1, + aux_sym_identifier_token1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1235), 1, + ACTIONS(1457), 1, anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1529), 1, + ACTIONS(1463), 1, anon_sym_BANG, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, + sym__scope_dict, + ACTIONS(1477), 1, + sym_scope, ACTIONS(2521), 1, sym_integer_literal, - STATE(148), 1, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1183), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2519), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(242), 20, + STATE(604), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80818,43 +79681,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [25886] = 17, + [25506] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1453), 1, + aux_sym_identifier_token1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1463), 1, + anon_sym_BANG, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, + sym__scope_dict, + ACTIONS(1477), 1, + sym_scope, ACTIONS(2525), 1, sym_integer_literal, - STATE(683), 1, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2523), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1002), 20, + STATE(605), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80875,43 +79738,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [25960] = 17, + [25580] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, + ACTIONS(977), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1135), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(975), 26, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1137), 1, sym_scope, - ACTIONS(1209), 1, + sym_string_literal, + sym_comment, anon_sym_a_COLON, - ACTIONS(1211), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, - anon_sym_AMP, - ACTIONS(1215), 1, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1217), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, + 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_LBRACK2, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1721), 1, + [25626] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2529), 1, sym_integer_literal, - STATE(147), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1121), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2527), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(180), 20, + STATE(1065), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -80932,100 +79838,447 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26034] = 17, + [25700] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, + ACTIONS(774), 12, + anon_sym_DOT, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(783), 26, + sym__newline_or_pipe, + sym__scope_dict, + sym_scope, + sym_string_literal, + sym_comment, anon_sym_a_COLON, - ACTIONS(1561), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [25746] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(851), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1565), 1, anon_sym_AMP, - ACTIONS(1567), 1, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(849), 26, + 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, - ACTIONS(1571), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1573), 1, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [25792] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2041), 1, + anon_sym_DOT, + ACTIONS(2045), 1, + anon_sym_LPAREN, + ACTIONS(2063), 1, + anon_sym_LBRACK2, + ACTIONS(941), 11, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + sym_integer_literal, + ACTIONS(939), 24, + 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_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, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, + [25844] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(873), 12, + anon_sym_DOT, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(871), 26, + sym__newline_or_pipe, sym__scope_dict, - ACTIONS(1585), 1, 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [25890] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2533), 1, sym_integer_literal, - STATE(718), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2531), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(959), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [26108] = 17, + STATE(1068), 20, + 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_env_variable, + sym_option, + sym_dictionnary, + sym_literal_dictionary, + sym_lambda_expression, + [25964] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(917), 12, + anon_sym_DOT, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(915), 26, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [26010] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(969), 12, + anon_sym_DOT, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(967), 26, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [26056] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(839), 12, + anon_sym_DOT, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(837), 26, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [26102] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(981), 12, + anon_sym_DOT, + aux_sym_identifier_token1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(979), 26, + 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_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [26148] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2537), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2535), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1029), 20, + STATE(1069), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81046,43 +80299,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26182] = 17, + [26222] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1481), 1, - anon_sym_a_COLON, - ACTIONS(1483), 1, - anon_sym_LBRACE, - ACTIONS(1485), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1487), 1, - anon_sym_AMP, - ACTIONS(1489), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1497), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1503), 1, - anon_sym_LBRACK, - ACTIONS(1505), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1507), 1, - sym__scope_dict, - ACTIONS(1509), 1, - sym_scope, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2541), 1, sym_integer_literal, - STATE(296), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1491), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2539), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(632), 20, + STATE(1070), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81103,100 +80356,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26256] = 17, + [26296] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, + ACTIONS(843), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1135), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(841), 26, sym__scope_dict, - ACTIONS(1137), 1, sym_scope, - ACTIONS(1209), 1, + sym_string_literal, anon_sym_a_COLON, - ACTIONS(1211), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, - anon_sym_AMP, - ACTIONS(1215), 1, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1217), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1221), 1, - sym_integer_literal, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1721), 1, - anon_sym_BANG, - STATE(147), 1, - sym__curly_braces_name_expression, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1219), 3, - sym_string_literal, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, sym_register, - STATE(193), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [26330] = 17, + anon_sym_POUND_LBRACE, + [26342] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1135), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1137), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1209), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1211), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1215), 1, - anon_sym_LPAREN, - ACTIONS(1217), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1721), 1, - anon_sym_BANG, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2545), 1, sym_integer_literal, - STATE(147), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1121), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2543), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(191), 20, + STATE(1004), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81217,43 +80456,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26404] = 17, + [26416] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, + ACTIONS(1147), 1, aux_sym_identifier_token1, - ACTIONS(1135), 1, + ACTIONS(1157), 1, + sym_integer_literal, + ACTIONS(1167), 1, sym__scope_dict, - ACTIONS(1137), 1, + ACTIONS(1169), 1, sym_scope, - ACTIONS(1209), 1, + ACTIONS(1225), 1, anon_sym_a_COLON, - ACTIONS(1211), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, + ACTIONS(1229), 1, anon_sym_AMP, - ACTIONS(1215), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1217), 1, + ACTIONS(1233), 1, anon_sym_DOLLAR, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, anon_sym_POUND_LBRACE, - ACTIONS(1721), 1, + ACTIONS(1709), 1, anon_sym_BANG, - ACTIONS(2549), 1, - sym_integer_literal, - STATE(147), 1, + STATE(145), 1, sym__curly_braces_name_expression, - ACTIONS(1121), 2, + ACTIONS(1153), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2547), 3, + ACTIONS(1171), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(190), 20, + STATE(162), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81274,43 +80513,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26478] = 17, + [26490] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1135), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1137), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1209), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1211), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1215), 1, - anon_sym_LPAREN, - ACTIONS(1217), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1721), 1, - anon_sym_BANG, - ACTIONS(1725), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2549), 1, sym_integer_literal, - STATE(147), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1121), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1723), 3, + ACTIONS(2547), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(192), 20, + STATE(1071), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81331,43 +80570,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26552] = 17, + [26564] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, - anon_sym_a_COLON, - ACTIONS(1561), 1, - anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(917), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1565), 1, anon_sym_AMP, - ACTIONS(1567), 1, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(915), 26, + sym__scope_dict, + sym_scope, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1571), 1, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1573), 1, - anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, + [26610] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1111), 1, + aux_sym_identifier_token1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1585), 1, + ACTIONS(1133), 1, sym_scope, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2553), 1, sym_integer_literal, - STATE(718), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2551), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(928), 20, + STATE(1072), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81388,43 +80670,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26626] = 17, + [26684] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1135), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1137), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1209), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1211), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1215), 1, - anon_sym_LPAREN, - ACTIONS(1217), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1721), 1, - anon_sym_BANG, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2557), 1, sym_integer_literal, - STATE(147), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1121), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2555), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(173), 20, + STATE(1073), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81445,43 +80727,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26700] = 17, + [26758] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1115), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1135), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1137), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1209), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1211), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1215), 1, - anon_sym_LPAREN, - ACTIONS(1217), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1223), 1, - anon_sym_LBRACK, - ACTIONS(1225), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1721), 1, - anon_sym_BANG, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2561), 1, sym_integer_literal, - STATE(147), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1121), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2559), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(166), 20, + STATE(1074), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81502,45 +80784,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26774] = 18, + [26832] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2565), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - STATE(858), 1, - sym_call_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2563), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1091), 19, + STATE(745), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81555,48 +80835,92 @@ static const uint16_t ts_small_parse_table[] = { sym_index_expression, sym_slice_expression, sym_field_expression, + sym_call_expression, sym_env_variable, sym_option, sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26850] = 17, + [26906] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(969), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(967), 26, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, + sym_string_literal, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, + sym_register, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + [26952] = 17, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1667), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1669), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1671), 1, + aux_sym_identifier_token1, + ACTIONS(1673), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1675), 1, + anon_sym_LPAREN, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1681), 1, + anon_sym_BANG, + ACTIONS(1687), 1, + anon_sym_LBRACK2, + ACTIONS(1689), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1691), 1, + sym__scope_dict, + ACTIONS(1693), 1, + sym_scope, ACTIONS(2569), 1, sym_integer_literal, - STATE(683), 1, + STATE(757), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1677), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2567), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1030), 20, + STATE(941), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81617,43 +80941,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26924] = 17, + [27026] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, + ACTIONS(1587), 1, anon_sym_a_COLON, - ACTIONS(1561), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1591), 1, aux_sym_identifier_token1, - ACTIONS(1565), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1567), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1571), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR, - ACTIONS(1573), 1, + ACTIONS(1601), 1, anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + ACTIONS(1607), 1, + anon_sym_LBRACK2, + ACTIONS(1609), 1, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, + ACTIONS(1611), 1, sym__scope_dict, - ACTIONS(1585), 1, + ACTIONS(1613), 1, sym_scope, ACTIONS(2573), 1, sym_integer_literal, - STATE(718), 1, + STATE(717), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1597), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2571), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(865), 20, + STATE(968), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81674,43 +80998,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [26998] = 17, + [27100] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2577), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2575), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1028), 20, + STATE(1075), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81731,100 +81055,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27072] = 17, + [27174] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, - anon_sym_a_COLON, - ACTIONS(1561), 1, - anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1565), 1, - anon_sym_AMP, - ACTIONS(1567), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1571), 1, - anon_sym_DOLLAR, - ACTIONS(1573), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, - sym__scope_dict, - ACTIONS(1585), 1, - sym_scope, - ACTIONS(2581), 1, - sym_integer_literal, - STATE(718), 1, - sym__curly_braces_name_expression, - ACTIONS(1569), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 3, - sym_string_literal, - sym_float_literal, - sym_register, - STATE(961), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, - [27146] = 17, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1559), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1561), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, - aux_sym_identifier_token1, - ACTIONS(1565), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(1571), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1573), 1, - anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, - sym__scope_dict, - ACTIONS(1585), 1, - sym_scope, - ACTIONS(2585), 1, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2581), 1, sym_integer_literal, - STATE(718), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2583), 3, + ACTIONS(2579), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(975), 20, + STATE(1042), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81845,43 +81112,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27220] = 17, + [27248] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, - anon_sym_a_COLON, - ACTIONS(1561), 1, - anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1565), 1, - anon_sym_AMP, - ACTIONS(1567), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1571), 1, - anon_sym_DOLLAR, - ACTIONS(1573), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, - sym__scope_dict, - ACTIONS(1585), 1, - sym_scope, - ACTIONS(2589), 1, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, + ACTIONS(2585), 1, sym_integer_literal, - STATE(718), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2587), 3, + ACTIONS(2583), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(962), 20, + STATE(1076), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81902,43 +81169,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27294] = 17, + [27322] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, + ACTIONS(1147), 1, + aux_sym_identifier_token1, + ACTIONS(1167), 1, + sym__scope_dict, + ACTIONS(1169), 1, + sym_scope, + ACTIONS(1225), 1, anon_sym_a_COLON, - ACTIONS(1561), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, - aux_sym_identifier_token1, - ACTIONS(1565), 1, + ACTIONS(1229), 1, anon_sym_AMP, - ACTIONS(1567), 1, + ACTIONS(1231), 1, anon_sym_LPAREN, - ACTIONS(1571), 1, + ACTIONS(1233), 1, anon_sym_DOLLAR, - ACTIONS(1573), 1, + ACTIONS(1239), 1, + anon_sym_LBRACK2, + ACTIONS(1241), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1709), 1, anon_sym_BANG, - ACTIONS(1577), 1, + ACTIONS(2589), 1, sym_integer_literal, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, - sym__scope_dict, - ACTIONS(1585), 1, - sym_scope, - STATE(718), 1, + STATE(145), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1153), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1575), 3, + ACTIONS(2587), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(973), 20, + STATE(184), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -81959,43 +81226,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27368] = 17, + [27396] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, + ACTIONS(1487), 1, anon_sym_a_COLON, - ACTIONS(1561), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1491), 1, aux_sym_identifier_token1, - ACTIONS(1565), 1, + ACTIONS(1493), 1, anon_sym_AMP, - ACTIONS(1567), 1, + ACTIONS(1495), 1, anon_sym_LPAREN, - ACTIONS(1571), 1, + ACTIONS(1499), 1, anon_sym_DOLLAR, - ACTIONS(1573), 1, + ACTIONS(1503), 1, anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + ACTIONS(1509), 1, + anon_sym_LBRACK2, + ACTIONS(1511), 1, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, + ACTIONS(1513), 1, sym__scope_dict, - ACTIONS(1585), 1, + ACTIONS(1515), 1, sym_scope, ACTIONS(2593), 1, sym_integer_literal, - STATE(718), 1, + STATE(309), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1497), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2591), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(881), 20, + STATE(610), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82016,43 +81283,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27442] = 17, + [27470] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, - anon_sym_a_COLON, - ACTIONS(1561), 1, - anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1565), 1, - anon_sym_AMP, - ACTIONS(1567), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1571), 1, - anon_sym_DOLLAR, - ACTIONS(1573), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, - sym__scope_dict, - ACTIONS(1585), 1, - sym_scope, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2597), 1, sym_integer_literal, - STATE(718), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2595), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(895), 20, + STATE(1049), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82073,43 +81340,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27516] = 17, + [27544] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2601), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2599), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1000), 20, + STATE(1058), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82130,43 +81397,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27590] = 17, + [27618] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2605), 1, sym_integer_literal, - STATE(739), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2603), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(971), 20, + STATE(1056), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82187,43 +81454,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27664] = 17, + [27692] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, - aux_sym_identifier_token1, - ACTIONS(1167), 1, - sym__scope_dict, - ACTIONS(1169), 1, - sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1449), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1451), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1453), 1, + aux_sym_identifier_token1, + ACTIONS(1455), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1463), 1, + anon_sym_BANG, + ACTIONS(1469), 1, + anon_sym_LBRACK2, + ACTIONS(1471), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1475), 1, + sym__scope_dict, + ACTIONS(1477), 1, + sym_scope, ACTIONS(2609), 1, sym_integer_literal, - STATE(683), 1, + STATE(310), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1459), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2607), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(746), 20, + STATE(637), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82244,43 +81511,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27738] = 17, + [27766] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2613), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2611), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(747), 20, + STATE(1054), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82301,43 +81568,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27812] = 17, + [27840] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2617), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2615), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(716), 20, + STATE(1053), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82358,43 +81625,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27886] = 17, + [27914] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2621), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2619), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(751), 20, + STATE(1052), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82415,43 +81682,43 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [27960] = 17, + [27988] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1559), 1, - anon_sym_a_COLON, - ACTIONS(1561), 1, - anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1565), 1, - anon_sym_AMP, - ACTIONS(1567), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1571), 1, - anon_sym_DOLLAR, - ACTIONS(1573), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(1581), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1583), 1, - sym__scope_dict, - ACTIONS(1585), 1, - sym_scope, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2625), 1, sym_integer_literal, - STATE(718), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1569), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2623), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(945), 20, + STATE(990), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82472,100 +81739,86 @@ static const uint16_t ts_small_parse_table[] = { sym_dictionnary, sym_literal_dictionary, sym_lambda_expression, - [28034] = 17, + [28062] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(839), 12, + anon_sym_DOT, aux_sym_identifier_token1, - ACTIONS(1167), 1, + anon_sym_AMP, + anon_sym_DOT2, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DASH, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + anon_sym_BANG, + sym_integer_literal, + ACTIONS(837), 26, sym__scope_dict, - ACTIONS(1169), 1, sym_scope, - ACTIONS(1269), 1, - anon_sym_LPAREN, - ACTIONS(1275), 1, - anon_sym_BANG, - ACTIONS(1285), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + sym_string_literal, anon_sym_a_COLON, - ACTIONS(1349), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, - anon_sym_AMP, - ACTIONS(1355), 1, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, - ACTIONS(1625), 1, - sym_integer_literal, - STATE(683), 1, - sym__curly_braces_name_expression, - ACTIONS(1153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1623), 3, - sym_string_literal, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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_LBRACK2, sym_register, - STATE(717), 20, - 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_env_variable, - sym_option, - sym_dictionnary, - sym_literal_dictionary, - sym_lambda_expression, + anon_sym_POUND_LBRACE, [28108] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2629), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2627), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1038), 20, + STATE(1046), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82589,40 +81842,40 @@ static const uint16_t ts_small_parse_table[] = { [28182] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2633), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2631), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(830), 20, + STATE(753), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82646,40 +81899,40 @@ static const uint16_t ts_small_parse_table[] = { [28256] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1177), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1193), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1195), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1229), 1, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + anon_sym_BANG, + ACTIONS(1281), 1, + anon_sym_POUND_LBRACE, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1231), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1235), 1, - anon_sym_LPAREN, - ACTIONS(1237), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1243), 1, - anon_sym_LBRACK, - ACTIONS(1245), 1, - anon_sym_POUND_LBRACE, - ACTIONS(1529), 1, - anon_sym_BANG, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2637), 1, sym_integer_literal, - STATE(148), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1183), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2635), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(4), 20, + STATE(978), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82703,40 +81956,40 @@ static const uint16_t ts_small_parse_table[] = { [28330] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1593), 1, - anon_sym_a_COLON, - ACTIONS(1595), 1, - anon_sym_LBRACE, - ACTIONS(1597), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1599), 1, - anon_sym_AMP, - ACTIONS(1601), 1, + ACTIONS(1131), 1, + sym__scope_dict, + ACTIONS(1133), 1, + sym_scope, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1605), 1, - anon_sym_DOLLAR, - ACTIONS(1607), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1617), 1, - sym__scope_dict, - ACTIONS(1619), 1, - sym_scope, + ACTIONS(1333), 1, + anon_sym_a_COLON, + ACTIONS(1337), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_AMP, + ACTIONS(1343), 1, + anon_sym_DOLLAR, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2641), 1, sym_integer_literal, - STATE(739), 1, + STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1603), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2639), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(844), 20, + STATE(839), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82760,40 +82013,40 @@ static const uint16_t ts_small_parse_table[] = { [28404] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2645), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2643), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(1070), 20, + STATE(980), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82817,40 +82070,40 @@ static const uint16_t ts_small_parse_table[] = { [28478] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1147), 1, + ACTIONS(1111), 1, aux_sym_identifier_token1, - ACTIONS(1167), 1, + ACTIONS(1131), 1, sym__scope_dict, - ACTIONS(1169), 1, + ACTIONS(1133), 1, sym_scope, - ACTIONS(1269), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_BANG, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_POUND_LBRACE, - ACTIONS(1345), 1, + ACTIONS(1333), 1, anon_sym_a_COLON, - ACTIONS(1349), 1, + ACTIONS(1337), 1, anon_sym_LBRACE, - ACTIONS(1353), 1, + ACTIONS(1341), 1, anon_sym_AMP, - ACTIONS(1355), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR, - ACTIONS(1361), 1, - anon_sym_LBRACK, + ACTIONS(1349), 1, + anon_sym_LBRACK2, ACTIONS(2649), 1, sym_integer_literal, STATE(683), 1, sym__curly_braces_name_expression, - ACTIONS(1153), 2, + ACTIONS(1117), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2647), 3, sym_string_literal, sym_float_literal, sym_register, - STATE(757), 20, + STATE(1044), 20, sym_scope_dict, sym_scoped_identifier, sym_argument, @@ -82914,7 +82167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, + anon_sym_LBRACK2, [28601] = 5, ACTIONS(3), 1, sym__line_continuation, @@ -82958,7 +82211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, + anon_sym_LBRACK2, [28650] = 6, ACTIONS(3), 1, sym__line_continuation, @@ -82969,7 +82222,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(682), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(787), 12, + ACTIONS(795), 12, anon_sym_DOT, anon_sym_EQ, anon_sym_PERCENT, @@ -82982,7 +82235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(785), 19, + ACTIONS(793), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83001,7 +82254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, + anon_sym_LBRACK2, [28699] = 6, ACTIONS(3), 1, sym__line_continuation, @@ -83012,7 +82265,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(680), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(805), 12, + ACTIONS(787), 12, anon_sym_DOT, anon_sym_EQ, anon_sym_PERCENT, @@ -83025,7 +82278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(803), 19, + ACTIONS(785), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83044,7 +82297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, + anon_sym_LBRACK2, [28748] = 6, ACTIONS(3), 1, sym__line_continuation, @@ -83055,7 +82308,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(682), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(795), 12, + ACTIONS(801), 12, anon_sym_DOT, anon_sym_EQ, anon_sym_PERCENT, @@ -83068,7 +82321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(793), 19, + ACTIONS(799), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83087,7 +82340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, + anon_sym_LBRACK2, [28797] = 6, ACTIONS(3), 1, sym__line_continuation, @@ -83095,10 +82348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE2, ACTIONS(2673), 1, aux_sym_identifier_token2, - STATE(684), 2, + STATE(685), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(805), 7, + ACTIONS(787), 7, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, @@ -83106,7 +82359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(803), 23, + ACTIONS(785), 23, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -83127,20 +82380,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK2, + anon_sym_RBRACK2, anon_sym_DASH_GT, [28845] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2671), 1, - anon_sym_LBRACE2, ACTIONS(2675), 1, + anon_sym_LBRACE2, + ACTIONS(2678), 1, aux_sym_identifier_token2, - STATE(685), 2, + STATE(684), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(787), 7, + ACTIONS(801), 7, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, @@ -83148,7 +82401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(785), 23, + ACTIONS(799), 23, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -83169,17 +82422,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK2, + anon_sym_RBRACK2, anon_sym_DASH_GT, [28893] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2677), 1, + ACTIONS(2671), 1, anon_sym_LBRACE2, - ACTIONS(2680), 1, + ACTIONS(2681), 1, aux_sym_identifier_token2, - STATE(685), 2, + STATE(684), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, ACTIONS(795), 7, @@ -83211,29 +82464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK2, + anon_sym_RBRACK2, anon_sym_DASH_GT, - [28941] = 8, + [28941] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2685), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_LT_LT, - STATE(445), 1, - sym__let_operator, - STATE(2593), 1, - sym__let_heredoc, - ACTIONS(2687), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - ACTIONS(2683), 10, + ACTIONS(815), 13, anon_sym_DOT, + aux_sym_identifier_token2, + anon_sym_EQ, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -83242,25 +82482,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR2, anon_sym_DASH, anon_sym_is, + anon_sym_isnot, anon_sym_GT2, - ACTIONS(2691), 13, + ACTIONS(813), 20, + 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_EQ_LT_LT, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, - anon_sym_isnot, 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, - [28992] = 3, + anon_sym_LBRACK2, + [28982] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(825), 13, + ACTIONS(835), 13, anon_sym_DOT, aux_sym_identifier_token2, anon_sym_EQ, @@ -83274,7 +82522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(823), 20, + ACTIONS(833), 20, anon_sym_LBRACE2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -83294,14 +82542,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [29033] = 3, + anon_sym_LBRACK2, + [29023] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(815), 13, - anon_sym_DOT, - aux_sym_identifier_token2, + ACTIONS(2685), 1, anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_LT_LT, + STATE(515), 1, + sym__let_operator, + STATE(2901), 1, + sym__let_heredoc, + ACTIONS(2687), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + ACTIONS(2683), 10, + anon_sym_DOT, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -83310,171 +82571,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR2, anon_sym_DASH, anon_sym_is, - anon_sym_isnot, anon_sym_GT2, - ACTIONS(813), 20, - 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_EQ_LT_LT, + ACTIONS(2691), 13, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, + anon_sym_isnot, 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, - [29074] = 30, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2695), 1, - anon_sym_clear, - ACTIONS(2697), 1, - anon_sym_case, - ACTIONS(2699), 1, - anon_sym_match, - ACTIONS(2701), 1, - anon_sym_spell, - ACTIONS(2703), 1, - anon_sym_foldlevel, - ACTIONS(2705), 1, - anon_sym_iskeyword, - ACTIONS(2707), 1, - anon_sym_conceal, - ACTIONS(2709), 1, - anon_sym_keyword, - ACTIONS(2711), 1, - anon_sym_region, - ACTIONS(2713), 1, - anon_sym_cluster, - ACTIONS(2715), 1, - anon_sym_include, - ACTIONS(2717), 1, - anon_sym_sync, - ACTIONS(2719), 1, - anon_sym_list, - STATE(2776), 1, - sym__syn_enable, - STATE(2779), 1, - sym__syn_case, - STATE(2780), 1, - sym__syn_spell, - STATE(2781), 1, - sym__syn_foldlevel, - STATE(2782), 1, - sym__syn_iskeyword, - STATE(2783), 1, - sym__syn_conceal, - STATE(2784), 1, - sym__syn_keyword, - STATE(2785), 1, - sym__syn_match, - STATE(2786), 1, - sym__syn_region, - STATE(2787), 1, - sym__syn_cluster, - STATE(2792), 1, - sym__syn_include, - STATE(2795), 1, - sym__syn_sync, - STATE(2799), 1, - sym__syn_list, - STATE(2856), 1, - sym__syn_clear, - ACTIONS(2721), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2693), 4, - anon_sym_on, - anon_sym_off, - anon_sym_enable, - anon_sym_reset, - [29169] = 30, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2725), 1, - anon_sym_clear, - ACTIONS(2727), 1, - anon_sym_case, - ACTIONS(2729), 1, - anon_sym_match, - ACTIONS(2731), 1, - anon_sym_spell, - ACTIONS(2733), 1, - anon_sym_foldlevel, - ACTIONS(2735), 1, - anon_sym_iskeyword, - ACTIONS(2737), 1, - anon_sym_conceal, - ACTIONS(2739), 1, - anon_sym_keyword, - ACTIONS(2741), 1, - anon_sym_region, - ACTIONS(2743), 1, - anon_sym_cluster, - ACTIONS(2745), 1, - anon_sym_include, - ACTIONS(2747), 1, - anon_sym_sync, - ACTIONS(2749), 1, - anon_sym_list, - STATE(2752), 1, - sym__syn_clear, - STATE(2753), 1, - sym__syn_list, - STATE(2754), 1, - sym__syn_sync, - STATE(2755), 1, - sym__syn_include, - STATE(2756), 1, - sym__syn_cluster, - STATE(2758), 1, - sym__syn_region, - STATE(2760), 1, - sym__syn_match, - STATE(2761), 1, - sym__syn_keyword, - STATE(2763), 1, - sym__syn_conceal, - STATE(2764), 1, - sym__syn_iskeyword, - STATE(2765), 1, - sym__syn_foldlevel, - STATE(2766), 1, - sym__syn_spell, - STATE(2768), 1, - sym__syn_case, - STATE(2800), 1, - sym__syn_enable, - ACTIONS(2721), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2723), 4, - anon_sym_on, - anon_sym_off, - anon_sym_enable, - anon_sym_reset, - [29264] = 8, + anon_sym_LBRACK2, + [29074] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2751), 1, + ACTIONS(2693), 1, anon_sym_EQ, - ACTIONS(2755), 1, + ACTIONS(2697), 1, anon_sym_EQ_LT_LT, - STATE(665), 1, + STATE(501), 1, sym__let_operator, - STATE(2649), 1, + STATE(2670), 1, sym__let_heredoc, - ACTIONS(2753), 6, + ACTIONS(2695), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83505,26 +82628,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [29315] = 8, + anon_sym_LBRACK2, + [29125] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2751), 1, + ACTIONS(2685), 1, anon_sym_EQ, - ACTIONS(2755), 1, + ACTIONS(2689), 1, anon_sym_EQ_LT_LT, - STATE(665), 1, + STATE(515), 1, sym__let_operator, - STATE(2649), 1, + STATE(2901), 1, sym__let_heredoc, - ACTIONS(2753), 6, + ACTIONS(2687), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_DOT_EQ, - ACTIONS(2757), 10, + ACTIONS(2699), 10, anon_sym_DOT, anon_sym_PERCENT, anon_sym_SLASH, @@ -83535,7 +82658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(2759), 13, + ACTIONS(2701), 13, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PIPE_PIPE, @@ -83548,26 +82671,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, + anon_sym_LBRACK2, + [29176] = 30, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2705), 1, + anon_sym_clear, + ACTIONS(2707), 1, + anon_sym_case, + ACTIONS(2709), 1, + anon_sym_match, + ACTIONS(2711), 1, + anon_sym_spell, + ACTIONS(2713), 1, + anon_sym_foldlevel, + ACTIONS(2715), 1, + anon_sym_iskeyword, + ACTIONS(2717), 1, + anon_sym_conceal, + ACTIONS(2719), 1, + anon_sym_keyword, + ACTIONS(2721), 1, + anon_sym_region, + ACTIONS(2723), 1, + anon_sym_cluster, + ACTIONS(2725), 1, + anon_sym_include, + ACTIONS(2727), 1, + anon_sym_sync, + ACTIONS(2729), 1, + anon_sym_list, + STATE(2617), 1, + sym__syn_enable, + STATE(2618), 1, + sym__syn_case, + STATE(2619), 1, + sym__syn_spell, + STATE(2620), 1, + sym__syn_foldlevel, + STATE(2621), 1, + sym__syn_iskeyword, + STATE(2622), 1, + sym__syn_conceal, + STATE(2623), 1, + sym__syn_keyword, + STATE(2624), 1, + sym__syn_match, + STATE(2625), 1, + sym__syn_region, + STATE(2626), 1, + sym__syn_cluster, + STATE(2628), 1, + sym__syn_include, + STATE(2631), 1, + sym__syn_sync, + STATE(2632), 1, + sym__syn_list, + STATE(2636), 1, + sym__syn_clear, + ACTIONS(2731), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2703), 4, + anon_sym_on, + anon_sym_off, + anon_sym_enable, + anon_sym_reset, + [29271] = 30, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2735), 1, + anon_sym_clear, + ACTIONS(2737), 1, + anon_sym_case, + ACTIONS(2739), 1, + anon_sym_match, + ACTIONS(2741), 1, + anon_sym_spell, + ACTIONS(2743), 1, + anon_sym_foldlevel, + ACTIONS(2745), 1, + anon_sym_iskeyword, + ACTIONS(2747), 1, + anon_sym_conceal, + ACTIONS(2749), 1, + anon_sym_keyword, + ACTIONS(2751), 1, + anon_sym_region, + ACTIONS(2753), 1, + anon_sym_cluster, + ACTIONS(2755), 1, + anon_sym_include, + ACTIONS(2757), 1, + anon_sym_sync, + ACTIONS(2759), 1, + anon_sym_list, + STATE(2932), 1, + sym__syn_enable, + STATE(2933), 1, + sym__syn_case, + STATE(2934), 1, + sym__syn_spell, + STATE(2935), 1, + sym__syn_foldlevel, + STATE(2936), 1, + sym__syn_iskeyword, + STATE(2937), 1, + sym__syn_conceal, + STATE(2938), 1, + sym__syn_keyword, + STATE(2939), 1, + sym__syn_match, + STATE(2940), 1, + sym__syn_region, + STATE(2941), 1, + sym__syn_cluster, + STATE(2942), 1, + sym__syn_include, + STATE(2943), 1, + sym__syn_sync, + STATE(2945), 1, + sym__syn_list, + STATE(2946), 1, + sym__syn_clear, + ACTIONS(2731), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(2733), 4, + anon_sym_on, + anon_sym_off, + anon_sym_enable, + anon_sym_reset, [29366] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2685), 1, + ACTIONS(2693), 1, anon_sym_EQ, - ACTIONS(2689), 1, + ACTIONS(2697), 1, anon_sym_EQ_LT_LT, - STATE(445), 1, + STATE(501), 1, sym__let_operator, - STATE(2593), 1, + STATE(2670), 1, sym__let_heredoc, - ACTIONS(2687), 6, + ACTIONS(2695), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_DOT_EQ, - ACTIONS(2757), 10, + ACTIONS(2699), 10, anon_sym_DOT, anon_sym_PERCENT, anon_sym_SLASH, @@ -83578,7 +82831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(2759), 13, + ACTIONS(2701), 13, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PIPE_PIPE, @@ -83591,67 +82844,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, + anon_sym_LBRACK2, [29417] = 30, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2721), 1, + ACTIONS(2731), 1, aux_sym__map_rhs_token4, - ACTIONS(2725), 1, + ACTIONS(2735), 1, anon_sym_clear, - ACTIONS(2727), 1, + ACTIONS(2737), 1, anon_sym_case, - ACTIONS(2729), 1, + ACTIONS(2739), 1, anon_sym_match, - ACTIONS(2731), 1, + ACTIONS(2741), 1, anon_sym_spell, - ACTIONS(2733), 1, + ACTIONS(2743), 1, anon_sym_foldlevel, - ACTIONS(2737), 1, + ACTIONS(2747), 1, anon_sym_conceal, - ACTIONS(2739), 1, - anon_sym_keyword, - ACTIONS(2741), 1, + ACTIONS(2751), 1, anon_sym_region, - ACTIONS(2743), 1, + ACTIONS(2753), 1, anon_sym_cluster, - ACTIONS(2749), 1, + ACTIONS(2759), 1, anon_sym_list, ACTIONS(2761), 1, anon_sym_iskeyword, ACTIONS(2763), 1, - anon_sym_include, + anon_sym_keyword, ACTIONS(2765), 1, + anon_sym_include, + ACTIONS(2767), 1, anon_sym_sync, - STATE(2752), 1, - sym__syn_clear, - STATE(2753), 1, - sym__syn_list, - STATE(2754), 1, - sym__syn_sync, - STATE(2755), 1, - sym__syn_include, - STATE(2756), 1, - sym__syn_cluster, - STATE(2758), 1, - sym__syn_region, - STATE(2760), 1, - sym__syn_match, - STATE(2761), 1, - sym__syn_keyword, - STATE(2763), 1, - sym__syn_conceal, - STATE(2764), 1, - sym__syn_iskeyword, - STATE(2765), 1, - sym__syn_foldlevel, - STATE(2766), 1, - sym__syn_spell, - STATE(2768), 1, - sym__syn_case, - STATE(2800), 1, + STATE(2932), 1, sym__syn_enable, - ACTIONS(2723), 4, + STATE(2933), 1, + sym__syn_case, + STATE(2934), 1, + sym__syn_spell, + STATE(2935), 1, + sym__syn_foldlevel, + STATE(2936), 1, + sym__syn_iskeyword, + STATE(2937), 1, + sym__syn_conceal, + STATE(2938), 1, + sym__syn_keyword, + STATE(2939), 1, + sym__syn_match, + STATE(2940), 1, + sym__syn_region, + STATE(2941), 1, + sym__syn_cluster, + STATE(2942), 1, + sym__syn_include, + STATE(2943), 1, + sym__syn_sync, + STATE(2945), 1, + sym__syn_list, + STATE(2946), 1, + sym__syn_clear, + ACTIONS(2733), 4, anon_sym_on, anon_sym_off, anon_sym_enable, @@ -83659,19 +82912,20 @@ static const uint16_t ts_small_parse_table[] = { [29511] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(929), 6, + ACTIONS(815), 8, anon_sym_DOT, - anon_sym_EQ, + aux_sym_identifier_token2, anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_is, + anon_sym_isnot, anon_sym_GT2, - ACTIONS(927), 26, + ACTIONS(813), 24, anon_sym_COLON, - anon_sym_in, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_EQ_LT_LT, + anon_sym_LBRACE2, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83682,21 +82936,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, 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_RBRACK, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + anon_sym_DASH_GT, [29551] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(825), 8, + ACTIONS(835), 8, anon_sym_DOT, aux_sym_identifier_token2, anon_sym_DOT2, @@ -83705,7 +82958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(823), 24, + ACTIONS(833), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -83727,20 +82980,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK2, + anon_sym_RBRACK2, anon_sym_DASH_GT, [29591] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(859), 6, + ACTIONS(981), 6, anon_sym_DOT, anon_sym_EQ, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(857), 26, + ACTIONS(979), 26, anon_sym_COLON, anon_sym_in, anon_sym_COMMA, @@ -83765,19 +83018,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK2, + anon_sym_RBRACK2, [29631] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(855), 6, + ACTIONS(839), 6, anon_sym_DOT, anon_sym_EQ, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(853), 26, + ACTIONS(837), 26, anon_sym_COLON, anon_sym_in, anon_sym_COMMA, @@ -83802,25 +83055,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK2, + anon_sym_RBRACK2, [29671] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(815), 8, + ACTIONS(969), 6, anon_sym_DOT, - aux_sym_identifier_token2, + anon_sym_EQ, anon_sym_DOT2, anon_sym_LT2, - anon_sym_DASH, anon_sym_is, - anon_sym_isnot, anon_sym_GT2, - ACTIONS(813), 24, + ACTIONS(967), 26, anon_sym_COLON, + anon_sym_in, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACE2, + anon_sym_EQ_LT_LT, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83831,32 +83083,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_isnot, 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_RBRACK, - anon_sym_DASH_GT, - [29711] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [29711] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(905), 11, - anon_sym_DOT, + ACTIONS(2769), 1, 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_is, - anon_sym_GT2, - ACTIONS(903), 20, + ACTIONS(2771), 7, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83864,25 +83107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_DOT_EQ, anon_sym_EQ_LT_LT, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_isnot, - 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, - [29750] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(969), 11, + ACTIONS(905), 10, anon_sym_DOT, - anon_sym_EQ, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -83892,14 +83118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(967), 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_EQ_LT_LT, + ACTIONS(903), 13, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PIPE_PIPE, @@ -83912,11 +83131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [29789] = 3, + anon_sym_LBRACK2, + [29754] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(953), 11, + ACTIONS(961), 11, anon_sym_DOT, anon_sym_EQ, anon_sym_PERCENT, @@ -83928,7 +83147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(951), 20, + ACTIONS(959), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -83948,15 +83167,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [29828] = 5, + anon_sym_LBRACK2, + [29793] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2767), 1, + ACTIONS(2773), 1, aux_sym_argument_token1, - ACTIONS(2769), 1, + ACTIONS(2775), 1, aux_sym_argument_token2, - ACTIONS(831), 7, + ACTIONS(821), 7, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_DOT2, @@ -83964,10 +83183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(829), 22, - sym__newline_or_pipe, + ACTIONS(819), 22, sym__scope_dict, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, anon_sym_QMARK, @@ -83975,6 +83192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83986,11 +83205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [29871] = 3, + anon_sym_LBRACK2, + [29836] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(847), 11, + ACTIONS(981), 11, anon_sym_DOT, anon_sym_EQ, anon_sym_PERCENT, @@ -84002,7 +83221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(845), 20, + ACTIONS(979), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84022,33 +83241,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [29910] = 5, + anon_sym_LBRACK2, + [29875] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2767), 1, + ACTIONS(2777), 1, aux_sym_argument_token1, - ACTIONS(2769), 1, + ACTIONS(2779), 1, aux_sym_argument_token2, - ACTIONS(831), 7, + ACTIONS(821), 6, anon_sym_DOT, - aux_sym_identifier_token1, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(829), 22, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, + ACTIONS(819), 23, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PERCENT, + anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84060,22 +83278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [29953] = 5, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [29918] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2771), 1, - anon_sym_EQ, - ACTIONS(2773), 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_EQ_LT_LT, - ACTIONS(957), 10, + ACTIONS(839), 11, anon_sym_DOT, + anon_sym_EQ, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -84085,7 +83295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(955), 13, + ACTIONS(837), 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_EQ_LT_LT, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PIPE_PIPE, @@ -84098,11 +83315,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [29996] = 3, + anon_sym_LBRACK2, + [29957] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(851), 11, + ACTIONS(969), 11, anon_sym_DOT, anon_sym_EQ, anon_sym_PERCENT, @@ -84114,7 +83331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(849), 20, + ACTIONS(967), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84134,22 +83351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [30035] = 5, + anon_sym_LBRACK2, + [29996] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2775), 1, - anon_sym_EQ, - ACTIONS(2777), 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_EQ_LT_LT, - ACTIONS(774), 10, + ACTIONS(873), 11, anon_sym_DOT, + anon_sym_EQ, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -84159,7 +83367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(783), 13, + ACTIONS(871), 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_EQ_LT_LT, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PIPE_PIPE, @@ -84172,11 +83387,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [30078] = 3, + anon_sym_LBRACK2, + [30035] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(909), 11, + ACTIONS(851), 11, anon_sym_DOT, anon_sym_EQ, anon_sym_PERCENT, @@ -84188,7 +83403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(907), 20, + ACTIONS(849), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84208,13 +83423,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [30117] = 3, + anon_sym_LBRACK2, + [30074] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(929), 11, - anon_sym_DOT, + ACTIONS(2781), 1, anon_sym_EQ, + ACTIONS(2783), 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_EQ_LT_LT, + ACTIONS(774), 10, + anon_sym_DOT, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -84224,14 +83448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(927), 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_EQ_LT_LT, + ACTIONS(783), 13, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PIPE_PIPE, @@ -84244,11 +83461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [30156] = 3, + anon_sym_LBRACK2, + [30117] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(855), 11, + ACTIONS(881), 11, anon_sym_DOT, anon_sym_EQ, anon_sym_PERCENT, @@ -84260,7 +83477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(853), 20, + ACTIONS(879), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84280,13 +83497,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [30195] = 3, + anon_sym_LBRACK2, + [30156] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(859), 11, - anon_sym_DOT, + ACTIONS(2785), 1, anon_sym_EQ, + ACTIONS(2787), 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_EQ_LT_LT, + ACTIONS(945), 10, + anon_sym_DOT, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -84296,14 +83522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(857), 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_EQ_LT_LT, + ACTIONS(943), 13, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PIPE_PIPE, @@ -84316,11 +83535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [30234] = 3, + anon_sym_LBRACK2, + [30199] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(961), 11, + ACTIONS(925), 11, anon_sym_DOT, anon_sym_EQ, anon_sym_PERCENT, @@ -84332,7 +83551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(959), 20, + ACTIONS(923), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84352,22 +83571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [30273] = 5, + anon_sym_LBRACK2, + [30238] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2779), 1, - anon_sym_EQ, - ACTIONS(2781), 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_EQ_LT_LT, - ACTIONS(933), 10, + ACTIONS(909), 11, anon_sym_DOT, + anon_sym_EQ, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_DOT2, @@ -84377,7 +83587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_is, anon_sym_GT2, - ACTIONS(931), 13, + ACTIONS(907), 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_EQ_LT_LT, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PIPE_PIPE, @@ -84390,30 +83607,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [30316] = 5, + anon_sym_LBRACK2, + [30277] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2783), 1, + ACTIONS(2773), 1, aux_sym_argument_token1, - ACTIONS(2785), 1, + ACTIONS(2775), 1, aux_sym_argument_token2, - ACTIONS(831), 6, + ACTIONS(821), 7, anon_sym_DOT, + aux_sym_identifier_token1, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(829), 23, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(819), 22, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PERCENT, - anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, @@ -84427,84 +83645,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [30359] = 13, + anon_sym_LBRACK2, + [30320] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(843), 11, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2791), 3, + anon_sym_EQ, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, + anon_sym_DOT2, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_STAR2, anon_sym_DASH, + anon_sym_is, + anon_sym_GT2, + ACTIONS(841), 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_EQ_LT_LT, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + anon_sym_isnot, 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(963), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - [30416] = 9, + anon_sym_LBRACK2, + [30359] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(933), 5, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, anon_sym_DOT2, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(965), 3, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(963), 16, + ACTIONS(931), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_LPAREN, 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_DASH, + anon_sym_DOT_DOT, anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84512,25 +83714,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_RBRACK, - [30465] = 6, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [30396] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2809), 1, + ACTIONS(2789), 1, anon_sym_LBRACE2, - ACTIONS(2811), 1, + ACTIONS(2791), 1, aux_sym_identifier_token2, - STATE(761), 2, + STATE(762), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(805), 6, + ACTIONS(787), 6, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(803), 19, + ACTIONS(785), 19, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -84549,17 +83752,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [30508] = 3, + anon_sym_LBRACK2, + [30439] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(925), 5, + ACTIONS(2795), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(2793), 26, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, + [30476] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(929), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(923), 24, + ACTIONS(927), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -84582,18 +83819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [30545] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [30513] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(909), 5, + ACTIONS(857), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(907), 24, + ACTIONS(855), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -84616,18 +83853,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [30582] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [30550] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(774), 5, + ACTIONS(937), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(783), 24, + ACTIONS(935), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -84650,62 +83887,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [30619] = 5, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [30587] = 6, ACTIONS(3), 1, sym__line_continuation, - STATE(1106), 1, - sym__syn_pattern_offset, - ACTIONS(2813), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2817), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - ACTIONS(2815), 19, + ACTIONS(2797), 1, + anon_sym_LBRACE2, + ACTIONS(2799), 1, + aux_sym_identifier_token2, + STATE(724), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(795), 6, + anon_sym_DOT, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_isnot, + anon_sym_GT2, + ACTIONS(793), 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, - [30660] = 3, + 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_DASH, + 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_LBRACK2, + [30630] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(973), 5, + ACTIONS(2655), 1, + aux_sym_identifier_token1, + ACTIONS(2651), 5, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + ACTIONS(2683), 6, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, + anon_sym_isnot, anon_sym_GT2, - ACTIONS(971), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2691), 17, anon_sym_QMARK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PERCENT, - anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, @@ -84713,33 +83955,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, 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_RBRACK, - [30697] = 3, + anon_sym_LBRACK2, + [30671] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(867), 5, + ACTIONS(2801), 1, + anon_sym_LBRACE2, + ACTIONS(2804), 1, + aux_sym_identifier_token2, + STATE(724), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(801), 6, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, + anon_sym_isnot, anon_sym_GT2, - ACTIONS(865), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(799), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PERCENT, - anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, @@ -84747,34 +83992,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, 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_RBRACK, - [30734] = 6, + anon_sym_LBRACK2, + [30714] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(893), 5, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(941), 4, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(939), 22, + ACTIONS(891), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PERCENT, anon_sym_SEMI, @@ -84792,17 +84031,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_RBRACK, - [30777] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [30751] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(961), 5, + ACTIONS(965), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(959), 24, + ACTIONS(963), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -84825,18 +84065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [30814] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [30788] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(921), 5, + ACTIONS(869), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(919), 24, + ACTIONS(867), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -84859,40 +84099,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [30851] = 9, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [30825] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(889), 5, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, anon_sym_DOT2, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(913), 3, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(887), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PERCENT, + anon_sym_SEMI, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(911), 16, + anon_sym_isnot, + 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_LBRACK2, + anon_sym_RBRACK2, + [30862] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(989), 5, + anon_sym_DOT, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(987), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_LPAREN, 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_DASH, + anon_sym_DOT_DOT, anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -84900,17 +84167,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_RBRACK, - [30900] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [30899] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(839), 5, + ACTIONS(843), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(837), 24, + ACTIONS(841), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -84933,18 +84201,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [30937] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [30936] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(969), 5, + ACTIONS(925), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(967), 24, + ACTIONS(923), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -84967,18 +84235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [30974] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [30973] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(851), 5, + ACTIONS(949), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(849), 24, + ACTIONS(947), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85001,18 +84269,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31011] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31010] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2821), 3, + STATE(1096), 1, + sym__syn_pattern_offset, + ACTIONS(2807), 2, anon_sym_conceal, anon_sym_contained, - anon_sym_skip, - ACTIONS(2819), 26, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(2811), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + ACTIONS(2809), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -85029,24 +84306,17 @@ 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, - [31048] = 3, + [31051] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(989), 5, + ACTIONS(973), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(987), 24, + ACTIONS(971), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85069,33 +84339,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31085] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31088] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(957), 5, + ACTIONS(2813), 1, anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(957), 3, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(955), 24, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(955), 16, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LPAREN, 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_DASH, - anon_sym_DOT_DOT, anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -85103,54 +84380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31122] = 5, + anon_sym_RBRACK2, + [31137] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1078), 1, - sym__syn_pattern_offset, - ACTIONS(2813), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2823), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - ACTIONS(2815), 19, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [31163] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(985), 5, + ACTIONS(861), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(983), 24, + ACTIONS(859), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85173,18 +84413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31200] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31174] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(843), 5, + ACTIONS(945), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(841), 24, + ACTIONS(943), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85207,18 +84447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31237] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31211] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(981), 5, + ACTIONS(885), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(979), 24, + ACTIONS(883), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85241,31 +84481,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31274] = 6, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31248] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2825), 1, - anon_sym_LBRACE2, - ACTIONS(2827), 1, - aux_sym_identifier_token2, - STATE(750), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(805), 6, + ACTIONS(877), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, - anon_sym_isnot, anon_sym_GT2, - ACTIONS(803), 19, - sym__newline_or_pipe, - sym_comment, + ACTIONS(875), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PERCENT, + anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, @@ -85273,23 +84508,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_isnot, 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, - [31317] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31285] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(937), 5, + ACTIONS(961), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(935), 24, + ACTIONS(959), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85312,18 +84549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31354] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31322] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(905), 5, + ACTIONS(865), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(903), 24, + ACTIONS(863), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85346,23 +84583,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31391] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31359] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(945), 5, + ACTIONS(2813), 1, anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(847), 4, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(943), 24, + ACTIONS(845), 22, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PERCENT, anon_sym_SEMI, @@ -85380,29 +84621,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31428] = 3, + anon_sym_RBRACK2, + [31402] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(901), 5, + ACTIONS(2813), 1, anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(847), 4, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(899), 24, + ACTIONS(845), 19, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LPAREN, 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_DASH, @@ -85414,33 +84659,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31465] = 3, + anon_sym_RBRACK2, + [31447] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(977), 5, + ACTIONS(2813), 1, anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(847), 3, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(975), 24, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(845), 16, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LPAREN, 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_DASH, - anon_sym_DOT_DOT, anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -85448,107 +84699,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31502] = 5, + anon_sym_RBRACK2, + [31496] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2655), 1, - aux_sym_identifier_token1, - ACTIONS(2651), 5, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - ACTIONS(2757), 6, + ACTIONS(2813), 1, anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2825), 2, anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(2833), 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(845), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK2, + [31553] = 12, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2813), 1, + anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, + anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2829), 1, anon_sym_is, + ACTIONS(2831), 1, anon_sym_isnot, + ACTIONS(2825), 2, + anon_sym_LT2, anon_sym_GT2, - ACTIONS(2759), 17, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2821), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, + ACTIONS(2833), 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, - anon_sym_LBRACK, - [31543] = 6, + ACTIONS(845), 9, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK2, + [31608] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(821), 7, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(965), 4, + aux_sym_identifier_token1, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, + anon_sym_isnot, anon_sym_GT2, - ACTIONS(963), 22, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(819), 22, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PERCENT, - anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, 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_RBRACK, - [31586] = 7, + anon_sym_LBRACK2, + [31645] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1083), 1, + sym__syn_pattern_offset, + ACTIONS(2807), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2835), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + ACTIONS(2809), 19, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, + [31686] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(977), 5, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(965), 4, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(963), 19, + ACTIONS(975), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_LPAREN, 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_DASH, @@ -85560,17 +84889,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_RBRACK, - [31631] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31723] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(875), 5, + ACTIONS(774), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(873), 24, + ACTIONS(783), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85593,18 +84923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31668] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31760] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(933), 5, + ACTIONS(909), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(931), 24, + ACTIONS(907), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85627,31 +84957,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31705] = 6, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31797] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2825), 1, - anon_sym_LBRACE2, - ACTIONS(2829), 1, - aux_sym_identifier_token2, - STATE(755), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(787), 6, + ACTIONS(985), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, - anon_sym_isnot, anon_sym_GT2, - ACTIONS(785), 19, - sym__newline_or_pipe, - sym_comment, + ACTIONS(983), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PERCENT, + anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, @@ -85659,78 +84984,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_isnot, 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, - [31748] = 12, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31834] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2801), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2797), 2, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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(963), 9, + ACTIONS(853), 7, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - [31803] = 5, + anon_sym_RBRACK2, + [31893] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2655), 1, - aux_sym_identifier_token1, - ACTIONS(2651), 5, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2757), 6, + ACTIONS(851), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, - anon_sym_isnot, anon_sym_GT2, - ACTIONS(2759), 17, + ACTIONS(849), 24, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PERCENT, + anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, anon_sym_STAR2, @@ -85738,28 +85063,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_isnot, 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, - [31844] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [31930] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(879), 5, + ACTIONS(2813), 1, anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(941), 4, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(877), 24, + ACTIONS(939), 22, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PERCENT, anon_sym_SEMI, @@ -85777,18 +85108,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31881] = 3, + anon_sym_RBRACK2, + [31973] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(883), 5, + ACTIONS(873), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(881), 24, + ACTIONS(871), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85811,26 +85141,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31918] = 6, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [32010] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2831), 1, + ACTIONS(2797), 1, anon_sym_LBRACE2, - ACTIONS(2834), 1, + ACTIONS(2839), 1, aux_sym_identifier_token2, - STATE(755), 2, + STATE(722), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(795), 6, + ACTIONS(787), 6, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(793), 19, + ACTIONS(785), 19, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -85849,17 +85179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [31961] = 3, + anon_sym_LBRACK2, + [32053] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(889), 5, + ACTIONS(921), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(887), 24, + ACTIONS(919), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85882,97 +85212,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [31998] = 14, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [32090] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(901), 5, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2797), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2805), 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(885), 7, + ACTIONS(899), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [32057] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(831), 7, - anon_sym_DOT, - aux_sym_identifier_token1, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - ACTIONS(829), 22, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PERCENT, + anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_isnot, 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, - [32094] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [32127] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(893), 5, + ACTIONS(913), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(891), 24, + ACTIONS(911), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -85995,18 +85280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [32131] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [32164] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(953), 5, + ACTIONS(881), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(951), 24, + ACTIONS(879), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -86029,26 +85314,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [32168] = 6, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [32201] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2809), 1, + ACTIONS(2789), 1, anon_sym_LBRACE2, - ACTIONS(2839), 1, + ACTIONS(2841), 1, aux_sym_identifier_token2, - STATE(764), 2, + STATE(766), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(787), 6, + ACTIONS(795), 6, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(785), 19, + ACTIONS(793), 19, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -86067,45 +85352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [32211] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(917), 5, - anon_sym_DOT, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_is, - anon_sym_GT2, - ACTIONS(915), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LPAREN, - 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_DASH, - anon_sym_DOT_DOT, - anon_sym_isnot, - 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_RBRACK, - [32248] = 3, + anon_sym_LBRACK2, + [32244] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(831), 7, + ACTIONS(821), 7, anon_sym_DOT, aux_sym_identifier_token1, anon_sym_DOT2, @@ -86113,7 +85364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(829), 22, + ACTIONS(819), 22, sym__newline_or_pipe, sym__scope_dict, sym_comment, @@ -86135,54 +85386,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [32285] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2841), 1, - anon_sym_LBRACE2, - ACTIONS(2844), 1, - aux_sym_identifier_token2, - STATE(764), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(795), 6, - anon_sym_DOT, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_is, - anon_sym_isnot, - anon_sym_GT2, - ACTIONS(793), 19, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DASH, - 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, - [32328] = 3, + anon_sym_LBRACK2, + [32281] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(949), 5, + ACTIONS(821), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(947), 24, + ACTIONS(819), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -86205,18 +85419,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [32365] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [32318] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(831), 5, + ACTIONS(897), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(829), 24, + ACTIONS(895), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -86239,52 +85453,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [32402] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [32355] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(847), 5, + ACTIONS(2843), 1, + anon_sym_LBRACE2, + ACTIONS(2846), 1, + aux_sym_identifier_token2, + STATE(766), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(801), 6, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, + anon_sym_isnot, anon_sym_GT2, - ACTIONS(845), 24, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(799), 19, anon_sym_QMARK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PERCENT, - anon_sym_SEMI, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, 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_RBRACK, - [32439] = 3, + anon_sym_LBRACK2, + [32398] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(897), 5, + ACTIONS(917), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(895), 24, + ACTIONS(915), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -86307,18 +85524,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [32476] = 3, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [32435] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(871), 5, + ACTIONS(905), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(869), 24, + ACTIONS(903), 24, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACE, @@ -86341,105 +85558,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - anon_sym_RBRACK, - [32513] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1120), 1, - sym__syn_pattern_offset, - ACTIONS(2847), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(2823), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - ACTIONS(2849), 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, - [32553] = 13, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2853), 1, - anon_sym_cchar, - ACTIONS(2855), 1, - anon_sym_contained, - ACTIONS(2859), 1, - anon_sym_contains, - STATE(1129), 1, - sym__syn_pattern_offset, - STATE(1181), 1, - aux_sym__syn_match_repeat1, - STATE(1281), 1, - sym__syn_arguments_keyword, - STATE(1285), 1, - sym__syn_arguments_match, - ACTIONS(2857), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2865), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2851), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2861), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - ACTIONS(2863), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [32609] = 6, + anon_sym_LBRACK2, + anon_sym_RBRACK2, + [32472] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, - anon_sym_COMMA, - ACTIONS(2869), 1, - anon_sym_DASH_GT, - STATE(2542), 1, - aux_sym_parameters_repeat2, - ACTIONS(2653), 6, + ACTIONS(2655), 1, + aux_sym_identifier_token1, + ACTIONS(2651), 5, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(2683), 6, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, - anon_sym_DASH, anon_sym_is, + anon_sym_isnot, anon_sym_GT2, - ACTIONS(2657), 19, - anon_sym_COLON, - anon_sym_RBRACE, + ACTIONS(2691), 17, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -86448,142 +85587,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, 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, - [32651] = 13, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2853), 1, - anon_sym_cchar, - ACTIONS(2855), 1, - anon_sym_contained, - ACTIONS(2859), 1, - anon_sym_contains, - STATE(1114), 1, - sym__syn_pattern_offset, - STATE(1199), 1, - aux_sym__syn_match_repeat1, - STATE(1281), 1, - sym__syn_arguments_keyword, - STATE(1285), 1, - sym__syn_arguments_match, - ACTIONS(2857), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2871), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2851), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2861), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - ACTIONS(2863), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [32707] = 13, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2875), 1, - anon_sym_cchar, - ACTIONS(2877), 1, - anon_sym_contained, - ACTIONS(2881), 1, - anon_sym_contains, - STATE(1109), 1, - sym__syn_pattern_offset, - STATE(1183), 1, - aux_sym__syn_match_repeat1, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, - sym__syn_arguments_keyword, - ACTIONS(2865), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2879), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2873), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2883), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - ACTIONS(2885), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [32763] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2821), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2819), 26, - 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_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - anon_sym_end, - [32799] = 6, + anon_sym_BANG_TILDE, + anon_sym_LBRACK2, + [32513] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, + ACTIONS(2849), 1, anon_sym_COMMA, - ACTIONS(2887), 1, + ACTIONS(2851), 1, anon_sym_DASH_GT, - STATE(2500), 1, + STATE(2410), 1, aux_sym_parameters_repeat2, ACTIONS(2653), 6, anon_sym_DOT, @@ -86611,15 +85631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [32841] = 6, + anon_sym_LBRACK2, + [32555] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, + ACTIONS(2849), 1, anon_sym_COMMA, - ACTIONS(2889), 1, + ACTIONS(2853), 1, anon_sym_DASH_GT, - STATE(2517), 1, + STATE(2543), 1, aux_sym_parameters_repeat2, ACTIONS(2653), 6, anon_sym_DOT, @@ -86647,43 +85667,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [32883] = 13, + anon_sym_LBRACK2, + [32597] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2875), 1, - anon_sym_cchar, - ACTIONS(2877), 1, + ACTIONS(2795), 2, + anon_sym_conceal, anon_sym_contained, - ACTIONS(2881), 1, - anon_sym_contains, - STATE(1124), 1, - sym__syn_pattern_offset, - STATE(1208), 1, - aux_sym__syn_match_repeat1, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, - sym__syn_arguments_keyword, - ACTIONS(2871), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2879), 2, + ACTIONS(2793), 26, + sym__newline_or_pipe, + sym_comment, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2873), 5, - anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2883), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - ACTIONS(2885), 7, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, anon_sym_ms, anon_sym_me, anon_sym_hs, @@ -86691,14 +85700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rs, anon_sym_re, anon_sym_lc, - [32939] = 6, + anon_sym_end, + [32633] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, + ACTIONS(2849), 1, anon_sym_COMMA, - ACTIONS(2891), 1, + ACTIONS(2855), 1, anon_sym_DASH_GT, - STATE(2532), 1, + STATE(2456), 1, aux_sym_parameters_repeat2, ACTIONS(2653), 6, anon_sym_DOT, @@ -86726,15 +85736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [32981] = 6, + anon_sym_LBRACK2, + [32675] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, + ACTIONS(2849), 1, anon_sym_COMMA, - ACTIONS(2893), 1, + ACTIONS(2857), 1, anon_sym_DASH_GT, - STATE(2536), 1, + STATE(2458), 1, aux_sym_parameters_repeat2, ACTIONS(2653), 6, anon_sym_DOT, @@ -86762,15 +85772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [33023] = 6, + anon_sym_LBRACK2, + [32717] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, + ACTIONS(2849), 1, anon_sym_COMMA, - ACTIONS(2895), 1, + ACTIONS(2859), 1, anon_sym_DASH_GT, - STATE(2537), 1, + STATE(2463), 1, aux_sym_parameters_repeat2, ACTIONS(2653), 6, anon_sym_DOT, @@ -86798,15 +85808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [33065] = 6, + anon_sym_LBRACK2, + [32759] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, + ACTIONS(2849), 1, anon_sym_COMMA, - ACTIONS(2897), 1, + ACTIONS(2861), 1, anon_sym_DASH_GT, - STATE(2401), 1, + STATE(2468), 1, aux_sym_parameters_repeat2, ACTIONS(2653), 6, anon_sym_DOT, @@ -86834,163 +85844,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [33107] = 18, + anon_sym_LBRACK2, + [32801] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, + ACTIONS(2867), 1, anon_sym_cchar, - ACTIONS(2907), 1, + ACTIONS(2869), 1, + anon_sym_contained, + ACTIONS(2873), 1, anon_sym_contains, - ACTIONS(2911), 1, - anon_sym_matchgroup, - ACTIONS(2915), 1, - anon_sym_skip, - ACTIONS(2917), 1, - anon_sym_end, - STATE(798), 1, - aux_sym__syn_region_repeat1, - STATE(828), 1, - sym__syn_region_end, - STATE(883), 1, - sym__syn_region_skip, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, + STATE(1112), 1, + sym__syn_pattern_offset, + STATE(1202), 1, + aux_sym__syn_match_repeat1, + STATE(1281), 1, sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2208), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2903), 2, + STATE(1287), 1, + sym__syn_arguments_match, + ACTIONS(2863), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(2871), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2905), 4, + ACTIONS(2865), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + ACTIONS(2875), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [33172] = 18, + ACTIONS(2877), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [32857] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2907), 1, - anon_sym_contains, - ACTIONS(2911), 1, - anon_sym_matchgroup, - ACTIONS(2915), 1, - anon_sym_skip, - ACTIONS(2919), 1, - anon_sym_end, - STATE(788), 1, - aux_sym__syn_region_repeat1, - STATE(930), 1, - sym__syn_region_end, - STATE(957), 1, - sym__syn_region_skip, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2151), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, + STATE(1119), 1, + sym__syn_pattern_offset, + ACTIONS(2879), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(2903), 2, + anon_sym_skip, + ACTIONS(2835), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + ACTIONS(2881), 17, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2905), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [33237] = 18, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [32897] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2921), 1, + ACTIONS(2849), 1, anon_sym_COMMA, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2925), 1, - anon_sym_SEMI, - ACTIONS(2927), 1, - anon_sym_RBRACK, - STATE(2287), 1, - aux_sym_list_repeat1, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2805), 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, - [33302] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(815), 7, + ACTIONS(2883), 1, + anon_sym_DASH_GT, + STATE(2473), 1, + aux_sym_parameters_repeat2, + ACTIONS(2653), 6, anon_sym_DOT, - aux_sym_identifier_token2, anon_sym_DOT2, anon_sym_LT2, + anon_sym_DASH, anon_sym_is, - anon_sym_isnot, anon_sym_GT2, - ACTIONS(813), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_LBRACE2, + ACTIONS(2657), 19, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -86999,142 +85950,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_isnot, 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, - [33337] = 5, + anon_sym_LBRACK2, + [32939] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2929), 1, - anon_sym_COMMA, - STATE(787), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2934), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(2932), 22, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_start, + ACTIONS(2887), 1, anon_sym_cchar, + ACTIONS(2889), 1, + anon_sym_contained, + ACTIONS(2893), 1, + anon_sym_contains, + STATE(1130), 1, + sym__syn_pattern_offset, + STATE(1180), 1, + aux_sym__syn_match_repeat1, + STATE(1286), 1, + sym__syn_arguments_keyword, + STATE(1293), 1, + sym__syn_arguments_match, + ACTIONS(2863), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2891), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(2885), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2895), 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_add, - anon_sym_remove, - anon_sym_end, - [33376] = 18, + ACTIONS(2897), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [32995] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, + ACTIONS(2867), 1, anon_sym_cchar, - ACTIONS(2907), 1, + ACTIONS(2869), 1, + anon_sym_contained, + ACTIONS(2873), 1, anon_sym_contains, - ACTIONS(2911), 1, - anon_sym_matchgroup, - ACTIONS(2915), 1, - anon_sym_skip, - ACTIONS(2919), 1, - anon_sym_end, - STATE(866), 1, - sym__syn_region_skip, - STATE(930), 1, - sym__syn_region_end, - STATE(1059), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, + STATE(1126), 1, + sym__syn_pattern_offset, + STATE(1172), 1, + aux_sym__syn_match_repeat1, + STATE(1281), 1, sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2159), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2903), 2, + STATE(1287), 1, + sym__syn_arguments_match, + ACTIONS(2871), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2905), 4, + ACTIONS(2899), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(2865), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + ACTIONS(2875), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [33441] = 5, + ACTIONS(2877), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [33051] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2936), 1, - anon_sym_COMMA, - STATE(787), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2940), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(2938), 22, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_start, + ACTIONS(2887), 1, anon_sym_cchar, + ACTIONS(2889), 1, + anon_sym_contained, + ACTIONS(2893), 1, + anon_sym_contains, + STATE(1107), 1, + sym__syn_pattern_offset, + STATE(1192), 1, + aux_sym__syn_match_repeat1, + STATE(1286), 1, + sym__syn_arguments_keyword, + STATE(1293), 1, + sym__syn_arguments_match, + ACTIONS(2891), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(2899), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2885), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2895), 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_add, - anon_sym_remove, - anon_sym_end, - [33480] = 5, + ACTIONS(2897), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [33107] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2936), 1, + ACTIONS(2901), 1, anon_sym_COMMA, - STATE(787), 1, + STATE(794), 1, aux_sym_hl_groups_repeat1, - ACTIONS(2944), 3, + ACTIONS(2905), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(2942), 22, + ACTIONS(2903), 22, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -87157,115 +86122,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_add, anon_sym_remove, anon_sym_end, - [33519] = 18, + [33146] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, ACTIONS(2907), 1, - anon_sym_contains, - ACTIONS(2911), 1, - anon_sym_matchgroup, - ACTIONS(2915), 1, - anon_sym_skip, - ACTIONS(2919), 1, - anon_sym_end, - STATE(930), 1, - sym__syn_region_end, - STATE(960), 1, - sym__syn_region_skip, - STATE(1059), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2149), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2903), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [33584] = 18, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2787), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2925), 1, - anon_sym_SEMI, - ACTIONS(2946), 1, - anon_sym_COMMA, - ACTIONS(2948), 1, - anon_sym_RBRACK, - STATE(2261), 1, - aux_sym_list_repeat1, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2805), 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, - [33649] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(825), 7, + aux_sym_argument_token1, + ACTIONS(2909), 1, + aux_sym_argument_token2, + ACTIONS(821), 6, anon_sym_DOT, - aux_sym_identifier_token2, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(823), 20, + ACTIONS(819), 19, sym__newline_or_pipe, sym_comment, - anon_sym_LBRACE2, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -87282,58 +86155,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [33684] = 18, + anon_sym_LBRACK2, + [33185] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, + ACTIONS(2913), 1, anon_sym_cchar, - ACTIONS(2907), 1, + ACTIONS(2919), 1, anon_sym_contains, - ACTIONS(2911), 1, + ACTIONS(2923), 1, anon_sym_matchgroup, - ACTIONS(2915), 1, + ACTIONS(2927), 1, anon_sym_skip, - ACTIONS(2917), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(828), 1, - sym__syn_region_end, - STATE(880), 1, - sym__syn_region_skip, - STATE(1059), 1, + STATE(790), 1, aux_sym__syn_region_repeat1, - STATE(1080), 1, + STATE(837), 1, + sym__syn_region_skip, + STATE(921), 1, + sym__syn_region_end, + STATE(1087), 1, sym__syn_arguments_match, - STATE(1084), 1, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, sym__syn_arguments_keyword, - STATE(1104), 1, + STATE(2266), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2915), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [33250] = 18, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2919), 1, + anon_sym_contains, + ACTIONS(2923), 1, + anon_sym_matchgroup, + ACTIONS(2927), 1, + anon_sym_skip, + ACTIONS(2931), 1, + anon_sym_end, + STATE(803), 1, + aux_sym__syn_region_repeat1, + STATE(905), 1, + sym__syn_region_end, + STATE(907), 1, + sym__syn_region_skip, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, sym__syn_arguments_region, - STATE(2212), 1, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2230), 1, aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, + ACTIONS(2911), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2903), 2, + ACTIONS(2915), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2913), 2, + ACTIONS(2925), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(2905), 4, + ACTIONS(2917), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + ACTIONS(2921), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [33749] = 3, + [33315] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(825), 7, + ACTIONS(815), 7, anon_sym_DOT, aux_sym_identifier_token2, anon_sym_DOT2, @@ -87341,15 +86261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(823), 20, + ACTIONS(813), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_LBRACE2, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87361,147 +86281,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [33784] = 5, + anon_sym_LBRACK2, + [33350] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2950), 1, - aux_sym_argument_token1, - ACTIONS(2952), 1, - aux_sym_argument_token2, - ACTIONS(831), 6, + ACTIONS(815), 7, anon_sym_DOT, + aux_sym_identifier_token2, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(829), 19, - sym__newline_or_pipe, - sym_comment, + ACTIONS(813), 20, + anon_sym_LBRACE2, 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_DASH, - 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, - [33823] = 15, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2787), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2954), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(2805), 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, - [33882] = 18, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2907), 1, - anon_sym_contains, - ACTIONS(2911), 1, - anon_sym_matchgroup, - ACTIONS(2915), 1, - anon_sym_skip, - ACTIONS(2917), 1, - anon_sym_end, - STATE(828), 1, - sym__syn_region_end, - STATE(943), 1, - sym__syn_region_skip, - STATE(1059), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2194), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2903), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [33947] = 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DASH, + 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_LBRACK2, + [33385] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2956), 1, + ACTIONS(2933), 1, aux_sym_argument_token1, - ACTIONS(2958), 1, + ACTIONS(2935), 1, aux_sym_argument_token2, - ACTIONS(831), 6, + ACTIONS(821), 6, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(829), 19, + ACTIONS(819), 19, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -87520,110 +86347,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [33986] = 18, + anon_sym_LBRACK2, + [33424] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, + ACTIONS(2913), 1, anon_sym_cchar, - ACTIONS(2907), 1, + ACTIONS(2919), 1, anon_sym_contains, - ACTIONS(2911), 1, + ACTIONS(2923), 1, anon_sym_matchgroup, - ACTIONS(2915), 1, + ACTIONS(2927), 1, anon_sym_skip, - ACTIONS(2917), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(794), 1, - aux_sym__syn_region_repeat1, - STATE(828), 1, - sym__syn_region_end, - STATE(829), 1, + STATE(856), 1, sym__syn_region_skip, - STATE(1080), 1, + STATE(921), 1, + sym__syn_region_end, + STATE(1008), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, + STATE(1089), 1, sym__syn_arguments_region, - STATE(2217), 1, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2251), 1, aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, + ACTIONS(2911), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2903), 2, + ACTIONS(2915), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2913), 2, + ACTIONS(2925), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(2905), 4, + ACTIONS(2917), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + ACTIONS(2921), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [34051] = 18, + [33489] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2907), 1, - anon_sym_contains, - ACTIONS(2911), 1, - anon_sym_matchgroup, - ACTIONS(2915), 1, - anon_sym_skip, - ACTIONS(2919), 1, - anon_sym_end, + ACTIONS(2937), 1, + anon_sym_COMMA, STATE(791), 1, - aux_sym__syn_region_repeat1, - STATE(929), 1, - sym__syn_region_skip, - STATE(930), 1, - sym__syn_region_end, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2143), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, + aux_sym_hl_groups_repeat1, + ACTIONS(2942), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(2903), 2, + anon_sym_skip, + ACTIONS(2940), 22, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_start, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(2905), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [34116] = 5, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_add, + anon_sym_remove, + anon_sym_end, + [33528] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1161), 1, + STATE(1154), 1, sym__syn_pattern_offset, - ACTIONS(2960), 2, + ACTIONS(2944), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2823), 7, + ACTIONS(2835), 7, anon_sym_ms, anon_sym_me, anon_sym_hs, @@ -87631,7 +86445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rs, anon_sym_re, anon_sym_lc, - ACTIONS(2962), 17, + ACTIONS(2946), 17, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -87649,18 +86463,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [34155] = 5, + [33567] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2936), 1, + ACTIONS(2813), 1, + anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, + anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2948), 1, anon_sym_COMMA, - STATE(790), 1, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(2952), 1, + anon_sym_SEMI, + ACTIONS(2954), 1, + anon_sym_RBRACK2, + STATE(2356), 1, + aux_sym_list_repeat1, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(2833), 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, + [33632] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2901), 1, + anon_sym_COMMA, + STATE(791), 1, aux_sym_hl_groups_repeat1, - ACTIONS(2966), 3, + ACTIONS(2958), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(2964), 22, + ACTIONS(2956), 22, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -87683,18 +86544,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_add, anon_sym_remove, anon_sym_end, - [34194] = 5, + [33671] = 18, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2919), 1, + anon_sym_contains, + ACTIONS(2923), 1, + anon_sym_matchgroup, + ACTIONS(2927), 1, + anon_sym_skip, + ACTIONS(2929), 1, + anon_sym_end, + STATE(899), 1, + sym__syn_region_skip, + STATE(921), 1, + sym__syn_region_end, + STATE(1008), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2233), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2915), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [33736] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2936), 1, + ACTIONS(2901), 1, anon_sym_COMMA, - STATE(789), 1, + STATE(801), 1, aux_sym_hl_groups_repeat1, - ACTIONS(2944), 3, + ACTIONS(2962), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(2942), 22, + ACTIONS(2960), 22, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -87717,10 +86625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_add, anon_sym_remove, anon_sym_end, - [34233] = 3, + [33775] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(815), 7, + ACTIONS(835), 7, anon_sym_DOT, aux_sym_identifier_token2, anon_sym_DOT2, @@ -87728,15 +86636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_isnot, anon_sym_GT2, - ACTIONS(813), 20, + ACTIONS(833), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_LBRACE2, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87748,104 +86656,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [34268] = 16, + anon_sym_LBRACK2, + [33810] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2984), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2986), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2988), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - STATE(9), 1, - sym__cmd_separator, - ACTIONS(2980), 2, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2994), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2974), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2978), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2990), 6, + ACTIONS(2964), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK2, + ACTIONS(2833), 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, - [34328] = 16, + [33869] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2919), 1, + anon_sym_contains, + ACTIONS(2923), 1, + anon_sym_matchgroup, + ACTIONS(2927), 1, + anon_sym_skip, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(951), 1, + sym__syn_region_skip, + STATE(1008), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2197), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2915), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [33934] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(835), 7, anon_sym_DOT, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, - anon_sym_LPAREN, - ACTIONS(2976), 1, + aux_sym_identifier_token2, anon_sym_DOT2, - ACTIONS(2982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2984), 1, - anon_sym_AMP_AMP, - ACTIONS(2986), 1, + anon_sym_LT2, anon_sym_is, - ACTIONS(2988), 1, anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - STATE(42), 1, - sym__cmd_separator, - ACTIONS(2980), 2, - anon_sym_LT2, anon_sym_GT2, - ACTIONS(2996), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2974), 3, + ACTIONS(833), 20, + anon_sym_LBRACE2, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2978), 3, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2990), 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, - [34388] = 3, + anon_sym_LBRACK2, + [33969] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2934), 3, + ACTIONS(2901), 1, + anon_sym_COMMA, + STATE(791), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2905), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(2932), 23, - anon_sym_COMMA, + ACTIONS(2903), 22, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -87868,1301 +86814,1072 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_add, anon_sym_remove, anon_sym_end, - [34422] = 17, + [34008] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(2998), 1, + ACTIONS(2952), 1, + anon_sym_SEMI, + ACTIONS(2966), 1, anon_sym_COMMA, - ACTIONS(3000), 1, - anon_sym_RBRACK, - STATE(2472), 1, + ACTIONS(2968), 1, + anon_sym_RBRACK2, + STATE(2295), 1, aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [34484] = 16, + [34073] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, - anon_sym_DOT, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, - anon_sym_LPAREN, - ACTIONS(2976), 1, - anon_sym_DOT2, - ACTIONS(2982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2984), 1, - anon_sym_AMP_AMP, - ACTIONS(2986), 1, - anon_sym_is, - ACTIONS(2988), 1, - anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - STATE(32), 1, - sym__cmd_separator, - ACTIONS(2980), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(3002), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2974), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2978), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2990), 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, - [34544] = 17, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2919), 1, + anon_sym_contains, + ACTIONS(2923), 1, + anon_sym_matchgroup, + ACTIONS(2927), 1, + anon_sym_skip, + ACTIONS(2931), 1, + anon_sym_end, + STATE(887), 1, + sym__syn_region_skip, + STATE(905), 1, + sym__syn_region_end, + STATE(1008), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2217), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2915), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [34138] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2919), 1, + anon_sym_contains, ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2946), 1, - anon_sym_COMMA, - ACTIONS(3004), 1, - anon_sym_RPAREN, - STATE(2367), 1, - aux_sym_list_repeat1, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2805), 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, - [34606] = 16, + anon_sym_matchgroup, + ACTIONS(2927), 1, + anon_sym_skip, + ACTIONS(2931), 1, + anon_sym_end, + STATE(799), 1, + aux_sym__syn_region_repeat1, + STATE(890), 1, + sym__syn_region_skip, + STATE(905), 1, + sym__syn_region_end, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2210), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2915), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [34203] = 18, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, - anon_sym_DOT, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, - anon_sym_LPAREN, - ACTIONS(2976), 1, - anon_sym_DOT2, - ACTIONS(2982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2984), 1, - anon_sym_AMP_AMP, - ACTIONS(2986), 1, - anon_sym_is, - ACTIONS(2988), 1, - anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - STATE(7), 1, - sym__cmd_separator, - ACTIONS(2980), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(3006), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2974), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2978), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2990), 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, - [34666] = 17, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2919), 1, + anon_sym_contains, + ACTIONS(2923), 1, + anon_sym_matchgroup, + ACTIONS(2927), 1, + anon_sym_skip, + ACTIONS(2929), 1, + anon_sym_end, + STATE(795), 1, + aux_sym__syn_region_repeat1, + STATE(859), 1, + sym__syn_region_skip, + STATE(921), 1, + sym__syn_region_end, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2249), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2915), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [34268] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3008), 1, + ACTIONS(2942), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(2940), 23, anon_sym_COMMA, - ACTIONS(3010), 1, - anon_sym_RBRACK, - STATE(2374), 1, - aux_sym_list_repeat1, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2805), 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, - [34728] = 17, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, + [34302] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3012), 1, + ACTIONS(2970), 1, anon_sym_COMMA, - ACTIONS(3014), 1, - anon_sym_RBRACK, - STATE(2513), 1, + ACTIONS(2972), 1, + anon_sym_RBRACK2, + STATE(2478), 1, aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [34790] = 17, + [34364] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3016), 1, + ACTIONS(2974), 1, anon_sym_COMMA, - ACTIONS(3018), 1, - anon_sym_RBRACK, - STATE(2488), 1, + ACTIONS(2976), 1, + anon_sym_RBRACK2, + STATE(2559), 1, aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [34852] = 17, + [34426] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2978), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(2982), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2986), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2996), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2998), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2946), 1, - anon_sym_COMMA, - ACTIONS(3020), 1, - anon_sym_RPAREN, - STATE(2405), 1, - aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + STATE(37), 1, + sym__cmd_separator, + ACTIONS(2990), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(3004), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(3000), 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, - [34914] = 17, + [34486] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2978), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(2982), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2986), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2996), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2998), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2946), 1, - anon_sym_COMMA, - ACTIONS(3022), 1, - anon_sym_RPAREN, - STATE(2446), 1, - aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + STATE(10), 1, + sym__cmd_separator, + ACTIONS(2990), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(3006), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(3000), 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, - [34976] = 17, + [34546] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3024), 1, + ACTIONS(2948), 1, anon_sym_COMMA, - ACTIONS(3026), 1, - anon_sym_RBRACK, - STATE(2441), 1, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3008), 1, + anon_sym_RPAREN, + STATE(2460), 1, aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [35038] = 17, + [34608] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(2946), 1, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(3028), 1, - anon_sym_RPAREN, - STATE(2541), 1, + ACTIONS(3012), 1, + anon_sym_RBRACK2, + STATE(2535), 1, aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [35100] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3032), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3030), 23, - anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [35134] = 17, + [34670] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3034), 1, + ACTIONS(3014), 1, anon_sym_COMMA, - ACTIONS(3036), 1, - anon_sym_RBRACK, - STATE(2409), 1, + ACTIONS(3016), 1, + anon_sym_RBRACK2, + STATE(2435), 1, aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [35196] = 17, + [34732] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(2946), 1, + ACTIONS(2966), 1, anon_sym_COMMA, - ACTIONS(3038), 1, - anon_sym_RPAREN, - STATE(2497), 1, + ACTIONS(3018), 1, + anon_sym_RBRACK2, + STATE(2416), 1, aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [35258] = 17, + [34794] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2946), 1, + ACTIONS(2948), 1, anon_sym_COMMA, - ACTIONS(3040), 1, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3020), 1, anon_sym_RPAREN, - STATE(2493), 1, + STATE(2563), 1, aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [35320] = 17, + [34856] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2921), 1, + ACTIONS(2948), 1, anon_sym_COMMA, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3042), 1, - anon_sym_RBRACK, - STATE(2434), 1, + ACTIONS(3022), 1, + anon_sym_RPAREN, + STATE(2426), 1, aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [35382] = 17, + [34918] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2946), 1, + ACTIONS(2948), 1, anon_sym_COMMA, - ACTIONS(3044), 1, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3024), 1, anon_sym_RPAREN, - STATE(2415), 1, + STATE(2540), 1, aux_sym_list_repeat1, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2805), 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, - [35444] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(925), 5, - anon_sym_DOT, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_is, - anon_sym_GT2, - ACTIONS(923), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(2821), 3, anon_sym_PLUS, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(2833), 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, - anon_sym_LBRACK, - [35477] = 3, + [34980] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(893), 5, - anon_sym_DOT, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_is, - anon_sym_GT2, - ACTIONS(891), 20, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3028), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(3026), 23, + anon_sym_COMMA, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_isnot, - 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, - [35510] = 14, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3048), 1, + anon_sym_start, anon_sym_cchar, - ACTIONS(3054), 1, - anon_sym_contains, - ACTIONS(3058), 1, - anon_sym_matchgroup, - STATE(879), 1, - aux_sym__syn_region_repeat1, - STATE(1138), 1, - sym__syn_arguments_match, - STATE(1140), 1, - sym__syn_arguments_region, - STATE(1157), 1, - sym__syn_arguments_keyword, - ACTIONS(3046), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3050), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3060), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3062), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_end, - ACTIONS(3052), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(3056), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [35565] = 16, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2917), 1, - anon_sym_end, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, anon_sym_matchgroup, - STATE(828), 1, - sym__syn_region_end, - STATE(877), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2214), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [35624] = 15, + anon_sym_add, + anon_sym_remove, + anon_sym_end, + [35014] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(3070), 2, + ACTIONS(3030), 1, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2805), 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, - [35681] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(851), 5, - anon_sym_DOT, - anon_sym_DOT2, + ACTIONS(3032), 1, + anon_sym_RBRACK2, + STATE(2443), 1, + aux_sym_list_repeat1, + ACTIONS(2825), 2, anon_sym_LT2, - anon_sym_is, anon_sym_GT2, - ACTIONS(849), 20, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_isnot, - 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, - [35714] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(843), 5, - anon_sym_DOT, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_is, - anon_sym_GT2, - ACTIONS(841), 20, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(2821), 3, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(2833), 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, - anon_sym_LBRACK, - [35747] = 15, + [35076] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2984), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2986), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2988), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(2980), 2, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2948), 1, + anon_sym_COMMA, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3034), 1, + anon_sym_RPAREN, + STATE(2590), 1, + aux_sym_list_repeat1, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(3072), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2974), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2978), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2990), 6, + ACTIONS(2833), 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, - [35804] = 15, + [35138] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(3076), 1, - anon_sym_QMARK, - ACTIONS(3078), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(3082), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(3088), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3090), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(3092), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(3094), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(3072), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3086), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(3080), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(3084), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(3096), 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, - [35861] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(879), 5, - anon_sym_DOT, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_is, - anon_sym_GT2, - ACTIONS(877), 20, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_STAR2, + ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_isnot, - 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, - [35894] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(847), 5, - anon_sym_DOT, - anon_sym_DOT2, + ACTIONS(2948), 1, + anon_sym_COMMA, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3036), 1, + anon_sym_RPAREN, + STATE(2472), 1, + aux_sym_list_repeat1, + ACTIONS(2825), 2, anon_sym_LT2, - anon_sym_is, anon_sym_GT2, - ACTIONS(845), 20, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2821), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(2833), 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, - anon_sym_LBRACK, - [35927] = 3, + [35200] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(945), 5, + ACTIONS(2813), 1, anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, anon_sym_is, - anon_sym_GT2, - ACTIONS(943), 20, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(3038), 1, + anon_sym_COMMA, + ACTIONS(3040), 1, + anon_sym_RBRACK2, + STATE(2507), 1, + aux_sym_list_repeat1, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2821), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(2833), 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, - anon_sym_LBRACK, - [35960] = 16, + [35262] = 17, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2948), 1, + anon_sym_COMMA, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3100), 1, - anon_sym_COLON, - ACTIONS(3102), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3042), 1, + anon_sym_RPAREN, + STATE(2498), 1, + aux_sym_list_repeat1, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [36019] = 3, + [35324] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(875), 5, + ACTIONS(2978), 1, anon_sym_DOT, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(2982), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_AMP_AMP, + ACTIONS(2996), 1, anon_sym_is, + ACTIONS(2998), 1, + anon_sym_isnot, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + STATE(6), 1, + sym__cmd_separator, + ACTIONS(2990), 2, + anon_sym_LT2, anon_sym_GT2, - ACTIONS(873), 20, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(3044), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2988), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(3000), 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, - anon_sym_LBRACK, - [36052] = 16, + [35384] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2978), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(2982), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2986), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2996), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2998), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3104), 1, - anon_sym_COLON, - ACTIONS(3106), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + STATE(21), 1, + sym__cmd_separator, + ACTIONS(2990), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(3046), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(3000), 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, - [36111] = 3, + [35444] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(921), 5, + ACTIONS(933), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(919), 20, + ACTIONS(931), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -89182,24 +87899,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [36144] = 3, + anon_sym_LBRACK2, + [35477] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(867), 5, + ACTIONS(961), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(865), 20, + ACTIONS(959), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89212,130 +87929,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [36177] = 3, + anon_sym_LBRACK2, + [35510] = 12, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(831), 5, + ACTIONS(2978), 1, anon_sym_DOT, + ACTIONS(2982), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2996), 1, anon_sym_is, + ACTIONS(2998), 1, + anon_sym_isnot, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(2990), 2, + anon_sym_LT2, anon_sym_GT2, - ACTIONS(829), 20, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, + ACTIONS(2988), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(845), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3000), 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, + [35561] = 13, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2978), 1, + anon_sym_DOT, + ACTIONS(2982), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, + anon_sym_DOT2, + ACTIONS(2994), 1, + anon_sym_AMP_AMP, + ACTIONS(2996), 1, + anon_sym_is, + ACTIONS(2998), 1, + anon_sym_isnot, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(2990), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2984), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2988), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(845), 4, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + ACTIONS(3000), 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, - anon_sym_LBRACK, - [36210] = 15, + [35614] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(2978), 1, anon_sym_DOT, - ACTIONS(2970), 1, + ACTIONS(2980), 1, anon_sym_QMARK, - ACTIONS(2972), 1, + ACTIONS(2982), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, + ACTIONS(2986), 1, anon_sym_DOT2, - ACTIONS(2982), 1, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(2984), 1, + ACTIONS(2994), 1, anon_sym_AMP_AMP, - ACTIONS(2986), 1, + ACTIONS(2996), 1, anon_sym_is, - ACTIONS(2988), 1, + ACTIONS(2998), 1, anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(2980), 2, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(2990), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(3108), 2, + ACTIONS(3048), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(2974), 3, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2978), 3, + ACTIONS(2988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2990), 6, + ACTIONS(3000), 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, - [36267] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3112), 1, - sym_hl_group, - STATE(1163), 1, - sym_hl_groups, - STATE(2904), 1, - sym_at, - ACTIONS(3116), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3114), 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, - [36308] = 3, + [35671] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(949), 5, + ACTIONS(881), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(947), 20, + ACTIONS(879), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89348,60 +88080,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [36341] = 16, + anon_sym_LBRACK2, + [35704] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2978), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2982), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2986), 1, anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3118), 1, - anon_sym_COLON, - ACTIONS(3120), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(847), 3, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(845), 12, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [36400] = 3, + [35749] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(889), 5, + ACTIONS(909), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(887), 20, + ACTIONS(907), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -89421,109 +88146,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [36433] = 16, + anon_sym_LBRACK2, + [35782] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2978), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2982), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, - anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3118), 1, - anon_sym_COLON, - ACTIONS(3122), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(847), 4, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(845), 15, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [36492] = 15, + [35823] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2978), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2982), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(847), 4, anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2797), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(3124), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2791), 3, + ACTIONS(845), 18, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [36549] = 3, + [35862] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(917), 5, + ACTIONS(865), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(915), 20, + ACTIONS(863), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89536,82 +88243,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [36582] = 7, + anon_sym_LBRACK2, + [35895] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_hl_group, - STATE(1088), 1, - sym_hl_groups, - STATE(3102), 1, - sym_at, - ACTIONS(3126), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3130), 19, - anon_sym_conceal, + ACTIONS(2913), 1, anon_sym_cchar, + ACTIONS(2929), 1, + anon_sym_end, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, + anon_sym_matchgroup, + STATE(838), 1, + aux_sym__syn_region_repeat1, + STATE(921), 1, + sym__syn_region_end, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2252), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3050), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(2917), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2921), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, + [35954] = 16, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2929), 1, + anon_sym_end, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, anon_sym_matchgroup, + STATE(921), 1, + sym__syn_region_end, + STATE(940), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2236), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, anon_sym_oneline, anon_sym_concealends, - anon_sym_end, - [36623] = 4, + ACTIONS(3050), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [36013] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3132), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2683), 5, + ACTIONS(2813), 1, anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, anon_sym_is, - anon_sym_GT2, - ACTIONS(2691), 18, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(3056), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(2833), 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, + [36070] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2978), 1, + anon_sym_DOT, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(2982), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, + anon_sym_DOT2, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, anon_sym_AMP_AMP, + ACTIONS(2996), 1, + anon_sym_is, + ACTIONS(2998), 1, + anon_sym_isnot, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(2990), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(3058), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2984), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2988), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(3000), 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, - anon_sym_LBRACK, - [36658] = 3, + [36127] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(851), 5, + ACTIONS(877), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(849), 20, + ACTIONS(875), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -89631,66 +88443,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [36691] = 15, + anon_sym_LBRACK2, + [36160] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(885), 5, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2797), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(3134), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2791), 3, + ACTIONS(883), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [36748] = 3, + anon_sym_LBRACK2, + [36193] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(871), 5, + ACTIONS(945), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(869), 20, + ACTIONS(943), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89703,63 +88503,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [36781] = 16, + anon_sym_LBRACK2, + [36226] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3118), 1, + ACTIONS(3060), 1, anon_sym_COLON, - ACTIONS(3136), 1, + ACTIONS(3062), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [36840] = 4, + [36285] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3132), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2683), 5, + ACTIONS(933), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(2691), 18, + ACTIONS(931), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -89777,191 +88576,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [36875] = 16, + anon_sym_LBRACK2, + [36318] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(3064), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(3066), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(3070), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(3076), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(3078), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(3080), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3118), 1, - anon_sym_COLON, - ACTIONS(3138), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(3074), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(3068), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(3072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(845), 4, + anon_sym_QMARK, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_PIPE_PIPE, + ACTIONS(3082), 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, - [36934] = 15, + [36371] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(949), 5, anon_sym_DOT, - ACTIONS(3076), 1, - anon_sym_QMARK, - ACTIONS(3078), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, anon_sym_DOT2, - ACTIONS(3088), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3090), 1, - anon_sym_AMP_AMP, - ACTIONS(3092), 1, - anon_sym_is, - ACTIONS(3094), 1, - anon_sym_isnot, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(3086), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(3108), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3080), 3, + ACTIONS(947), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(3084), 3, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(3096), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [36991] = 16, + anon_sym_LBRACK2, + [36404] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3140), 1, + ACTIONS(3086), 1, anon_sym_COLON, - ACTIONS(3142), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3088), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [37050] = 12, + [36463] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(3064), 1, anon_sym_DOT, - ACTIONS(2972), 1, + ACTIONS(3066), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, + ACTIONS(3070), 1, anon_sym_DOT2, - ACTIONS(2986), 1, - anon_sym_is, - ACTIONS(2988), 1, - anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(2980), 2, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(847), 3, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(2974), 3, + ACTIONS(3068), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2978), 3, + ACTIONS(3072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(963), 5, - sym__newline_or_pipe, - sym_comment, + ACTIONS(845), 12, anon_sym_QMARK, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2990), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [37101] = 3, + [36508] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(774), 5, + ACTIONS(843), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(783), 20, + ACTIONS(841), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89974,66 +88755,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [37134] = 16, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2919), 1, - anon_sym_end, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(930), 1, - sym__syn_region_end, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2166), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [37193] = 6, + anon_sym_LBRACK2, + [36541] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(861), 5, anon_sym_DOT, - ACTIONS(3078), 1, - anon_sym_LPAREN, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(941), 4, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(939), 18, + ACTIONS(859), 20, anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, @@ -90051,118 +88785,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [37232] = 16, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2919), 1, - anon_sym_end, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(864), 1, - aux_sym__syn_region_repeat1, - STATE(930), 1, - sym__syn_region_end, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2163), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [37291] = 13, + anon_sym_LBRACK2, + [36574] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(965), 5, anon_sym_DOT, - ACTIONS(2972), 1, - anon_sym_LPAREN, - ACTIONS(2976), 1, anon_sym_DOT2, - ACTIONS(2984), 1, - anon_sym_AMP_AMP, - ACTIONS(2986), 1, - anon_sym_is, - ACTIONS(2988), 1, - anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(2980), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(2974), 3, + ACTIONS(963), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2978), 3, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(963), 4, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - ACTIONS(2990), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [37344] = 9, + anon_sym_LBRACK2, + [36607] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(821), 5, anon_sym_DOT, - ACTIONS(2972), 1, - anon_sym_LPAREN, - ACTIONS(2976), 1, anon_sym_DOT2, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(965), 3, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(2974), 3, + ACTIONS(819), 20, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2978), 3, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(963), 12, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90170,29 +88845,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [37389] = 7, + anon_sym_LBRACK2, + [36640] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(3064), 1, anon_sym_DOT, - ACTIONS(2972), 1, + ACTIONS(3066), 1, anon_sym_LPAREN, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(2974), 3, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(3068), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(965), 4, + ACTIONS(847), 4, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(963), 15, - sym__newline_or_pipe, - sym_comment, + ACTIONS(845), 15, anon_sym_QMARK, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DASH, @@ -90204,27 +88880,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [37430] = 6, + [36681] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(3064), 1, anon_sym_DOT, - ACTIONS(2972), 1, + ACTIONS(3066), 1, anon_sym_LPAREN, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(965), 4, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(847), 4, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(963), 18, - sym__newline_or_pipe, - sym_comment, + ACTIONS(845), 18, anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90237,104 +88913,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [37469] = 16, + [36720] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, + ACTIONS(2913), 1, anon_sym_cchar, - ACTIONS(2919), 1, + ACTIONS(2929), 1, anon_sym_end, - ACTIONS(3066), 1, + ACTIONS(3052), 1, anon_sym_contains, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_matchgroup, - STATE(885), 1, + STATE(894), 1, aux_sym__syn_region_repeat1, - STATE(930), 1, + STATE(921), 1, sym__syn_region_end, - STATE(1080), 1, + STATE(1087), 1, sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, + STATE(1089), 1, sym__syn_arguments_region, - STATE(2162), 1, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2235), 1, aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, + ACTIONS(2911), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2913), 2, + ACTIONS(2925), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(3064), 2, + ACTIONS(3050), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2905), 4, + ACTIONS(2917), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + ACTIONS(2921), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [37528] = 16, + [36779] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, + ACTIONS(865), 5, + anon_sym_DOT, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(863), 20, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_isnot, + 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_LBRACK2, + [36812] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(843), 5, + anon_sym_DOT, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(841), 20, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_isnot, + 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_LBRACK2, + [36845] = 16, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, anon_sym_cchar, - ACTIONS(2919), 1, + ACTIONS(2929), 1, anon_sym_end, - ACTIONS(3066), 1, + ACTIONS(3052), 1, anon_sym_contains, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_matchgroup, - STATE(885), 1, + STATE(896), 1, aux_sym__syn_region_repeat1, - STATE(930), 1, + STATE(921), 1, sym__syn_region_end, - STATE(1080), 1, + STATE(1087), 1, sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, + STATE(1089), 1, sym__syn_arguments_region, - STATE(2161), 1, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2234), 1, aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, + ACTIONS(2911), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2913), 2, + ACTIONS(2925), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(3064), 2, + ACTIONS(3050), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2905), 4, + ACTIONS(2917), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + ACTIONS(2921), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [37587] = 3, + [36904] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(977), 5, + ACTIONS(3090), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2699), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(975), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(2701), 18, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -90352,24 +89089,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [37620] = 3, + anon_sym_LBRACK2, + [36939] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(905), 5, + ACTIONS(913), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(903), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(911), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90382,24 +89119,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [37653] = 3, + anon_sym_LBRACK2, + [36972] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(925), 5, + ACTIONS(857), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(923), 20, + ACTIONS(855), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90412,17 +89149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [37686] = 3, + anon_sym_LBRACK2, + [37005] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(981), 5, + ACTIONS(869), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(979), 20, + ACTIONS(867), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -90442,206 +89179,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [37719] = 16, + anon_sym_LBRACK2, + [37038] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2917), 1, - anon_sym_end, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(828), 1, - sym__syn_region_end, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2198), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [37778] = 16, + ACTIONS(921), 5, + anon_sym_DOT, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(919), 20, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_isnot, + 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_LBRACK2, + [37071] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3118), 1, + ACTIONS(3060), 1, anon_sym_COLON, - ACTIONS(3144), 1, + ACTIONS(3092), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [37837] = 14, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3048), 1, - anon_sym_cchar, - ACTIONS(3054), 1, - anon_sym_contains, - ACTIONS(3058), 1, - anon_sym_matchgroup, - STATE(931), 1, - aux_sym__syn_region_repeat1, - STATE(1138), 1, - sym__syn_arguments_match, - STATE(1140), 1, - sym__syn_arguments_region, - STATE(1157), 1, - sym__syn_arguments_keyword, - ACTIONS(3046), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3050), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3060), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3146), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_end, - ACTIONS(3052), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(3056), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [37892] = 16, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2917), 1, - anon_sym_end, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(828), 1, - sym__syn_region_end, - STATE(939), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2197), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [37951] = 9, + [37130] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(877), 5, anon_sym_DOT, - ACTIONS(3078), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, anon_sym_DOT2, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(913), 3, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(3080), 3, + ACTIONS(875), 20, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(3084), 3, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(911), 12, + anon_sym_isnot, + 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_LBRACK2, + [37163] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(885), 5, + anon_sym_DOT, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(883), 20, anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, + anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -90649,109 +89312,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [37996] = 16, + anon_sym_LBRACK2, + [37196] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(945), 5, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3104), 1, - anon_sym_COLON, - ACTIONS(3148), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(943), 20, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [38055] = 16, + anon_sym_LBRACK2, + [37229] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2917), 1, - anon_sym_end, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(828), 1, - sym__syn_region_end, - STATE(941), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2195), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, + ACTIONS(949), 5, + anon_sym_DOT, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(947), 20, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_isnot, + 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_LBRACK2, + [37262] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3098), 1, + sym_hl_group, + STATE(1101), 1, + sym_hl_groups, + STATE(3134), 1, + sym_at, + ACTIONS(3096), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3100), 19, anon_sym_conceal, + anon_sym_cchar, anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2905), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [38114] = 3, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [37303] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(985), 5, + ACTIONS(981), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(983), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(979), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90764,58 +89436,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38147] = 14, + anon_sym_LBRACK2, + [37336] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3155), 1, - anon_sym_cchar, - ACTIONS(3164), 1, - anon_sym_contains, - ACTIONS(3170), 1, - anon_sym_matchgroup, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - ACTIONS(3152), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3158), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3173), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3150), 3, + ACTIONS(965), 5, + anon_sym_DOT, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(963), 20, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_end, - ACTIONS(3161), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(3167), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [38202] = 3, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_isnot, + 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_LBRACK2, + [37369] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(957), 5, + ACTIONS(905), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(955), 20, + ACTIONS(903), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -90835,17 +89496,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38235] = 3, + anon_sym_LBRACK2, + [37402] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(989), 5, + ACTIONS(977), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(987), 20, + ACTIONS(975), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -90865,17 +89526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38268] = 3, + anon_sym_LBRACK2, + [37435] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(969), 5, + ACTIONS(774), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(967), 20, + ACTIONS(783), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -90895,17 +89556,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38301] = 3, + anon_sym_LBRACK2, + [37468] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(973), 5, + ACTIONS(851), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(971), 20, + ACTIONS(849), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -90925,59 +89586,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38334] = 15, + anon_sym_LBRACK2, + [37501] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(2978), 1, anon_sym_DOT, - ACTIONS(3076), 1, - anon_sym_QMARK, - ACTIONS(3078), 1, + ACTIONS(2982), 1, anon_sym_LPAREN, - ACTIONS(3082), 1, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(941), 4, anon_sym_DOT2, - ACTIONS(3088), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3090), 1, - anon_sym_AMP_AMP, - ACTIONS(3092), 1, - anon_sym_is, - ACTIONS(3094), 1, - anon_sym_isnot, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(3086), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(3176), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3080), 3, + ACTIONS(939), 18, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(3084), 3, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(3096), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [38391] = 3, + [37540] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(949), 5, + ACTIONS(873), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(947), 20, + ACTIONS(871), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -90997,17 +89649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38424] = 3, + anon_sym_LBRACK2, + [37573] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(937), 5, + ACTIONS(917), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(935), 20, + ACTIONS(915), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -91027,17 +89679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38457] = 3, + anon_sym_LBRACK2, + [37606] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(933), 5, + ACTIONS(969), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(931), 20, + ACTIONS(967), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -91057,17 +89709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38490] = 3, + anon_sym_LBRACK2, + [37639] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(843), 5, + ACTIONS(913), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(841), 20, + ACTIONS(911), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -91087,93 +89739,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38523] = 15, + anon_sym_LBRACK2, + [37672] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(839), 5, anon_sym_DOT, - ACTIONS(3076), 1, - anon_sym_QMARK, - ACTIONS(3078), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, anon_sym_DOT2, - ACTIONS(3088), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3090), 1, - anon_sym_AMP_AMP, - ACTIONS(3092), 1, - anon_sym_is, - ACTIONS(3094), 1, - anon_sym_isnot, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(3086), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(3178), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3080), 3, + ACTIONS(837), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(3084), 3, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(3096), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [38580] = 16, + anon_sym_LBRACK2, + [37705] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(981), 5, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3180), 1, - anon_sym_COLON, - ACTIONS(3182), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(979), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [38639] = 3, + anon_sym_LBRACK2, + [37738] = 16, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2929), 1, + anon_sym_end, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, + anon_sym_matchgroup, + STATE(921), 1, + sym__syn_region_end, + STATE(940), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2220), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3050), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [37797] = 3, ACTIONS(3), 1, sym__line_continuation, ACTIONS(921), 5, @@ -91202,17 +89872,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38672] = 3, + anon_sym_LBRACK2, + [37830] = 14, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3104), 1, + anon_sym_cchar, + ACTIONS(3110), 1, + anon_sym_contains, + ACTIONS(3114), 1, + anon_sym_matchgroup, + STATE(924), 1, + aux_sym__syn_region_repeat1, + STATE(1142), 1, + sym__syn_arguments_keyword, + STATE(1151), 1, + sym__syn_arguments_match, + STATE(1152), 1, + sym__syn_arguments_region, + ACTIONS(3102), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3106), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3116), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3118), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_end, + ACTIONS(3108), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(3112), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [37885] = 16, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2931), 1, + anon_sym_end, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, + anon_sym_matchgroup, + STATE(905), 1, + sym__syn_region_end, + STATE(947), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2199), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3050), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [37944] = 16, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2813), 1, + anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, + anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3120), 1, + anon_sym_COLON, + ACTIONS(3122), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(2833), 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, + [38003] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(883), 5, + ACTIONS(977), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(881), 20, + ACTIONS(975), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -91232,54 +90029,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38705] = 3, + anon_sym_LBRACK2, + [38036] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(917), 5, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2931), 1, + anon_sym_end, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, + anon_sym_matchgroup, + STATE(905), 1, + sym__syn_region_end, + STATE(949), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2198), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3050), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [38095] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3064), 1, anon_sym_DOT, + ACTIONS(3066), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(3076), 1, + anon_sym_AMP_AMP, + ACTIONS(3078), 1, anon_sym_is, - anon_sym_GT2, - ACTIONS(915), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3080), 1, + anon_sym_isnot, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(3124), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(3126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3048), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3074), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(3068), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3072), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(3082), 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, - anon_sym_LBRACK, - [38738] = 3, + [38152] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(859), 5, + ACTIONS(961), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(857), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(959), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91292,109 +90144,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38771] = 16, + anon_sym_LBRACK2, + [38185] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2978), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(2982), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2986), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2996), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2998), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3118), 1, - anon_sym_COLON, - ACTIONS(3184), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(2990), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(3128), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(3000), 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, - [38830] = 15, + [38242] = 16, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2929), 1, + anon_sym_end, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, + anon_sym_matchgroup, + STATE(921), 1, + sym__syn_region_end, + STATE(940), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2226), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3050), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [38301] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(3076), 1, - anon_sym_QMARK, - ACTIONS(3078), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(3082), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(3088), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3090), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(3092), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(3094), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(3086), 2, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3130), 1, + anon_sym_COLON, + ACTIONS(3132), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(3186), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3080), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(3084), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(3096), 6, + ACTIONS(2833), 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, - [38887] = 3, + [38360] = 16, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2929), 1, + anon_sym_end, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, + anon_sym_matchgroup, + STATE(921), 1, + sym__syn_region_end, + STATE(940), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2225), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3050), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [38419] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(855), 5, + ACTIONS(774), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(853), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(783), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91407,19 +90345,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38920] = 3, + anon_sym_LBRACK2, + [38452] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(929), 5, + ACTIONS(3090), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(2699), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(927), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(2701), 18, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -91437,47 +90376,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [38953] = 3, + anon_sym_LBRACK2, + [38487] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(933), 5, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2929), 1, + anon_sym_end, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, + anon_sym_matchgroup, + STATE(884), 1, + aux_sym__syn_region_repeat1, + STATE(921), 1, + sym__syn_region_end, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2224), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3050), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [38546] = 16, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2931), 1, + anon_sym_end, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, + anon_sym_matchgroup, + STATE(905), 1, + sym__syn_region_end, + STATE(940), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2200), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3050), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [38605] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2978), 1, anon_sym_DOT, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(2982), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_AMP_AMP, + ACTIONS(2996), 1, anon_sym_is, + ACTIONS(2998), 1, + anon_sym_isnot, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(2990), 2, + anon_sym_LT2, anon_sym_GT2, - ACTIONS(931), 20, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(3134), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2988), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(3000), 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, - anon_sym_LBRACK, - [38986] = 3, + [38662] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(973), 5, + ACTIONS(851), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(971), 20, + ACTIONS(849), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -91497,29 +90534,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [39019] = 3, + anon_sym_LBRACK2, + [38695] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(981), 5, + ACTIONS(2978), 1, anon_sym_DOT, + ACTIONS(2982), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, anon_sym_DOT2, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(957), 3, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(979), 20, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2988), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, + ACTIONS(955), 12, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91527,17 +90571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [39052] = 3, + [38740] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(831), 5, + ACTIONS(973), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(829), 20, + ACTIONS(971), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -91557,131 +90600,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [39085] = 15, + anon_sym_LBRACK2, + [38773] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(3104), 1, + anon_sym_cchar, + ACTIONS(3110), 1, + anon_sym_contains, + ACTIONS(3114), 1, + anon_sym_matchgroup, + STATE(886), 1, + aux_sym__syn_region_repeat1, + STATE(1142), 1, + sym__syn_arguments_keyword, + STATE(1151), 1, + sym__syn_arguments_match, + STATE(1152), 1, + sym__syn_arguments_region, + ACTIONS(3102), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3106), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3116), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3136), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_end, + ACTIONS(3108), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(3112), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [38828] = 16, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2984), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2986), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2988), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(2980), 2, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_COLON, + ACTIONS(3138), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(3186), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2974), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2978), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2990), 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, - [39142] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(909), 5, - anon_sym_DOT, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_is, - anon_sym_GT2, - ACTIONS(907), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, + ACTIONS(2821), 3, anon_sym_PLUS, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(2833), 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, - anon_sym_LBRACK, - [39175] = 7, + [38887] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3112), 1, - sym_hl_group, - STATE(1162), 1, - sym_hl_groups, - STATE(2904), 1, - sym_at, - ACTIONS(3126), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3130), 19, - anon_sym_conceal, + ACTIONS(2913), 1, anon_sym_cchar, + ACTIONS(2931), 1, + anon_sym_end, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, + anon_sym_matchgroup, + STATE(900), 1, + aux_sym__syn_region_repeat1, + STATE(905), 1, + sym__syn_region_end, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2221), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3050), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(2917), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2921), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, + [38946] = 14, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, anon_sym_matchgroup, + STATE(940), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, anon_sym_oneline, anon_sym_concealends, + ACTIONS(3050), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3118), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_end, - [39216] = 6, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [39001] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(925), 5, anon_sym_DOT, - ACTIONS(2972), 1, - anon_sym_LPAREN, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(941), 4, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(939), 18, + ACTIONS(923), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, @@ -91697,82 +90798,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [39255] = 9, + anon_sym_LBRACK2, + [39034] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2972), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(913), 3, - anon_sym_LT2, - anon_sym_is, - anon_sym_GT2, - ACTIONS(2974), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2978), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(911), 12, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, anon_sym_isnot, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [39300] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(839), 5, - anon_sym_DOT, - anon_sym_DOT2, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_COLON, + ACTIONS(3140), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, - anon_sym_is, anon_sym_GT2, - ACTIONS(837), 20, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2821), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(2833), 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, - anon_sym_LBRACK, - [39333] = 3, + [39093] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(839), 5, + ACTIONS(909), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(837), 20, + ACTIONS(907), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -91792,179 +90871,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [39366] = 3, + anon_sym_LBRACK2, + [39126] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(961), 5, + ACTIONS(2978), 1, anon_sym_DOT, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_is, - anon_sym_GT2, - ACTIONS(959), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(2980), 1, anon_sym_QMARK, + ACTIONS(2982), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, + ACTIONS(2986), 1, + anon_sym_DOT2, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, anon_sym_AMP_AMP, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(2996), 1, + anon_sym_is, + ACTIONS(2998), 1, anon_sym_isnot, - 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, - [39399] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(774), 5, - anon_sym_DOT, - anon_sym_DOT2, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(2990), 2, anon_sym_LT2, - anon_sym_is, anon_sym_GT2, - ACTIONS(783), 20, + ACTIONS(3142), 2, sym__newline_or_pipe, sym_comment, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2988), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(3000), 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, - anon_sym_LBRACK, - [39432] = 3, + [39183] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(945), 5, + ACTIONS(3064), 1, anon_sym_DOT, + ACTIONS(3066), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(3076), 1, + anon_sym_AMP_AMP, + ACTIONS(3078), 1, anon_sym_is, - anon_sym_GT2, - ACTIONS(943), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3080), 1, + anon_sym_isnot, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(3124), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(3126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3074), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(3142), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3068), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3072), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(3082), 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, - anon_sym_LBRACK, - [39465] = 3, + [39240] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(989), 5, + ACTIONS(2813), 1, anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, anon_sym_is, - anon_sym_GT2, - ACTIONS(987), 20, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(3144), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2821), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(2833), 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, - anon_sym_LBRACK, - [39498] = 3, + [39297] = 12, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(957), 5, + ACTIONS(3064), 1, anon_sym_DOT, + ACTIONS(3066), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(3078), 1, anon_sym_is, + ACTIONS(3080), 1, + anon_sym_isnot, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(3074), 2, + anon_sym_LT2, anon_sym_GT2, - ACTIONS(955), 20, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(3068), 3, anon_sym_PERCENT, anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(3072), 3, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(845), 5, + anon_sym_QMARK, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(3082), 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, - anon_sym_LBRACK, - [39531] = 3, + [39348] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(985), 5, + ACTIONS(3064), 1, anon_sym_DOT, + ACTIONS(3066), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, anon_sym_DOT2, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(957), 3, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(983), 20, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(3068), 3, anon_sym_PERCENT, anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(3072), 3, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(955), 12, + anon_sym_QMARK, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DASH, - anon_sym_DOT_DOT, anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -91972,24 +91073,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [39564] = 3, + [39393] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(953), 5, + ACTIONS(3064), 1, anon_sym_DOT, + ACTIONS(3066), 1, + anon_sym_LPAREN, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(941), 4, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(951), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(939), 18, anon_sym_QMARK, - anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92002,102 +91106,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [39597] = 15, + [39432] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2984), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2986), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2988), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(2980), 2, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3146), 1, + anon_sym_COLON, + ACTIONS(3148), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(3178), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2974), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2978), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2990), 6, + ACTIONS(2833), 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, - [39654] = 16, + [39491] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(3064), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(3066), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(3070), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(3076), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(3078), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(3080), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(3124), 1, anon_sym_QMARK, - ACTIONS(3118), 1, - anon_sym_COLON, - ACTIONS(3188), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3074), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(3150), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3068), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(3072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(3082), 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, - [39713] = 3, + [39548] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(937), 5, + ACTIONS(857), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(935), 20, + ACTIONS(855), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -92117,51 +91220,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [39746] = 7, + anon_sym_LBRACK2, + [39581] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_hl_group, - STATE(1086), 1, - sym_hl_groups, - STATE(3102), 1, - sym_at, - ACTIONS(3116), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3114), 19, - anon_sym_conceal, + ACTIONS(2913), 1, anon_sym_cchar, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, + anon_sym_matchgroup, + STATE(908), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + ACTIONS(2911), 2, + anon_sym_conceal, anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3050), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3136), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_end, + ACTIONS(2917), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2921), 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, - [39787] = 3, + [39636] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(953), 5, + ACTIONS(873), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(951), 20, + ACTIONS(871), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -92181,191 +91291,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [39820] = 15, + anon_sym_LBRACK2, + [39669] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(917), 5, anon_sym_DOT, - ACTIONS(3076), 1, - anon_sym_QMARK, - ACTIONS(3078), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, anon_sym_DOT2, - ACTIONS(3088), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3090), 1, - anon_sym_AMP_AMP, - ACTIONS(3092), 1, - anon_sym_is, - ACTIONS(3094), 1, - anon_sym_isnot, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(3086), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(3190), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3080), 3, + ACTIONS(915), 20, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(3084), 3, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(3096), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [39877] = 16, + anon_sym_LBRACK2, + [39702] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, + ACTIONS(3155), 1, anon_sym_cchar, - ACTIONS(2919), 1, - anon_sym_end, - ACTIONS(3066), 1, + ACTIONS(3164), 1, anon_sym_contains, - ACTIONS(3068), 1, + ACTIONS(3170), 1, anon_sym_matchgroup, - STATE(930), 1, - sym__syn_region_end, - STATE(967), 1, + STATE(924), 1, aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, + STATE(1142), 1, sym__syn_arguments_keyword, - STATE(1104), 1, + STATE(1151), 1, + sym__syn_arguments_match, + STATE(1152), 1, sym__syn_arguments_region, - STATE(2146), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, + ACTIONS(3152), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, + ACTIONS(3158), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [39936] = 14, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(963), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, + ACTIONS(3173), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3062), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(3176), 3, + sym__newline_or_pipe, + sym_comment, anon_sym_end, - ACTIONS(2905), 4, + ACTIONS(3161), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + ACTIONS(3167), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [39991] = 14, + [39757] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3195), 1, + ACTIONS(2913), 1, anon_sym_cchar, - ACTIONS(3204), 1, + ACTIONS(2931), 1, + anon_sym_end, + ACTIONS(3052), 1, anon_sym_contains, - ACTIONS(3210), 1, + ACTIONS(3054), 1, anon_sym_matchgroup, - STATE(931), 1, + STATE(905), 1, + sym__syn_region_end, + STATE(940), 1, aux_sym__syn_region_repeat1, - STATE(1138), 1, + STATE(1087), 1, sym__syn_arguments_match, - STATE(1140), 1, + STATE(1089), 1, sym__syn_arguments_region, - STATE(1157), 1, + STATE(1093), 1, sym__syn_arguments_keyword, - ACTIONS(3192), 2, + STATE(2193), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3198), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3213), 2, + ACTIONS(2925), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(3150), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_end, - ACTIONS(3201), 4, + ACTIONS(3050), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(3207), 5, + ACTIONS(2921), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [40046] = 3, + [39816] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(901), 5, + ACTIONS(925), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(899), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(923), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92378,155 +91435,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [40079] = 3, + anon_sym_LBRACK2, + [39849] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(897), 5, + ACTIONS(2813), 1, anon_sym_DOT, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_is, - anon_sym_GT2, - ACTIONS(895), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, + ACTIONS(2815), 1, anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_STAR2, - anon_sym_PIPE_PIPE, + ACTIONS(2819), 1, + anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, anon_sym_isnot, - 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, - [40112] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(893), 5, - anon_sym_DOT, - anon_sym_DOT2, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3178), 1, + anon_sym_COLON, + ACTIONS(3180), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, - anon_sym_is, anon_sym_GT2, - ACTIONS(891), 20, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - anon_sym_LPAREN, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2821), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(2833), 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, - anon_sym_LBRACK, - [40145] = 3, + [39908] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(889), 5, - anon_sym_DOT, - anon_sym_DOT2, - anon_sym_LT2, - anon_sym_is, - anon_sym_GT2, - ACTIONS(887), 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_DASH, - anon_sym_DOT_DOT, - anon_sym_isnot, - 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, - [40178] = 14, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3098), 1, + sym_hl_group, + STATE(1095), 1, + sym_hl_groups, + STATE(3134), 1, + sym_at, + ACTIONS(3182), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3184), 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, + [39949] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2972), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2984), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2986), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2988), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(2980), 2, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3086), 1, + anon_sym_COLON, + ACTIONS(3186), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(885), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_QMARK, - ACTIONS(2974), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2978), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2990), 6, + ACTIONS(2833), 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, - [40233] = 3, + [40008] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(883), 5, + ACTIONS(973), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(881), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(971), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92539,17 +91585,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [40266] = 3, + anon_sym_LBRACK2, + [40041] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(977), 5, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3188), 1, + sym_hl_group, + STATE(1153), 1, + sym_hl_groups, + STATE(2956), 1, + sym_at, + ACTIONS(3192), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3190), 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, + [40082] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(985), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(975), 20, + ACTIONS(983), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -92569,60 +91649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [40299] = 16, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2917), 1, - anon_sym_end, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(828), 1, - sym__syn_region_end, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2191), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [40358] = 3, + anon_sym_LBRACK2, + [40115] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(879), 5, + ACTIONS(985), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(877), 20, + ACTIONS(983), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -92642,60 +91679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [40391] = 16, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2917), 1, - anon_sym_end, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(828), 1, - sym__syn_region_end, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2190), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [40450] = 3, + anon_sym_LBRACK2, + [40148] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(875), 5, + ACTIONS(989), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(873), 20, + ACTIONS(987), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -92715,60 +91709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [40483] = 16, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2917), 1, - anon_sym_end, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(828), 1, - sym__syn_region_end, - STATE(968), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2189), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [40542] = 3, + anon_sym_LBRACK2, + [40181] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(897), 5, + ACTIONS(869), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(895), 20, + ACTIONS(867), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -92788,65 +91739,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [40575] = 14, + anon_sym_LBRACK2, + [40214] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(937), 5, anon_sym_DOT, - ACTIONS(3078), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, anon_sym_DOT2, - ACTIONS(3088), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3090), 1, - anon_sym_AMP_AMP, - ACTIONS(3092), 1, - anon_sym_is, - ACTIONS(3094), 1, - anon_sym_isnot, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(3086), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(885), 3, + ACTIONS(935), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3080), 3, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(3084), 3, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(3096), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [40630] = 3, + anon_sym_LBRACK2, + [40247] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(905), 5, + ACTIONS(929), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(903), 20, + ACTIONS(927), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92859,120 +91799,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [40663] = 3, + anon_sym_LBRACK2, + [40280] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(859), 5, + ACTIONS(3064), 1, anon_sym_DOT, + ACTIONS(3066), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(3076), 1, + anon_sym_AMP_AMP, + ACTIONS(3078), 1, anon_sym_is, - anon_sym_GT2, - ACTIONS(857), 20, + ACTIONS(3080), 1, + anon_sym_isnot, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(3124), 1, anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3074), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(3134), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, + ACTIONS(3068), 3, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3072), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(3082), 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, - anon_sym_LBRACK, - [40696] = 3, + [40337] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(969), 5, + ACTIONS(3064), 1, anon_sym_DOT, + ACTIONS(3066), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(3076), 1, + anon_sym_AMP_AMP, + ACTIONS(3078), 1, anon_sym_is, - anon_sym_GT2, - ACTIONS(967), 20, + ACTIONS(3080), 1, + anon_sym_isnot, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(3124), 1, anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_PLUS, + ACTIONS(3126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3058), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, + ACTIONS(3074), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(3068), 3, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3072), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(3082), 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, - anon_sym_LBRACK, - [40729] = 16, + [40394] = 14, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3197), 1, + anon_sym_cchar, + ACTIONS(3206), 1, + anon_sym_contains, + ACTIONS(3212), 1, + anon_sym_matchgroup, + STATE(940), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + ACTIONS(3194), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3200), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3215), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3176), 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_end, + ACTIONS(3203), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(3209), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [40449] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2978), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2982), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2986), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2996), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2998), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3216), 1, - anon_sym_COLON, - ACTIONS(3218), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(2990), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(853), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(3000), 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, - [40788] = 3, + [40504] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(855), 5, + ACTIONS(901), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(853), 20, + ACTIONS(899), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -92992,67 +91995,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [40821] = 16, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2787), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3220), 1, - anon_sym_COLON, - ACTIONS(3222), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2805), 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, - [40880] = 3, + anon_sym_LBRACK2, + [40537] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(929), 5, + ACTIONS(861), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(927), 20, + ACTIONS(859), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93065,101 +92025,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [40913] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_hl_group, - STATE(1105), 1, - sym_hl_groups, - STATE(3102), 1, - sym_at, - ACTIONS(3224), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3226), 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, - [40954] = 16, + anon_sym_LBRACK2, + [40570] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(889), 5, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3228), 1, - anon_sym_COLON, - ACTIONS(3230), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(887), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [41013] = 3, + anon_sym_LBRACK2, + [40603] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(909), 5, + ACTIONS(893), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(907), 20, + ACTIONS(891), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93172,24 +92085,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [41046] = 3, + anon_sym_LBRACK2, + [40636] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(847), 5, + ACTIONS(897), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(845), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(895), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93202,60 +92115,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [41079] = 16, + anon_sym_LBRACK2, + [40669] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, + ACTIONS(2913), 1, anon_sym_cchar, - ACTIONS(2919), 1, + ACTIONS(2931), 1, anon_sym_end, - ACTIONS(3066), 1, + ACTIONS(3052), 1, anon_sym_contains, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_matchgroup, - STATE(871), 1, - aux_sym__syn_region_repeat1, - STATE(930), 1, + STATE(905), 1, sym__syn_region_end, - STATE(1080), 1, + STATE(940), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, + STATE(1089), 1, sym__syn_arguments_region, - STATE(2158), 1, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2196), 1, aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, + ACTIONS(2911), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2913), 2, + ACTIONS(2925), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(3064), 2, + ACTIONS(3050), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2905), 4, + ACTIONS(2917), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + ACTIONS(2921), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [41138] = 3, + [40728] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(961), 5, + ACTIONS(989), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(959), 20, + ACTIONS(987), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, @@ -93275,106 +92188,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [41171] = 6, + anon_sym_LBRACK2, + [40761] = 16, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(2931), 1, + anon_sym_end, + ACTIONS(3052), 1, + anon_sym_contains, + ACTIONS(3054), 1, + anon_sym_matchgroup, + STATE(905), 1, + sym__syn_region_end, + STATE(940), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2195), 1, + aux_sym__syn_region_repeat2, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3050), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [40820] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(2978), 1, anon_sym_DOT, - ACTIONS(3078), 1, + ACTIONS(2980), 1, + anon_sym_QMARK, + ACTIONS(2982), 1, anon_sym_LPAREN, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(965), 4, + ACTIONS(2986), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_AMP_AMP, + ACTIONS(2996), 1, anon_sym_is, + ACTIONS(2998), 1, + anon_sym_isnot, + ACTIONS(3002), 1, + anon_sym_LBRACK2, + ACTIONS(2990), 2, + anon_sym_LT2, anon_sym_GT2, - ACTIONS(963), 18, - anon_sym_QMARK, + ACTIONS(3150), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2984), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2988), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(3000), 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, - [41210] = 16, + [40877] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, + ACTIONS(2913), 1, anon_sym_cchar, - ACTIONS(2919), 1, + ACTIONS(2931), 1, anon_sym_end, - ACTIONS(3066), 1, + ACTIONS(3052), 1, anon_sym_contains, - ACTIONS(3068), 1, + ACTIONS(3054), 1, anon_sym_matchgroup, - STATE(872), 1, - aux_sym__syn_region_repeat1, - STATE(930), 1, + STATE(905), 1, sym__syn_region_end, - STATE(1080), 1, + STATE(925), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, + STATE(1089), 1, sym__syn_arguments_region, - STATE(2157), 1, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(2194), 1, aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, + ACTIONS(2911), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2913), 2, + ACTIONS(2925), 2, anon_sym_oneline, anon_sym_concealends, - ACTIONS(3064), 2, + ACTIONS(3050), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2905), 4, + ACTIONS(2917), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + ACTIONS(2921), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [41269] = 7, + [40936] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(937), 5, anon_sym_DOT, - ACTIONS(3078), 1, - anon_sym_LPAREN, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(3080), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(965), 4, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(963), 15, + ACTIONS(935), 20, anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, + anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DASH, @@ -93386,96 +92346,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [41310] = 12, + anon_sym_LBRACK2, + [40969] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(3078), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(3082), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(3092), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(3094), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(3086), 2, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_COLON, + ACTIONS(3218), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(3080), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(3084), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(963), 5, - anon_sym_QMARK, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3096), 6, + ACTIONS(2833), 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, - [41361] = 14, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3146), 3, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_end, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [41416] = 3, + [41028] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(871), 5, + ACTIONS(821), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(869), 20, + ACTIONS(819), 20, sym__newline_or_pipe, sym_comment, anon_sym_QMARK, @@ -93495,24 +92419,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [41449] = 3, + anon_sym_LBRACK2, + [41061] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(867), 5, + ACTIONS(893), 5, anon_sym_DOT, anon_sym_DOT2, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(865), 20, - sym__newline_or_pipe, - sym_comment, + ACTIONS(891), 20, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93525,179 +92449,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [41482] = 15, + anon_sym_LBRACK2, + [41094] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(929), 5, anon_sym_DOT, - ACTIONS(2970), 1, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(927), 20, anon_sym_QMARK, - ACTIONS(2972), 1, anon_sym_LPAREN, - ACTIONS(2976), 1, - anon_sym_DOT2, - ACTIONS(2982), 1, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, anon_sym_PIPE_PIPE, - ACTIONS(2984), 1, anon_sym_AMP_AMP, - ACTIONS(2986), 1, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_isnot, + 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_LBRACK2, + [41127] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3064), 1, + anon_sym_DOT, + ACTIONS(3066), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, + anon_sym_DOT2, + ACTIONS(3076), 1, + anon_sym_AMP_AMP, + ACTIONS(3078), 1, anon_sym_is, - ACTIONS(2988), 1, + ACTIONS(3080), 1, anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(2980), 2, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(3124), 1, + anon_sym_QMARK, + ACTIONS(3126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3074), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(3190), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2974), 3, + ACTIONS(3128), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3068), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2978), 3, + ACTIONS(3072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2990), 6, + ACTIONS(3082), 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, - [41539] = 16, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2919), 1, - anon_sym_end, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(930), 1, - sym__syn_region_end, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2156), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [41598] = 16, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(2917), 1, - anon_sym_end, - ACTIONS(3066), 1, - anon_sym_contains, - ACTIONS(3068), 1, - anon_sym_matchgroup, - STATE(828), 1, - sym__syn_region_end, - STATE(885), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - STATE(2188), 1, - aux_sym__syn_region_repeat2, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3064), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [41657] = 16, + [41184] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3118), 1, - anon_sym_COLON, - ACTIONS(3232), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(3220), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [41716] = 3, + [41241] = 3, ACTIONS(3), 1, sym__line_continuation, ACTIONS(901), 5, @@ -93707,13 +92574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_GT2, ACTIONS(899), 20, + sym__newline_or_pipe, + sym_comment, anon_sym_QMARK, anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_PLUS, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93726,64 +92593,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_LBRACK, - [41749] = 15, + anon_sym_LBRACK2, + [41274] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2968), 1, + ACTIONS(2813), 1, + anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, + anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_COLON, + ACTIONS(3222), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(2833), 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, + [41333] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3188), 1, + sym_hl_group, + STATE(1134), 1, + sym_hl_groups, + STATE(2956), 1, + sym_at, + ACTIONS(3182), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3184), 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, + [41374] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(897), 5, anon_sym_DOT, - ACTIONS(2970), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, - anon_sym_LPAREN, - ACTIONS(2976), 1, anon_sym_DOT2, - ACTIONS(2982), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2984), 1, - anon_sym_AMP_AMP, - ACTIONS(2986), 1, - anon_sym_is, - ACTIONS(2988), 1, - anon_sym_isnot, - ACTIONS(2992), 1, - anon_sym_LBRACK, - ACTIONS(2980), 2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(3176), 2, + ACTIONS(895), 20, sym__newline_or_pipe, sym_comment, - ACTIONS(2974), 3, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2978), 3, anon_sym_PLUS, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2990), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [41806] = 7, + anon_sym_LBRACK2, + [41407] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, + ACTIONS(3094), 1, anon_sym_AT, - ACTIONS(3112), 1, + ACTIONS(3098), 1, sym_hl_group, - STATE(1151), 1, + STATE(1086), 1, sym_hl_groups, - STATE(2904), 1, + STATE(3134), 1, sym_at, - ACTIONS(3224), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3226), 19, + ACTIONS(3192), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3190), 19, anon_sym_conceal, anon_sym_cchar, anon_sym_contained, @@ -93803,35 +92735,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [41847] = 9, + [41448] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(905), 5, anon_sym_DOT, - ACTIONS(3078), 1, - anon_sym_LPAREN, - ACTIONS(3082), 1, anon_sym_DOT2, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(965), 3, anon_sym_LT2, anon_sym_is, anon_sym_GT2, - ACTIONS(3080), 3, + ACTIONS(903), 20, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(3084), 3, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(963), 12, + anon_sym_isnot, + 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_LBRACK2, + [41481] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(881), 5, + anon_sym_DOT, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(879), 20, anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, + anon_sym_STAR2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -93839,722 +92794,711 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [41892] = 16, + anon_sym_LBRACK2, + [41514] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(969), 5, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, + anon_sym_LT2, anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + anon_sym_GT2, + ACTIONS(967), 20, anon_sym_QMARK, - ACTIONS(3118), 1, - anon_sym_COLON, - ACTIONS(3234), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_isnot, + 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_LBRACK2, + [41547] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(839), 5, + anon_sym_DOT, + anon_sym_DOT2, anon_sym_LT2, + anon_sym_is, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(837), 20, + anon_sym_QMARK, + anon_sym_LPAREN, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, anon_sym_PLUS, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + anon_sym_isnot, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [41951] = 13, + anon_sym_LBRACK2, + [41580] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3074), 1, + ACTIONS(3064), 1, anon_sym_DOT, - ACTIONS(3078), 1, + ACTIONS(3066), 1, anon_sym_LPAREN, - ACTIONS(3082), 1, + ACTIONS(3070), 1, anon_sym_DOT2, - ACTIONS(3090), 1, + ACTIONS(3076), 1, anon_sym_AMP_AMP, - ACTIONS(3092), 1, + ACTIONS(3078), 1, anon_sym_is, - ACTIONS(3094), 1, + ACTIONS(3080), 1, anon_sym_isnot, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(3086), 2, + ACTIONS(3084), 1, + anon_sym_LBRACK2, + ACTIONS(3126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3074), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(3080), 3, + ACTIONS(853), 3, + anon_sym_QMARK, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3068), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(3084), 3, + ACTIONS(3072), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(963), 4, - anon_sym_QMARK, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_PIPE_PIPE, - ACTIONS(3096), 6, + ACTIONS(3082), 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, - [42004] = 15, + [41635] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3236), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3224), 1, + anon_sym_COLON, + ACTIONS(3226), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42060] = 15, + [41694] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3238), 1, + ACTIONS(3060), 1, + anon_sym_COLON, + ACTIONS(3228), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42116] = 15, + [41753] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3240), 1, + ACTIONS(3060), 1, + anon_sym_COLON, + ACTIONS(3230), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42172] = 15, + [41812] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(3242), 1, - anon_sym_start, - ACTIONS(3246), 1, - anon_sym_contains, - ACTIONS(3248), 1, - anon_sym_matchgroup, - STATE(784), 1, - sym__syn_region_start, - STATE(1079), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - ACTIONS(2899), 2, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3188), 1, + sym_hl_group, + STATE(1133), 1, + sym_hl_groups, + STATE(2956), 1, + sym_at, + ACTIONS(3096), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3100), 19, anon_sym_conceal, + anon_sym_cchar, anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3244), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2905), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2909), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [42228] = 15, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [41853] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3250), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3232), 1, + anon_sym_COLON, + ACTIONS(3234), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42284] = 15, + [41912] = 16, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3252), 1, + ACTIONS(3060), 1, + anon_sym_COLON, + ACTIONS(3236), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42340] = 3, + [41971] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2821), 1, - anon_sym_contained, - ACTIONS(2819), 23, + ACTIONS(889), 5, + anon_sym_DOT, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(887), 20, + anon_sym_QMARK, + anon_sym_LPAREN, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - 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, - [42372] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_hl_group, - STATE(1086), 1, - sym_hl_groups, - STATE(3102), 1, - sym_at, - ACTIONS(3114), 20, - 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_skip, - anon_sym_end, - [42410] = 15, + anon_sym_STAR2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_isnot, + 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_LBRACK2, + [42004] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3254), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3238), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42466] = 15, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(3242), 1, - anon_sym_start, - ACTIONS(3246), 1, - anon_sym_contains, - ACTIONS(3248), 1, - anon_sym_matchgroup, - STATE(801), 1, - sym__syn_region_start, - STATE(979), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3244), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [42522] = 15, + [42060] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3256), 1, + ACTIONS(3138), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42578] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3258), 1, - anon_sym_COMMA, - STATE(987), 1, - aux_sym__syn_match_repeat2, - ACTIONS(3263), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3261), 19, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [42614] = 15, + [42116] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3265), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3240), 1, + anon_sym_RPAREN, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42670] = 15, + [42172] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2795), 1, + anon_sym_contained, + ACTIONS(2793), 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, + [42204] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3267), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3222), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42726] = 15, + [42260] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3269), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3242), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42782] = 15, + [42316] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(3244), 1, + anon_sym_start, + ACTIONS(3248), 1, + anon_sym_contains, + ACTIONS(3250), 1, + anon_sym_matchgroup, + STATE(804), 1, + sym__syn_region_start, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(1104), 1, + aux_sym__syn_region_repeat1, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3246), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [42372] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3271), 1, - anon_sym_COLON, - ACTIONS(2797), 2, + ACTIONS(3252), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42838] = 3, + [42428] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2821), 1, + ACTIONS(2795), 1, anon_sym_contained, - ACTIONS(2819), 23, - sym__newline_or_pipe, - sym_comment, + ACTIONS(2793), 23, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -94576,870 +93520,910 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rs, anon_sym_re, anon_sym_lc, - [42870] = 15, + [42460] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3273), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3254), 1, + anon_sym_COLON, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42926] = 15, + [42516] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3275), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3256), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [42982] = 15, + [42572] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3277), 1, - anon_sym_RPAREN, - ACTIONS(2797), 2, + ACTIONS(3258), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43038] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_hl_group, - STATE(1088), 1, - sym_hl_groups, - STATE(3102), 1, - sym_at, - ACTIONS(3130), 20, - 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_skip, - anon_sym_end, - [43076] = 15, + [42628] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3279), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3260), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43132] = 15, + [42684] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3281), 1, + ACTIONS(3262), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43188] = 15, + [42740] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3283), 1, + ACTIONS(3264), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43244] = 15, + [42796] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3285), 1, - anon_sym_COLON, - ACTIONS(2797), 2, + ACTIONS(3266), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43300] = 15, + [42852] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3287), 1, + ACTIONS(3268), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43356] = 15, + [42908] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3270), 1, + anon_sym_COLON, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(2833), 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, + [42964] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2813), 1, + anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, + anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3289), 1, + ACTIONS(3272), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43412] = 15, + [43020] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3291), 1, + ACTIONS(3274), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43468] = 15, + [43076] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3293), 1, - anon_sym_COLON, - ACTIONS(2797), 2, + ACTIONS(3276), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43524] = 15, + [43132] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3295), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3278), 1, + anon_sym_RPAREN, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43580] = 15, + [43188] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3297), 1, + ACTIONS(3280), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43636] = 15, + [43244] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3299), 1, + ACTIONS(3282), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43692] = 15, + [43300] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3301), 1, + ACTIONS(3284), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43748] = 15, + [43356] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3303), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3286), 1, + anon_sym_COLON, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43804] = 15, + [43412] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3305), 1, + ACTIONS(3288), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43860] = 15, + [43468] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3307), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3290), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43916] = 15, + [43524] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3144), 1, + ACTIONS(3292), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [43972] = 15, + [43580] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(3294), 1, + anon_sym_LPAREN, + STATE(2073), 1, + sym_parameters, + ACTIONS(2683), 5, anon_sym_DOT, - ACTIONS(2789), 1, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(2691), 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_DASH, + anon_sym_DOT_DOT, + anon_sym_isnot, + 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_LBRACK2, + [43616] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2813), 1, + anon_sym_DOT, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3309), 1, + ACTIONS(3296), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44028] = 6, + [43672] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, + ACTIONS(3094), 1, anon_sym_AT, - ACTIONS(3128), 1, + ACTIONS(3098), 1, sym_hl_group, - STATE(1105), 1, + STATE(1101), 1, sym_hl_groups, - STATE(3102), 1, + STATE(3134), 1, sym_at, - ACTIONS(3226), 20, + ACTIONS(3100), 20, anon_sym_conceal, anon_sym_cchar, anon_sym_contained, @@ -95460,1702 +94444,1971 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_concealends, anon_sym_skip, anon_sym_end, - [44066] = 15, + [43710] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3176), 1, + anon_sym_end, + ACTIONS(3197), 1, + anon_sym_cchar, + ACTIONS(3301), 1, + anon_sym_contains, + ACTIONS(3304), 1, + anon_sym_matchgroup, + ACTIONS(3307), 1, + anon_sym_skip, + STATE(1008), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + ACTIONS(3194), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3215), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3298), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3203), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(3209), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [43766] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3309), 1, + anon_sym_COLON, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(2833), 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, + [43822] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2813), 1, + anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, + anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, anon_sym_QMARK, ACTIONS(3311), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44122] = 15, + [43878] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(3242), 1, - anon_sym_start, - ACTIONS(3246), 1, - anon_sym_contains, - ACTIONS(3248), 1, - anon_sym_matchgroup, - STATE(783), 1, - sym__syn_region_start, - STATE(1079), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3244), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [44178] = 15, + ACTIONS(3294), 1, + anon_sym_LPAREN, + STATE(2073), 1, + sym_parameters, + ACTIONS(2699), 5, + anon_sym_DOT, + anon_sym_DOT2, + anon_sym_LT2, + anon_sym_is, + anon_sym_GT2, + ACTIONS(2701), 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_DASH, + anon_sym_DOT_DOT, + anon_sym_isnot, + 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_LBRACK2, + [43914] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2813), 1, + anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, + anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3313), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(2833), 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, + [43970] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3122), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3315), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44234] = 15, + [44026] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3313), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3317), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44290] = 15, + [44082] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3315), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3319), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44346] = 15, + [44138] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3138), 1, + ACTIONS(3321), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44402] = 15, + [44194] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3317), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3323), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44458] = 15, + [44250] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3319), 1, + ACTIONS(3325), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44514] = 15, + [44306] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3321), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3327), 1, + anon_sym_RPAREN, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44570] = 15, + [44362] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3234), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3329), 1, + anon_sym_RPAREN, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44626] = 15, + [44418] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3323), 1, + ACTIONS(3331), 1, anon_sym_RPAREN, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44682] = 15, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2901), 1, - anon_sym_cchar, - ACTIONS(3242), 1, - anon_sym_start, - ACTIONS(3246), 1, - anon_sym_contains, - ACTIONS(3248), 1, - anon_sym_matchgroup, - STATE(800), 1, - sym__syn_region_start, - STATE(1016), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - ACTIONS(2899), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2913), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3244), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(2905), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2909), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [44738] = 15, + [44474] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3120), 1, + ACTIONS(3333), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44794] = 15, + [44530] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3325), 1, + ACTIONS(3335), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44850] = 15, + [44586] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3327), 1, + ACTIONS(3228), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44906] = 15, + [44642] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3098), 1, + sym_hl_group, + STATE(1095), 1, + sym_hl_groups, + STATE(3134), 1, + sym_at, + ACTIONS(3184), 20, + 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_skip, + anon_sym_end, + [44680] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3329), 1, + ACTIONS(3337), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [44962] = 15, + [44736] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3331), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3339), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45018] = 15, + [44792] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3333), 1, + ACTIONS(3341), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45074] = 15, + [44848] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3335), 1, + ACTIONS(3343), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45130] = 15, + [44904] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3337), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3345), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45186] = 15, + [44960] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(3347), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45242] = 15, + [45016] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3341), 1, + ACTIONS(3349), 1, anon_sym_RPAREN, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45298] = 15, + [45072] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3343), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3351), 1, + anon_sym_COLON, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45354] = 15, + [45128] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3345), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3353), 1, + anon_sym_COLON, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45410] = 15, + [45184] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3347), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3355), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45466] = 15, + [45240] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3349), 1, + ACTIONS(3357), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45522] = 5, + [45296] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3351), 1, - anon_sym_LPAREN, - STATE(2071), 1, - sym_parameters, - ACTIONS(2683), 5, + ACTIONS(2813), 1, anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, anon_sym_is, - anon_sym_GT2, - ACTIONS(2691), 17, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, anon_sym_QMARK, + ACTIONS(3359), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2821), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(2833), 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, - anon_sym_LBRACK, - [45558] = 15, + [45352] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3361), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45614] = 15, + [45408] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3355), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3363), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45670] = 15, + [45464] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3098), 1, + sym_hl_group, + STATE(1086), 1, + sym_hl_groups, + STATE(3134), 1, + sym_at, + ACTIONS(3190), 20, + 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_skip, + anon_sym_end, + [45502] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3357), 1, - anon_sym_RPAREN, - ACTIONS(2797), 2, + ACTIONS(3365), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45726] = 5, + [45558] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3351), 1, - anon_sym_LPAREN, - STATE(2071), 1, - sym_parameters, - ACTIONS(2757), 5, + ACTIONS(2813), 1, anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, anon_sym_DOT2, - anon_sym_LT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, anon_sym_is, - anon_sym_GT2, - ACTIONS(2759), 17, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, anon_sym_QMARK, + ACTIONS(3367), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, - anon_sym_PLUS, anon_sym_STAR2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2821), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_isnot, + ACTIONS(2833), 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, - anon_sym_LBRACK, - [45762] = 15, + [45614] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3359), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3369), 1, + anon_sym_RPAREN, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45818] = 15, + [45670] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3361), 1, + ACTIONS(3371), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45874] = 15, + [45726] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3373), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym__syn_match_repeat2, + ACTIONS(3378), 3, + anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(3376), 19, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, + [45762] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3363), 1, + ACTIONS(3092), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45930] = 15, + [45818] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3365), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3380), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [45986] = 15, + [45874] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3367), 1, - anon_sym_COLON, - ACTIONS(2797), 2, + ACTIONS(3382), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [46042] = 15, + [45930] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3369), 1, - anon_sym_COLON, - ACTIONS(2797), 2, + ACTIONS(3384), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [46098] = 15, + [45986] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3371), 1, - anon_sym_RPAREN, - ACTIONS(2797), 2, + ACTIONS(3386), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [46154] = 15, + [46042] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(3244), 1, + anon_sym_start, + ACTIONS(3248), 1, + anon_sym_contains, + ACTIONS(3250), 1, + anon_sym_matchgroup, + STATE(805), 1, + sym__syn_region_start, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(1104), 1, + aux_sym__syn_region_repeat1, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3246), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [46098] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3373), 1, + ACTIONS(3388), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [46210] = 15, + [46154] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3375), 1, + ACTIONS(3390), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [46266] = 15, + [46210] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3136), 1, + ACTIONS(3392), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, + [46266] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(3244), 1, + anon_sym_start, + ACTIONS(3248), 1, + anon_sym_contains, + ACTIONS(3250), 1, + anon_sym_matchgroup, + STATE(785), 1, + sym__syn_region_start, + STATE(1051), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3246), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, [46322] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3140), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97165,38 +96418,38 @@ static const uint16_t ts_small_parse_table[] = { [46378] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3379), 1, - anon_sym_RPAREN, - ACTIONS(2797), 2, + ACTIONS(3394), 1, + anon_sym_COLON, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97206,38 +96459,38 @@ static const uint16_t ts_small_parse_table[] = { [46434] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3381), 1, + ACTIONS(3396), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97247,366 +96500,366 @@ static const uint16_t ts_small_parse_table[] = { [46490] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3150), 1, - anon_sym_end, - ACTIONS(3155), 1, - anon_sym_cchar, - ACTIONS(3386), 1, - anon_sym_contains, - ACTIONS(3389), 1, - anon_sym_matchgroup, - ACTIONS(3392), 1, - anon_sym_skip, - STATE(1059), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - ACTIONS(3152), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3173), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3383), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3161), 4, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(3167), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [46546] = 15, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3394), 1, - anon_sym_RPAREN, - ACTIONS(2797), 2, + ACTIONS(3398), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [46602] = 15, + [46546] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3396), 1, + ACTIONS(3400), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [46658] = 15, + [46602] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3118), 1, - anon_sym_COLON, - ACTIONS(2797), 2, + ACTIONS(3402), 1, + anon_sym_RBRACK2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [46714] = 15, + [46658] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3188), 1, + ACTIONS(3404), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [46770] = 15, + [46714] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3398), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3060), 1, + anon_sym_COLON, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [46826] = 15, + [46770] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3400), 1, + ACTIONS(3406), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [46882] = 15, + [46826] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3402), 1, + ACTIONS(3408), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, + [46882] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2913), 1, + anon_sym_cchar, + ACTIONS(3244), 1, + anon_sym_start, + ACTIONS(3248), 1, + anon_sym_contains, + ACTIONS(3250), 1, + anon_sym_matchgroup, + STATE(786), 1, + sym__syn_region_start, + STATE(982), 1, + aux_sym__syn_region_repeat1, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + ACTIONS(2911), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2925), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3246), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(2917), 4, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2921), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, [46938] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3404), 1, + ACTIONS(3410), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97616,38 +96869,38 @@ static const uint16_t ts_small_parse_table[] = { [46994] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3406), 1, - anon_sym_COLON, - ACTIONS(2797), 2, + ACTIONS(3412), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97657,38 +96910,38 @@ static const uint16_t ts_small_parse_table[] = { [47050] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3408), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3414), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97698,38 +96951,38 @@ static const uint16_t ts_small_parse_table[] = { [47106] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3410), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3416), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97739,38 +96992,38 @@ static const uint16_t ts_small_parse_table[] = { [47162] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3412), 1, - anon_sym_RBRACK, - ACTIONS(2797), 2, + ACTIONS(3418), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97780,38 +97033,38 @@ static const uint16_t ts_small_parse_table[] = { [47218] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3414), 1, + ACTIONS(3420), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97821,38 +97074,38 @@ static const uint16_t ts_small_parse_table[] = { [47274] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3416), 1, + ACTIONS(3422), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97862,38 +97115,38 @@ static const uint16_t ts_small_parse_table[] = { [47330] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3418), 1, + ACTIONS(3424), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97903,38 +97156,38 @@ static const uint16_t ts_small_parse_table[] = { [47386] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3420), 1, - anon_sym_COLON, - ACTIONS(2797), 2, + ACTIONS(3230), 1, + anon_sym_RBRACE, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97944,38 +97197,38 @@ static const uint16_t ts_small_parse_table[] = { [47442] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3422), 1, + ACTIONS(3426), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -97985,38 +97238,38 @@ static const uint16_t ts_small_parse_table[] = { [47498] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, + ACTIONS(2815), 1, anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(3424), 1, + ACTIONS(3218), 1, anon_sym_RBRACE, - ACTIONS(2797), 2, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -98026,16 +97279,16 @@ static const uint16_t ts_small_parse_table[] = { [47554] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3426), 1, + ACTIONS(3428), 1, anon_sym_COMMA, - STATE(1094), 1, - aux_sym__syn_match_repeat2, - ACTIONS(3430), 2, + STATE(1097), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2962), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3428), 19, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(2960), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -98053,57 +97306,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47589] = 14, + [47589] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3150), 1, - anon_sym_start, - ACTIONS(3155), 1, - anon_sym_cchar, - ACTIONS(3435), 1, - anon_sym_contains, - ACTIONS(3438), 1, - anon_sym_matchgroup, + ACTIONS(3430), 1, + anon_sym_COMMA, STATE(1079), 1, - aux_sym__syn_region_repeat1, - STATE(1080), 1, - sym__syn_arguments_match, - STATE(1084), 1, - sym__syn_arguments_keyword, - STATE(1104), 1, - sym__syn_arguments_region, - ACTIONS(3152), 2, + aux_sym__syn_match_repeat2, + ACTIONS(3378), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3173), 2, - anon_sym_oneline, - anon_sym_concealends, - ACTIONS(3432), 2, + ACTIONS(3376), 19, + sym__newline_or_pipe, + sym_comment, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3161), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(3167), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [47642] = 3, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [47624] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3443), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3441), 20, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3098), 1, + sym_hl_group, + STATE(1095), 1, + sym_hl_groups, + STATE(3134), 1, + sym_at, + ACTIONS(3184), 19, anon_sym_start, + anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -98119,15 +97367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, - anon_sym_end, - [47673] = 3, + [47661] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3447), 3, + ACTIONS(3435), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(3445), 20, + ACTIONS(3433), 20, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -98148,17 +97395,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47704] = 3, + [47692] = 14, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2813), 1, + anon_sym_DOT, + ACTIONS(2819), 1, + anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3066), 1, + anon_sym_LPAREN, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(2833), 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, + [47745] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3451), 3, + ACTIONS(3437), 1, + anon_sym_COMMA, + STATE(1092), 1, + aux_sym__syn_match_repeat2, + ACTIONS(3441), 2, anon_sym_conceal, anon_sym_contained, - anon_sym_skip, - ACTIONS(3449), 20, + ACTIONS(3439), 19, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_start, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -98176,14 +97464,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47735] = 3, + [47780] = 14, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2813), 1, + anon_sym_DOT, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, + anon_sym_DOT2, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(2833), 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, + [47833] = 14, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2815), 1, + anon_sym_LPAREN, + ACTIONS(2819), 1, + anon_sym_DOT2, + ACTIONS(2827), 1, + anon_sym_AMP_AMP, + ACTIONS(2829), 1, + anon_sym_is, + ACTIONS(2831), 1, + anon_sym_isnot, + ACTIONS(2837), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2950), 1, + anon_sym_QMARK, + ACTIONS(3443), 1, + anon_sym_DOT, + ACTIONS(3445), 1, + anon_sym_LBRACK2, + ACTIONS(2825), 2, + anon_sym_LT2, + anon_sym_GT2, + ACTIONS(2817), 3, + anon_sym_PERCENT, + anon_sym_SLASH, + anon_sym_STAR2, + ACTIONS(2821), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT_DOT, + ACTIONS(2833), 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, + [47886] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3455), 3, + ACTIONS(3449), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(3453), 20, + ACTIONS(3447), 20, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -98204,14 +97570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47766] = 3, + [47917] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3459), 3, + ACTIONS(3453), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(3457), 20, + ACTIONS(3451), 20, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -98232,22 +97598,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47797] = 6, + [47948] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_hl_group, - STATE(1088), 1, - sym_hl_groups, - STATE(3102), 1, - sym_at, - ACTIONS(3130), 19, - anon_sym_start, + ACTIONS(3457), 3, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + anon_sym_skip, + ACTIONS(3455), 20, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_start, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -98263,14 +97625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, - [47834] = 3, + anon_sym_end, + [47979] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3463), 3, + ACTIONS(3461), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(3461), 20, + ACTIONS(3459), 20, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -98291,17 +97654,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47865] = 5, + [48010] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3465), 1, + ACTIONS(3428), 1, anon_sym_COMMA, - STATE(1093), 1, + STATE(1091), 1, aux_sym_hl_groups_repeat1, - ACTIONS(2940), 2, + ACTIONS(2958), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2938), 19, + ACTIONS(2956), 19, sym__newline_or_pipe, sym_comment, anon_sym_cchar, @@ -98321,17 +97684,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47900] = 3, + [48045] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3469), 3, + ACTIONS(3463), 1, + anon_sym_COMMA, + STATE(1091), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2942), 2, anon_sym_conceal, anon_sym_contained, - anon_sym_skip, - ACTIONS(3467), 20, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_start, + ACTIONS(2940), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -98349,19 +97714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47931] = 5, + [48080] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3471), 1, + ACTIONS(3437), 1, anon_sym_COMMA, - STATE(1089), 1, + STATE(1045), 1, aux_sym__syn_match_repeat2, - ACTIONS(3263), 2, + ACTIONS(3468), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3261), 19, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3466), 19, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -98379,17 +97744,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47966] = 3, + [48115] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3476), 3, + ACTIONS(3472), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(3474), 20, - anon_sym_COMMA, + ACTIONS(3470), 20, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, + anon_sym_start, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -98407,98 +97772,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [47997] = 14, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2787), 1, - anon_sym_DOT, - ACTIONS(2793), 1, - anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3078), 1, - anon_sym_LPAREN, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2805), 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, - [48050] = 14, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, - anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(3478), 1, - anon_sym_DOT, - ACTIONS(3480), 1, - anon_sym_LBRACK, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2805), 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, - [48103] = 5, + [48146] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3482), 1, - anon_sym_COMMA, - STATE(1093), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2934), 2, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3098), 1, + sym_hl_group, + STATE(1086), 1, + sym_hl_groups, + STATE(3134), 1, + sym_at, + ACTIONS(3190), 19, + anon_sym_start, anon_sym_conceal, - anon_sym_contained, - ACTIONS(2932), 19, - sym__newline_or_pipe, - sym_comment, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -98514,20 +97803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, - anon_sym_end, - [48138] = 5, + [48183] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3426), 1, - anon_sym_COMMA, - STATE(987), 1, - aux_sym__syn_match_repeat2, - ACTIONS(3487), 2, + ACTIONS(3476), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(3485), 19, + anon_sym_skip, + ACTIONS(3474), 20, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, + anon_sym_start, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -98545,22 +97831,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48173] = 6, + [48214] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_hl_group, + ACTIONS(3478), 1, + anon_sym_COMMA, STATE(1105), 1, - sym_hl_groups, - STATE(3102), 1, - sym_at, - ACTIONS(3226), 19, - anon_sym_start, + aux_sym__syn_match_repeat2, + ACTIONS(3441), 2, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + ACTIONS(3439), 19, + sym__newline_or_pipe, + sym_comment, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -98576,17 +97860,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, - [48210] = 5, + anon_sym_end, + [48249] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3465), 1, + ACTIONS(3428), 1, anon_sym_COMMA, - STATE(1101), 1, + STATE(1091), 1, aux_sym_hl_groups_repeat1, - ACTIONS(2966), 2, + ACTIONS(2905), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(2964), 19, + ACTIONS(2903), 19, sym__newline_or_pipe, sym_comment, anon_sym_cchar, @@ -98606,50 +97891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48245] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3128), 1, - sym_hl_group, - STATE(1086), 1, - sym_hl_groups, - STATE(3102), 1, - sym_at, - ACTIONS(3114), 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, - [48282] = 5, + [48284] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3489), 1, - anon_sym_COMMA, - STATE(1089), 1, - aux_sym__syn_match_repeat2, - ACTIONS(3487), 2, + ACTIONS(3482), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(3485), 19, - sym__newline_or_pipe, - sym_comment, + anon_sym_skip, + ACTIONS(3480), 20, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_start, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -98667,18 +97919,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48317] = 3, + [48315] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3493), 3, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3098), 1, + sym_hl_group, + STATE(1101), 1, + sym_hl_groups, + STATE(3134), 1, + sym_at, + ACTIONS(3100), 19, + anon_sym_start, anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3491), 20, - anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -98694,59 +97950,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_matchgroup, anon_sym_oneline, anon_sym_concealends, - anon_sym_end, - [48348] = 14, + [48352] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2787), 1, + ACTIONS(2813), 1, anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_LPAREN, - ACTIONS(2793), 1, + ACTIONS(2819), 1, anon_sym_DOT2, - ACTIONS(2799), 1, + ACTIONS(2823), 1, + anon_sym_LBRACK2, + ACTIONS(2827), 1, anon_sym_AMP_AMP, - ACTIONS(2801), 1, + ACTIONS(2829), 1, anon_sym_is, - ACTIONS(2803), 1, + ACTIONS(2831), 1, anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, ACTIONS(2837), 1, anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, + ACTIONS(2950), 1, anon_sym_QMARK, - ACTIONS(2797), 2, + ACTIONS(2982), 1, + anon_sym_LPAREN, + ACTIONS(2825), 2, anon_sym_LT2, anon_sym_GT2, - ACTIONS(2791), 3, + ACTIONS(2817), 3, anon_sym_PERCENT, anon_sym_SLASH, anon_sym_STAR2, - ACTIONS(2795), 3, + ACTIONS(2821), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(2805), 6, + ACTIONS(2833), 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, - [48401] = 5, + [48405] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3465), 1, - anon_sym_COMMA, - STATE(1093), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2944), 2, + ACTIONS(3486), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(2942), 19, - sym__newline_or_pipe, - sym_comment, + anon_sym_skip, + ACTIONS(3484), 20, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_start, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -98764,19 +98017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48436] = 5, + [48436] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3465), 1, - anon_sym_COMMA, - STATE(1087), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2944), 2, + ACTIONS(3490), 3, anon_sym_conceal, anon_sym_contained, - ACTIONS(2942), 19, - sym__newline_or_pipe, - sym_comment, + anon_sym_skip, + ACTIONS(3488), 20, + anon_sym_COMMA, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -98794,56 +98045,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48471] = 14, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2787), 1, - anon_sym_DOT, - ACTIONS(2793), 1, - anon_sym_DOT2, - ACTIONS(2799), 1, - anon_sym_AMP_AMP, - ACTIONS(2801), 1, - anon_sym_is, - ACTIONS(2803), 1, - anon_sym_isnot, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2923), 1, - anon_sym_QMARK, - ACTIONS(2972), 1, - anon_sym_LPAREN, - ACTIONS(2797), 2, - anon_sym_LT2, - anon_sym_GT2, - ACTIONS(2791), 3, - anon_sym_PERCENT, - anon_sym_SLASH, - anon_sym_STAR2, - ACTIONS(2795), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT_DOT, - ACTIONS(2805), 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, - [48524] = 3, + [48467] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3497), 3, + ACTIONS(3494), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(3495), 20, + ACTIONS(3492), 20, + anon_sym_COMMA, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_start, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -98861,45 +98073,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48555] = 3, + [48498] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3501), 3, - anon_sym_conceal, - anon_sym_contained, - anon_sym_skip, - ACTIONS(3499), 20, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(3176), 1, anon_sym_start, + ACTIONS(3197), 1, anon_sym_cchar, + ACTIONS(3499), 1, + anon_sym_contains, + ACTIONS(3502), 1, + anon_sym_matchgroup, + STATE(1087), 1, + sym__syn_arguments_match, + STATE(1089), 1, + sym__syn_arguments_region, + STATE(1093), 1, + sym__syn_arguments_keyword, + STATE(1104), 1, + aux_sym__syn_region_repeat1, + ACTIONS(3194), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3215), 2, + anon_sym_oneline, + anon_sym_concealends, + ACTIONS(3496), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3203), 4, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(3209), 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, - [48586] = 5, + [48551] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3489), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1098), 1, + STATE(1079), 1, aux_sym__syn_match_repeat2, - ACTIONS(3430), 2, + ACTIONS(3468), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3428), 19, + ACTIONS(3466), 19, sym__newline_or_pipe, sym_comment, anon_sym_cchar, @@ -98919,18 +98142,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48621] = 5, + [48586] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3426), 1, + ACTIONS(3428), 1, anon_sym_COMMA, - STATE(987), 1, - aux_sym__syn_match_repeat2, - ACTIONS(3503), 3, + STATE(1090), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2905), 2, anon_sym_conceal, anon_sym_contained, - anon_sym_skip, - ACTIONS(3505), 17, + ACTIONS(2903), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -98948,126 +98172,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [48655] = 13, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2875), 1, - anon_sym_cchar, - ACTIONS(2877), 1, - anon_sym_contained, - ACTIONS(2881), 1, - anon_sym_contains, - ACTIONS(3507), 1, - anon_sym_COMMA, - STATE(1177), 1, - aux_sym__syn_match_repeat1, - STATE(1219), 1, - aux_sym__syn_match_repeat2, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, - sym__syn_arguments_keyword, - ACTIONS(2879), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3509), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2873), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2883), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [48705] = 13, + [48621] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2875), 1, + ACTIONS(2887), 1, anon_sym_cchar, - ACTIONS(2877), 1, + ACTIONS(2889), 1, anon_sym_contained, - ACTIONS(2881), 1, + ACTIONS(2893), 1, anon_sym_contains, - ACTIONS(3507), 1, + ACTIONS(3505), 1, anon_sym_COMMA, - STATE(1123), 1, + STATE(1117), 1, aux_sym__syn_match_repeat2, - STATE(1168), 1, + STATE(1174), 1, aux_sym__syn_match_repeat1, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, + STATE(1286), 1, sym__syn_arguments_keyword, - ACTIONS(2879), 2, + STATE(1293), 1, + sym__syn_arguments_match, + ACTIONS(2891), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3511), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2873), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2883), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [48755] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2934), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(2932), 20, + ACTIONS(3507), 2, sym__newline_or_pipe, sym_comment, - anon_sym_COMMA, - anon_sym_cchar, - anon_sym_containedin, - anon_sym_nextgroup, + ACTIONS(2885), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(2895), 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, - [48785] = 8, + [48671] = 8, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1023), 1, anon_sym_LT, ACTIONS(1025), 1, anon_sym_BSLASH2, - ACTIONS(3515), 1, + ACTIONS(3511), 1, aux_sym__bang_filter_command_argument_token3, - STATE(1131), 1, + STATE(1118), 1, aux_sym__map_lhs_repeat1, - STATE(1170), 1, + STATE(1173), 1, sym__immediate_keycode, - ACTIONS(3517), 4, + ACTIONS(3513), 4, aux_sym_identifier_token1, anon_sym_PLUS, anon_sym_DASH, sym_integer_literal, - ACTIONS(3513), 13, + ACTIONS(3509), 13, sym__scope_dict, sym_scope, sym_string_literal, @@ -99078,28 +98238,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_BANG, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [48825] = 8, + [48711] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1013), 1, + ACTIONS(3517), 1, aux_sym__bang_filter_command_argument_token3, - ACTIONS(1023), 1, + ACTIONS(3522), 1, anon_sym_LT, - ACTIONS(1025), 1, + ACTIONS(3525), 1, anon_sym_BSLASH2, - STATE(1115), 1, + STATE(1109), 1, aux_sym__map_lhs_repeat1, - STATE(1170), 1, + STATE(1173), 1, sym__immediate_keycode, - ACTIONS(1015), 4, + ACTIONS(3520), 4, aux_sym_identifier_token1, anon_sym_PLUS, anon_sym_DASH, sym_integer_literal, - ACTIONS(1011), 13, + ACTIONS(3515), 13, sym__scope_dict, sym_scope, sym_string_literal, @@ -99110,250 +98270,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_BANG, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [48865] = 11, + [48751] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1143), 1, + ACTIONS(2942), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(2940), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_COMMA, + 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, + [48781] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3528), 1, anon_sym_BSLASH, - ACTIONS(1161), 1, + ACTIONS(3531), 1, + anon_sym_LBRACK2, + ACTIONS(3534), 1, aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3523), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3525), 1, - anon_sym_LBRACK, - STATE(1548), 1, - aux_sym__pattern_branch_repeat1, - STATE(1119), 2, + STATE(1111), 1, aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1141), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(1163), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3519), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - ACTIONS(3521), 6, + ACTIONS(778), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_QMARK2, - [48911] = 13, + anon_sym_SLASH2, + ACTIONS(776), 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, + [48819] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2853), 1, + ACTIONS(2867), 1, anon_sym_cchar, - ACTIONS(2855), 1, + ACTIONS(2869), 1, anon_sym_contained, - ACTIONS(2859), 1, + ACTIONS(2873), 1, anon_sym_contains, - ACTIONS(3527), 1, + ACTIONS(3537), 1, anon_sym_COMMA, - STATE(1130), 1, + STATE(1127), 1, aux_sym__syn_match_repeat2, - STATE(1179), 1, + STATE(1186), 1, aux_sym__syn_match_repeat1, STATE(1281), 1, sym__syn_arguments_keyword, - STATE(1285), 1, + STATE(1287), 1, sym__syn_arguments_match, - ACTIONS(2857), 2, + ACTIONS(2871), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3529), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2851), 5, + ACTIONS(3539), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(2865), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2861), 5, + ACTIONS(2875), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [48961] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1023), 1, - anon_sym_LT, - ACTIONS(1025), 1, - anon_sym_BSLASH2, - ACTIONS(3515), 1, - aux_sym__bang_filter_command_argument_token3, - STATE(1131), 1, - aux_sym__map_lhs_repeat1, - STATE(1170), 1, - sym__immediate_keycode, - ACTIONS(3533), 4, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3531), 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_BANG, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [49001] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1023), 1, - anon_sym_LT, - ACTIONS(1025), 1, - anon_sym_BSLASH2, - ACTIONS(3535), 1, - aux_sym__bang_filter_command_argument_token3, - STATE(1111), 1, - aux_sym__map_lhs_repeat1, - STATE(1170), 1, - sym__immediate_keycode, - ACTIONS(3533), 4, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3531), 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_BANG, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [49041] = 5, + [48869] = 13, ACTIONS(3), 1, sym__line_continuation, - STATE(1283), 1, - sym_pattern_multi, - ACTIONS(3541), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(3539), 6, + ACTIONS(2887), 1, + anon_sym_cchar, + ACTIONS(2889), 1, + anon_sym_contained, + ACTIONS(2893), 1, + anon_sym_contains, + ACTIONS(3505), 1, + anon_sym_COMMA, + STATE(1188), 1, + aux_sym__syn_match_repeat1, + STATE(1219), 1, + aux_sym__syn_match_repeat2, + STATE(1286), 1, + sym__syn_arguments_keyword, + STATE(1293), 1, + sym__syn_arguments_match, + ACTIONS(2891), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3541), 2, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(3537), 11, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_BSLASH, - 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, - [49075] = 11, + ACTIONS(2885), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2895), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [48919] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1111), 1, + ACTIONS(1107), 1, anon_sym_BSLASH, - ACTIONS(1129), 1, + ACTIONS(1125), 1, aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3543), 1, + ACTIONS(3547), 1, anon_sym_BSLASH_AMP, - ACTIONS(3545), 1, - anon_sym_LBRACK, - STATE(1515), 1, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + STATE(1526), 1, aux_sym__pattern_branch_repeat1, - STATE(1117), 2, + STATE(1115), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1154), 2, + STATE(1136), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(1131), 3, + ACTIONS(1127), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3519), 4, + ACTIONS(3543), 4, anon_sym_COLON, anon_sym_COMMA, anon_sym_SEMI, anon_sym_BSLASH_PIPE, - ACTIONS(3521), 6, + ACTIONS(3545), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_SLASH2, - [49121] = 5, + anon_sym_QMARK2, + [48965] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1278), 1, + STATE(1272), 1, sym_pattern_multi, - ACTIONS(3547), 4, + ACTIONS(3555), 4, anon_sym_STAR2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - ACTIONS(3539), 6, + ACTIONS(3553), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, anon_sym_QMARK2, - ACTIONS(3537), 11, + ACTIONS(3551), 11, anon_sym_COLON, anon_sym_COMMA, anon_sym_BSLASH, anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [49155] = 5, + [48999] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3426), 1, + ACTIONS(3557), 1, + anon_sym_BSLASH, + ACTIONS(3560), 1, + anon_sym_LBRACK2, + ACTIONS(3563), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1116), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(778), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(776), 12, + anon_sym_COLON, anon_sym_COMMA, - STATE(1107), 1, + 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, + [49037] = 13, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2887), 1, + anon_sym_cchar, + ACTIONS(2889), 1, + anon_sym_contained, + ACTIONS(2893), 1, + anon_sym_contains, + ACTIONS(3505), 1, + anon_sym_COMMA, + STATE(1176), 1, + aux_sym__syn_match_repeat1, + STATE(1219), 1, + aux_sym__syn_match_repeat2, + STATE(1286), 1, + sym__syn_arguments_keyword, + STATE(1293), 1, + sym__syn_arguments_match, + ACTIONS(2891), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3566), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2885), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2895), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [49087] = 8, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1023), 1, + anon_sym_LT, + ACTIONS(1025), 1, + anon_sym_BSLASH2, + ACTIONS(3570), 1, + aux_sym__bang_filter_command_argument_token3, + STATE(1109), 1, + aux_sym__map_lhs_repeat1, + STATE(1173), 1, + sym__immediate_keycode, + ACTIONS(3572), 4, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3568), 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_BANG, + sym_float_literal, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [49127] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3437), 1, + anon_sym_COMMA, + STATE(1128), 1, aux_sym__syn_match_repeat2, - ACTIONS(3549), 3, + ACTIONS(3574), 3, anon_sym_conceal, anon_sym_contained, anon_sym_skip, - ACTIONS(3551), 17, + ACTIONS(3576), 17, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -99371,189 +98598,405 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [49189] = 13, + [49161] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2853), 1, + ACTIONS(2867), 1, anon_sym_cchar, - ACTIONS(2855), 1, + ACTIONS(2869), 1, anon_sym_contained, - ACTIONS(2859), 1, + ACTIONS(2873), 1, anon_sym_contains, - ACTIONS(3527), 1, + ACTIONS(3537), 1, anon_sym_COMMA, - STATE(1210), 1, + STATE(1213), 1, aux_sym__syn_match_repeat1, - STATE(1239), 1, + STATE(1229), 1, aux_sym__syn_match_repeat2, STATE(1281), 1, sym__syn_arguments_keyword, - STATE(1285), 1, + STATE(1287), 1, sym__syn_arguments_match, - ACTIONS(2857), 2, + ACTIONS(2871), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3553), 2, + ACTIONS(3566), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(2865), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2875), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [49211] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3494), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3492), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_COMMA, + 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, + [49241] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3490), 2, + anon_sym_conceal, + anon_sym_contained, + ACTIONS(3488), 20, sym__newline_or_pipe, sym_comment, - ACTIONS(2851), 5, + anon_sym_COMMA, + 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, + [49271] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3028), 2, anon_sym_conceal, + anon_sym_contained, + ACTIONS(3026), 20, + sym__newline_or_pipe, + sym_comment, + anon_sym_COMMA, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2861), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [49239] = 7, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [49301] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3555), 1, - anon_sym_BSLASH, - ACTIONS(3558), 1, - anon_sym_LBRACK, - ACTIONS(3561), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1122), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(778), 6, + STATE(1291), 1, + sym_pattern_multi, + ACTIONS(3578), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3553), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_QMARK2, - ACTIONS(776), 12, + anon_sym_SLASH2, + ACTIONS(3551), 11, anon_sym_COLON, anon_sym_COMMA, + anon_sym_BSLASH, 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_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [49335] = 11, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1143), 1, + anon_sym_BSLASH, + ACTIONS(1161), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3580), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3582), 1, + anon_sym_LBRACK2, + STATE(1545), 1, + aux_sym__pattern_branch_repeat1, + STATE(1124), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1145), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(1163), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [49277] = 13, + ACTIONS(3543), 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_PIPE, + ACTIONS(3545), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + [49381] = 13, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2867), 1, + anon_sym_cchar, + ACTIONS(2869), 1, + anon_sym_contained, + ACTIONS(2873), 1, + anon_sym_contains, + ACTIONS(3537), 1, + anon_sym_COMMA, + STATE(1120), 1, + aux_sym__syn_match_repeat2, + STATE(1201), 1, + aux_sym__syn_match_repeat1, + STATE(1281), 1, + sym__syn_arguments_keyword, + STATE(1287), 1, + sym__syn_arguments_match, + ACTIONS(2871), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3507), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(2865), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2875), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [49431] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2875), 1, + ACTIONS(2867), 1, anon_sym_cchar, - ACTIONS(2877), 1, + ACTIONS(2869), 1, anon_sym_contained, - ACTIONS(2881), 1, + ACTIONS(2873), 1, anon_sym_contains, - ACTIONS(3507), 1, + ACTIONS(3537), 1, anon_sym_COMMA, - STATE(1211), 1, + STATE(1169), 1, aux_sym__syn_match_repeat1, - STATE(1219), 1, + STATE(1229), 1, aux_sym__syn_match_repeat2, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, + STATE(1281), 1, sym__syn_arguments_keyword, - ACTIONS(2879), 2, + STATE(1287), 1, + sym__syn_arguments_match, + ACTIONS(2871), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3553), 2, + ACTIONS(3541), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(2873), 5, + ACTIONS(2865), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2875), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [49481] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3437), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym__syn_match_repeat2, + ACTIONS(3584), 3, anon_sym_conceal, + anon_sym_contained, + anon_sym_skip, + ACTIONS(3586), 17, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2883), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [49327] = 13, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [49515] = 8, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1023), 1, + anon_sym_LT, + ACTIONS(1025), 1, + anon_sym_BSLASH2, + ACTIONS(3570), 1, + aux_sym__bang_filter_command_argument_token3, + STATE(1109), 1, + aux_sym__map_lhs_repeat1, + STATE(1173), 1, + sym__immediate_keycode, + ACTIONS(3513), 4, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3509), 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_BANG, + sym_float_literal, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [49555] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2875), 1, + ACTIONS(2887), 1, anon_sym_cchar, - ACTIONS(2877), 1, + ACTIONS(2889), 1, anon_sym_contained, - ACTIONS(2881), 1, + ACTIONS(2893), 1, anon_sym_contains, - ACTIONS(3507), 1, + ACTIONS(3505), 1, anon_sym_COMMA, - STATE(1108), 1, + STATE(1113), 1, aux_sym__syn_match_repeat2, - STATE(1185), 1, + STATE(1187), 1, aux_sym__syn_match_repeat1, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, + STATE(1286), 1, sym__syn_arguments_keyword, - ACTIONS(2879), 2, + STATE(1293), 1, + sym__syn_arguments_match, + ACTIONS(2891), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3529), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2873), 5, + ACTIONS(3539), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2885), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2883), 5, + ACTIONS(2895), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [49377] = 7, + [49605] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3564), 1, - anon_sym_BSLASH, - ACTIONS(3567), 1, - anon_sym_LBRACK, - ACTIONS(3570), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1125), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(778), 6, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(776), 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, - [49415] = 3, + ACTIONS(1013), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(1023), 1, + anon_sym_LT, + ACTIONS(1025), 1, + anon_sym_BSLASH2, + STATE(1129), 1, + aux_sym__map_lhs_repeat1, + STATE(1173), 1, + sym__immediate_keycode, + ACTIONS(1015), 4, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(1011), 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_BANG, + sym_float_literal, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [49645] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3476), 2, - anon_sym_conceal, + ACTIONS(2962), 1, anon_sym_contained, - ACTIONS(3474), 20, + ACTIONS(3588), 1, + anon_sym_COMMA, + STATE(1155), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2960), 18, sym__newline_or_pipe, sym_comment, - anon_sym_COMMA, + anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -99567,20 +99010,17 @@ 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, - [49445] = 3, + anon_sym_add, + anon_sym_remove, + [49678] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3032), 2, + ACTIONS(3486), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3030), 20, + ACTIONS(3484), 19, sym__newline_or_pipe, sym_comment, - anon_sym_COMMA, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -99598,16 +99038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [49475] = 3, + [49707] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3493), 2, + ACTIONS(3476), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3491), 20, + ACTIONS(3474), 19, sym__newline_or_pipe, sym_comment, - anon_sym_COMMA, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -99625,123 +99064,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [49505] = 13, + [49736] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2853), 1, - anon_sym_cchar, - ACTIONS(2855), 1, + ACTIONS(3457), 2, + anon_sym_conceal, anon_sym_contained, - ACTIONS(2859), 1, - anon_sym_contains, - ACTIONS(3527), 1, - anon_sym_COMMA, - STATE(1121), 1, - aux_sym__syn_match_repeat2, - STATE(1201), 1, - aux_sym__syn_match_repeat1, - STATE(1281), 1, - sym__syn_arguments_keyword, - STATE(1285), 1, - sym__syn_arguments_match, - ACTIONS(2857), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3511), 2, + ACTIONS(3455), 19, sym__newline_or_pipe, sym_comment, - ACTIONS(2851), 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(2861), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [49555] = 13, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [49765] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2853), 1, - anon_sym_cchar, - ACTIONS(2855), 1, - anon_sym_contained, - ACTIONS(2859), 1, - anon_sym_contains, - ACTIONS(3527), 1, + ACTIONS(3592), 1, + anon_sym_BSLASH, + ACTIONS(3597), 1, + anon_sym_LBRACK2, + ACTIONS(3600), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1115), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1136), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3603), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3590), 5, + anon_sym_COLON, anon_sym_COMMA, - STATE(1204), 1, - aux_sym__syn_match_repeat1, - STATE(1239), 1, - aux_sym__syn_match_repeat2, - STATE(1281), 1, - sym__syn_arguments_keyword, - STATE(1285), 1, - sym__syn_arguments_match, - ACTIONS(2857), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3509), 2, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + ACTIONS(3595), 6, sym__newline_or_pipe, sym_comment, - ACTIONS(2851), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2861), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [49605] = 8, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + [49806] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3575), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(3580), 1, - anon_sym_LT, - ACTIONS(3583), 1, - anon_sym_BSLASH2, - STATE(1131), 1, - aux_sym__map_lhs_repeat1, - STATE(1170), 1, - sym__immediate_keycode, - ACTIONS(3578), 4, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3573), 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_BANG, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [49645] = 3, + ACTIONS(778), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(776), 15, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_BSLASH, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, + [49835] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3588), 6, + ACTIONS(3608), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_QMARK2, - ACTIONS(3586), 15, + anon_sym_SLASH2, + ACTIONS(3606), 15, anon_sym_COLON, anon_sym_COMMA, anon_sym_BSLASH, @@ -99749,7 +99166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -99757,17 +99174,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [49674] = 5, + [49864] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3426), 1, + ACTIONS(1143), 1, + anon_sym_BSLASH, + ACTIONS(1161), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3582), 1, + anon_sym_LBRACK2, + STATE(1124), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1145), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(1163), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3610), 5, + anon_sym_COLON, anon_sym_COMMA, - STATE(987), 1, - aux_sym__syn_match_repeat2, - ACTIONS(3590), 2, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + ACTIONS(3612), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + [49905] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3435), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3592), 17, + ACTIONS(3433), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -99785,21 +99232,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [49707] = 7, + [49934] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, + ACTIONS(3094), 1, anon_sym_AT, - ACTIONS(3594), 1, + ACTIONS(3614), 1, sym_hl_group, - STATE(1291), 1, + STATE(1282), 1, sym_hl_groups, - STATE(2933), 1, + STATE(2984), 1, sym_at, - ACTIONS(3116), 2, + ACTIONS(3192), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(3114), 15, + ACTIONS(3190), 15, anon_sym_conceal, anon_sym_cchar, anon_sym_contained, @@ -99815,13 +99262,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [49744] = 3, + [49971] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3447), 2, + ACTIONS(3472), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3445), 19, + ACTIONS(3470), 19, sym__newline_or_pipe, sym_comment, anon_sym_cchar, @@ -99841,47 +99288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [49773] = 5, + [50000] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2940), 1, - anon_sym_contained, - ACTIONS(3596), 1, + ACTIONS(3437), 1, anon_sym_COMMA, - STATE(1137), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2938), 18, - sym__newline_or_pipe, - sym_comment, + STATE(1045), 1, + aux_sym__syn_match_repeat2, + ACTIONS(3616), 2, 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, - [49806] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2934), 1, anon_sym_contained, - ACTIONS(3598), 1, - anon_sym_COMMA, - STATE(1137), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2932), 18, - sym__newline_or_pipe, - sym_comment, - anon_sym_conceal, + ACTIONS(3618), 17, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -99895,15 +99312,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_add, - anon_sym_remove, - [49839] = 3, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [50033] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3443), 2, + ACTIONS(3482), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3441), 19, + ACTIONS(3480), 19, sym__newline_or_pipe, sym_comment, anon_sym_cchar, @@ -99923,50 +99342,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [49868] = 11, + [50062] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3601), 1, + ACTIONS(3620), 1, anon_sym_BSLASH, - ACTIONS(3603), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3605), 1, - anon_sym_LBRACK, - ACTIONS(3607), 1, + ACTIONS(3623), 1, + anon_sym_LBRACK2, + ACTIONS(3626), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1613), 1, - aux_sym__pattern_branch_repeat1, - STATE(1142), 2, + STATE(1124), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1187), 2, + STATE(1145), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3609), 3, + ACTIONS(3629), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3521), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(3519), 5, + ACTIONS(3590), 5, anon_sym_COLON, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [49913] = 3, + ACTIONS(3595), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + [50103] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3497), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3495), 19, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3632), 1, + sym_hl_group, + STATE(1274), 1, + sym_hl_groups, + STATE(2961), 1, + sym_at, + ACTIONS(3182), 2, sym__newline_or_pipe, sym_comment, + ACTIONS(3184), 15, + anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -99979,229 +99404,131 @@ 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, - [49942] = 9, + [50140] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3613), 1, - anon_sym_BSLASH, - ACTIONS(3618), 1, - anon_sym_LBRACK, - ACTIONS(3621), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1119), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1141), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3624), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3611), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - ACTIONS(3616), 6, + ACTIONS(778), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_QMARK2, - [49983] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1300), 1, - sym_pattern_multi, - ACTIONS(3539), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(3627), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(3537), 12, + anon_sym_SLASH2, + ACTIONS(776), 15, anon_sym_COLON, anon_sym_COMMA, anon_sym_BSLASH, anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [50016] = 11, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3629), 1, - anon_sym_BSLASH, - ACTIONS(3631), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3633), 1, - anon_sym_LBRACK, - ACTIONS(3635), 1, + anon_sym_STAR2, + anon_sym_LBRACK2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, - STATE(1635), 1, - aux_sym__pattern_branch_repeat1, - STATE(1147), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1171), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3637), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3521), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(3519), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [50061] = 3, + [50169] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3641), 6, - sym__newline_or_pipe, - sym_comment, + STATE(1304), 1, + sym_pattern_multi, + ACTIONS(3553), 4, sym__normal, sym__source, sym_bang, anon_sym_SLASH2, - ACTIONS(3639), 15, + ACTIONS(3634), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3551), 12, anon_sym_COLON, anon_sym_COMMA, anon_sym_BSLASH, 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__map_rhs_token4, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [50090] = 3, + [50202] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3588), 6, - sym__newline_or_pipe, - sym_comment, + STATE(1296), 1, + sym_pattern_multi, + ACTIONS(3553), 4, sym__normal, sym__source, sym_bang, - anon_sym_SLASH2, - ACTIONS(3586), 15, + anon_sym_QMARK2, + ACTIONS(3636), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3551), 12, anon_sym_COLON, anon_sym_COMMA, anon_sym_BSLASH, 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__map_rhs_token4, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [50119] = 9, + [50235] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1111), 1, + ACTIONS(3638), 1, anon_sym_BSLASH, - ACTIONS(1129), 1, + ACTIONS(3640), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3642), 1, + anon_sym_LBRACK2, + ACTIONS(3644), 1, aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3545), 1, - anon_sym_LBRACK, - STATE(1117), 2, + STATE(1634), 1, + aux_sym__pattern_branch_repeat1, + STATE(1149), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1154), 2, + STATE(1193), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(1131), 3, + ACTIONS(3646), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3643), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - ACTIONS(3645), 6, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - [50160] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1322), 1, - sym_pattern_multi, - ACTIONS(3539), 4, + ACTIONS(3545), 4, sym__normal, sym__source, sym_bang, - anon_sym_SLASH2, - ACTIONS(3647), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(3537), 12, + anon_sym_QMARK2, + ACTIONS(3543), 5, anon_sym_COLON, anon_sym_COMMA, - anon_sym_BSLASH, anon_sym_SEMI, - anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [50193] = 5, + [50280] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2944), 1, + ACTIONS(3453), 2, + anon_sym_conceal, anon_sym_contained, - ACTIONS(3596), 1, - anon_sym_COMMA, - STATE(1136), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2942), 18, + ACTIONS(3451), 19, sym__newline_or_pipe, sym_comment, - anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -100215,21 +99542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_add, - anon_sym_remove, - [50226] = 5, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [50309] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2944), 1, + ACTIONS(3461), 2, + anon_sym_conceal, anon_sym_contained, - ACTIONS(3596), 1, - anon_sym_COMMA, - STATE(1137), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2942), 18, + ACTIONS(3459), 19, sym__newline_or_pipe, sym_comment, - anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -100243,26 +99568,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_add, - anon_sym_remove, - [50259] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3594), 1, - sym_hl_group, - STATE(1277), 1, - sym_hl_groups, - STATE(2933), 1, - sym_at, - ACTIONS(3224), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3226), 15, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [50338] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3449), 2, anon_sym_conceal, - anon_sym_cchar, anon_sym_contained, + ACTIONS(3447), 19, + sym__newline_or_pipe, + sym_comment, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -100275,15 +99594,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [50296] = 3, + anon_sym_matchgroup, + anon_sym_oneline, + anon_sym_concealends, + anon_sym_end, + [50367] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3501), 2, + ACTIONS(3437), 1, + anon_sym_COMMA, + STATE(1143), 1, + aux_sym__syn_match_repeat2, + ACTIONS(3648), 2, anon_sym_conceal, anon_sym_contained, - ACTIONS(3499), 19, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3650), 17, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -100301,16 +99626,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneline, anon_sym_concealends, anon_sym_end, - [50325] = 5, + [50400] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2966), 1, + ACTIONS(2905), 1, anon_sym_contained, - ACTIONS(3596), 1, + ACTIONS(3588), 1, anon_sym_COMMA, - STATE(1149), 1, + STATE(1159), 1, aux_sym_hl_groups_repeat1, - ACTIONS(2964), 18, + ACTIONS(2903), 18, sym__newline_or_pipe, sym_comment, anon_sym_conceal, @@ -100329,24 +99654,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_excludenl, anon_sym_add, anon_sym_remove, - [50358] = 7, + [50433] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3649), 1, - sym_hl_group, - STATE(1274), 1, - sym_hl_groups, - STATE(3022), 1, - sym_at, - ACTIONS(3116), 2, + ACTIONS(2905), 1, + anon_sym_contained, + ACTIONS(3588), 1, + anon_sym_COMMA, + STATE(1161), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2903), 18, sym__newline_or_pipe, sym_comment, - ACTIONS(3114), 15, anon_sym_conceal, anon_sym_cchar, - anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -100359,49 +99680,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [50395] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3651), 1, - anon_sym_BSLASH, - ACTIONS(3654), 1, - anon_sym_LBRACK, - ACTIONS(3657), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1117), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1154), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3660), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3611), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - ACTIONS(3616), 6, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - [50436] = 3, + anon_sym_add, + anon_sym_remove, + [50466] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(778), 6, + ACTIONS(3654), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, anon_sym_SLASH2, - ACTIONS(776), 15, + ACTIONS(3652), 15, anon_sym_COLON, anon_sym_COMMA, anon_sym_BSLASH, @@ -100409,7 +99700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -100417,45 +99708,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [50465] = 7, + [50495] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3649), 1, - sym_hl_group, - STATE(1282), 1, - sym_hl_groups, - STATE(3022), 1, - sym_at, - ACTIONS(3224), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3226), 15, - 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, - [50502] = 3, + ACTIONS(3656), 1, + anon_sym_BSLASH, + ACTIONS(3658), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(3662), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1651), 1, + aux_sym__pattern_branch_repeat1, + STATE(1148), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1210), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3664), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3545), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(3543), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [50540] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3459), 2, - anon_sym_conceal, + ACTIONS(2942), 1, anon_sym_contained, - ACTIONS(3457), 19, + ACTIONS(3666), 1, + anon_sym_COMMA, + STATE(1159), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2940), 18, sym__newline_or_pipe, sym_comment, + anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -100469,19 +99768,51 @@ 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, - [50531] = 3, + anon_sym_add, + anon_sym_remove, + [50573] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3451), 2, - anon_sym_conceal, + ACTIONS(3669), 1, + anon_sym_BSLASH, + ACTIONS(3672), 1, + anon_sym_LBRACK2, + ACTIONS(3675), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1160), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(778), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(776), 13, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, + [50610] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2958), 1, anon_sym_contained, - ACTIONS(3449), 19, + ACTIONS(3588), 1, + anon_sym_COMMA, + STATE(1159), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2956), 18, sym__newline_or_pipe, sym_comment, + anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, @@ -100495,21 +99826,19 @@ 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, - [50560] = 3, + anon_sym_add, + anon_sym_remove, + [50643] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(778), 6, + ACTIONS(3654), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, anon_sym_QMARK2, - ACTIONS(776), 15, + ACTIONS(3652), 15, anon_sym_COLON, anon_sym_COMMA, anon_sym_BSLASH, @@ -100517,7 +99846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -100525,74 +99854,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [50589] = 7, + [50672] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3663), 1, - anon_sym_BSLASH, - ACTIONS(3666), 1, - anon_sym_LBRACK, - ACTIONS(3669), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1160), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(778), 4, + ACTIONS(3608), 6, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_SLASH2, - ACTIONS(776), 13, + anon_sym_QMARK2, + ACTIONS(3606), 15, anon_sym_COLON, anon_sym_COMMA, + anon_sym_BSLASH, anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, + anon_sym_LBRACK2, 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, - [50626] = 5, + [50701] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3426), 1, - anon_sym_COMMA, - STATE(1133), 1, - aux_sym__syn_match_repeat2, - ACTIONS(3672), 2, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3614), 1, + sym_hl_group, + STATE(1278), 1, + sym_hl_groups, + STATE(2984), 1, + sym_at, + ACTIONS(3182), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3184), 15, anon_sym_conceal, - anon_sym_contained, - ACTIONS(3674), 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, - [50659] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3469), 2, - anon_sym_conceal, anon_sym_contained, - ACTIONS(3467), 19, - sym__newline_or_pipe, - sym_comment, - anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -100605,46 +99910,24 @@ 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, - [50688] = 3, + [50738] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3463), 2, - anon_sym_conceal, - anon_sym_contained, - ACTIONS(3461), 19, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3632), 1, + sym_hl_group, + STATE(1288), 1, + sym_hl_groups, + STATE(2961), 1, + sym_at, + ACTIONS(3192), 2, 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, - [50717] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3455), 2, + ACTIONS(3190), 15, anon_sym_conceal, - anon_sym_contained, - ACTIONS(3453), 19, - sym__newline_or_pipe, - sym_comment, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -100657,26 +99940,22 @@ 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, - [50746] = 7, + [50775] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3676), 1, + ACTIONS(3678), 1, anon_sym_BSLASH, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, + ACTIONS(3681), 1, + anon_sym_LBRACK2, + ACTIONS(3684), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1165), 1, + STATE(1166), 1, aux_sym__pattern_ordinary_atom, ACTIONS(778), 4, sym__normal, sym__source, sym_bang, - anon_sym_QMARK2, + anon_sym_SLASH2, ACTIONS(776), 13, anon_sym_COLON, anon_sym_COMMA, @@ -100691,188 +99970,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [50783] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3641), 6, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(3639), 15, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_BSLASH, - 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, [50812] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1143), 1, + ACTIONS(1107), 1, anon_sym_BSLASH, - ACTIONS(1161), 1, + ACTIONS(1125), 1, aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3525), 1, - anon_sym_LBRACK, - STATE(1119), 2, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + STATE(1115), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1141), 2, + STATE(1136), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(1163), 3, + ACTIONS(1127), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3643), 5, + ACTIONS(3610), 5, anon_sym_COLON, anon_sym_COMMA, anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - ACTIONS(3645), 6, + ACTIONS(3612), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, anon_sym_QMARK2, - [50853] = 11, + [50853] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3654), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(3652), 16, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_BSLASH, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, + [50881] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2875), 1, + ACTIONS(2867), 1, anon_sym_cchar, - ACTIONS(2877), 1, + ACTIONS(2869), 1, anon_sym_contained, - ACTIONS(2881), 1, + ACTIONS(2873), 1, anon_sym_contains, STATE(1200), 1, aux_sym__syn_match_repeat1, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, + STATE(1281), 1, sym__syn_arguments_keyword, - ACTIONS(2879), 2, + STATE(1287), 1, + sym__syn_arguments_match, + ACTIONS(2871), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3553), 2, + ACTIONS(3687), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(2873), 5, + ACTIONS(2865), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2883), 5, + ACTIONS(2875), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [50897] = 3, + [50925] = 12, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3032), 1, - anon_sym_contained, - ACTIONS(3030), 19, - sym__newline_or_pipe, - sym_comment, - anon_sym_COMMA, - anon_sym_conceal, + ACTIONS(3691), 1, anon_sym_cchar, + ACTIONS(3693), 1, + anon_sym_contained, + ACTIONS(3697), 1, + anon_sym_contains, + ACTIONS(3701), 1, + sym__separator_first, + STATE(781), 1, + sym__syn_hl_pattern, + STATE(1222), 1, + aux_sym__syn_match_repeat1, + STATE(1318), 1, + sym__syn_arguments_keyword, + STATE(1319), 1, + sym__syn_arguments_match, + ACTIONS(3695), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3689), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(3699), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_add, - anon_sym_remove, - [50925] = 3, + [50971] = 12, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3687), 5, - aux_sym__bang_filter_command_argument_token3, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3685), 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_BANG, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [50953] = 9, + ACTIONS(3691), 1, + anon_sym_cchar, + ACTIONS(3693), 1, + anon_sym_contained, + ACTIONS(3697), 1, + anon_sym_contains, + ACTIONS(3703), 1, + sym__separator_first, + STATE(782), 1, + sym__syn_hl_pattern, + STATE(1222), 1, + aux_sym__syn_match_repeat1, + STATE(1318), 1, + sym__syn_arguments_keyword, + STATE(1319), 1, + sym__syn_arguments_match, + ACTIONS(3695), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3689), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(3699), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [51017] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3689), 1, - anon_sym_BSLASH, - ACTIONS(3692), 1, - anon_sym_LBRACK, - ACTIONS(3695), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1147), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1171), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3698), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3616), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(3611), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, + ACTIONS(2867), 1, + anon_sym_cchar, + ACTIONS(2869), 1, + anon_sym_contained, + ACTIONS(2873), 1, + anon_sym_contains, + STATE(1200), 1, + aux_sym__syn_match_repeat1, + STATE(1281), 1, + sym__syn_arguments_keyword, + STATE(1287), 1, + sym__syn_arguments_match, + ACTIONS(2871), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3705), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [50993] = 3, + ACTIONS(2865), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2875), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [51061] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3578), 5, + ACTIONS(3709), 5, aux_sym__bang_filter_command_argument_token3, aux_sym_identifier_token1, anon_sym_PLUS, anon_sym_DASH, sym_integer_literal, - ACTIONS(3573), 15, + ACTIONS(3707), 15, sym__scope_dict, sym_scope, sym_string_literal, @@ -100880,313 +100178,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_AMP, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LT, - anon_sym_BSLASH2, - anon_sym_BANG, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [51021] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3641), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(3639), 16, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_BSLASH, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [51049] = 15, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3703), 1, - anon_sym_cterm, - ACTIONS(3712), 1, - anon_sym_gui, - ACTIONS(3718), 1, - anon_sym_font, - STATE(1499), 1, - sym__hl_key_font, - STATE(1500), 1, - sym__hl_key_gui_color, - STATE(1501), 1, - sym__hl_key_gui, - STATE(1502), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1503), 1, - sym__hl_key_start_stop, - STATE(1504), 1, - sym__hl_key_cterm, - ACTIONS(3701), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3706), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(3709), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(1174), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(3715), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [51101] = 15, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3723), 1, - anon_sym_cterm, - ACTIONS(3729), 1, - anon_sym_gui, - ACTIONS(3733), 1, - anon_sym_font, - STATE(1499), 1, - sym__hl_key_font, - STATE(1500), 1, - sym__hl_key_gui_color, - STATE(1501), 1, - sym__hl_key_gui, - STATE(1502), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1503), 1, - sym__hl_key_start_stop, - STATE(1504), 1, - sym__hl_key_cterm, - ACTIONS(3721), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3725), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(3727), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(1174), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(3731), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [51153] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3588), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(3586), 16, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_BSLASH, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [51181] = 11, + anon_sym_DOLLAR, + anon_sym_LT, + anon_sym_BSLASH2, + anon_sym_BANG, + sym_float_literal, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [51089] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2875), 1, + ACTIONS(2887), 1, anon_sym_cchar, - ACTIONS(2877), 1, + ACTIONS(2889), 1, anon_sym_contained, - ACTIONS(2881), 1, + ACTIONS(2893), 1, anon_sym_contains, - STATE(1200), 1, + STATE(1211), 1, aux_sym__syn_match_repeat1, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, + STATE(1286), 1, sym__syn_arguments_keyword, - ACTIONS(2879), 2, + STATE(1293), 1, + sym__syn_arguments_match, + ACTIONS(2891), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3735), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2873), 5, + ACTIONS(3566), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2885), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2883), 5, + ACTIONS(2895), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51225] = 15, + [51133] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3723), 1, + ACTIONS(3711), 1, anon_sym_cterm, - ACTIONS(3729), 1, + ACTIONS(3720), 1, anon_sym_gui, - ACTIONS(3733), 1, + ACTIONS(3726), 1, anon_sym_font, - STATE(1499), 1, + STATE(1493), 1, sym__hl_key_font, - STATE(1500), 1, + STATE(1511), 1, sym__hl_key_gui_color, - STATE(1501), 1, + STATE(1515), 1, sym__hl_key_gui, - STATE(1502), 1, + STATE(1517), 1, sym__hl_key_ctermfg_ctermbg, - STATE(1503), 1, + STATE(1518), 1, sym__hl_key_start_stop, - STATE(1504), 1, + STATE(1519), 1, sym__hl_key_cterm, - ACTIONS(3725), 2, + ACTIONS(3714), 2, anon_sym_start, anon_sym_stop, - ACTIONS(3727), 2, + ACTIONS(3717), 2, anon_sym_ctermfg, anon_sym_ctermbg, - ACTIONS(3737), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1174), 2, + ACTIONS(3729), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1175), 2, sym_hl_attribute, aux_sym__hl_body_keys_repeat1, - ACTIONS(3731), 3, + ACTIONS(3723), 3, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, - [51277] = 11, + [51185] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2853), 1, + ACTIONS(2887), 1, anon_sym_cchar, - ACTIONS(2855), 1, + ACTIONS(2889), 1, anon_sym_contained, - ACTIONS(2859), 1, + ACTIONS(2893), 1, anon_sym_contains, - STATE(1206), 1, + STATE(1211), 1, aux_sym__syn_match_repeat1, - STATE(1281), 1, + STATE(1286), 1, sym__syn_arguments_keyword, - STATE(1285), 1, + STATE(1293), 1, sym__syn_arguments_match, - ACTIONS(2857), 2, + ACTIONS(2891), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3509), 2, + ACTIONS(3731), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(2851), 5, + ACTIONS(2885), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2861), 5, + ACTIONS(2895), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51321] = 9, + [51229] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3629), 1, - anon_sym_BSLASH, - ACTIONS(3633), 1, - anon_sym_LBRACK, - ACTIONS(3635), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1147), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1171), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3637), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3645), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(3643), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, + ACTIONS(3733), 1, + anon_sym_cterm, + ACTIONS(3742), 1, + anon_sym_gui, + ACTIONS(3748), 1, + anon_sym_font, + STATE(1537), 1, + sym__hl_key_gui, + STATE(1607), 1, + sym__hl_key_cterm, + STATE(1608), 1, + sym__hl_key_start_stop, + STATE(1609), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1620), 1, + sym__hl_key_gui_color, + STATE(1630), 1, + sym__hl_key_font, + ACTIONS(3729), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [51361] = 11, + ACTIONS(3736), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3739), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(1177), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3745), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [51281] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2853), 1, + ACTIONS(3753), 1, + anon_sym_cterm, + ACTIONS(3759), 1, + anon_sym_gui, + ACTIONS(3763), 1, + anon_sym_font, + STATE(1537), 1, + sym__hl_key_gui, + STATE(1607), 1, + sym__hl_key_cterm, + STATE(1608), 1, + sym__hl_key_start_stop, + STATE(1609), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1620), 1, + sym__hl_key_gui_color, + STATE(1630), 1, + sym__hl_key_font, + ACTIONS(3751), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3755), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3757), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(1177), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3761), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [51333] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3753), 1, + anon_sym_cterm, + ACTIONS(3759), 1, + anon_sym_gui, + ACTIONS(3763), 1, + anon_sym_font, + STATE(1537), 1, + sym__hl_key_gui, + STATE(1607), 1, + sym__hl_key_cterm, + STATE(1608), 1, + sym__hl_key_start_stop, + STATE(1609), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1620), 1, + sym__hl_key_gui_color, + STATE(1630), 1, + sym__hl_key_font, + ACTIONS(3755), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3757), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + ACTIONS(3765), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(1177), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3761), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [51385] = 11, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2887), 1, anon_sym_cchar, - ACTIONS(2855), 1, + ACTIONS(2889), 1, anon_sym_contained, - ACTIONS(2859), 1, + ACTIONS(2893), 1, anon_sym_contains, - STATE(1206), 1, + STATE(1211), 1, aux_sym__syn_match_repeat1, - STATE(1281), 1, + STATE(1286), 1, sym__syn_arguments_keyword, - STATE(1285), 1, + STATE(1293), 1, sym__syn_arguments_match, - ACTIONS(2857), 2, + ACTIONS(2891), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3739), 2, + ACTIONS(2899), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(2851), 5, + ACTIONS(2885), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2861), 5, + ACTIONS(2895), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51405] = 3, + [51429] = 3, ACTIONS(3), 1, sym__line_continuation, ACTIONS(778), 4, sym__normal, sym__source, sym_bang, - anon_sym_SLASH2, + anon_sym_QMARK2, ACTIONS(776), 16, anon_sym_COLON, anon_sym_COMMA, @@ -101196,7 +100450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -101204,298 +100458,384 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [51433] = 11, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2875), 1, - anon_sym_cchar, - ACTIONS(2877), 1, - anon_sym_contained, - ACTIONS(2881), 1, - anon_sym_contains, - STATE(1200), 1, - aux_sym__syn_match_repeat1, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, - sym__syn_arguments_keyword, - ACTIONS(2879), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3739), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2873), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2883), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [51477] = 15, + [51457] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3741), 1, + ACTIONS(3767), 1, anon_sym_cterm, - ACTIONS(3747), 1, + ACTIONS(3773), 1, anon_sym_gui, - ACTIONS(3751), 1, + ACTIONS(3777), 1, anon_sym_font, - STATE(1491), 1, + STATE(1493), 1, sym__hl_key_font, - STATE(1537), 1, + STATE(1511), 1, sym__hl_key_gui_color, - STATE(1544), 1, + STATE(1515), 1, sym__hl_key_gui, - STATE(1545), 1, + STATE(1517), 1, sym__hl_key_ctermfg_ctermbg, - STATE(1547), 1, + STATE(1518), 1, sym__hl_key_start_stop, - STATE(1563), 1, + STATE(1519), 1, sym__hl_key_cterm, - ACTIONS(3737), 2, + ACTIONS(3765), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(3743), 2, + ACTIONS(3769), 2, anon_sym_start, anon_sym_stop, - ACTIONS(3745), 2, + ACTIONS(3771), 2, anon_sym_ctermfg, anon_sym_ctermbg, - STATE(1193), 2, + STATE(1175), 2, sym_hl_attribute, aux_sym__hl_body_keys_repeat1, - ACTIONS(3749), 3, + ACTIONS(3775), 3, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, - [51529] = 11, + [51509] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3781), 5, + aux_sym__bang_filter_command_argument_token3, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3779), 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_BANG, + sym_float_literal, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [51537] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3783), 1, + anon_sym_BSLASH, + ACTIONS(3786), 1, + anon_sym_LBRACK2, + ACTIONS(3789), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1184), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(778), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(776), 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, + [51573] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2875), 1, + ACTIONS(3520), 5, + aux_sym__bang_filter_command_argument_token3, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(3515), 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_BANG, + sym_float_literal, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [51601] = 11, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2867), 1, anon_sym_cchar, - ACTIONS(2877), 1, + ACTIONS(2869), 1, anon_sym_contained, - ACTIONS(2881), 1, + ACTIONS(2873), 1, anon_sym_contains, STATE(1200), 1, aux_sym__syn_match_repeat1, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, + STATE(1281), 1, sym__syn_arguments_keyword, - ACTIONS(2879), 2, + STATE(1287), 1, + sym__syn_arguments_match, + ACTIONS(2871), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3509), 2, + ACTIONS(3541), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(2873), 5, + ACTIONS(2865), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2883), 5, + ACTIONS(2875), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51573] = 7, + [51645] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3224), 1, - sym__separator_first, - ACTIONS(3753), 1, - sym_hl_group, - STATE(1315), 1, - sym_hl_groups, - STATE(2909), 1, - sym_at, - ACTIONS(3226), 15, - anon_sym_conceal, + ACTIONS(2887), 1, anon_sym_cchar, + ACTIONS(2889), 1, anon_sym_contained, + ACTIONS(2893), 1, + anon_sym_contains, + STATE(1211), 1, + aux_sym__syn_match_repeat1, + STATE(1286), 1, + sym__syn_arguments_keyword, + STATE(1293), 1, + sym__syn_arguments_match, + ACTIONS(2891), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3541), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2885), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, + ACTIONS(2895), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [51689] = 11, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2887), 1, + anon_sym_cchar, + ACTIONS(2889), 1, + anon_sym_contained, + ACTIONS(2893), 1, anon_sym_contains, + STATE(1211), 1, + aux_sym__syn_match_repeat1, + STATE(1286), 1, + sym__syn_arguments_keyword, + STATE(1293), 1, + sym__syn_arguments_match, + ACTIONS(2891), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3687), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2885), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2895), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51609] = 9, + [51733] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3755), 1, + ACTIONS(3792), 1, anon_sym_BSLASH, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3761), 1, + ACTIONS(3794), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3796), 1, + anon_sym_LBRACK2, + ACTIONS(3798), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1142), 2, + STATE(1757), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3543), 2, + anon_sym_COLON, + anon_sym_BSLASH_PIPE, + STATE(1191), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1187), 2, + STATE(1232), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3764), 3, + ACTIONS(3800), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3616), 4, + ACTIONS(3545), 6, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_QMARK2, - ACTIONS(3611), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [51649] = 12, + anon_sym_SLASH2, + [51777] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3769), 1, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3182), 1, + sym__separator_first, + ACTIONS(3802), 1, + sym_hl_group, + STATE(1307), 1, + sym_hl_groups, + STATE(3255), 1, + sym_at, + ACTIONS(3184), 15, + anon_sym_conceal, anon_sym_cchar, - ACTIONS(3771), 1, anon_sym_contained, - ACTIONS(3775), 1, - anon_sym_contains, - ACTIONS(3779), 1, - sym__separator_first, - STATE(774), 1, - sym__syn_hl_pattern, - STATE(1228), 1, - aux_sym__syn_match_repeat1, - STATE(1297), 1, - sym__syn_arguments_match, - STATE(1311), 1, - sym__syn_arguments_keyword, - ACTIONS(3773), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3767), 5, - anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(3777), 5, + anon_sym_contains, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [51695] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(778), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(776), 16, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_BSLASH, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [51723] = 5, + [51813] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1336), 1, + STATE(1333), 1, sym_pattern_multi, - ACTIONS(3781), 4, + ACTIONS(3804), 4, anon_sym_STAR2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - ACTIONS(3539), 6, + ACTIONS(3553), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, anon_sym_SLASH2, - ACTIONS(3537), 9, + ACTIONS(3551), 9, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [51755] = 11, + [51845] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3783), 1, + ACTIONS(2887), 1, + anon_sym_cchar, + ACTIONS(2889), 1, + anon_sym_contained, + ACTIONS(2893), 1, + anon_sym_contains, + STATE(1211), 1, + aux_sym__syn_match_repeat1, + STATE(1286), 1, + sym__syn_arguments_keyword, + STATE(1293), 1, + sym__syn_arguments_match, + ACTIONS(2891), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(3705), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(2885), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + ACTIONS(2895), 5, + anon_sym_fold, + anon_sym_display, + anon_sym_extend, + anon_sym_keepend, + anon_sym_excludenl, + [51889] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3806), 1, anon_sym_BSLASH, - ACTIONS(3785), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3787), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, + ACTIONS(3809), 1, + anon_sym_LBRACK2, + ACTIONS(3812), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1737), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3519), 2, - anon_sym_COLON, - anon_sym_BSLASH_PIPE, - STATE(1205), 2, + STATE(1149), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1237), 2, + STATE(1193), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3791), 3, + ACTIONS(3815), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3521), 6, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3595), 4, sym__normal, sym__source, sym_bang, anon_sym_QMARK2, - [51799] = 3, + ACTIONS(3590), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [51929] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3795), 5, + ACTIONS(3820), 5, aux_sym__bang_filter_command_argument_token3, aux_sym_identifier_token1, anon_sym_PLUS, anon_sym_DASH, sym_integer_literal, - ACTIONS(3793), 15, + ACTIONS(3818), 15, sym__scope_dict, sym_scope, sym_string_literal, @@ -101508,111 +100848,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH2, anon_sym_BANG, sym_float_literal, - anon_sym_LBRACK, + anon_sym_LBRACK2, sym_register, anon_sym_POUND_LBRACE, - [51827] = 15, + [51957] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3797), 1, - anon_sym_cterm, - ACTIONS(3806), 1, - anon_sym_gui, - ACTIONS(3812), 1, - anon_sym_font, - STATE(1491), 1, - sym__hl_key_font, - STATE(1537), 1, - sym__hl_key_gui_color, - STATE(1544), 1, - sym__hl_key_gui, - STATE(1545), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1547), 1, - sym__hl_key_start_stop, - STATE(1563), 1, - sym__hl_key_cterm, - ACTIONS(3701), 2, + ACTIONS(2942), 1, + anon_sym_contained, + ACTIONS(2940), 19, sym__newline_or_pipe, sym_comment, - ACTIONS(3800), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(3803), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(1193), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(3809), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [51879] = 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, + anon_sym_add, + anon_sym_remove, + [51985] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3641), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(3639), 16, - anon_sym_COLON, + ACTIONS(3028), 1, + anon_sym_contained, + ACTIONS(3026), 19, + sym__newline_or_pipe, + sym_comment, anon_sym_COMMA, - anon_sym_BSLASH, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [51907] = 7, + 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, + [52013] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3815), 1, + ACTIONS(3638), 1, anon_sym_BSLASH, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3821), 1, + ACTIONS(3642), 1, + anon_sym_LBRACK2, + ACTIONS(3644), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1195), 1, + STATE(1149), 2, aux_sym__pattern_ordinary_atom, - ACTIONS(778), 6, - sym__newline_or_pipe, - sym_comment, + sym__pattern_atom, + STATE(1193), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3646), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3612), 4, sym__normal, sym__source, sym_bang, - anon_sym_SLASH2, - ACTIONS(776), 10, + anon_sym_QMARK2, + ACTIONS(3610), 6, 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, - [51943] = 3, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [52053] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2934), 1, - anon_sym_contained, - ACTIONS(2932), 19, - sym__newline_or_pipe, - sym_comment, - anon_sym_COMMA, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3192), 1, + sym__separator_first, + ACTIONS(3802), 1, + sym_hl_group, + STATE(1322), 1, + sym_hl_groups, + STATE(3255), 1, + sym_at, + ACTIONS(3190), 15, anon_sym_conceal, anon_sym_cchar, + anon_sym_contained, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, @@ -101625,648 +100961,613 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - anon_sym_add, - anon_sym_remove, - [51971] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3588), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(3586), 16, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_BSLASH, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [51999] = 12, + [52089] = 12, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3769), 1, + ACTIONS(3691), 1, anon_sym_cchar, - ACTIONS(3771), 1, + ACTIONS(3693), 1, anon_sym_contained, - ACTIONS(3775), 1, + ACTIONS(3697), 1, anon_sym_contains, - ACTIONS(3824), 1, + ACTIONS(3701), 1, sym__separator_first, - STATE(771), 1, + STATE(777), 1, sym__syn_hl_pattern, - STATE(1228), 1, + STATE(1170), 1, aux_sym__syn_match_repeat1, - STATE(1297), 1, - sym__syn_arguments_match, - STATE(1311), 1, + STATE(1318), 1, sym__syn_arguments_keyword, - ACTIONS(3773), 2, + STATE(1319), 1, + sym__syn_arguments_match, + ACTIONS(3695), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3767), 5, + ACTIONS(3689), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(3777), 5, + ACTIONS(3699), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52045] = 11, + [52135] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2853), 1, + ACTIONS(3827), 1, anon_sym_cchar, - ACTIONS(2855), 1, + ACTIONS(3830), 1, anon_sym_contained, - ACTIONS(2859), 1, + ACTIONS(3836), 1, anon_sym_contains, - STATE(1206), 1, + STATE(1200), 1, aux_sym__syn_match_repeat1, STATE(1281), 1, sym__syn_arguments_keyword, - STATE(1285), 1, + STATE(1287), 1, sym__syn_arguments_match, - ACTIONS(2857), 2, + ACTIONS(3822), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3833), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2865), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2851), 5, + ACTIONS(3824), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2861), 5, + ACTIONS(3839), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52089] = 11, + [52179] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3831), 1, + ACTIONS(2867), 1, anon_sym_cchar, - ACTIONS(3834), 1, + ACTIONS(2869), 1, anon_sym_contained, - ACTIONS(3840), 1, + ACTIONS(2873), 1, anon_sym_contains, STATE(1200), 1, aux_sym__syn_match_repeat1, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, + STATE(1281), 1, sym__syn_arguments_keyword, - ACTIONS(3826), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3837), 2, + STATE(1287), 1, + sym__syn_arguments_match, + ACTIONS(2871), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3828), 5, + ACTIONS(3566), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(2865), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(3843), 5, + ACTIONS(2875), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52133] = 11, + [52223] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2853), 1, + ACTIONS(2867), 1, anon_sym_cchar, - ACTIONS(2855), 1, + ACTIONS(2869), 1, anon_sym_contained, - ACTIONS(2859), 1, + ACTIONS(2873), 1, anon_sym_contains, - STATE(1206), 1, + STATE(1200), 1, aux_sym__syn_match_repeat1, STATE(1281), 1, sym__syn_arguments_keyword, - STATE(1285), 1, + STATE(1287), 1, sym__syn_arguments_match, - ACTIONS(2857), 2, + ACTIONS(2871), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3553), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2851), 5, + ACTIONS(2899), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(2865), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2861), 5, + ACTIONS(2875), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52177] = 7, + [52267] = 12, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3116), 1, - sym__separator_first, - ACTIONS(3753), 1, - sym_hl_group, - STATE(1313), 1, - sym_hl_groups, - STATE(2909), 1, - sym_at, - ACTIONS(3114), 15, - anon_sym_conceal, + ACTIONS(3691), 1, anon_sym_cchar, + ACTIONS(3693), 1, anon_sym_contained, + ACTIONS(3697), 1, + anon_sym_contains, + ACTIONS(3703), 1, + sym__separator_first, + STATE(780), 1, + sym__syn_hl_pattern, + STATE(1171), 1, + aux_sym__syn_match_repeat1, + STATE(1318), 1, + sym__syn_arguments_keyword, + STATE(1319), 1, + sym__syn_arguments_match, + ACTIONS(3695), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3689), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(3699), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52213] = 7, + [52313] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3846), 1, + ACTIONS(3767), 1, + anon_sym_cterm, + ACTIONS(3773), 1, + anon_sym_gui, + ACTIONS(3777), 1, + anon_sym_font, + STATE(1493), 1, + sym__hl_key_font, + STATE(1511), 1, + sym__hl_key_gui_color, + STATE(1515), 1, + sym__hl_key_gui, + STATE(1517), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1518), 1, + sym__hl_key_start_stop, + STATE(1519), 1, + sym__hl_key_cterm, + ACTIONS(3751), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3769), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3771), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(1175), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3775), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [52365] = 11, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3842), 1, anon_sym_BSLASH, - ACTIONS(3849), 1, - anon_sym_LBRACK, - ACTIONS(3852), 1, + ACTIONS(3844), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3846), 1, + anon_sym_LBRACK2, + ACTIONS(3848), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1203), 1, + STATE(1707), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3543), 2, + anon_sym_COLON, + anon_sym_BSLASH_PIPE, + STATE(1208), 2, aux_sym__pattern_ordinary_atom, - ACTIONS(778), 6, + sym__pattern_atom, + STATE(1235), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3850), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3545), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, anon_sym_QMARK2, - ACTIONS(776), 10, + [52409] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(778), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(776), 16, anon_sym_COLON, + anon_sym_COMMA, + anon_sym_BSLASH, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, + anon_sym_LBRACK2, 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, - [52249] = 11, + [52437] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2853), 1, - anon_sym_cchar, - ACTIONS(2855), 1, - anon_sym_contained, - ACTIONS(2859), 1, - anon_sym_contains, - STATE(1206), 1, - aux_sym__syn_match_repeat1, - STATE(1281), 1, - sym__syn_arguments_keyword, - STATE(1285), 1, - sym__syn_arguments_match, - ACTIONS(2857), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3735), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2851), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2861), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [52293] = 5, + ACTIONS(3608), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(3606), 16, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_BSLASH, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, + [52465] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1333), 1, + STATE(1324), 1, sym_pattern_multi, - ACTIONS(3855), 4, + ACTIONS(3852), 4, anon_sym_STAR2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - ACTIONS(3539), 6, + ACTIONS(3553), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, anon_sym_QMARK2, - ACTIONS(3537), 9, + ACTIONS(3551), 9, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [52325] = 11, + [52497] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3860), 1, - anon_sym_cchar, - ACTIONS(3863), 1, - anon_sym_contained, - ACTIONS(3869), 1, - anon_sym_contains, - STATE(1206), 1, - aux_sym__syn_match_repeat1, - STATE(1281), 1, - sym__syn_arguments_keyword, - STATE(1285), 1, - sym__syn_arguments_match, - ACTIONS(3826), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3866), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3857), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(3872), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [52369] = 12, + ACTIONS(3654), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(3652), 16, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_BSLASH, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, + [52525] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3769), 1, - anon_sym_cchar, - ACTIONS(3771), 1, - anon_sym_contained, - ACTIONS(3775), 1, - anon_sym_contains, - ACTIONS(3824), 1, - sym__separator_first, - STATE(773), 1, - sym__syn_hl_pattern, - STATE(1198), 1, - aux_sym__syn_match_repeat1, - STATE(1297), 1, - sym__syn_arguments_match, - STATE(1311), 1, - sym__syn_arguments_keyword, - ACTIONS(3773), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3767), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(3777), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [52415] = 11, + ACTIONS(3854), 1, + anon_sym_BSLASH, + ACTIONS(3857), 1, + anon_sym_LBRACK2, + ACTIONS(3860), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1148), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1210), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3863), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3595), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(3590), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [52565] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2875), 1, + ACTIONS(3869), 1, anon_sym_cchar, - ACTIONS(2877), 1, + ACTIONS(3872), 1, anon_sym_contained, - ACTIONS(2881), 1, + ACTIONS(3878), 1, anon_sym_contains, - STATE(1200), 1, + STATE(1211), 1, aux_sym__syn_match_repeat1, - STATE(1280), 1, - sym__syn_arguments_match, - STATE(1292), 1, + STATE(1286), 1, sym__syn_arguments_keyword, - ACTIONS(2865), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2879), 2, + STATE(1293), 1, + sym__syn_arguments_match, + ACTIONS(3822), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3875), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(2873), 5, + ACTIONS(3866), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(2883), 5, + ACTIONS(3881), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52459] = 15, + [52609] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3741), 1, - anon_sym_cterm, - ACTIONS(3747), 1, - anon_sym_gui, - ACTIONS(3751), 1, - anon_sym_font, - STATE(1491), 1, - sym__hl_key_font, - STATE(1537), 1, - sym__hl_key_gui_color, - STATE(1544), 1, - sym__hl_key_gui, - STATE(1545), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1547), 1, - sym__hl_key_start_stop, - STATE(1563), 1, - sym__hl_key_cterm, - ACTIONS(3721), 2, + ACTIONS(3884), 1, + anon_sym_BSLASH, + ACTIONS(3887), 1, + anon_sym_LBRACK2, + ACTIONS(3890), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1212), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(778), 6, sym__newline_or_pipe, sym_comment, - ACTIONS(3743), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(3745), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(1193), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(3749), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [52511] = 11, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(776), 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, + [52645] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2853), 1, + ACTIONS(2867), 1, anon_sym_cchar, - ACTIONS(2855), 1, + ACTIONS(2869), 1, anon_sym_contained, - ACTIONS(2859), 1, + ACTIONS(2873), 1, anon_sym_contains, - STATE(1206), 1, + STATE(1200), 1, aux_sym__syn_match_repeat1, STATE(1281), 1, sym__syn_arguments_keyword, - STATE(1285), 1, - sym__syn_arguments_match, - ACTIONS(2857), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3875), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2851), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2861), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [52555] = 11, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2875), 1, - anon_sym_cchar, - ACTIONS(2877), 1, - anon_sym_contained, - ACTIONS(2881), 1, - anon_sym_contains, - STATE(1200), 1, - aux_sym__syn_match_repeat1, - STATE(1280), 1, + STATE(1287), 1, sym__syn_arguments_match, - STATE(1292), 1, - sym__syn_arguments_keyword, - ACTIONS(2879), 2, + ACTIONS(2871), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(3875), 2, + ACTIONS(3731), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(2873), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(2883), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [52599] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3879), 5, - aux_sym__bang_filter_command_argument_token3, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(3877), 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_BANG, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [52627] = 12, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3769), 1, - anon_sym_cchar, - ACTIONS(3771), 1, - anon_sym_contained, - ACTIONS(3775), 1, - anon_sym_contains, - ACTIONS(3779), 1, - sym__separator_first, - STATE(778), 1, - sym__syn_hl_pattern, - STATE(1188), 1, - aux_sym__syn_match_repeat1, - STATE(1297), 1, - sym__syn_arguments_match, - STATE(1311), 1, - sym__syn_arguments_keyword, - ACTIONS(3773), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3767), 5, + ACTIONS(2865), 5, anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - ACTIONS(3777), 5, + ACTIONS(2875), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52673] = 11, + [52689] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3881), 1, + ACTIONS(3656), 1, anon_sym_BSLASH, - ACTIONS(3883), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3885), 1, - anon_sym_LBRACK, - ACTIONS(3887), 1, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(3662), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1694), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3519), 2, - anon_sym_COLON, - anon_sym_BSLASH_PIPE, - STATE(1190), 2, + STATE(1148), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1226), 2, + STATE(1210), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3889), 3, + ACTIONS(3664), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3521), 6, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3612), 4, sym__normal, sym__source, sym_bang, anon_sym_SLASH2, - [52717] = 9, + ACTIONS(3610), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [52729] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3601), 1, + ACTIONS(3608), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(3606), 16, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_BSLASH, - ACTIONS(3605), 1, - anon_sym_LBRACK, - ACTIONS(3607), 1, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_LBRACK2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, aux_sym__pattern_ordinary_atom_token2, - STATE(1142), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1187), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3609), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3645), 4, + [52757] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3608), 6, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_QMARK2, - ACTIONS(3643), 6, + anon_sym_SLASH2, + ACTIONS(3606), 13, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [52757] = 5, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, + [52784] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2940), 1, - anon_sym_contained, - ACTIONS(3891), 1, - anon_sym_COMMA, - STATE(1225), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2938), 16, + ACTIONS(778), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(776), 13, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, + [52811] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1357), 1, + sym_pattern_multi, + ACTIONS(3553), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(3893), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3551), 10, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - 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, - [52788] = 5, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [52842] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2966), 1, + ACTIONS(3378), 1, anon_sym_contained, - ACTIONS(3891), 1, + ACTIONS(3895), 1, anon_sym_COMMA, - STATE(1234), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2964), 16, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + STATE(1219), 1, + aux_sym__syn_match_repeat2, + ACTIONS(3376), 16, + sym__newline_or_pipe, + sym_comment, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -102281,230 +101582,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52819] = 15, + [52873] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3792), 1, + anon_sym_BSLASH, + ACTIONS(3796), 1, + anon_sym_LBRACK2, + ACTIONS(3798), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1191), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1232), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3610), 3, + anon_sym_COLON, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + ACTIONS(3800), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3612), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + [52912] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3723), 1, + ACTIONS(3751), 1, + aux_sym__map_rhs_token4, + ACTIONS(3753), 1, anon_sym_cterm, - ACTIONS(3729), 1, + ACTIONS(3759), 1, anon_sym_gui, - ACTIONS(3733), 1, + ACTIONS(3763), 1, anon_sym_font, - ACTIONS(3893), 1, - anon_sym_NONE, - STATE(1499), 1, - sym__hl_key_font, - STATE(1500), 1, - sym__hl_key_gui_color, - STATE(1501), 1, + STATE(1537), 1, sym__hl_key_gui, - STATE(1502), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1503), 1, - sym__hl_key_start_stop, - STATE(1504), 1, + STATE(1607), 1, sym__hl_key_cterm, - ACTIONS(3725), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(3727), 2, + STATE(1608), 1, + sym__hl_key_start_stop, + STATE(1609), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1620), 1, + sym__hl_key_gui_color, + STATE(1630), 1, + sym__hl_key_font, + ACTIONS(3757), 2, anon_sym_ctermfg, anon_sym_ctermbg, - STATE(1178), 2, + ACTIONS(3898), 2, + anon_sym_start, + anon_sym_stop, + STATE(1226), 2, sym_hl_attribute, aux_sym__hl_body_keys_repeat1, - ACTIONS(3731), 3, + ACTIONS(3761), 3, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, - [52870] = 5, + [52963] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3263), 1, - anon_sym_contained, - ACTIONS(3895), 1, - anon_sym_COMMA, - STATE(1219), 1, - aux_sym__syn_match_repeat2, - ACTIONS(3261), 16, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_conceal, + ACTIONS(3822), 1, + sym__separator_first, + ACTIONS(3903), 1, anon_sym_cchar, + ACTIONS(3906), 1, + anon_sym_contained, + ACTIONS(3912), 1, + anon_sym_contains, + STATE(1222), 1, + aux_sym__syn_match_repeat1, + STATE(1318), 1, + sym__syn_arguments_keyword, + STATE(1319), 1, + sym__syn_arguments_match, + ACTIONS(3909), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(3900), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - anon_sym_contains, + ACTIONS(3915), 5, anon_sym_fold, anon_sym_display, anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [52901] = 3, + [53006] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3588), 6, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(3586), 13, - anon_sym_COLON, + ACTIONS(3918), 1, 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, + ACTIONS(3921), 1, + anon_sym_LBRACK2, + ACTIONS(3924), 1, aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [52928] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3641), 6, - sym__newline_or_pipe, - sym_comment, + STATE(1223), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(778), 4, sym__normal, sym__source, sym_bang, anon_sym_SLASH2, - ACTIONS(3639), 13, + ACTIONS(776), 11, anon_sym_COLON, - anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, 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, - [52955] = 15, + [53041] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3721), 1, - aux_sym__map_rhs_token4, - ACTIONS(3723), 1, + ACTIONS(3753), 1, anon_sym_cterm, - ACTIONS(3729), 1, + ACTIONS(3759), 1, anon_sym_gui, - ACTIONS(3733), 1, + ACTIONS(3763), 1, anon_sym_font, - STATE(1499), 1, - sym__hl_key_font, - STATE(1500), 1, - sym__hl_key_gui_color, - STATE(1501), 1, + ACTIONS(3927), 1, + anon_sym_NONE, + STATE(1537), 1, sym__hl_key_gui, - STATE(1502), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1503), 1, + STATE(1607), 1, + sym__hl_key_cterm, + STATE(1608), 1, sym__hl_key_start_stop, - STATE(1504), 1, + STATE(1609), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1620), 1, + sym__hl_key_gui_color, + STATE(1630), 1, + sym__hl_key_font, + ACTIONS(3755), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3757), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(1178), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3761), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [53092] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3753), 1, + anon_sym_cterm, + ACTIONS(3759), 1, + anon_sym_gui, + ACTIONS(3763), 1, + anon_sym_font, + ACTIONS(3765), 1, + aux_sym__map_rhs_token4, + STATE(1537), 1, + sym__hl_key_gui, + STATE(1607), 1, sym__hl_key_cterm, - ACTIONS(3727), 2, + STATE(1608), 1, + sym__hl_key_start_stop, + STATE(1609), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1620), 1, + sym__hl_key_gui_color, + STATE(1630), 1, + sym__hl_key_font, + ACTIONS(3757), 2, anon_sym_ctermfg, anon_sym_ctermbg, ACTIONS(3898), 2, anon_sym_start, anon_sym_stop, - STATE(1229), 2, + STATE(1226), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3761), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [53143] = 15, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3729), 1, + aux_sym__map_rhs_token4, + ACTIONS(3733), 1, + anon_sym_cterm, + ACTIONS(3742), 1, + anon_sym_gui, + ACTIONS(3748), 1, + anon_sym_font, + STATE(1537), 1, + sym__hl_key_gui, + STATE(1607), 1, + sym__hl_key_cterm, + STATE(1608), 1, + sym__hl_key_start_stop, + STATE(1609), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1620), 1, + sym__hl_key_gui_color, + STATE(1630), 1, + sym__hl_key_font, + ACTIONS(3739), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + ACTIONS(3929), 2, + anon_sym_start, + anon_sym_stop, + STATE(1226), 2, sym_hl_attribute, aux_sym__hl_body_keys_repeat1, - ACTIONS(3731), 3, + ACTIONS(3745), 3, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, - [53006] = 11, + [53194] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3900), 1, + ACTIONS(3654), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(3652), 13, + anon_sym_COLON, anon_sym_BSLASH, - ACTIONS(3902), 1, anon_sym_BSLASH_AMP, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(3906), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1793), 1, - aux_sym__pattern_branch_repeat1, - STATE(1230), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1250), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3519), 3, - anon_sym_COLON, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3908), 3, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, - ACTIONS(3521), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - [53049] = 15, + [53221] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3723), 1, + ACTIONS(3767), 1, anon_sym_cterm, - ACTIONS(3729), 1, + ACTIONS(3773), 1, anon_sym_gui, - ACTIONS(3733), 1, + ACTIONS(3777), 1, anon_sym_font, - ACTIONS(3737), 1, - aux_sym__map_rhs_token4, - STATE(1499), 1, + ACTIONS(3932), 1, + anon_sym_NONE, + STATE(1493), 1, sym__hl_key_font, - STATE(1500), 1, + STATE(1511), 1, sym__hl_key_gui_color, - STATE(1501), 1, + STATE(1515), 1, sym__hl_key_gui, - STATE(1502), 1, + STATE(1517), 1, sym__hl_key_ctermfg_ctermbg, - STATE(1503), 1, + STATE(1518), 1, sym__hl_key_start_stop, - STATE(1504), 1, + STATE(1519), 1, sym__hl_key_cterm, - ACTIONS(3727), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - ACTIONS(3898), 2, + ACTIONS(3769), 2, anon_sym_start, anon_sym_stop, - STATE(1229), 2, + ACTIONS(3771), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(1204), 2, sym_hl_attribute, aux_sym__hl_body_keys_repeat1, - ACTIONS(3731), 3, + ACTIONS(3775), 3, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, - [53100] = 5, + [53272] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2934), 1, + ACTIONS(3378), 1, anon_sym_contained, - ACTIONS(3910), 1, + ACTIONS(3934), 1, anon_sym_COMMA, - STATE(1225), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2932), 16, + STATE(1229), 1, + aux_sym__syn_match_repeat2, + ACTIONS(3376), 16, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_conceal, @@ -102521,177 +101902,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53131] = 9, + [53303] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1378), 1, + sym_pattern_multi, + ACTIONS(3553), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(3937), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3551), 10, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [53334] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3913), 1, + ACTIONS(3939), 1, anon_sym_BSLASH, - ACTIONS(3916), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, + ACTIONS(3941), 1, + anon_sym_BSLASH_AMP, + ACTIONS(3943), 1, + anon_sym_LBRACK2, + ACTIONS(3945), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1190), 2, + STATE(1803), 1, + aux_sym__pattern_branch_repeat1, + STATE(1230), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1226), 2, + STATE(1246), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3611), 3, + ACTIONS(3543), 3, anon_sym_COLON, - anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - ACTIONS(3922), 3, + aux_sym__map_rhs_token4, + ACTIONS(3947), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3616), 6, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3545), 4, sym__normal, sym__source, sym_bang, anon_sym_SLASH2, - [53170] = 9, + [53377] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3783), 1, + ACTIONS(3949), 1, anon_sym_BSLASH, - ACTIONS(3787), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, + ACTIONS(3952), 1, + anon_sym_LBRACK2, + ACTIONS(3955), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1205), 2, + STATE(1191), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1237), 2, + STATE(1232), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3643), 3, + ACTIONS(3590), 3, anon_sym_COLON, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - ACTIONS(3791), 3, + ACTIONS(3958), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3645), 6, + ACTIONS(3595), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_QMARK2, - [53209] = 11, + anon_sym_SLASH2, + [53416] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3826), 1, - sym__separator_first, - ACTIONS(3928), 1, - anon_sym_cchar, - ACTIONS(3931), 1, - anon_sym_contained, - ACTIONS(3937), 1, - anon_sym_contains, - STATE(1228), 1, - aux_sym__syn_match_repeat1, - STATE(1297), 1, - sym__syn_arguments_match, - STATE(1311), 1, - sym__syn_arguments_keyword, - ACTIONS(3934), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(3925), 5, - anon_sym_conceal, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - ACTIONS(3940), 5, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [53252] = 15, + ACTIONS(778), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(776), 13, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, + [53443] = 15, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3701), 1, - aux_sym__map_rhs_token4, - ACTIONS(3703), 1, + ACTIONS(3753), 1, anon_sym_cterm, - ACTIONS(3712), 1, + ACTIONS(3759), 1, anon_sym_gui, - ACTIONS(3718), 1, + ACTIONS(3763), 1, anon_sym_font, - STATE(1499), 1, - sym__hl_key_font, - STATE(1500), 1, - sym__hl_key_gui_color, - STATE(1501), 1, + ACTIONS(3927), 1, + anon_sym_NONE, + STATE(1537), 1, sym__hl_key_gui, - STATE(1502), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1503), 1, - sym__hl_key_start_stop, - STATE(1504), 1, + STATE(1607), 1, sym__hl_key_cterm, - ACTIONS(3709), 2, + STATE(1608), 1, + sym__hl_key_start_stop, + STATE(1609), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1620), 1, + sym__hl_key_gui_color, + STATE(1630), 1, + sym__hl_key_font, + ACTIONS(3757), 2, anon_sym_ctermfg, anon_sym_ctermbg, - ACTIONS(3943), 2, + ACTIONS(3898), 2, anon_sym_start, anon_sym_stop, - STATE(1229), 2, + STATE(1221), 2, sym_hl_attribute, aux_sym__hl_body_keys_repeat1, - ACTIONS(3715), 3, + ACTIONS(3761), 3, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, - [53303] = 5, + [53494] = 9, ACTIONS(3), 1, sym__line_continuation, - STATE(1344), 1, - sym_pattern_multi, - ACTIONS(3539), 4, + ACTIONS(3961), 1, + anon_sym_BSLASH, + ACTIONS(3964), 1, + anon_sym_LBRACK2, + ACTIONS(3967), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1208), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1235), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3590), 3, + anon_sym_COLON, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + ACTIONS(3970), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3595), 6, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_SLASH2, - ACTIONS(3946), 4, + anon_sym_QMARK2, + [53533] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3973), 1, + anon_sym_BSLASH, + ACTIONS(3976), 1, + anon_sym_LBRACK2, + ACTIONS(3979), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1236), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(778), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(776), 11, + anon_sym_COLON, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - ACTIONS(3537), 10, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [53568] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3654), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(3652), 13, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_LBRACK, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, - [53334] = 3, + [53595] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3588), 6, + ACTIONS(3608), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_SLASH2, - ACTIONS(3586), 13, + anon_sym_QMARK2, + ACTIONS(3606), 13, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -102699,82 +102156,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [53361] = 15, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3723), 1, - anon_sym_cterm, - ACTIONS(3729), 1, - anon_sym_gui, - ACTIONS(3733), 1, - anon_sym_font, - ACTIONS(3893), 1, - anon_sym_NONE, - STATE(1499), 1, - sym__hl_key_font, - STATE(1500), 1, - sym__hl_key_gui_color, - STATE(1501), 1, - sym__hl_key_gui, - STATE(1502), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1503), 1, - sym__hl_key_start_stop, - STATE(1504), 1, - sym__hl_key_cterm, - ACTIONS(3727), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - ACTIONS(3898), 2, - anon_sym_start, - anon_sym_stop, - STATE(1224), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(3731), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [53412] = 9, + [53622] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3881), 1, + ACTIONS(3842), 1, anon_sym_BSLASH, - ACTIONS(3885), 1, - anon_sym_LBRACK, - ACTIONS(3887), 1, + ACTIONS(3846), 1, + anon_sym_LBRACK2, + ACTIONS(3848), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1190), 2, + STATE(1208), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1226), 2, + STATE(1235), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3643), 3, + ACTIONS(3610), 3, anon_sym_COLON, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - ACTIONS(3889), 3, + ACTIONS(3850), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3645), 6, + ACTIONS(3612), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, - anon_sym_SLASH2, - [53451] = 5, + anon_sym_QMARK2, + [53661] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2944), 1, + ACTIONS(2962), 1, anon_sym_contained, - ACTIONS(3891), 1, + ACTIONS(3982), 1, anon_sym_COMMA, - STATE(1225), 1, + STATE(1241), 1, aux_sym_hl_groups_repeat1, - ACTIONS(2942), 16, + ACTIONS(2960), 16, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_conceal, @@ -102791,100 +102212,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53482] = 3, + [53692] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(778), 6, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(776), 13, - anon_sym_COLON, + ACTIONS(2905), 1, + anon_sym_contained, + ACTIONS(3982), 1, + anon_sym_COMMA, + STATE(1244), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2903), 16, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, + [53723] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2905), 1, + anon_sym_contained, + ACTIONS(3982), 1, + anon_sym_COMMA, + STATE(1245), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2903), 16, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, + [53754] = 11, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3984), 1, anon_sym_BSLASH, + ACTIONS(3986), 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, + ACTIONS(3988), 1, + anon_sym_LBRACK2, + ACTIONS(3990), 1, aux_sym__pattern_ordinary_atom_token2, + STATE(1800), 1, + aux_sym__pattern_branch_repeat1, + STATE(1218), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1247), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3543), 3, + anon_sym_COLON, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3992), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [53509] = 7, + ACTIONS(3545), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + [53797] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2942), 1, + anon_sym_contained, + ACTIONS(3994), 1, + anon_sym_COMMA, + STATE(1244), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2940), 16, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, + [53828] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2958), 1, + anon_sym_contained, + ACTIONS(3982), 1, + anon_sym_COMMA, + STATE(1244), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2956), 16, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + 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, + [53859] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3948), 1, + ACTIONS(3997), 1, anon_sym_BSLASH, - ACTIONS(3951), 1, - anon_sym_LBRACK, - ACTIONS(3954), 1, + ACTIONS(4000), 1, + anon_sym_LBRACK2, + ACTIONS(4003), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1236), 1, + STATE(1230), 2, aux_sym__pattern_ordinary_atom, - ACTIONS(778), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(776), 11, + sym__pattern_atom, + STATE(1246), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4006), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3590), 4, anon_sym_COLON, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - 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, - [53544] = 9, + ACTIONS(3595), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + [53897] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3957), 1, + ACTIONS(4009), 1, anon_sym_BSLASH, - ACTIONS(3960), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4012), 1, + anon_sym_LBRACK2, + ACTIONS(4015), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1205), 2, + STATE(1218), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1237), 2, + STATE(1247), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3611), 3, - anon_sym_COLON, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - ACTIONS(3966), 3, + ACTIONS(4018), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3616), 6, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3590), 4, + anon_sym_COLON, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(3595), 4, sym__normal, sym__source, sym_bang, anon_sym_QMARK2, - [53583] = 5, + [53935] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2944), 1, + ACTIONS(2962), 1, anon_sym_contained, - ACTIONS(3891), 1, + ACTIONS(4021), 1, anon_sym_COMMA, - STATE(1216), 1, + STATE(1259), 1, aux_sym_hl_groups_repeat1, - ACTIONS(2942), 16, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(2960), 15, + sym__separator_first, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -102899,18 +102431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53614] = 5, + [53965] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3263), 1, + ACTIONS(2942), 1, anon_sym_contained, - ACTIONS(3969), 1, + ACTIONS(2940), 17, anon_sym_COMMA, - STATE(1239), 1, - aux_sym__syn_match_repeat2, - ACTIONS(3261), 16, - sym__newline_or_pipe, - sym_comment, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -102925,49 +102454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53645] = 5, + [53991] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1371), 1, - sym_pattern_multi, - ACTIONS(3539), 4, + ACTIONS(3654), 4, sym__normal, sym__source, sym_bang, anon_sym_QMARK2, - ACTIONS(3972), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(3537), 10, + ACTIONS(3652), 14, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [53676] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(778), 6, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(776), 13, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -102975,142 +102477,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [53703] = 7, + [54017] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3974), 1, + ACTIONS(3984), 1, anon_sym_BSLASH, - ACTIONS(3977), 1, - anon_sym_LBRACK, - ACTIONS(3980), 1, + ACTIONS(3988), 1, + anon_sym_LBRACK2, + ACTIONS(3990), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1242), 1, + STATE(1218), 2, aux_sym__pattern_ordinary_atom, - ACTIONS(778), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(776), 11, + sym__pattern_atom, + STATE(1247), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3992), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3610), 4, anon_sym_COLON, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - 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, - [53738] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3641), 6, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3612), 4, sym__normal, sym__source, sym_bang, anon_sym_QMARK2, - ACTIONS(3639), 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, - [53765] = 11, + [54055] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3983), 1, - anon_sym_BSLASH, - ACTIONS(3985), 1, - anon_sym_BSLASH_AMP, - ACTIONS(3987), 1, - anon_sym_LBRACK, - ACTIONS(3989), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1770), 1, - aux_sym__pattern_branch_repeat1, - STATE(1240), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1264), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3519), 3, - anon_sym_COLON, + ACTIONS(3028), 1, + anon_sym_contained, + ACTIONS(3026), 17, + anon_sym_COMMA, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(3991), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3521), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - [53808] = 15, + 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, + [54081] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3741), 1, - anon_sym_cterm, - ACTIONS(3747), 1, - anon_sym_gui, - ACTIONS(3751), 1, - anon_sym_font, - ACTIONS(3993), 1, - anon_sym_NONE, - STATE(1491), 1, - sym__hl_key_font, - STATE(1537), 1, - sym__hl_key_gui_color, - STATE(1544), 1, - sym__hl_key_gui, - STATE(1545), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1547), 1, - sym__hl_key_start_stop, - STATE(1563), 1, - sym__hl_key_cterm, - ACTIONS(3743), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(3745), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(1184), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(3749), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [53859] = 3, + ACTIONS(2942), 1, + anon_sym_contained, + ACTIONS(4023), 1, + anon_sym_COMMA, + STATE(1253), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2940), 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, + [54111] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2958), 1, + anon_sym_contained, + ACTIONS(4021), 1, + anon_sym_COMMA, + STATE(1253), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2956), 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, + [54141] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3588), 4, + ACTIONS(778), 4, sym__normal, sym__source, sym_bang, anon_sym_QMARK2, - ACTIONS(3586), 14, + ACTIONS(776), 14, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -103118,15 +102602,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [53885] = 3, + [54167] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3032), 1, + ACTIONS(3490), 1, anon_sym_contained, - ACTIONS(3030), 17, + ACTIONS(3488), 17, + sym__newline_or_pipe, + sym_comment, + 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, + [54193] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3494), 1, + anon_sym_contained, + ACTIONS(3492), 17, + sym__newline_or_pipe, + sym_comment, anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -103141,16 +102648,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53911] = 5, + [54219] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2934), 1, + ACTIONS(2905), 1, anon_sym_contained, - ACTIONS(3995), 1, + ACTIONS(4021), 1, anon_sym_COMMA, - STATE(1248), 1, + STATE(1254), 1, aux_sym_hl_groups_repeat1, - ACTIONS(2932), 15, + ACTIONS(2903), 15, sym__separator_first, anon_sym_conceal, anon_sym_cchar, @@ -103166,160 +102673,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [53941] = 13, + [54249] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3998), 1, - anon_sym_a_COLON, - ACTIONS(4000), 1, - anon_sym_LBRACE, - ACTIONS(4002), 1, - aux_sym_identifier_token1, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - sym__scope_dict, - ACTIONS(4010), 1, - sym_scope, - STATE(1527), 1, - sym__curly_braces_name_expression, - STATE(1808), 1, - sym_identifier, - STATE(2809), 1, - sym__const_assignment, - ACTIONS(4004), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1615), 3, - sym_scope_dict, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - STATE(2408), 4, - sym_scoped_identifier, - sym_argument, - sym__ident, - sym_list_assignment, - [53987] = 9, + ACTIONS(2905), 1, + anon_sym_contained, + ACTIONS(4021), 1, + anon_sym_COMMA, + STATE(1253), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2903), 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, + [54279] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4012), 1, + ACTIONS(3939), 1, anon_sym_BSLASH, - ACTIONS(4015), 1, - anon_sym_LBRACK, - ACTIONS(4018), 1, + ACTIONS(3943), 1, + anon_sym_LBRACK2, + ACTIONS(3945), 1, aux_sym__pattern_ordinary_atom_token2, STATE(1230), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1250), 2, + STATE(1246), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4021), 3, + ACTIONS(3947), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3611), 4, + ACTIONS(3610), 4, anon_sym_COLON, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(3616), 4, + ACTIONS(3612), 4, sym__normal, sym__source, sym_bang, anon_sym_SLASH2, - [54025] = 5, + [54317] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2940), 1, - anon_sym_contained, - ACTIONS(4024), 1, - anon_sym_COMMA, - STATE(1248), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2938), 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, - [54055] = 14, + ACTIONS(3753), 1, + anon_sym_cterm, + ACTIONS(3759), 1, + anon_sym_gui, + ACTIONS(3763), 1, + anon_sym_font, + STATE(1537), 1, + sym__hl_key_gui, + STATE(1607), 1, + sym__hl_key_cterm, + STATE(1608), 1, + sym__hl_key_start_stop, + STATE(1609), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1620), 1, + sym__hl_key_gui_color, + STATE(1630), 1, + sym__hl_key_font, + ACTIONS(3755), 2, + anon_sym_start, + anon_sym_stop, + ACTIONS(3757), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + STATE(1179), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3761), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [54365] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3723), 1, + ACTIONS(3767), 1, anon_sym_cterm, - ACTIONS(3729), 1, + ACTIONS(3773), 1, anon_sym_gui, - ACTIONS(3733), 1, + ACTIONS(3777), 1, anon_sym_font, - STATE(1499), 1, + STATE(1493), 1, sym__hl_key_font, - STATE(1500), 1, + STATE(1511), 1, sym__hl_key_gui_color, - STATE(1501), 1, + STATE(1515), 1, sym__hl_key_gui, - STATE(1502), 1, + STATE(1517), 1, sym__hl_key_ctermfg_ctermbg, - STATE(1503), 1, + STATE(1518), 1, sym__hl_key_start_stop, - STATE(1504), 1, + STATE(1519), 1, sym__hl_key_cterm, - ACTIONS(3725), 2, + ACTIONS(3769), 2, anon_sym_start, anon_sym_stop, - ACTIONS(3727), 2, + ACTIONS(3771), 2, anon_sym_ctermfg, anon_sym_ctermbg, - STATE(1175), 2, + STATE(1182), 2, sym_hl_attribute, aux_sym__hl_body_keys_repeat1, - ACTIONS(3731), 3, + ACTIONS(3775), 3, anon_sym_guifg, anon_sym_guibg, anon_sym_guisp, - [54103] = 5, + [54413] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2944), 1, - anon_sym_contained, - ACTIONS(4024), 1, - anon_sym_COMMA, - STATE(1251), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2942), 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, - [54133] = 3, + ACTIONS(4026), 1, + anon_sym_a_COLON, + ACTIONS(4028), 1, + anon_sym_LBRACE, + ACTIONS(4030), 1, + aux_sym_identifier_token1, + ACTIONS(4032), 1, + anon_sym_LBRACK2, + ACTIONS(4036), 1, + sym__scope_dict, + ACTIONS(4038), 1, + sym_scope, + STATE(1546), 1, + sym__curly_braces_name_expression, + STATE(1883), 1, + sym_identifier, + STATE(2754), 1, + sym__const_assignment, + ACTIONS(4034), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1663), 3, + sym_scope_dict, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + STATE(2521), 4, + sym_scoped_identifier, + sym_argument, + sym__ident, + sym_list_assignment, + [54459] = 3, ACTIONS(3), 1, sym__line_continuation, ACTIONS(778), 4, sym__normal, sym__source, sym_bang, - anon_sym_QMARK2, + anon_sym_SLASH2, ACTIONS(776), 14, anon_sym_COLON, anon_sym_BSLASH, @@ -103327,7 +102843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -103335,22 +102851,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [54159] = 3, + [54485] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(778), 4, + ACTIONS(3608), 4, sym__normal, sym__source, sym_bang, anon_sym_SLASH2, - ACTIONS(776), 14, + ACTIONS(3606), 14, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -103358,51 +102874,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [54185] = 9, + [54511] = 14, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3983), 1, - anon_sym_BSLASH, - ACTIONS(3987), 1, - anon_sym_LBRACK, - ACTIONS(3989), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1240), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1264), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3991), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - ACTIONS(3643), 4, - anon_sym_COLON, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3645), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - [54223] = 3, + ACTIONS(3753), 1, + anon_sym_cterm, + ACTIONS(3759), 1, + anon_sym_gui, + ACTIONS(3763), 1, + anon_sym_font, + STATE(1537), 1, + sym__hl_key_gui, + STATE(1607), 1, + sym__hl_key_cterm, + STATE(1608), 1, + sym__hl_key_start_stop, + STATE(1609), 1, + sym__hl_key_ctermfg_ctermbg, + STATE(1620), 1, + sym__hl_key_gui_color, + STATE(1630), 1, + sym__hl_key_font, + ACTIONS(3757), 2, + anon_sym_ctermfg, + anon_sym_ctermbg, + ACTIONS(3898), 2, + anon_sym_start, + anon_sym_stop, + STATE(1225), 2, + sym_hl_attribute, + aux_sym__hl_body_keys_repeat1, + ACTIONS(3761), 3, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + [54559] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3641), 4, + ACTIONS(3654), 4, sym__normal, sym__source, sym_bang, anon_sym_SLASH2, - ACTIONS(3639), 14, + ACTIONS(3652), 14, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -103410,12 +102931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [54249] = 3, + [54585] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2934), 1, + ACTIONS(3494), 1, anon_sym_contained, - ACTIONS(2932), 17, + ACTIONS(3492), 17, anon_sym_COMMA, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, @@ -103433,15 +102954,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54275] = 3, + [54611] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3608), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(3606), 14, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, + [54637] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3493), 1, + ACTIONS(3490), 1, anon_sym_contained, - ACTIONS(3491), 17, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3488), 17, anon_sym_COMMA, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -103456,40 +103000,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54301] = 5, + [54663] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2966), 1, - anon_sym_contained, - ACTIONS(4024), 1, + ACTIONS(4032), 1, + anon_sym_LBRACK2, + ACTIONS(4038), 1, + sym_scope, + ACTIONS(4040), 1, + anon_sym_a_COLON, + ACTIONS(4042), 1, + anon_sym_LBRACE, + ACTIONS(4044), 1, + aux_sym_identifier_token1, + ACTIONS(4046), 1, + sym__scope_dict, + STATE(1514), 1, + sym__curly_braces_name_expression, + STATE(1912), 1, + sym_identifier, + STATE(2911), 1, + sym__const_assignment, + ACTIONS(4034), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(1689), 3, + sym_scope_dict, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + STATE(2455), 4, + sym_scoped_identifier, + sym_argument, + sym__ident, + sym_list_assignment, + [54709] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4050), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(4048), 11, + anon_sym_COLON, anon_sym_COMMA, - STATE(1267), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2964), 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, - [54331] = 3, + anon_sym_BSLASH, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [54734] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4054), 4, + aux_sym_identifier_token1, + anon_sym_PLUS, + anon_sym_DASH, + sym_integer_literal, + ACTIONS(4052), 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_BANG, + sym_float_literal, + anon_sym_LBRACK2, + sym_register, + anon_sym_POUND_LBRACE, + [54759] = 3, ACTIONS(3), 1, sym__line_continuation, ACTIONS(3476), 1, anon_sym_contained, - ACTIONS(3474), 17, - anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(3474), 16, + sym__newline_or_pipe, + sym_comment, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -103504,15 +103099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54357] = 3, + [54784] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3493), 1, + ACTIONS(3028), 1, anon_sym_contained, - ACTIONS(3491), 17, + ACTIONS(3026), 16, + sym__separator_first, anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -103527,131 +103121,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54383] = 13, + [54809] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4010), 1, - sym_scope, - ACTIONS(4026), 1, - anon_sym_a_COLON, - ACTIONS(4028), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - aux_sym_identifier_token1, - ACTIONS(4032), 1, - sym__scope_dict, - STATE(1595), 1, - sym__curly_braces_name_expression, - STATE(1856), 1, - sym_identifier, - STATE(2673), 1, - sym__const_assignment, - ACTIONS(4004), 2, + STATE(1501), 1, + sym_pattern_multi, + ACTIONS(3553), 2, sym__newline_or_pipe, sym_comment, - STATE(1652), 3, - sym_scope_dict, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - STATE(2460), 4, - sym_scoped_identifier, - sym_argument, - sym__ident, - sym_list_assignment, - [54429] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4034), 1, + ACTIONS(4056), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3551), 10, anon_sym_BSLASH, - ACTIONS(4037), 1, - anon_sym_LBRACK, - ACTIONS(4040), 1, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, - STATE(1240), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1264), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4043), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3611), 4, - anon_sym_COLON, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3616), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - [54467] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3476), 1, - anon_sym_contained, - ACTIONS(3474), 17, - sym__newline_or_pipe, - sym_comment, - 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, - [54493] = 9, + [54838] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3900), 1, + ACTIONS(4058), 1, anon_sym_BSLASH, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(3906), 1, + ACTIONS(4060), 1, + anon_sym_BSLASH_AMP, + ACTIONS(4062), 1, + anon_sym_LBRACK2, + ACTIONS(4064), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1230), 2, + STATE(2066), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3545), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1276), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1250), 2, + STATE(1303), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3908), 3, + ACTIONS(3543), 3, + anon_sym_BSLASH_PIPE, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(4066), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3643), 4, - anon_sym_COLON, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3645), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - [54531] = 5, + [54879] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2944), 1, + ACTIONS(3476), 1, anon_sym_contained, - ACTIONS(4024), 1, - anon_sym_COMMA, - STATE(1248), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2942), 15, - sym__separator_first, + ACTIONS(3474), 16, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -103666,128 +103197,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54561] = 3, + [54904] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3641), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(3639), 14, - anon_sym_COLON, + ACTIONS(4068), 1, anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, + ACTIONS(4071), 1, + anon_sym_LBRACK2, + ACTIONS(4074), 1, aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [54587] = 14, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3741), 1, - anon_sym_cterm, - ACTIONS(3747), 1, - anon_sym_gui, - ACTIONS(3751), 1, - anon_sym_font, - STATE(1491), 1, - sym__hl_key_font, - STATE(1537), 1, - sym__hl_key_gui_color, - STATE(1544), 1, - sym__hl_key_gui, - STATE(1545), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1547), 1, - sym__hl_key_start_stop, - STATE(1563), 1, - sym__hl_key_cterm, - ACTIONS(3743), 2, - anon_sym_start, - anon_sym_stop, - ACTIONS(3745), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - STATE(1209), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(3749), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [54635] = 14, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3723), 1, - anon_sym_cterm, - ACTIONS(3729), 1, - anon_sym_gui, - ACTIONS(3733), 1, - anon_sym_font, - STATE(1499), 1, - sym__hl_key_font, - STATE(1500), 1, - sym__hl_key_gui_color, - STATE(1501), 1, - sym__hl_key_gui, - STATE(1502), 1, - sym__hl_key_ctermfg_ctermbg, - STATE(1503), 1, - sym__hl_key_start_stop, - STATE(1504), 1, - sym__hl_key_cterm, - ACTIONS(3727), 2, - anon_sym_ctermfg, - anon_sym_ctermbg, - ACTIONS(3898), 2, - anon_sym_start, - anon_sym_stop, - STATE(1222), 2, - sym_hl_attribute, - aux_sym__hl_body_keys_repeat1, - ACTIONS(3731), 3, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - [54683] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3588), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(3586), 14, - anon_sym_COLON, - anon_sym_BSLASH, + STATE(1279), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(778), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(776), 11, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + anon_sym_minlines, + anon_sym_maxlines, 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, - [54709] = 3, + [54937] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3451), 1, + ACTIONS(3435), 1, anon_sym_contained, - ACTIONS(3449), 16, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3433), 16, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -103802,12 +103245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54734] = 3, + [54962] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3451), 1, + ACTIONS(3472), 1, anon_sym_contained, - ACTIONS(3449), 16, + ACTIONS(3470), 16, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_conceal, @@ -103824,14 +103267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54759] = 3, + [54987] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3463), 1, + ACTIONS(3449), 1, anon_sym_contained, - ACTIONS(3461), 16, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3447), 16, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -103846,68 +103289,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54784] = 5, + [55012] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1484), 1, - sym_pattern_multi, - ACTIONS(3539), 2, + ACTIONS(4079), 6, sym__newline_or_pipe, sym_comment, - ACTIONS(4046), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(3537), 10, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(4077), 11, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_BSLASH, + anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [54813] = 11, + [55037] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4048), 1, - anon_sym_BSLASH, - ACTIONS(4050), 1, - anon_sym_BSLASH_AMP, - ACTIONS(4052), 1, - anon_sym_LBRACK, - ACTIONS(4054), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1999), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3521), 2, + ACTIONS(3457), 1, + anon_sym_contained, + ACTIONS(3455), 16, sym__newline_or_pipe, sym_comment, - STATE(1275), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1305), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3519), 3, - anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(4056), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [54854] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3501), 1, - anon_sym_contained, - ACTIONS(3499), 16, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -103922,36 +103333,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54879] = 3, + [55062] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4060), 6, + ACTIONS(3435), 1, + anon_sym_contained, + ACTIONS(3433), 16, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(4058), 11, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_BSLASH, - 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, - [54904] = 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, + [55087] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2934), 1, + ACTIONS(3472), 1, anon_sym_contained, - ACTIONS(2932), 16, - sym__separator_first, - anon_sym_COMMA, + ACTIONS(3470), 16, + sym__newline_or_pipe, + sym_comment, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -103966,12 +103377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54929] = 3, + [55112] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4064), 1, + ACTIONS(4083), 1, anon_sym_contained, - ACTIONS(4062), 16, + ACTIONS(4081), 16, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_conceal, @@ -103988,12 +103399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54954] = 3, + [55137] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3459), 1, + ACTIONS(3449), 1, anon_sym_contained, - ACTIONS(3457), 16, + ACTIONS(3447), 16, sym__newline_or_pipe, sym_comment, anon_sym_conceal, @@ -104010,14 +103421,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [54979] = 3, + [55162] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3501), 1, - anon_sym_contained, - ACTIONS(3499), 16, + ACTIONS(4079), 6, sym__newline_or_pipe, sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(4077), 11, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_BSLASH, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55187] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3457), 1, + anon_sym_contained, + ACTIONS(3455), 16, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -104032,36 +103465,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [55004] = 3, + [55212] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4060), 6, + ACTIONS(4050), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, sym_bang, anon_sym_SLASH2, - ACTIONS(4058), 11, + ACTIONS(4048), 11, anon_sym_COLON, anon_sym_COMMA, anon_sym_BSLASH, anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [55029] = 3, + [55237] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3455), 1, + ACTIONS(2942), 1, anon_sym_contained, - ACTIONS(3453), 16, - sym__newline_or_pipe, - sym_comment, + ACTIONS(2940), 16, + sym__separator_first, + anon_sym_COMMA, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -104076,12 +103509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [55054] = 3, + [55262] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4064), 1, + ACTIONS(4083), 1, anon_sym_contained, - ACTIONS(4062), 16, + ACTIONS(4081), 16, sym__newline_or_pipe, sym_comment, anon_sym_conceal, @@ -104098,128 +103531,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [55079] = 3, + [55287] = 12, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4058), 1, + anon_sym_BSLASH, + ACTIONS(4062), 1, + anon_sym_LBRACK2, + ACTIONS(4064), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1323), 1, + aux_sym__syn_sync_repeat1, + STATE(1941), 1, + sym__syn_sync_lines, + STATE(2072), 1, + sym_pattern, + STATE(2083), 1, + sym__pattern_branch, + ACTIONS(4085), 2, + anon_sym_minlines, + anon_sym_maxlines, + STATE(1276), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1277), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4066), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55329] = 12, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4087), 1, + anon_sym_BSLASH, + ACTIONS(4089), 1, + anon_sym_LBRACK2, + ACTIONS(4091), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1720), 1, + aux_sym__syn_sync_repeat1, + STATE(1941), 1, + sym__syn_sync_lines, + STATE(2159), 1, + sym_pattern, + STATE(2232), 1, + sym__pattern_branch, + ACTIONS(4085), 2, + anon_sym_minlines, + anon_sym_maxlines, + STATE(1301), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1315), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4093), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55371] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4050), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(4048), 12, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_BSLASH, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55395] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4079), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(4077), 12, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_BSLASH, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55419] = 12, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4087), 1, + anon_sym_BSLASH, + ACTIONS(4089), 1, + anon_sym_LBRACK2, + ACTIONS(4091), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1295), 1, + aux_sym__syn_sync_repeat1, + STATE(1941), 1, + sym__syn_sync_lines, + STATE(2154), 1, + sym_pattern, + STATE(2232), 1, + sym__pattern_branch, + ACTIONS(4085), 2, + anon_sym_minlines, + anon_sym_maxlines, + STATE(1301), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1315), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4093), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55461] = 12, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4087), 1, + anon_sym_BSLASH, + ACTIONS(4089), 1, + anon_sym_LBRACK2, + ACTIONS(4091), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1720), 1, + aux_sym__syn_sync_repeat1, + STATE(1941), 1, + sym__syn_sync_lines, + STATE(2159), 1, + sym_pattern, + STATE(2184), 1, + sym__pattern_branch, + ACTIONS(4085), 2, + anon_sym_minlines, + anon_sym_maxlines, + STATE(1301), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1315), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4093), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55503] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(778), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(776), 14, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, + [55527] = 4, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1682), 1, + sym_pattern_multi, + ACTIONS(4095), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3551), 11, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [55553] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4097), 1, + anon_sym_BSLASH, + ACTIONS(4100), 1, + anon_sym_LBRACK2, + ACTIONS(4103), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1302), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(776), 12, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_minlines, + anon_sym_maxlines, + 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, + [55583] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4106), 1, + anon_sym_BSLASH, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4112), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3595), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1276), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1303), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4115), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3590), 4, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_minlines, + anon_sym_maxlines, + [55619] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4068), 6, - sym__newline_or_pipe, - sym_comment, + ACTIONS(4050), 4, sym__normal, sym__source, sym_bang, anon_sym_SLASH2, - ACTIONS(4066), 11, + ACTIONS(4048), 12, anon_sym_COLON, anon_sym_COMMA, anon_sym_BSLASH, anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, + aux_sym__map_rhs_token4, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [55104] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3455), 1, - anon_sym_contained, - ACTIONS(3453), 16, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - 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, - [55129] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3032), 1, - anon_sym_contained, - ACTIONS(3030), 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, - [55154] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4072), 4, - aux_sym_identifier_token1, - anon_sym_PLUS, - anon_sym_DASH, - sym_integer_literal, - ACTIONS(4070), 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_BANG, - sym_float_literal, - anon_sym_LBRACK, - sym_register, - anon_sym_POUND_LBRACE, - [55179] = 7, + [55643] = 12, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4074), 1, + ACTIONS(4087), 1, anon_sym_BSLASH, - ACTIONS(4077), 1, - anon_sym_LBRACK, - ACTIONS(4080), 1, + ACTIONS(4089), 1, + anon_sym_LBRACK2, + ACTIONS(4091), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1290), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(778), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(776), 11, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, + STATE(1299), 1, + aux_sym__syn_sync_repeat1, + STATE(1941), 1, + sym__syn_sync_lines, + STATE(2154), 1, + sym_pattern, + STATE(2184), 1, + sym__pattern_branch, + ACTIONS(4085), 2, anon_sym_minlines, anon_sym_maxlines, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, + STATE(1301), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1315), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4093), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [55212] = 3, + [55685] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3463), 1, - anon_sym_contained, - ACTIONS(3461), 16, + ACTIONS(4118), 1, + anon_sym_LT, + ACTIONS(4123), 1, + aux_sym__hl_term_list_token1, + STATE(1306), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + ACTIONS(4121), 12, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, + 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, + [55713] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3476), 1, + anon_sym_contained, + ACTIONS(3474), 15, + sym__separator_first, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -104234,14 +103882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [55237] = 3, + [55737] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3459), 1, + ACTIONS(3457), 1, anon_sym_contained, - ACTIONS(3457), 16, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(3455), 15, + sym__separator_first, anon_sym_conceal, anon_sym_cchar, anon_sym_containedin, @@ -104256,41 +103903,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [55262] = 3, + [55761] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4068), 6, + ACTIONS(3654), 2, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(4066), 11, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(3652), 14, anon_sym_BSLASH, - anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, - [55287] = 5, + [55785] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4083), 1, + ACTIONS(4126), 1, anon_sym_LT, - ACTIONS(4088), 1, + ACTIONS(4130), 1, aux_sym__hl_term_list_token1, - STATE(1294), 2, + ACTIONS(4132), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1312), 2, sym__immediate_keycode, aux_sym__hl_term_list, - ACTIONS(4086), 12, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(4128), 10, anon_sym_cterm, anon_sym_start, anon_sym_stop, @@ -104301,20 +103948,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [55315] = 3, + [55815] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3588), 2, + ACTIONS(3608), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(3586), 14, + ACTIONS(3606), 14, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_minlines, anon_sym_maxlines, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -104322,21 +103969,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [55339] = 7, + [55839] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, + ACTIONS(4134), 1, + anon_sym_LT, + ACTIONS(4137), 1, + aux_sym__hl_term_list_token1, + ACTIONS(4140), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1312), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + ACTIONS(4121), 10, + 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, + [55869] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4058), 1, + anon_sym_BSLASH, + ACTIONS(4062), 1, + anon_sym_LBRACK2, + ACTIONS(4064), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3612), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1276), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1303), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4066), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3610), 4, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_minlines, + anon_sym_maxlines, + [55905] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3094), 1, anon_sym_AT, - ACTIONS(4091), 1, + ACTIONS(4142), 1, sym_hl_group, - STATE(1577), 1, + STATE(1544), 1, sym_hl_groups, - STATE(3214), 1, + STATE(2985), 1, sym_at, - ACTIONS(3116), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3114), 10, + ACTIONS(3182), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3184), 10, anon_sym_conceal, anon_sym_cchar, anon_sym_contained, @@ -104346,13 +104044,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - sym__syn_keyword_identifier, - [55371] = 3, + aux_sym__syn_keyword_identifier_token1, + [55937] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4064), 1, + ACTIONS(4087), 1, + anon_sym_BSLASH, + ACTIONS(4089), 1, + anon_sym_LBRACK2, + ACTIONS(4091), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(4144), 1, + anon_sym_BSLASH_AMP, + STATE(2104), 1, + aux_sym__pattern_branch_repeat1, + STATE(1301), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1342), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4093), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + ACTIONS(3543), 4, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_minlines, + anon_sym_maxlines, + [55975] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3435), 1, anon_sym_contained, - ACTIONS(4062), 15, + ACTIONS(3433), 15, sym__separator_first, anon_sym_conceal, anon_sym_cchar, @@ -104368,87 +104094,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [55395] = 12, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4093), 1, - anon_sym_BSLASH, - ACTIONS(4097), 1, - anon_sym_LBRACK, - ACTIONS(4099), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1302), 1, - aux_sym__syn_sync_repeat1, - STATE(1819), 1, - sym__syn_sync_lines, - STATE(2107), 1, - sym_pattern, - STATE(2216), 1, - sym__pattern_branch, - ACTIONS(4095), 2, - anon_sym_minlines, - anon_sym_maxlines, - STATE(1319), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1320), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4101), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [55437] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4103), 1, - anon_sym_BSLASH, - ACTIONS(4106), 1, - anon_sym_LBRACK, - ACTIONS(4109), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1299), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(776), 12, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - 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, - [55467] = 3, + [55999] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4060), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(4058), 12, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_BSLASH, - anon_sym_SEMI, - anon_sym_BSLASH_AMP, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(4146), 1, + sym_hl_group, + STATE(1548), 1, + sym_hl_groups, + STATE(3005), 1, + sym_at, + ACTIONS(3182), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [55491] = 3, + ACTIONS(3184), 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_identifier_token1, + [56031] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3455), 1, + ACTIONS(3472), 1, anon_sym_contained, - ACTIONS(3453), 15, + ACTIONS(3470), 15, sym__separator_first, anon_sym_conceal, anon_sym_cchar, @@ -104464,47 +104140,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extend, anon_sym_keepend, anon_sym_excludenl, - [55515] = 12, + [56055] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4093), 1, - anon_sym_BSLASH, - ACTIONS(4097), 1, - anon_sym_LBRACK, - ACTIONS(4099), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1744), 1, - aux_sym__syn_sync_repeat1, - STATE(1819), 1, - sym__syn_sync_lines, - STATE(2079), 1, - sym_pattern, - STATE(2216), 1, - sym__pattern_branch, - ACTIONS(4095), 2, - anon_sym_minlines, - anon_sym_maxlines, - STATE(1319), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1320), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4101), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [55557] = 5, + ACTIONS(4083), 1, + anon_sym_contained, + ACTIONS(4081), 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, + [56079] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4112), 1, + ACTIONS(4148), 1, anon_sym_LT, - ACTIONS(4116), 1, + ACTIONS(4150), 1, aux_sym__hl_term_list_token1, - STATE(1294), 2, + STATE(1306), 2, sym__immediate_keycode, aux_sym__hl_term_list, - ACTIONS(4114), 12, + ACTIONS(4128), 12, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_cterm, @@ -104517,589 +104184,643 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [55585] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4118), 1, - anon_sym_LT, - ACTIONS(4120), 1, - aux_sym__hl_term_list_token1, - ACTIONS(4122), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1310), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - ACTIONS(4114), 10, - 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, - [55615] = 9, + [56107] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4124), 1, + ACTIONS(4079), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(4077), 12, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_BSLASH, - ACTIONS(4127), 1, - anon_sym_LBRACK, - ACTIONS(4130), 1, + anon_sym_SEMI, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3616), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1275), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1305), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4133), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3611), 4, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - [55651] = 12, + [56131] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3449), 1, + anon_sym_contained, + ACTIONS(3447), 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, + [56155] = 12, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4048), 1, + ACTIONS(4058), 1, anon_sym_BSLASH, - ACTIONS(4052), 1, - anon_sym_LBRACK, - ACTIONS(4054), 1, + ACTIONS(4062), 1, + anon_sym_LBRACK2, + ACTIONS(4064), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1744), 1, + STATE(1720), 1, aux_sym__syn_sync_repeat1, - STATE(1819), 1, + STATE(1941), 1, sym__syn_sync_lines, - STATE(2052), 1, + STATE(2083), 1, sym__pattern_branch, - STATE(2117), 1, + STATE(2140), 1, sym_pattern, - ACTIONS(4095), 2, + ACTIONS(4085), 2, anon_sym_minlines, anon_sym_maxlines, - STATE(1275), 2, + STATE(1276), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1276), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4056), 3, + ACTIONS(4066), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [55693] = 3, + [56197] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(778), 2, + ACTIONS(4050), 6, sym__newline_or_pipe, sym_comment, - ACTIONS(776), 14, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(4048), 9, + anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [55717] = 3, + [56220] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3641), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3639), 14, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + ACTIONS(4156), 1, + anon_sym_cchar, + ACTIONS(4158), 1, + anon_sym_contained, + ACTIONS(4162), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1556), 1, + sym__syn_arguments_keyword, + ACTIONS(4152), 2, anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - 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, - [55741] = 3, + aux_sym__map_rhs_token4, + ACTIONS(4160), 2, + anon_sym_containedin, + anon_sym_nextgroup, + STATE(1345), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4154), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [56255] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4068), 4, + ACTIONS(4079), 6, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, sym_bang, anon_sym_QMARK2, - ACTIONS(4066), 12, + ACTIONS(4077), 9, anon_sym_COLON, - anon_sym_COMMA, anon_sym_BSLASH, - anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [55765] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4136), 1, - anon_sym_LT, - ACTIONS(4139), 1, - aux_sym__hl_term_list_token1, - ACTIONS(4142), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1310), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - ACTIONS(4086), 10, - 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, - [55795] = 3, + [56278] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3459), 1, - anon_sym_contained, - ACTIONS(3457), 15, - sym__separator_first, - anon_sym_conceal, + ACTIONS(4156), 1, anon_sym_cchar, + ACTIONS(4158), 1, + anon_sym_contained, + ACTIONS(4162), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1556), 1, + sym__syn_arguments_keyword, + ACTIONS(4152), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(4160), 2, anon_sym_containedin, anon_sym_nextgroup, + STATE(1346), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4154), 5, + anon_sym_conceal, 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, - [55819] = 12, + [56313] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4048), 1, - anon_sym_BSLASH, - ACTIONS(4052), 1, - anon_sym_LBRACK, - ACTIONS(4054), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1306), 1, - aux_sym__syn_sync_repeat1, - STATE(1819), 1, - sym__syn_sync_lines, - STATE(2052), 1, - sym__pattern_branch, - STATE(2112), 1, - sym_pattern, - ACTIONS(4095), 2, - anon_sym_minlines, - anon_sym_maxlines, - STATE(1275), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1276), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4056), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [55861] = 3, + ACTIONS(19), 1, + anon_sym_DOT2, + ACTIONS(21), 1, + anon_sym_PLUS, + ACTIONS(23), 1, + anon_sym_DOLLAR, + ACTIONS(4164), 1, + anon_sym_QMARK, + ACTIONS(4168), 1, + anon_sym_SLASH, + ACTIONS(4166), 2, + sym_mark, + sym_integer_literal, + ACTIONS(25), 3, + anon_sym_BSLASH_SLASH, + anon_sym_BSLASH_QMARK, + anon_sym_BSLASH_AMP, + STATE(2068), 5, + sym__range_marker, + sym_current_line, + sym_next_line, + sym_last_line, + sym_previous_pattern, + [56348] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3463), 1, - anon_sym_contained, - ACTIONS(3461), 15, - sym__separator_first, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3182), 1, + aux_sym__map_rhs_token4, + ACTIONS(4170), 1, + sym_hl_group, + STATE(1632), 1, + sym_hl_groups, + STATE(3020), 1, + sym_at, + ACTIONS(3184), 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, - anon_sym_contains, - anon_sym_fold, - anon_sym_display, - anon_sym_extend, - anon_sym_keepend, - anon_sym_excludenl, - [55885] = 3, + aux_sym__syn_keyword_identifier_token1, + [56379] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3451), 1, - anon_sym_contained, - ACTIONS(3449), 15, - sym__separator_first, - anon_sym_conceal, + ACTIONS(4174), 1, anon_sym_cchar, + ACTIONS(4176), 1, + anon_sym_contained, + ACTIONS(4180), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1568), 1, + sym__syn_arguments_keyword, + ACTIONS(4152), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4178), 2, anon_sym_containedin, anon_sym_nextgroup, + STATE(1335), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4172), 5, + anon_sym_conceal, 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, - [55909] = 3, + [56414] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3501), 1, + ACTIONS(4174), 1, + anon_sym_cchar, + ACTIONS(4176), 1, anon_sym_contained, - ACTIONS(3499), 15, - sym__separator_first, + ACTIONS(4180), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1568), 1, + sym__syn_arguments_keyword, + ACTIONS(4152), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4178), 2, + anon_sym_containedin, + anon_sym_nextgroup, + STATE(1332), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4172), 5, anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [56449] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4185), 1, anon_sym_cchar, + ACTIONS(4188), 1, + anon_sym_contained, + ACTIONS(4194), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1568), 1, + sym__syn_arguments_keyword, + ACTIONS(4191), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(4197), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1332), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4182), 5, + anon_sym_conceal, 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, - [55933] = 9, + [56484] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4048), 1, - anon_sym_BSLASH, - ACTIONS(4052), 1, - anon_sym_LBRACK, - ACTIONS(4054), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3645), 2, + ACTIONS(4050), 6, sym__newline_or_pipe, sym_comment, - STATE(1275), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1305), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4056), 3, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(4048), 9, + anon_sym_COLON, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3643), 4, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - [55969] = 12, + [56507] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4093), 1, + ACTIONS(4079), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(4077), 9, + anon_sym_COLON, anon_sym_BSLASH, - ACTIONS(4097), 1, - anon_sym_LBRACK, - ACTIONS(4099), 1, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, - STATE(1744), 1, - aux_sym__syn_sync_repeat1, - STATE(1819), 1, - sym__syn_sync_lines, - STATE(2079), 1, - sym_pattern, - STATE(2145), 1, - sym__pattern_branch, - ACTIONS(4095), 2, - anon_sym_minlines, - anon_sym_maxlines, - STATE(1319), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1320), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4101), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56011] = 7, + [56530] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(4144), 1, - sym_hl_group, - STATE(1552), 1, - sym_hl_groups, - STATE(2953), 1, - sym_at, - ACTIONS(3116), 2, + ACTIONS(4174), 1, + anon_sym_cchar, + ACTIONS(4176), 1, + anon_sym_contained, + ACTIONS(4180), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1568), 1, + sym__syn_arguments_keyword, + ACTIONS(4178), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4199), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(3114), 10, + STATE(1332), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4172), 5, anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [56565] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4174), 1, anon_sym_cchar, + ACTIONS(4176), 1, anon_sym_contained, + ACTIONS(4180), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1568), 1, + sym__syn_arguments_keyword, + ACTIONS(4178), 2, anon_sym_containedin, anon_sym_nextgroup, + ACTIONS(4201), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1331), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4172), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - sym__syn_keyword_identifier, - [56043] = 4, + [56600] = 9, ACTIONS(3), 1, sym__line_continuation, - STATE(1605), 1, - sym_pattern_multi, - ACTIONS(4146), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(3537), 11, - anon_sym_BSLASH, + ACTIONS(521), 1, + anon_sym_DOT2, + ACTIONS(523), 1, + anon_sym_PLUS, + ACTIONS(525), 1, + anon_sym_DOLLAR, + ACTIONS(4203), 1, + anon_sym_QMARK, + ACTIONS(4207), 1, + anon_sym_SLASH, + ACTIONS(4205), 2, + sym_mark, + sym_integer_literal, + ACTIONS(527), 3, + anon_sym_BSLASH_SLASH, + anon_sym_BSLASH_QMARK, anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [56069] = 10, + STATE(2094), 5, + sym__range_marker, + sym_current_line, + sym_next_line, + sym_last_line, + sym_previous_pattern, + [56635] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4093), 1, + ACTIONS(4087), 1, anon_sym_BSLASH, - ACTIONS(4097), 1, - anon_sym_LBRACK, - ACTIONS(4099), 1, + ACTIONS(4089), 1, + anon_sym_LBRACK2, + ACTIONS(4091), 1, aux_sym__pattern_ordinary_atom_token2, - ACTIONS(4148), 1, - anon_sym_BSLASH_AMP, - STATE(2063), 1, - aux_sym__pattern_branch_repeat1, - STATE(1319), 2, + STATE(1301), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1329), 2, + STATE(1342), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4101), 3, + ACTIONS(4093), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3519), 4, + ACTIONS(3610), 5, + anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_minlines, anon_sym_maxlines, - [56107] = 3, + [56668] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4068), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(4066), 12, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_BSLASH, - anon_sym_SEMI, + ACTIONS(521), 1, + anon_sym_DOT2, + ACTIONS(523), 1, + anon_sym_PLUS, + ACTIONS(525), 1, + anon_sym_DOLLAR, + ACTIONS(4209), 1, + anon_sym_QMARK, + ACTIONS(4211), 1, + anon_sym_SLASH, + ACTIONS(4205), 2, + sym_mark, + sym_integer_literal, + ACTIONS(527), 3, + anon_sym_BSLASH_SLASH, + anon_sym_BSLASH_QMARK, anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [56131] = 3, + STATE(2094), 5, + sym__range_marker, + sym_current_line, + sym_next_line, + sym_last_line, + sym_previous_pattern, + [56703] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4060), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(4058), 12, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(3606), 15, anon_sym_BSLASH, - anon_sym_SEMI, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_LBRACK, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, - [56155] = 12, + [56724] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4093), 1, + ACTIONS(3652), 15, anon_sym_BSLASH, - ACTIONS(4097), 1, - anon_sym_LBRACK, - ACTIONS(4099), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1317), 1, - aux_sym__syn_sync_repeat1, - STATE(1819), 1, - sym__syn_sync_lines, - STATE(2107), 1, - sym_pattern, - STATE(2145), 1, - sym__pattern_branch, - ACTIONS(4095), 2, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_minlines, anon_sym_maxlines, - STATE(1319), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1320), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4101), 3, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, - [56197] = 8, + [56745] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4093), 1, + ACTIONS(4213), 1, anon_sym_BSLASH, - ACTIONS(4097), 1, - anon_sym_LBRACK, - ACTIONS(4099), 1, + ACTIONS(4216), 1, + anon_sym_LBRACK2, + ACTIONS(4219), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1319), 2, + STATE(1301), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1329), 2, + STATE(1342), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4101), 3, + ACTIONS(4222), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3643), 5, + ACTIONS(3590), 5, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_minlines, anon_sym_maxlines, - [56230] = 3, + [56778] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4068), 6, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(4066), 9, - anon_sym_COLON, + ACTIONS(4225), 1, anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, + ACTIONS(4228), 1, + anon_sym_LBRACK2, + ACTIONS(4231), 1, aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [56253] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(776), 15, - anon_sym_BSLASH, + STATE(1343), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(778), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(776), 9, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, 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, - [56274] = 5, + [56809] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4150), 1, - anon_sym_LT, - ACTIONS(4152), 1, - aux_sym__hl_term_list_token1, - STATE(1328), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - ACTIONS(4114), 11, + ACTIONS(4156), 1, + anon_sym_cchar, + ACTIONS(4158), 1, + anon_sym_contained, + ACTIONS(4162), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1556), 1, + sym__syn_arguments_keyword, + ACTIONS(4160), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4201), 2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - 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, - [56301] = 5, + STATE(1325), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4154), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [56844] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4154), 1, + ACTIONS(4237), 1, + anon_sym_cchar, + ACTIONS(4240), 1, + anon_sym_contained, + ACTIONS(4246), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1556), 1, + sym__syn_arguments_keyword, + ACTIONS(4197), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(4243), 2, + anon_sym_containedin, + anon_sym_nextgroup, + STATE(1345), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4234), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [56879] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4156), 1, + anon_sym_cchar, + ACTIONS(4158), 1, + anon_sym_contained, + ACTIONS(4162), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1556), 1, + sym__syn_arguments_keyword, + ACTIONS(4160), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4199), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(1345), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4154), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [56914] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4249), 1, anon_sym_LT, - ACTIONS(4157), 1, + ACTIONS(4251), 1, aux_sym__hl_term_list_token1, - STATE(1328), 2, + STATE(1350), 2, sym__immediate_keycode, aux_sym__hl_term_list, - ACTIONS(4086), 11, + ACTIONS(4128), 11, aux_sym__map_rhs_token4, anon_sym_cterm, anon_sym_start, @@ -105111,61 +104832,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [56328] = 8, + [56941] = 11, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4160), 1, + ACTIONS(3543), 1, + anon_sym_BSLASH_PIPE, + ACTIONS(4253), 1, anon_sym_BSLASH, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4166), 1, + ACTIONS(4255), 1, + anon_sym_BSLASH_AMP, + ACTIONS(4257), 1, + anon_sym_LBRACK2, + ACTIONS(4259), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1319), 2, + STATE(2258), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3545), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1351), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1329), 2, + STATE(1398), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4169), 3, + ACTIONS(4261), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - ACTIONS(3611), 5, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - [56361] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(533), 1, - anon_sym_DOT2, - ACTIONS(535), 1, - anon_sym_PLUS, - ACTIONS(537), 1, - anon_sym_DOLLAR, - ACTIONS(4172), 1, - anon_sym_QMARK, - ACTIONS(4176), 1, - anon_sym_SLASH, - ACTIONS(4174), 2, - sym_mark, - sym_integer_literal, - ACTIONS(539), 3, - anon_sym_BSLASH_SLASH, - anon_sym_BSLASH_QMARK, - anon_sym_BSLASH_AMP, - STATE(2075), 5, - sym__range_marker, - sym_current_line, - sym_next_line, - sym_last_line, - sym_previous_pattern, - [56396] = 2, + [56980] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3639), 15, + ACTIONS(776), 15, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, @@ -105173,7 +104871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_minlines, anon_sym_maxlines, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -105181,175 +104879,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56417] = 3, + [57001] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4263), 1, + anon_sym_LT, + ACTIONS(4266), 1, + aux_sym__hl_term_list_token1, + STATE(1350), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + ACTIONS(4121), 11, + aux_sym__map_rhs_token4, + 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, + [57028] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4068), 6, + STATE(1742), 1, + sym_pattern_multi, + ACTIONS(3553), 2, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(4066), 9, - anon_sym_COLON, + ACTIONS(4269), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3551), 8, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56440] = 3, + [57055] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4060), 6, + STATE(1388), 1, + aux_sym_filename_repeat1, + ACTIONS(4275), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4271), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4273), 8, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(4058), 9, - anon_sym_COLON, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [57081] = 4, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1813), 1, + sym_pattern_multi, + ACTIONS(4277), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3551), 9, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_RPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56463] = 2, + [57105] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3586), 15, + ACTIONS(4253), 1, anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, + ACTIONS(4257), 1, + anon_sym_LBRACK2, + ACTIONS(4281), 1, aux_sym__pattern_ordinary_atom_token2, + STATE(2328), 1, + sym__pattern_branch, + STATE(2650), 1, + sym_pattern, + ACTIONS(4279), 2, + anon_sym_grouphere, + anon_sym_groupthere, + STATE(1348), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1351), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4261), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56484] = 9, + [57141] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(533), 1, - anon_sym_DOT2, - ACTIONS(535), 1, - anon_sym_PLUS, - ACTIONS(537), 1, - anon_sym_DOLLAR, - ACTIONS(4178), 1, - anon_sym_QMARK, - ACTIONS(4180), 1, - anon_sym_SLASH, - ACTIONS(4174), 2, - sym_mark, - sym_integer_literal, - ACTIONS(539), 3, - anon_sym_BSLASH_SLASH, - anon_sym_BSLASH_QMARK, - anon_sym_BSLASH_AMP, - STATE(2075), 5, - sym__range_marker, - sym_current_line, - sym_next_line, - sym_last_line, - sym_previous_pattern, - [56519] = 3, + ACTIONS(4285), 1, + anon_sym_text, + STATE(1375), 1, + aux_sym_filename_repeat1, + ACTIONS(4287), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4283), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4273), 7, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [57169] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4060), 6, + ACTIONS(4293), 1, + anon_sym_text, + STATE(1406), 1, + aux_sym_filename_repeat1, + ACTIONS(4295), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4289), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 7, sym__newline_or_pipe, sym_comment, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [57197] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4050), 4, sym__normal, sym__source, sym_bang, - anon_sym_SLASH2, - ACTIONS(4058), 9, + anon_sym_QMARK2, + ACTIONS(4048), 10, anon_sym_COLON, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, + aux_sym__map_rhs_token4, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56542] = 5, + [57219] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1728), 1, - sym_pattern_multi, - ACTIONS(3539), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4182), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(3537), 8, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + STATE(1358), 1, + aux_sym_filename_repeat1, + ACTIONS(4302), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4297), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4300), 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, - [56569] = 11, + aux_sym__map_rhs_token4, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [57245] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3519), 1, + STATE(1358), 1, + aux_sym_filename_repeat1, + ACTIONS(4309), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4305), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4307), 8, anon_sym_BSLASH_PIPE, - ACTIONS(4184), 1, + aux_sym__map_rhs_token4, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [57271] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4079), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_QMARK2, + ACTIONS(4077), 10, + anon_sym_COLON, anon_sym_BSLASH, - ACTIONS(4186), 1, anon_sym_BSLASH_AMP, - ACTIONS(4188), 1, - anon_sym_LBRACK, - ACTIONS(4190), 1, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, - STATE(2213), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3521), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1337), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1360), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4192), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56608] = 7, + [57293] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4194), 1, + ACTIONS(4201), 1, + aux_sym__map_rhs_token4, + ACTIONS(4313), 1, + anon_sym_cchar, + ACTIONS(4315), 1, + anon_sym_contained, + ACTIONS(4319), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1687), 1, + sym__syn_arguments_keyword, + ACTIONS(4317), 2, + anon_sym_containedin, + anon_sym_nextgroup, + STATE(1368), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4311), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [57327] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(778), 1, + sym__separator, + ACTIONS(4321), 1, anon_sym_BSLASH, - ACTIONS(4197), 1, - anon_sym_LBRACK, - ACTIONS(4200), 1, + ACTIONS(4324), 1, + anon_sym_LBRACK2, + ACTIONS(4327), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1339), 1, + STATE(1362), 1, aux_sym__pattern_ordinary_atom, - ACTIONS(778), 2, - sym__newline_or_pipe, - sym_comment, ACTIONS(776), 9, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, @@ -105360,313 +105162,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56639] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(19), 1, - anon_sym_DOT2, - ACTIONS(21), 1, - anon_sym_PLUS, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(4203), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_SLASH, - ACTIONS(4205), 2, - sym_mark, - sym_integer_literal, - ACTIONS(25), 3, - anon_sym_BSLASH_SLASH, - anon_sym_BSLASH_QMARK, - anon_sym_BSLASH_AMP, - STATE(2042), 5, - sym__range_marker, - sym_current_line, - sym_next_line, - sym_last_line, - sym_previous_pattern, - [56674] = 5, + [57357] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1385), 1, - aux_sym_filename_repeat1, - ACTIONS(4213), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4209), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4211), 8, + ACTIONS(4330), 1, + anon_sym_COMMA, + STATE(1363), 1, + aux_sym__hl_attr_list_repeat1, + ACTIONS(4335), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4333), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [56700] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3877), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3879), 12, - anon_sym_LT, - 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, - [56722] = 5, + [57383] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1351), 1, - aux_sym_filename_repeat1, - ACTIONS(4217), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4215), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4211), 8, + ACTIONS(4337), 1, + anon_sym_COMMA, + STATE(1409), 1, + aux_sym__hl_attr_list_repeat1, + ACTIONS(4339), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4341), 10, sym__newline_or_pipe, sym_comment, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [56748] = 3, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + [57409] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4060), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(4058), 10, - anon_sym_COLON, + STATE(1819), 1, + sym_pattern_multi, + ACTIONS(4343), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3551), 9, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56770] = 3, + [57433] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4068), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_SLASH2, - ACTIONS(4066), 10, - anon_sym_COLON, + ACTIONS(4345), 1, anon_sym_BSLASH, + ACTIONS(4347), 1, anon_sym_BSLASH_AMP, + ACTIONS(4349), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2366), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3543), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, + STATE(1365), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1432), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4353), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [56792] = 8, + [57469] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4221), 1, + ACTIONS(4359), 1, + aux_sym__syn_keyword_identifier_token2, + STATE(1396), 1, + aux_sym__syn_keyword_identifier_repeat1, + ACTIONS(4357), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4355), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_conceal, anon_sym_cchar, - ACTIONS(4225), 1, - sym__syn_keyword_identifier, - STATE(1399), 1, - aux_sym__syn_keyword_repeat2, - STATE(1580), 1, - sym__syn_arguments_keyword, - ACTIONS(4223), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4227), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4219), 6, - anon_sym_conceal, - anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [56824] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1351), 1, - aux_sym_filename_repeat1, - ACTIONS(4217), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4215), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4229), 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, - [56850] = 5, + [57495] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4231), 1, - anon_sym_COMMA, - STATE(1349), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2938), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(4152), 1, aux_sym__map_rhs_token4, - ACTIONS(2940), 10, - anon_sym_conceal, + ACTIONS(4313), 1, anon_sym_cchar, + ACTIONS(4315), 1, anon_sym_contained, + ACTIONS(4319), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1687), 1, + sym__syn_arguments_keyword, + ACTIONS(4317), 2, anon_sym_containedin, anon_sym_nextgroup, + STATE(1389), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4311), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - sym__syn_keyword_identifier, - [56876] = 5, + [57529] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4233), 1, - anon_sym_COMMA, - STATE(1349), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2932), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(4152), 1, aux_sym__map_rhs_token4, - ACTIONS(2934), 10, - anon_sym_conceal, + ACTIONS(4313), 1, anon_sym_cchar, + ACTIONS(4315), 1, anon_sym_contained, + ACTIONS(4319), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1687), 1, + sym__syn_arguments_keyword, + ACTIONS(4317), 2, anon_sym_containedin, anon_sym_nextgroup, + STATE(1390), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4311), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - sym__syn_keyword_identifier, - [56902] = 8, + [57563] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4221), 1, - anon_sym_cchar, - ACTIONS(4236), 1, - sym__syn_keyword_identifier, - STATE(1353), 1, - aux_sym__syn_keyword_repeat2, - STATE(1580), 1, - sym__syn_arguments_keyword, - ACTIONS(4223), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4238), 2, + ACTIONS(4361), 1, + anon_sym_BSLASH, + ACTIONS(4365), 1, + anon_sym_text, + STATE(1886), 1, + sym_filename, + ACTIONS(4367), 2, + aux_sym_filename_token1, + aux_sym_filename_token3, + ACTIONS(4369), 2, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(4363), 7, sym__newline_or_pipe, sym_comment, - ACTIONS(4219), 6, - anon_sym_conceal, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [57593] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4371), 1, + aux_sym__syn_keyword_identifier_token2, + STATE(1383), 1, + aux_sym__syn_keyword_identifier_repeat1, + ACTIONS(4357), 2, anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4355), 10, + 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, - [56934] = 5, + [57619] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1351), 1, - aux_sym_filename_repeat1, - ACTIONS(4245), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4240), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4243), 8, + ACTIONS(778), 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, - [56960] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4248), 1, + ACTIONS(776), 12, anon_sym_BSLASH, - ACTIONS(4251), 1, - anon_sym_LBRACK, - ACTIONS(4254), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1352), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(776), 10, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, + anon_sym_LBRACK2, 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, - [56988] = 8, + [57641] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4260), 1, - anon_sym_cchar, - ACTIONS(4266), 1, - sym__syn_keyword_identifier, - STATE(1353), 1, - aux_sym__syn_keyword_repeat2, - STATE(1580), 1, - sym__syn_arguments_keyword, - ACTIONS(4263), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4269), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4257), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [57020] = 2, + ACTIONS(4293), 1, + anon_sym_text, + STATE(1403), 1, + aux_sym_filename_repeat1, + ACTIONS(4375), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4373), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4291), 7, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [57669] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3879), 14, + ACTIONS(3820), 14, anon_sym_LT, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, @@ -105681,21 +105424,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [57040] = 6, + [57689] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4273), 1, + ACTIONS(4293), 1, anon_sym_text, - STATE(1357), 1, + STATE(1399), 1, aux_sym_filename_repeat1, - ACTIONS(4275), 2, + ACTIONS(4379), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4271), 3, + ACTIONS(4377), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4229), 7, + ACTIONS(4291), 7, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_icon, @@ -105703,130 +105446,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [57068] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(778), 1, - sym__separator, - ACTIONS(4277), 1, - anon_sym_BSLASH, - ACTIONS(4280), 1, - anon_sym_LBRACK, - ACTIONS(4283), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1356), 1, - aux_sym__pattern_ordinary_atom, - ACTIONS(776), 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, - [57098] = 6, + [57717] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4289), 1, - anon_sym_text, - STATE(1357), 1, + STATE(1358), 1, aux_sym_filename_repeat1, - ACTIONS(4291), 2, + ACTIONS(4309), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4286), 3, + ACTIONS(4305), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4243), 7, + ACTIONS(4291), 8, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [57126] = 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [57743] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4294), 1, + ACTIONS(4381), 1, anon_sym_BSLASH, - ACTIONS(4297), 1, - anon_sym_LBRACK, - ACTIONS(4300), 1, + ACTIONS(4384), 1, + anon_sym_LBRACK2, + ACTIONS(4387), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1358), 1, + STATE(1377), 1, aux_sym__pattern_ordinary_atom, ACTIONS(776), 10, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, 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_RPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [57154] = 3, + [57771] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(778), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(776), 12, + ACTIONS(4050), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(4048), 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__map_rhs_token4, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [57176] = 9, + [57793] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4394), 1, + aux_sym__syn_keyword_identifier_token2, + STATE(1379), 1, + aux_sym__syn_keyword_identifier_repeat1, + ACTIONS(4392), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4390), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [57819] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4303), 1, + ACTIONS(4079), 4, + sym__normal, + sym__source, + sym_bang, + anon_sym_SLASH2, + ACTIONS(4077), 10, + anon_sym_COLON, anon_sym_BSLASH, - ACTIONS(4306), 1, - anon_sym_LBRACK, - ACTIONS(4309), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3611), 2, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - ACTIONS(3616), 2, + aux_sym__map_rhs_token4, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [57841] = 10, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4345), 1, + anon_sym_BSLASH, + ACTIONS(4349), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2549), 1, + sym__pattern_branch, + STATE(2825), 1, + sym_pattern, + ACTIONS(4397), 2, + anon_sym_grouphere, + anon_sym_groupthere, + STATE(1365), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1366), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4353), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [57877] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1359), 1, + aux_sym_filename_repeat1, + ACTIONS(4401), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4399), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4291), 8, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [57903] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4407), 1, + aux_sym__syn_keyword_identifier_token2, + STATE(1401), 1, + aux_sym__syn_keyword_identifier_repeat1, + ACTIONS(4405), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4403), 10, sym__newline_or_pipe, sym_comment, - STATE(1337), 2, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [57929] = 11, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3543), 1, + anon_sym_BSLASH_PIPE, + ACTIONS(3545), 1, + sym__separator, + ACTIONS(4409), 1, + anon_sym_BSLASH, + ACTIONS(4411), 1, + anon_sym_BSLASH_AMP, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2358), 1, + aux_sym__pattern_branch_repeat1, + STATE(1385), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1360), 2, + STATE(1479), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4312), 3, + ACTIONS(4417), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [57210] = 5, + [57967] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4315), 1, + ACTIONS(3553), 1, + sym__separator, + STATE(1824), 1, + sym_pattern_multi, + ACTIONS(4419), 4, + anon_sym_STAR2, + aux_sym_pattern_multi_token1, + aux_sym_pattern_multi_token2, + aux_sym_pattern_multi_token3, + ACTIONS(3551), 8, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [57993] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1405), 1, + aux_sym_filename_repeat1, + ACTIONS(4423), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4421), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 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, + [58019] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4425), 1, anon_sym_COMMA, - STATE(1393), 1, + STATE(1395), 1, aux_sym__hl_attr_list_repeat1, - ACTIONS(4317), 2, + ACTIONS(4429), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4319), 10, - sym__newline_or_pipe, - sym_comment, + ACTIONS(4427), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -105835,82 +105706,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [57236] = 5, + [58045] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1404), 1, + aux_sym_filename_repeat1, + ACTIONS(4433), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4431), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 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, + [58071] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4231), 1, - anon_sym_COMMA, - STATE(1348), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2942), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(4197), 1, aux_sym__map_rhs_token4, - ACTIONS(2944), 10, - anon_sym_conceal, + ACTIONS(4438), 1, anon_sym_cchar, + ACTIONS(4441), 1, anon_sym_contained, + ACTIONS(4447), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1687), 1, + sym__syn_arguments_keyword, + ACTIONS(4444), 2, anon_sym_containedin, anon_sym_nextgroup, + STATE(1389), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4435), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - sym__syn_keyword_identifier, - [57262] = 5, + [58105] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4231), 1, - anon_sym_COMMA, - STATE(1349), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2942), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(4199), 1, aux_sym__map_rhs_token4, - ACTIONS(2944), 10, - anon_sym_conceal, + ACTIONS(4313), 1, anon_sym_cchar, + ACTIONS(4315), 1, anon_sym_contained, + ACTIONS(4319), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1687), 1, + sym__syn_arguments_keyword, + ACTIONS(4317), 2, anon_sym_containedin, anon_sym_nextgroup, + STATE(1389), 2, + sym__syn_keyword_identifier, + aux_sym__syn_keyword_repeat2, + ACTIONS(4311), 5, + anon_sym_conceal, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - sym__syn_keyword_identifier, - [57288] = 5, + [58139] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4321), 1, - anon_sym_COMMA, - STATE(1364), 1, - aux_sym__hl_attr_list_repeat1, - ACTIONS(4326), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4324), 10, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - [57314] = 5, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(4450), 1, + sym_hl_group, + STATE(1746), 1, + sym_hl_groups, + STATE(3210), 1, + sym_at, + ACTIONS(3184), 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_identifier_token1, + [58167] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1370), 1, + STATE(1376), 1, aux_sym_filename_repeat1, - ACTIONS(4332), 2, + ACTIONS(4454), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4328), 3, + ACTIONS(4452), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4330), 8, + ACTIONS(4273), 8, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_line, @@ -105919,63 +105820,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_priority, anon_sym_file, - [57340] = 6, + [58193] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4334), 1, - anon_sym_text, - STATE(1357), 1, - aux_sym_filename_repeat1, - ACTIONS(4275), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4271), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4211), 7, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [57368] = 6, + ACTIONS(3818), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3820), 12, + anon_sym_LT, + 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, + [58215] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4334), 1, + ACTIONS(4293), 1, anon_sym_text, - STATE(1355), 1, + STATE(1410), 1, aux_sym_filename_repeat1, - ACTIONS(4338), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4336), 3, - aux_sym__bang_filter_command_argument_token4, + ACTIONS(4458), 2, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4211), 7, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(4456), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 7, + sym__newline_or_pipe, + sym_comment, anon_sym_icon, anon_sym_linehl, anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [57396] = 5, + [58243] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4315), 1, + ACTIONS(4425), 1, anon_sym_COMMA, - STATE(1361), 1, + STATE(1363), 1, aux_sym__hl_attr_list_repeat1, - ACTIONS(4340), 2, + ACTIONS(4339), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4342), 10, - sym__newline_or_pipe, - sym_comment, + ACTIONS(4341), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -105984,85 +105882,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [57422] = 10, + [58269] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4460), 1, + aux_sym__syn_keyword_identifier_token2, + STATE(1379), 1, + aux_sym__syn_keyword_identifier_repeat1, + ACTIONS(4405), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4403), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [58295] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4285), 1, + anon_sym_text, + STATE(1394), 1, + aux_sym_filename_repeat1, + ACTIONS(4464), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4462), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4273), 7, + sym__newline_or_pipe, + sym_comment, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [58323] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4344), 1, + ACTIONS(4466), 1, anon_sym_BSLASH, - ACTIONS(4348), 1, - anon_sym_LBRACK, - ACTIONS(4350), 1, + ACTIONS(4469), 1, + anon_sym_LBRACK2, + ACTIONS(4472), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2406), 1, - sym__pattern_branch, - STATE(2611), 1, - sym_pattern, - ACTIONS(4346), 2, - anon_sym_grouphere, - anon_sym_groupthere, - STATE(1405), 2, + ACTIONS(3590), 2, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + ACTIONS(3595), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1351), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1407), 2, + STATE(1398), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4352), 3, + ACTIONS(4475), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [57458] = 5, + [58357] = 6, ACTIONS(3), 1, sym__line_continuation, - STATE(1391), 1, + ACTIONS(4481), 1, + anon_sym_text, + STATE(1399), 1, aux_sym_filename_repeat1, - ACTIONS(4356), 2, + ACTIONS(4483), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4354), 3, + ACTIONS(4478), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4211), 8, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [57484] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4060), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(4058), 10, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + ACTIONS(4300), 7, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [57506] = 5, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [58385] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4358), 1, + ACTIONS(4337), 1, anon_sym_COMMA, - STATE(1396), 1, + STATE(1364), 1, aux_sym__hl_attr_list_repeat1, - ACTIONS(4340), 2, + ACTIONS(4429), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4342), 10, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(4427), 10, + sym__newline_or_pipe, + sym_comment, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -106071,86 +105993,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [57532] = 3, + [58411] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4068), 4, - sym__normal, - sym__source, - sym_bang, - anon_sym_QMARK2, - ACTIONS(4066), 10, - anon_sym_COLON, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [57554] = 10, + ACTIONS(4486), 1, + aux_sym__syn_keyword_identifier_token2, + STATE(1401), 1, + aux_sym__syn_keyword_identifier_repeat1, + ACTIONS(4392), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4390), 10, + 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, + [58437] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(4345), 1, anon_sym_BSLASH, - ACTIONS(4362), 1, - anon_sym_BSLASH_AMP, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4349), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2326), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3519), 2, - anon_sym_BSLASH_PIPE, - anon_sym_BSLASH_RPAREN, - STATE(1380), 2, + STATE(2519), 1, + sym__pattern_branch, + STATE(2825), 1, + sym_pattern, + ACTIONS(4489), 2, + anon_sym_grouphere, + anon_sym_groupthere, + STATE(1365), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1443), 2, + STATE(1366), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4368), 3, + ACTIONS(4353), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [57590] = 6, + [58473] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4273), 1, + ACTIONS(4491), 1, anon_sym_text, - STATE(1379), 1, + STATE(1399), 1, aux_sym_filename_repeat1, - ACTIONS(4372), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4370), 3, - aux_sym__bang_filter_command_argument_token4, + ACTIONS(4379), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4229), 7, - sym__newline_or_pipe, - sym_comment, + ACTIONS(4377), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4307), 7, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_icon, anon_sym_linehl, anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [57618] = 5, + [58501] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1347), 1, + STATE(1404), 1, aux_sym_filename_repeat1, - ACTIONS(4376), 2, + ACTIONS(4496), 2, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4374), 3, + ACTIONS(4493), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4211), 8, + ACTIONS(4300), 8, sym__newline_or_pipe, sym_comment, anon_sym_line, @@ -106159,65 +106083,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_priority, anon_sym_file, - [57644] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4334), 1, - anon_sym_text, - STATE(1375), 1, - aux_sym_filename_repeat1, - ACTIONS(4380), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4378), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4211), 7, - sym__newline_or_pipe, - sym_comment, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [57672] = 6, + [58527] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4334), 1, - anon_sym_text, - STATE(1379), 1, + STATE(1404), 1, aux_sym_filename_repeat1, - ACTIONS(4372), 2, + ACTIONS(4433), 2, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4370), 3, + ACTIONS(4431), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4211), 7, + ACTIONS(4307), 8, sym__newline_or_pipe, sym_comment, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [57700] = 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [58553] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4289), 1, + ACTIONS(4491), 1, anon_sym_text, - STATE(1379), 1, + STATE(1410), 1, aux_sym_filename_repeat1, - ACTIONS(4385), 2, + ACTIONS(4458), 2, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4382), 3, + ACTIONS(4456), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4243), 7, + ACTIONS(4307), 7, sym__newline_or_pipe, sym_comment, anon_sym_icon, @@ -106225,1133 +106126,954 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [57728] = 4, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1753), 1, - sym_pattern_multi, - ACTIONS(4388), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(3537), 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, - [57752] = 8, + [58581] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4392), 1, - anon_sym_cchar, - ACTIONS(4396), 1, - sym__syn_keyword_identifier, - STATE(1382), 1, - aux_sym__syn_keyword_repeat2, - STATE(1560), 1, - sym__syn_arguments_keyword, - ACTIONS(4238), 2, + ACTIONS(4499), 1, + anon_sym_COMMA, + STATE(1416), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2958), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2956), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(4394), 2, + anon_sym_conceal, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4390), 6, - anon_sym_conceal, - anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [57784] = 8, + [58607] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4401), 1, - anon_sym_cchar, - ACTIONS(4407), 1, - sym__syn_keyword_identifier, - STATE(1382), 1, - aux_sym__syn_keyword_repeat2, - STATE(1560), 1, - sym__syn_arguments_keyword, - ACTIONS(4269), 2, + ACTIONS(4499), 1, + anon_sym_COMMA, + STATE(1412), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2962), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2960), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(4404), 2, + anon_sym_conceal, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4398), 6, - anon_sym_conceal, - anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [57816] = 3, + [58633] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3641), 2, + ACTIONS(4501), 1, + anon_sym_COMMA, + STATE(1409), 1, + aux_sym__hl_attr_list_repeat1, + ACTIONS(4335), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4333), 10, sym__newline_or_pipe, sym_comment, - ACTIONS(3639), 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, - [57838] = 3, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + [58659] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3588), 2, + ACTIONS(4481), 1, + anon_sym_text, + STATE(1410), 1, + aux_sym_filename_repeat1, + ACTIONS(4507), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4504), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4300), 7, sym__newline_or_pipe, sym_comment, - ACTIONS(3586), 12, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [58687] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4510), 1, anon_sym_BSLASH, + ACTIONS(4513), 1, + anon_sym_LBRACK2, + ACTIONS(4516), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1411), 1, + aux_sym__pattern_ordinary_atom, + ACTIONS(776), 10, 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, - [57860] = 5, + [58715] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1391), 1, - aux_sym_filename_repeat1, - ACTIONS(4356), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4354), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4229), 8, + ACTIONS(4499), 1, + anon_sym_COMMA, + STATE(1416), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2905), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2903), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [57886] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4392), 1, + anon_sym_conceal, anon_sym_cchar, - ACTIONS(4396), 1, - sym__syn_keyword_identifier, - STATE(1382), 1, - aux_sym__syn_keyword_repeat2, - STATE(1560), 1, - sym__syn_arguments_keyword, - ACTIONS(4394), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4410), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(4390), 6, - anon_sym_conceal, - anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [57918] = 8, + [58741] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4392), 1, + ACTIONS(4519), 1, + anon_sym_COMMA, + STATE(1415), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2958), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2956), 10, + sym__newline_or_pipe, + sym_comment, + anon_sym_conceal, anon_sym_cchar, - ACTIONS(4412), 1, - sym__syn_keyword_identifier, - STATE(1381), 1, - aux_sym__syn_keyword_repeat2, - STATE(1560), 1, - sym__syn_arguments_keyword, - ACTIONS(4394), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4410), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(4390), 6, - anon_sym_conceal, - anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [57950] = 10, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4184), 1, - anon_sym_BSLASH, - ACTIONS(4188), 1, - anon_sym_LBRACK, - ACTIONS(4416), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2260), 1, - sym__pattern_branch, - STATE(2869), 1, - sym_pattern, - ACTIONS(4414), 2, - anon_sym_grouphere, - anon_sym_groupthere, - STATE(1337), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1338), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4192), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [57986] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4184), 1, - anon_sym_BSLASH, - ACTIONS(4188), 1, - anon_sym_LBRACK, - ACTIONS(4190), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3643), 2, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - ACTIONS(3645), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1337), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1360), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4192), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [58020] = 5, + [58767] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3539), 1, - sym__separator, - STATE(1756), 1, - sym_pattern_multi, - ACTIONS(4418), 4, - anon_sym_STAR2, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, - ACTIONS(3537), 8, + ACTIONS(4365), 1, + anon_sym_text, + ACTIONS(4521), 1, 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, - [58046] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1391), 1, - aux_sym_filename_repeat1, - ACTIONS(4423), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4420), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4243), 8, + STATE(1889), 1, + sym_filename, + ACTIONS(4523), 2, + aux_sym_filename_token1, + aux_sym_filename_token3, + ACTIONS(4525), 2, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(4363), 7, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [58072] = 11, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3519), 1, - anon_sym_BSLASH_PIPE, - ACTIONS(3521), 1, - sym__separator, - ACTIONS(4426), 1, - anon_sym_BSLASH, - ACTIONS(4428), 1, - anon_sym_BSLASH_AMP, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2296), 1, - aux_sym__pattern_branch_repeat1, - STATE(1390), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1442), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4434), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [58110] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4436), 1, - anon_sym_COMMA, - STATE(1393), 1, - aux_sym__hl_attr_list_repeat1, - ACTIONS(4326), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4324), 10, - sym__newline_or_pipe, - sym_comment, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - [58136] = 5, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [58797] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4231), 1, + ACTIONS(4527), 1, anon_sym_COMMA, - STATE(1363), 1, + STATE(1415), 1, aux_sym_hl_groups_repeat1, - ACTIONS(2964), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(2966), 10, + ACTIONS(2942), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2940), 10, + 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, - sym__syn_keyword_identifier, - [58162] = 8, + [58823] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4392), 1, - anon_sym_cchar, - ACTIONS(4439), 1, - sym__syn_keyword_identifier, - STATE(1386), 1, - aux_sym__syn_keyword_repeat2, - STATE(1560), 1, - sym__syn_arguments_keyword, - ACTIONS(4227), 2, + ACTIONS(4530), 1, + anon_sym_COMMA, + STATE(1416), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2942), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2940), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(4394), 2, + anon_sym_conceal, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4390), 6, - anon_sym_conceal, - anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [58194] = 5, + [58849] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4358), 1, + ACTIONS(4519), 1, anon_sym_COMMA, - STATE(1364), 1, - aux_sym__hl_attr_list_repeat1, - ACTIONS(4317), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4319), 10, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - [58220] = 10, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4344), 1, - anon_sym_BSLASH, - ACTIONS(4348), 1, - anon_sym_LBRACK, - ACTIONS(4350), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2487), 1, - sym__pattern_branch, - STATE(2611), 1, - sym_pattern, - ACTIONS(4441), 2, - anon_sym_grouphere, - anon_sym_groupthere, - STATE(1405), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1407), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4352), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [58256] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4445), 1, - anon_sym_text, - STATE(1366), 1, - aux_sym_filename_repeat1, - ACTIONS(4447), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4443), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4330), 7, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [58284] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4221), 1, - anon_sym_cchar, - ACTIONS(4236), 1, - sym__syn_keyword_identifier, - STATE(1353), 1, - aux_sym__syn_keyword_repeat2, - STATE(1580), 1, - sym__syn_arguments_keyword, - ACTIONS(4223), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4410), 2, + STATE(1413), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2905), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2903), 10, sym__newline_or_pipe, sym_comment, - ACTIONS(4219), 6, anon_sym_conceal, - anon_sym_contained, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [58316] = 5, + [58875] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4449), 1, + ACTIONS(4519), 1, anon_sym_COMMA, - STATE(1411), 1, + STATE(1415), 1, aux_sym_hl_groups_repeat1, - ACTIONS(2964), 2, + ACTIONS(2905), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2903), 10, sym__newline_or_pipe, sym_comment, - ACTIONS(2966), 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, - sym__syn_keyword_identifier, - [58342] = 8, + [58901] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4221), 1, + ACTIONS(4499), 1, + anon_sym_COMMA, + STATE(1407), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2905), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2903), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_conceal, anon_sym_cchar, - ACTIONS(4451), 1, - sym__syn_keyword_identifier, - STATE(1350), 1, - aux_sym__syn_keyword_repeat2, - STATE(1580), 1, - sym__syn_arguments_keyword, - ACTIONS(4223), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4410), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4219), 6, - anon_sym_conceal, - anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [58374] = 7, + [58927] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4453), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4457), 1, - anon_sym_text, - STATE(1879), 1, - sym_filename, - ACTIONS(4459), 2, - aux_sym_filename_token1, - aux_sym_filename_token3, - ACTIONS(4461), 2, - aux_sym_filename_token2, - aux_sym_filename_token4, - ACTIONS(4455), 7, + ACTIONS(4535), 1, + anon_sym_BSLASH_AMP, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2384), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3543), 2, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [58404] = 5, + anon_sym_BSLASH_RPAREN, + STATE(1353), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1431), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4541), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [58963] = 9, ACTIONS(3), 1, sym__line_continuation, - STATE(1343), 1, - aux_sym_filename_repeat1, - ACTIONS(4465), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4463), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4330), 8, + ACTIONS(4253), 1, + anon_sym_BSLASH, + ACTIONS(4257), 1, + anon_sym_LBRACK2, + ACTIONS(4259), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3610), 2, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + ACTIONS(3612), 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, - [58430] = 6, + STATE(1351), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1398), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4261), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [58997] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4445), 1, - anon_sym_text, - STATE(1378), 1, - aux_sym_filename_repeat1, - ACTIONS(4469), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4467), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4330), 7, + ACTIONS(4519), 1, + anon_sym_COMMA, + STATE(1418), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2962), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2960), 10, sym__newline_or_pipe, sym_comment, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [58458] = 4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [59023] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1767), 1, - sym_pattern_multi, - ACTIONS(4471), 4, + ACTIONS(3654), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3652), 12, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, anon_sym_STAR2, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, - ACTIONS(3537), 9, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [59045] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3608), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(3606), 12, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_LBRACK, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, - [58482] = 7, + [59067] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4457), 1, - anon_sym_text, - ACTIONS(4473), 1, + ACTIONS(4545), 1, anon_sym_BSLASH, - STATE(1820), 1, + ACTIONS(4547), 1, + sym_bang, + STATE(1842), 1, + aux_sym_runtime_statement_repeat1, + STATE(2004), 1, + sym__runtime_where, + STATE(2015), 1, sym_filename, - ACTIONS(4475), 2, + ACTIONS(4549), 2, aux_sym_filename_token1, aux_sym_filename_token3, - ACTIONS(4477), 2, + ACTIONS(4551), 2, aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(4455), 7, - sym__newline_or_pipe, - sym_comment, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [58512] = 10, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4344), 1, - anon_sym_BSLASH, - ACTIONS(4348), 1, - anon_sym_LBRACK, - ACTIONS(4350), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(4479), 1, - anon_sym_BSLASH_AMP, - STATE(2319), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3519), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1405), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1447), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4352), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [58548] = 5, + ACTIONS(4543), 4, + anon_sym_START, + anon_sym_OPT, + anon_sym_PACK, + anon_sym_ALL, + [59100] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4449), 1, - anon_sym_COMMA, - STATE(1409), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2938), 2, + ACTIONS(4335), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4333), 11, sym__newline_or_pipe, sym_comment, - ACTIONS(2940), 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, - sym__syn_keyword_identifier, - [58574] = 5, + anon_sym_COMMA, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + [59121] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4481), 1, + ACTIONS(2942), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2940), 11, anon_sym_COMMA, - STATE(1409), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2932), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(2934), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, 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, - sym__syn_keyword_identifier, - [58600] = 5, + [59142] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4449), 1, - anon_sym_COMMA, - STATE(1408), 1, - aux_sym_hl_groups_repeat1, ACTIONS(2942), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2940), 11, sym__newline_or_pipe, sym_comment, - ACTIONS(2944), 10, + anon_sym_COMMA, 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, - sym__syn_keyword_identifier, - [58626] = 5, + [59163] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4449), 1, - anon_sym_COMMA, - STATE(1409), 1, - aux_sym_hl_groups_repeat1, - ACTIONS(2942), 2, + ACTIONS(776), 13, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, + [59182] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3028), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3026), 11, sym__newline_or_pipe, sym_comment, - ACTIONS(2944), 10, + anon_sym_COMMA, 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, - sym__syn_keyword_identifier, - [58652] = 8, + [59203] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(4553), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4556), 1, + anon_sym_LBRACK2, + ACTIONS(4559), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1380), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1443), 2, + STATE(1431), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3643), 3, + ACTIONS(3590), 3, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_BSLASH_RPAREN, - ACTIONS(4368), 3, + ACTIONS(4562), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [58683] = 9, + [59234] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4486), 1, + ACTIONS(4565), 1, anon_sym_BSLASH, - ACTIONS(4488), 1, - sym_bang, - STATE(1827), 1, - aux_sym_runtime_statement_repeat1, - STATE(1949), 1, - sym__runtime_where, - STATE(2089), 1, - sym_filename, - ACTIONS(4490), 2, - aux_sym_filename_token1, - aux_sym_filename_token3, - ACTIONS(4492), 2, - aux_sym_filename_token2, - aux_sym_filename_token4, - ACTIONS(4484), 4, - anon_sym_START, - anon_sym_OPT, - anon_sym_PACK, - anon_sym_ALL, - [58716] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1415), 1, - aux_sym_filename_repeat1, - ACTIONS(4496), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4494), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4211), 7, - aux_sym__map_rhs_token4, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [58741] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1418), 1, - aux_sym_filename_repeat1, - ACTIONS(4500), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4498), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4229), 7, + ACTIONS(4568), 1, + anon_sym_LBRACK2, + ACTIONS(4571), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1365), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1432), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3590), 3, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [58766] = 3, + ACTIONS(4574), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [59265] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3030), 3, - sym__newline_or_pipe, - sym_comment, + ACTIONS(3028), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3026), 11, anon_sym_COMMA, - ACTIONS(3032), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, 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, - sym__syn_keyword_identifier, - [58787] = 5, + [59286] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(1451), 1, - aux_sym_filename_repeat1, - ACTIONS(4504), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4502), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4330), 7, + ACTIONS(3820), 13, + anon_sym_LT, aux_sym__map_rhs_token4, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [58812] = 5, + 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, + [59305] = 10, ACTIONS(3), 1, sym__line_continuation, - STATE(1418), 1, - aux_sym_filename_repeat1, - ACTIONS(4509), 2, - aux_sym_filename_token5, + ACTIONS(4577), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(4579), 1, + anon_sym_BSLASH, + ACTIONS(4583), 1, + anon_sym_LTexpr_GT, + ACTIONS(4585), 1, + anon_sym_LT2, + STATE(1454), 1, + aux_sym_map_statement_repeat1, + STATE(1750), 1, + sym_keycode, + STATE(2038), 1, + sym__map_lhs, + STATE(2927), 1, + sym__map_definition, + ACTIONS(4581), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [59340] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4589), 1, aux_sym_filename_token7, - ACTIONS(4506), 3, + STATE(1457), 1, + aux_sym_filename_repeat1, + ACTIONS(4307), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4587), 4, aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4243), 7, - aux_sym__map_rhs_token4, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [58837] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4457), 1, - anon_sym_text, - ACTIONS(4512), 1, + ACTIONS(4491), 5, anon_sym_BSLASH, - STATE(1879), 1, - sym_filename, - ACTIONS(4514), 2, aux_sym_filename_token1, - aux_sym_filename_token3, - ACTIONS(4516), 2, aux_sym_filename_token2, + aux_sym_filename_token3, aux_sym_filename_token4, - ACTIONS(4455), 6, - aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [58866] = 6, + [59367] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4289), 1, - anon_sym_text, - STATE(1420), 1, - aux_sym_filename_repeat1, - ACTIONS(4521), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4518), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4243), 6, + ACTIONS(4591), 1, + anon_sym_LBRACK, + ACTIONS(3457), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3455), 10, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [58893] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2932), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_COMMA, - ACTIONS(2934), 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, - sym__syn_keyword_identifier, - [58914] = 6, + [59390] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4273), 1, - anon_sym_text, - STATE(1420), 1, - aux_sym_filename_repeat1, - ACTIONS(4526), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4524), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4229), 6, + ACTIONS(4345), 1, + anon_sym_BSLASH, + ACTIONS(4349), 1, + anon_sym_LBRACK2, + ACTIONS(4351), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1365), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1432), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3610), 3, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [58941] = 6, + ACTIONS(4353), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [59421] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4334), 1, - anon_sym_text, - STATE(1420), 1, - aux_sym_filename_repeat1, - ACTIONS(4526), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4524), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4211), 6, + ACTIONS(4577), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(4579), 1, + anon_sym_BSLASH, + ACTIONS(4583), 1, + anon_sym_LTexpr_GT, + ACTIONS(4585), 1, + anon_sym_LT2, + STATE(1480), 1, + aux_sym_map_statement_repeat1, + STATE(1750), 1, + sym_keycode, + STATE(2042), 1, + sym__map_lhs, + STATE(2927), 1, + sym__map_definition, + ACTIONS(4593), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [59456] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4595), 1, + anon_sym_COMMA, + STATE(1440), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2942), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2940), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [59481] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4598), 1, + aux_sym__syn_keyword_identifier_token2, + STATE(1467), 1, + aux_sym__syn_keyword_identifier_repeat1, + ACTIONS(4357), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4355), 9, aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [58968] = 6, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [59506] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4530), 1, - aux_sym_filename_token7, - STATE(1436), 1, + STATE(1442), 1, aux_sym_filename_repeat1, - ACTIONS(4211), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4528), 4, + ACTIONS(4300), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(4600), 2, aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4603), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4334), 5, + ACTIONS(4481), 5, anon_sym_BSLASH, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [58995] = 6, + [59533] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4334), 1, - anon_sym_text, - STATE(1422), 1, - aux_sym_filename_repeat1, - ACTIONS(4534), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4532), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4211), 6, - aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [59022] = 6, + ACTIONS(4606), 1, + anon_sym_BSLASH, + ACTIONS(4608), 1, + sym_bang, + STATE(1822), 1, + aux_sym_runtime_statement_repeat1, + STATE(2029), 1, + sym_filename, + STATE(2030), 1, + sym__runtime_where, + ACTIONS(4610), 2, + aux_sym_filename_token1, + aux_sym_filename_token3, + ACTIONS(4612), 2, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(4543), 4, + anon_sym_START, + anon_sym_OPT, + anon_sym_PACK, + anon_sym_ALL, + [59566] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4538), 1, - aux_sym_filename_token7, - STATE(1435), 1, + STATE(1442), 1, aux_sym_filename_repeat1, - ACTIONS(4211), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4536), 4, + ACTIONS(4307), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(4614), 2, aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4616), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4334), 5, + ACTIONS(4491), 5, anon_sym_BSLASH, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [59049] = 9, + [59593] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4540), 1, + ACTIONS(4618), 1, anon_sym_BSLASH, - ACTIONS(4542), 1, + ACTIONS(4620), 1, sym_bang, - STATE(1803), 1, + STATE(1929), 1, aux_sym_runtime_statement_repeat1, - STATE(1922), 1, - sym_filename, - STATE(1952), 1, + STATE(2062), 1, sym__runtime_where, - ACTIONS(4544), 2, + STATE(2109), 1, + sym_filename, + ACTIONS(4622), 2, aux_sym_filename_token1, aux_sym_filename_token3, - ACTIONS(4546), 2, + ACTIONS(4624), 2, aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(4484), 4, + ACTIONS(4543), 4, anon_sym_START, anon_sym_OPT, anon_sym_PACK, anon_sym_ALL, - [59082] = 6, + [59626] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4445), 1, - anon_sym_text, - STATE(1423), 1, + ACTIONS(3652), 13, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, + [59645] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1447), 1, aux_sym_filename_repeat1, - ACTIONS(4550), 2, + ACTIONS(4629), 2, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(4548), 3, + ACTIONS(4626), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4330), 6, + ACTIONS(4300), 7, aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [59109] = 9, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [59670] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3645), 1, - sym__separator, - ACTIONS(4426), 1, + ACTIONS(3652), 13, anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3643), 2, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - STATE(1390), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1442), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4434), 3, + anon_sym_STAR2, + anon_sym_LBRACK2, + 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, - [59142] = 3, + [59689] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3588), 1, - sym__separator, - ACTIONS(3586), 12, + STATE(1447), 1, + aux_sym_filename_repeat1, + ACTIONS(4634), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4632), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4307), 7, + aux_sym__map_rhs_token4, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [59714] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3606), 13, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, 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, - [59163] = 3, + [59733] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3641), 1, - sym__separator, - ACTIONS(3639), 12, + ACTIONS(4533), 1, + anon_sym_BSLASH, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1353), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1431), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3610), 3, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_BSLASH_RPAREN, + ACTIONS(4541), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [59764] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3606), 13, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -107359,176 +107081,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [59184] = 10, + [59783] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4636), 1, + anon_sym_COMMA, + STATE(1440), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2958), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2956), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [59808] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4552), 1, + ACTIONS(4577), 1, aux_sym__bang_filter_command_argument_token1, - ACTIONS(4554), 1, + ACTIONS(4579), 1, anon_sym_BSLASH, - ACTIONS(4558), 1, + ACTIONS(4583), 1, anon_sym_LTexpr_GT, - ACTIONS(4560), 1, + ACTIONS(4585), 1, anon_sym_LT2, - STATE(1445), 1, + STATE(1735), 1, aux_sym_map_statement_repeat1, - STATE(1701), 1, + STATE(1750), 1, sym_keycode, - STATE(1933), 1, + STATE(2038), 1, sym__map_lhs, - STATE(2788), 1, + STATE(2735), 1, sym__map_definition, - ACTIONS(4556), 5, + ACTIONS(4638), 5, anon_sym_LTbuffer_GT, anon_sym_LTnowait_GT, anon_sym_LTsilent_GT, anon_sym_LTunique_GT, anon_sym_LTscript_GT, - [59219] = 6, + [59843] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3612), 1, + sym__separator, + ACTIONS(4409), 1, + anon_sym_BSLASH, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(3610), 2, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + STATE(1385), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1479), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4417), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [59876] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4162), 1, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4642), 1, + anon_sym_cchar, + ACTIONS(4644), 1, + anon_sym_contained, + STATE(1327), 1, + sym__syn_keyword_identifier, + STATE(1570), 1, + aux_sym__syn_keyword_repeat1, + STATE(1749), 1, + sym__syn_arguments_keyword, + ACTIONS(4646), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4640), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [59909] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4564), 1, + ACTIONS(4651), 1, aux_sym_filename_token7, - STATE(1424), 1, + STATE(1457), 1, aux_sym_filename_repeat1, - ACTIONS(4330), 2, + ACTIONS(4300), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4562), 4, + ACTIONS(4648), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4445), 5, + ACTIONS(4481), 5, anon_sym_BSLASH, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [59246] = 9, + [59936] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4636), 1, + anon_sym_COMMA, + STATE(1474), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2962), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2960), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [59961] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4566), 1, + STATE(1442), 1, + aux_sym_filename_repeat1, + ACTIONS(4291), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(4614), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4616), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4293), 5, anon_sym_BSLASH, - ACTIONS(4568), 1, - sym_bang, - STATE(1773), 1, - aux_sym_runtime_statement_repeat1, - STATE(1938), 1, - sym__runtime_where, - STATE(2000), 1, - sym_filename, - ACTIONS(4570), 2, aux_sym_filename_token1, - aux_sym_filename_token3, - ACTIONS(4572), 2, aux_sym_filename_token2, + aux_sym_filename_token3, aux_sym_filename_token4, - ACTIONS(4484), 4, - anon_sym_START, - anon_sym_OPT, - anon_sym_PACK, - anon_sym_ALL, - [59279] = 6, + [59988] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4530), 1, + ACTIONS(4589), 1, aux_sym_filename_token7, - STATE(1436), 1, + STATE(1457), 1, aux_sym_filename_repeat1, - ACTIONS(4229), 2, + ACTIONS(4291), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4528), 4, + ACTIONS(4587), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4273), 5, + ACTIONS(4293), 5, anon_sym_BSLASH, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [59306] = 6, + [60015] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4577), 1, + ACTIONS(4656), 1, aux_sym_filename_token7, STATE(1436), 1, aux_sym_filename_repeat1, - ACTIONS(4243), 2, + ACTIONS(4291), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4574), 4, + ACTIONS(4654), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4289), 5, + ACTIONS(4293), 5, anon_sym_BSLASH, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token3, aux_sym_filename_token4, - [59333] = 10, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4552), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4554), 1, - anon_sym_BSLASH, - ACTIONS(4558), 1, - anon_sym_LTexpr_GT, - ACTIONS(4560), 1, - anon_sym_LT2, - STATE(1460), 1, - aux_sym_map_statement_repeat1, - STATE(1701), 1, - sym_keycode, - STATE(1988), 1, - sym__map_lhs, - STATE(2788), 1, - sym__map_definition, - ACTIONS(4580), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [59368] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4344), 1, - anon_sym_BSLASH, - ACTIONS(4348), 1, - anon_sym_LBRACK, - ACTIONS(4350), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1405), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1447), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3643), 3, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(4352), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [59399] = 2, + [60042] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3586), 13, + ACTIONS(3654), 1, + sym__separator, + ACTIONS(3652), 12, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -107536,16 +107296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [59418] = 2, + [60063] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3639), 13, + ACTIONS(776), 13, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -107553,81 +107313,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [59437] = 2, + [60082] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(776), 13, + STATE(1447), 1, + aux_sym_filename_repeat1, + ACTIONS(4634), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4632), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 7, + aux_sym__map_rhs_token4, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [60107] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4658), 1, + aux_sym__syn_keyword_identifier_token2, + STATE(1465), 1, + aux_sym__syn_keyword_identifier_repeat1, + ACTIONS(4392), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4390), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [60132] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4365), 1, + anon_sym_text, + ACTIONS(4661), 1, + anon_sym_BSLASH, + STATE(1889), 1, + sym_filename, + ACTIONS(4663), 2, + aux_sym_filename_token1, + aux_sym_filename_token3, + ACTIONS(4665), 2, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(4363), 6, + aux_sym__map_rhs_token4, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [60161] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4667), 1, + aux_sym__syn_keyword_identifier_token2, + STATE(1465), 1, + aux_sym__syn_keyword_identifier_repeat1, + ACTIONS(4405), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4403), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [60186] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4669), 1, + anon_sym_LBRACK, + ACTIONS(3457), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3455), 10, + 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, + [60209] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1449), 1, + aux_sym_filename_repeat1, + ACTIONS(4673), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4671), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 7, + aux_sym__map_rhs_token4, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [60234] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(778), 1, + sym__separator, + ACTIONS(776), 12, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, 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, - [59456] = 9, + [60255] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3616), 1, - sym__separator, - ACTIONS(4582), 1, + ACTIONS(4335), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4333), 11, + anon_sym_COMMA, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + [60276] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4180), 1, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4642), 1, + anon_sym_cchar, + ACTIONS(4677), 1, + anon_sym_contained, + STATE(1336), 1, + sym__syn_keyword_identifier, + STATE(1490), 1, + aux_sym__syn_keyword_repeat1, + STATE(1749), 1, + sym__syn_arguments_keyword, + ACTIONS(4646), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4675), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [60309] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1464), 1, + aux_sym_filename_repeat1, + ACTIONS(4681), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4679), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4273), 7, + aux_sym__map_rhs_token4, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [60334] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4636), 1, + anon_sym_COMMA, + STATE(1440), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2905), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2903), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [60359] = 10, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4577), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(4579), 1, anon_sym_BSLASH, ACTIONS(4585), 1, - anon_sym_LBRACK, - ACTIONS(4588), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(3611), 2, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - STATE(1390), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1442), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4591), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [59489] = 8, + anon_sym_LT2, + ACTIONS(4683), 1, + anon_sym_LTexpr_GT, + STATE(1735), 1, + aux_sym_map_statement_repeat1, + STATE(1750), 1, + sym_keycode, + STATE(2065), 1, + sym__map_lhs, + STATE(2600), 1, + sym__map_definition, + ACTIONS(4638), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [60394] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4636), 1, + anon_sym_COMMA, + STATE(1453), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2905), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2903), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [60419] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4687), 1, + aux_sym_filename_token7, + STATE(1460), 1, + aux_sym_filename_repeat1, + ACTIONS(4273), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4685), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4285), 5, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [60446] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4594), 1, + ACTIONS(4577), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(4579), 1, anon_sym_BSLASH, - ACTIONS(4597), 1, - anon_sym_LBRACK, - ACTIONS(4600), 1, + ACTIONS(4585), 1, + anon_sym_LT2, + ACTIONS(4683), 1, + anon_sym_LTexpr_GT, + STATE(1475), 1, + aux_sym_map_statement_repeat1, + STATE(1750), 1, + sym_keycode, + STATE(2065), 1, + sym__map_lhs, + STATE(2664), 1, + sym__map_definition, + ACTIONS(4689), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [60481] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3595), 1, + sym__separator, + ACTIONS(4691), 1, + anon_sym_BSLASH, + ACTIONS(4694), 1, + anon_sym_LBRACK2, + ACTIONS(4697), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1380), 2, + ACTIONS(3590), 2, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + STATE(1385), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1443), 2, + STATE(1479), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3611), 3, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_BSLASH_RPAREN, - ACTIONS(4603), 3, + ACTIONS(4700), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [59520] = 3, + [60514] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(778), 1, + ACTIONS(4577), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(4579), 1, + anon_sym_BSLASH, + ACTIONS(4583), 1, + anon_sym_LTexpr_GT, + ACTIONS(4585), 1, + anon_sym_LT2, + STATE(1735), 1, + aux_sym_map_statement_repeat1, + STATE(1750), 1, + sym_keycode, + STATE(2042), 1, + sym__map_lhs, + STATE(2735), 1, + sym__map_definition, + ACTIONS(4638), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [60549] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3608), 1, sym__separator, - ACTIONS(776), 12, + ACTIONS(3606), 12, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, anon_sym_STAR2, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym_pattern_multi_token1, aux_sym_pattern_multi_token2, aux_sym_pattern_multi_token3, @@ -107635,152 +107692,458 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [59541] = 10, + [60570] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4552), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4554), 1, + STATE(1444), 1, + aux_sym_filename_repeat1, + ACTIONS(4291), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(4703), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4705), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4293), 5, anon_sym_BSLASH, - ACTIONS(4558), 1, - anon_sym_LTexpr_GT, - ACTIONS(4560), 1, - anon_sym_LT2, - STATE(1687), 1, - aux_sym_map_statement_repeat1, - STATE(1701), 1, - sym_keycode, - STATE(1933), 1, - sym__map_lhs, - STATE(2699), 1, - sym__map_definition, - ACTIONS(4606), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [59576] = 2, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [60597] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3879), 13, - anon_sym_LT, + ACTIONS(4481), 1, + anon_sym_text, + STATE(1483), 1, + aux_sym_filename_repeat1, + ACTIONS(4710), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4707), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4300), 6, + aux_sym__map_rhs_token4, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [60624] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4491), 1, + anon_sym_text, + STATE(1483), 1, + aux_sym_filename_repeat1, + ACTIONS(4715), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4713), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4307), 6, + aux_sym__map_rhs_token4, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [60651] = 6, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1459), 1, + aux_sym_filename_repeat1, + ACTIONS(4273), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(4717), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4719), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4285), 5, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [60678] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4319), 1, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4642), 1, + anon_sym_cchar, + ACTIONS(4723), 1, + anon_sym_contained, + STATE(1369), 1, + sym__syn_keyword_identifier, + STATE(1570), 1, + aux_sym__syn_keyword_repeat1, + STATE(1749), 1, + sym__syn_arguments_keyword, + ACTIONS(4646), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4721), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [60711] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4293), 1, + anon_sym_text, + STATE(1483), 1, + aux_sym_filename_repeat1, + ACTIONS(4715), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4713), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 6, aux_sym__map_rhs_token4, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [60738] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4293), 1, + anon_sym_text, + STATE(1484), 1, + aux_sym_filename_repeat1, + ACTIONS(4727), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4725), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 6, + aux_sym__map_rhs_token4, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [60765] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4319), 1, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4642), 1, + anon_sym_cchar, + ACTIONS(4723), 1, + anon_sym_contained, + STATE(1361), 1, + sym__syn_keyword_identifier, + STATE(1486), 1, + aux_sym__syn_keyword_repeat1, + STATE(1749), 1, + sym__syn_arguments_keyword, + ACTIONS(4646), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4721), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [60798] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4180), 1, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4642), 1, + anon_sym_cchar, + ACTIONS(4677), 1, + anon_sym_contained, + STATE(1330), 1, + sym__syn_keyword_identifier, + STATE(1570), 1, + aux_sym__syn_keyword_repeat1, + STATE(1749), 1, + sym__syn_arguments_keyword, + ACTIONS(4646), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4675), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [60831] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4162), 1, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4642), 1, + anon_sym_cchar, + ACTIONS(4644), 1, + anon_sym_contained, + STATE(1344), 1, + sym__syn_keyword_identifier, + STATE(1456), 1, + aux_sym__syn_keyword_repeat1, + STATE(1749), 1, + sym__syn_arguments_keyword, + ACTIONS(4646), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4640), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [60864] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4285), 1, + anon_sym_text, + STATE(1487), 1, + aux_sym_filename_repeat1, + ACTIONS(4731), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4729), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4273), 6, + aux_sym__map_rhs_token4, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [60891] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4733), 2, anon_sym_cterm, - aux_sym__hl_term_list_token1, + anon_sym_gui, + ACTIONS(4735), 10, + sym__newline_or_pipe, + sym_comment, 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, - [59595] = 8, + [60911] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4608), 1, - anon_sym_BSLASH, - ACTIONS(4611), 1, - anon_sym_LBRACK, - ACTIONS(4614), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1405), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1447), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3611), 3, - anon_sym_BSLASH_AMP, + ACTIONS(4737), 1, + anon_sym_LBRACE2, + ACTIONS(4739), 1, + aux_sym_identifier_token2, + ACTIONS(785), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1506), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(787), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [60937] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4741), 1, + anon_sym_LBRACE2, + ACTIONS(4744), 1, + aux_sym_identifier_token2, + ACTIONS(799), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(4617), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [59626] = 2, + STATE(1495), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(801), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [60963] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(776), 13, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, + ACTIONS(4747), 1, + anon_sym_LBRACE2, + ACTIONS(4749), 1, + aux_sym_identifier_token2, + ACTIONS(793), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_STAR2, - anon_sym_LBRACK, - aux_sym_pattern_multi_token1, - aux_sym_pattern_multi_token2, - aux_sym_pattern_multi_token3, + STATE(1495), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(795), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [60989] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4747), 1, + anon_sym_LBRACE2, + ACTIONS(4751), 1, + aux_sym_identifier_token2, + ACTIONS(785), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(1496), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(787), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [61015] = 10, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4753), 1, + aux_sym_option_name_token1, + ACTIONS(4755), 1, + anon_sym_t_, + ACTIONS(4757), 1, + anon_sym_all, + ACTIONS(4759), 1, + anon_sym_all_AMP, + ACTIONS(4761), 1, + sym__no, + ACTIONS(4763), 1, + sym__inv, + STATE(1727), 1, + sym_option_name, + STATE(2494), 1, + sym_set_item, + STATE(1711), 4, + sym_no_option, + sym_inv_option, + sym_default_option, + sym__set_option, + [61049] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4409), 1, + anon_sym_BSLASH, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, aux_sym__pattern_ordinary_atom_token2, + STATE(2517), 1, + sym__pattern_branch, + STATE(3247), 1, + sym_pattern, + STATE(1384), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1385), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4417), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [59645] = 2, + [61081] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3639), 13, + ACTIONS(4079), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4077), 10, 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, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [59664] = 2, + [61101] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3586), 13, + ACTIONS(4050), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4048), 10, 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, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [59683] = 5, + [61121] = 8, ACTIONS(3), 1, sym__line_continuation, - STATE(1418), 1, - aux_sym_filename_repeat1, - ACTIONS(4500), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4498), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4211), 7, - aux_sym__map_rhs_token4, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [59708] = 3, + ACTIONS(4618), 1, + anon_sym_BSLASH, + STATE(1924), 1, + aux_sym_runtime_statement_repeat1, + STATE(2035), 1, + sym__runtime_where, + STATE(2109), 1, + sym_filename, + ACTIONS(4622), 2, + aux_sym_filename_token1, + aux_sym_filename_token3, + ACTIONS(4624), 2, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(4543), 4, + anon_sym_START, + anon_sym_OPT, + anon_sym_PACK, + anon_sym_ALL, + [61151] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4326), 2, + ACTIONS(4767), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4324), 11, - sym__newline_or_pipe, - sym_comment, - anon_sym_COMMA, + ACTIONS(4765), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -107789,122 +108152,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [59729] = 3, + [61171] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3030), 3, + ACTIONS(4769), 1, anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3032), 10, + STATE(1527), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2905), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2903), 8, anon_sym_conceal, anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [61195] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4769), 1, + anon_sym_COMMA, + STATE(1528), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2905), 2, anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2903), 8, + anon_sym_conceal, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - sym__syn_keyword_identifier, - [59750] = 6, + [61219] = 6, ACTIONS(3), 1, sym__line_continuation, - STATE(1456), 1, - aux_sym_filename_repeat1, - ACTIONS(4211), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(4620), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4622), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4334), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [59777] = 6, + ACTIONS(4737), 1, + anon_sym_LBRACE2, + ACTIONS(4771), 1, + aux_sym_identifier_token2, + ACTIONS(793), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1510), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(795), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [61245] = 9, ACTIONS(3), 1, sym__line_continuation, - STATE(1455), 1, - aux_sym_filename_repeat1, - ACTIONS(4243), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(4624), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4627), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4289), 5, + ACTIONS(4409), 1, anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [59804] = 6, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2517), 1, + sym__pattern_branch, + STATE(3051), 1, + sym_pattern, + STATE(1384), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1385), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4417), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [61277] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1455), 1, - aux_sym_filename_repeat1, - ACTIONS(4229), 2, + ACTIONS(4775), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4773), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(4630), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4632), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4273), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [59831] = 10, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [61297] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4552), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4554), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4560), 1, - anon_sym_LT2, - ACTIONS(4634), 1, - anon_sym_LTexpr_GT, - STATE(1687), 1, - aux_sym_map_statement_repeat1, - STATE(1701), 1, - sym_keycode, - STATE(1954), 1, - sym__map_lhs, - STATE(2692), 1, - sym__map_definition, - ACTIONS(4606), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [59866] = 3, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2425), 1, + sym__pattern_branch, + STATE(3274), 1, + sym_pattern, + STATE(1353), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1420), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4541), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [61329] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4777), 1, + anon_sym_LBRACE2, + ACTIONS(4780), 1, + aux_sym_identifier_token2, + ACTIONS(799), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1510), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(801), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [61355] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4326), 2, + ACTIONS(4733), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4324), 11, - anon_sym_COMMA, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(4735), 10, + sym__newline_or_pipe, + sym_comment, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -107913,166 +108310,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [59887] = 3, + [61375] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2932), 3, - anon_sym_COMMA, + ACTIONS(4785), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4783), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(2934), 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, - sym__syn_keyword_identifier, - [59908] = 10, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4552), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4554), 1, - anon_sym_BSLASH, - ACTIONS(4558), 1, - anon_sym_LTexpr_GT, - ACTIONS(4560), 1, - anon_sym_LT2, - STATE(1687), 1, - aux_sym_map_statement_repeat1, - STATE(1701), 1, - sym_keycode, - STATE(1988), 1, - sym__map_lhs, - STATE(2699), 1, - sym__map_definition, - ACTIONS(4606), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [59943] = 10, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4552), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4554), 1, - anon_sym_BSLASH, - ACTIONS(4560), 1, - anon_sym_LT2, - ACTIONS(4634), 1, - anon_sym_LTexpr_GT, - STATE(1457), 1, - aux_sym_map_statement_repeat1, - STATE(1701), 1, - sym_keycode, - STATE(1954), 1, - sym__map_lhs, - STATE(2702), 1, - sym__map_definition, - ACTIONS(4636), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [59978] = 6, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1463), 1, - aux_sym_filename_repeat1, - ACTIONS(4330), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(4638), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4640), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4445), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [60005] = 6, + [61395] = 6, ACTIONS(3), 1, sym__line_continuation, - STATE(1455), 1, - aux_sym_filename_repeat1, - ACTIONS(4211), 2, + ACTIONS(4787), 1, + anon_sym_LBRACE2, + ACTIONS(4789), 1, + aux_sym_identifier_token2, + ACTIONS(793), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(4630), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4632), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4334), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [60032] = 6, + STATE(1543), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(795), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [61421] = 6, ACTIONS(3), 1, sym__line_continuation, - STATE(1571), 1, - aux_sym_filename_repeat1, - ACTIONS(4445), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4642), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4644), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4330), 4, - sym_string_literal, - sym_bang, + ACTIONS(4791), 1, + anon_sym_LBRACE2, + ACTIONS(4793), 1, + aux_sym_identifier_token2, + STATE(1530), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(787), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + ACTIONS(785), 5, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_EQ_LT_LT, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [60058] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4360), 1, - anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, - sym__pattern_branch, - STATE(2978), 1, - sym_pattern, - STATE(1374), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1380), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4368), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [60090] = 3, + [61447] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4646), 2, + ACTIONS(4733), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4648), 10, + ACTIONS(4735), 10, sym__newline_or_pipe, sym_comment, anon_sym_start, @@ -108083,36 +108384,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60110] = 9, + [61467] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, - anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, - sym__pattern_branch, - STATE(2948), 1, - sym_pattern, - STATE(1374), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1380), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4368), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [60142] = 3, + ACTIONS(4769), 1, + anon_sym_COMMA, + STATE(1504), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2962), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2960), 8, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [61491] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4650), 2, + ACTIONS(4733), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4652), 10, + ACTIONS(4735), 10, sym__newline_or_pipe, sym_comment, anon_sym_start, @@ -108123,13 +108420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60162] = 3, + [61511] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4654), 2, + ACTIONS(4733), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4656), 10, + ACTIONS(4735), 10, sym__newline_or_pipe, sym_comment, anon_sym_start, @@ -108140,15 +108437,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60182] = 3, + [61531] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4646), 2, + ACTIONS(4733), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4648), 10, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(4735), 10, + sym__newline_or_pipe, + sym_comment, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -108157,53 +108454,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60202] = 7, + [61551] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3656), 1, + anon_sym_BSLASH, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4795), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1714), 1, + sym__pattern_branch, + STATE(1843), 1, + sym_pattern, + STATE(1148), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1158), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3664), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [61583] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4409), 1, + anon_sym_BSLASH, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2517), 1, + sym__pattern_branch, + STATE(3276), 1, + sym_pattern, + STATE(1384), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1385), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4417), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [61615] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4392), 1, + ACTIONS(4797), 1, + anon_sym_LBRACK, + ACTIONS(3457), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3455), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, anon_sym_cchar, - ACTIONS(4658), 1, - sym__syn_keyword_identifier, - STATE(1579), 1, - aux_sym__syn_keyword_repeat1, - STATE(1664), 1, - sym__syn_arguments_keyword, - ACTIONS(4394), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4390), 6, - anon_sym_conceal, - anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [60230] = 3, + [61637] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3453), 2, + ACTIONS(3638), 1, + anon_sym_BSLASH, + ACTIONS(3642), 1, + anon_sym_LBRACK2, + ACTIONS(4799), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1761), 1, + sym__pattern_branch, + STATE(1796), 1, + sym_pattern, + STATE(1149), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1150), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3646), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [61669] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4787), 1, + anon_sym_LBRACE2, + ACTIONS(4801), 1, + aux_sym_identifier_token2, + ACTIONS(785), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(1513), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(787), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [61695] = 10, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4803), 1, + aux_sym_option_name_token1, + ACTIONS(4805), 1, + anon_sym_t_, + ACTIONS(4807), 1, + anon_sym_all, + ACTIONS(4809), 1, + anon_sym_all_AMP, + ACTIONS(4811), 1, + sym__no, + ACTIONS(4813), 1, + sym__inv, + STATE(1764), 1, + sym_option_name, + STATE(2545), 1, + sym_set_item, + STATE(1798), 4, + sym_no_option, + sym_inv_option, + sym_default_option, + sym__set_option, + [61729] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4817), 1, + anon_sym_BSLASH_AMP, + STATE(1583), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(4815), 10, sym__newline_or_pipe, sym_comment, - ACTIONS(3455), 10, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + [61751] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4819), 1, + anon_sym_COMMA, + STATE(1527), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2942), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2940), 8, anon_sym_conceal, anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [61775] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4769), 1, + anon_sym_COMMA, + STATE(1527), 1, + aux_sym_hl_groups_repeat1, + ACTIONS(2958), 2, anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2956), 8, + anon_sym_conceal, + anon_sym_cchar, anon_sym_containedin, anon_sym_nextgroup, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - sym__syn_keyword_identifier, - [60250] = 3, + [61799] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4650), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4652), 10, + ACTIONS(4822), 1, + anon_sym_LBRACE2, + ACTIONS(4825), 1, + aux_sym_identifier_token2, + STATE(1529), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(801), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + ACTIONS(799), 5, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_EQ_LT_LT, + [61825] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4791), 1, + anon_sym_LBRACE2, + ACTIONS(4828), 1, + aux_sym_identifier_token2, + STATE(1625), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(795), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + ACTIONS(793), 5, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_EQ_LT_LT, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, + [61851] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4830), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4832), 10, + sym__newline_or_pipe, + sym_comment, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -108212,15 +108698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60270] = 3, + [61871] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4654), 2, + ACTIONS(4834), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4656), 10, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(4836), 10, + sym__newline_or_pipe, + sym_comment, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -108229,124 +108715,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60290] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4392), 1, - anon_sym_cchar, - ACTIONS(4660), 1, - sym__syn_keyword_identifier, - STATE(1546), 1, - aux_sym__syn_keyword_repeat1, - STATE(1664), 1, - sym__syn_arguments_keyword, - ACTIONS(4394), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4390), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [60318] = 6, + [61891] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4662), 1, + ACTIONS(4838), 1, anon_sym_LBRACE2, - ACTIONS(4665), 1, + ACTIONS(4841), 1, aux_sym_identifier_token2, - ACTIONS(793), 2, + ACTIONS(799), 2, sym__newline_or_pipe, sym_comment, - STATE(1476), 2, + STATE(1533), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(795), 6, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [60344] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4330), 1, - aux_sym__map_rhs_token4, - ACTIONS(4670), 1, - aux_sym_filename_token7, - STATE(1524), 1, - aux_sym_filename_repeat1, - ACTIONS(4668), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4445), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [60370] = 10, + ACTIONS(801), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [61917] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4672), 1, + ACTIONS(4803), 1, aux_sym_option_name_token1, - ACTIONS(4674), 1, + ACTIONS(4805), 1, anon_sym_t_, - ACTIONS(4676), 1, + ACTIONS(4807), 1, anon_sym_all, - ACTIONS(4678), 1, + ACTIONS(4809), 1, anon_sym_all_AMP, - ACTIONS(4680), 1, + ACTIONS(4811), 1, sym__no, - ACTIONS(4682), 1, + ACTIONS(4813), 1, sym__inv, - STATE(1677), 1, + STATE(1764), 1, sym_option_name, - STATE(2397), 1, + STATE(2542), 1, sym_set_item, - STATE(1758), 4, + STATE(1798), 4, sym_no_option, sym_inv_option, sym_default_option, sym__set_option, - [60404] = 10, + [61951] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4672), 1, - aux_sym_option_name_token1, - ACTIONS(4674), 1, - anon_sym_t_, - ACTIONS(4676), 1, - anon_sym_all, - ACTIONS(4678), 1, - anon_sym_all_AMP, - ACTIONS(4680), 1, - sym__no, - ACTIONS(4682), 1, - sym__inv, - STATE(1677), 1, - sym_option_name, - STATE(2399), 1, - sym_set_item, - STATE(1758), 4, - sym_no_option, - sym_inv_option, - sym_default_option, - sym__set_option, - [60438] = 3, + ACTIONS(4844), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4846), 10, + sym__newline_or_pipe, + sym_comment, + anon_sym_start, + anon_sym_stop, + anon_sym_ctermfg, + anon_sym_ctermbg, + anon_sym_guifg, + anon_sym_guibg, + anon_sym_guisp, + anon_sym_font, + [61971] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4686), 2, + ACTIONS(4848), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4684), 10, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(4850), 10, + sym__newline_or_pipe, + sym_comment, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -108355,13 +108793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60458] = 3, + [61991] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4690), 2, + ACTIONS(4733), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4688), 10, + ACTIONS(4735), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -108372,36 +108810,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60478] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4426), 1, - anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2423), 1, - sym__pattern_branch, - STATE(3194), 1, - sym_pattern, - STATE(1390), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1392), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4434), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [60510] = 3, + [62011] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4686), 2, + ACTIONS(4852), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4684), 10, + ACTIONS(4854), 10, sym__newline_or_pipe, sym_comment, anon_sym_start, @@ -108412,70 +108827,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60530] = 3, + [62031] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4060), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4058), 10, + ACTIONS(4253), 1, anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_LBRACK, + ACTIONS(4257), 1, + anon_sym_LBRACK2, + ACTIONS(4259), 1, aux_sym__pattern_ordinary_atom_token2, + STATE(2328), 1, + sym__pattern_branch, + STATE(2814), 1, + sym_pattern, + STATE(1348), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1351), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4261), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [60550] = 9, + [62063] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4856), 1, + anon_sym_LBRACE2, + ACTIONS(4858), 1, + aux_sym_identifier_token2, + STATE(1529), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(795), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + ACTIONS(793), 5, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_EQ_LT_LT, + [62089] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4860), 1, + anon_sym_LBRACE2, + ACTIONS(4862), 1, + aux_sym_identifier_token2, + ACTIONS(795), 2, + sym_au_event, + anon_sym_EQ, + STATE(1593), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(793), 6, + anon_sym_COMMA, + anon_sym_EQ_LT_LT, + anon_sym_RPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_DASH_GT, + [62115] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(4409), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, + STATE(2517), 1, sym__pattern_branch, - STATE(2907), 1, + STATE(3228), 1, sym_pattern, - STATE(1374), 2, + STATE(1384), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1380), 2, + STATE(1385), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4368), 3, + ACTIONS(4417), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [60582] = 3, + [62147] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4864), 1, + anon_sym_LBRACE2, + ACTIONS(4867), 1, + aux_sym_identifier_token2, + ACTIONS(799), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(1543), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(801), 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [62173] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3476), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3474), 10, + 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, + [62193] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4870), 1, + anon_sym_BSLASH_AMP, + STATE(1602), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(4815), 10, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + [62215] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4068), 2, + ACTIONS(4856), 1, + anon_sym_LBRACE2, + ACTIONS(4872), 1, + aux_sym_identifier_token2, + STATE(1540), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(787), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + ACTIONS(785), 5, sym__newline_or_pipe, + sym__scope_dict, sym_comment, - ACTIONS(4066), 10, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [60602] = 3, + anon_sym_a_COLON, + anon_sym_EQ_LT_LT, + [62241] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4690), 2, + ACTIONS(4767), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4688), 10, + ACTIONS(4765), 10, sym__newline_or_pipe, sym_comment, anon_sym_start, @@ -108486,263 +109005,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60622] = 9, + [62261] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4344), 1, - anon_sym_BSLASH, - ACTIONS(4348), 1, - anon_sym_LBRACK, - ACTIONS(4692), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2406), 1, - sym__pattern_branch, - STATE(2674), 1, - sym_pattern, - STATE(1405), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1407), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4352), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [60654] = 9, + ACTIONS(3476), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3474), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [62281] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3601), 1, + ACTIONS(4409), 1, anon_sym_BSLASH, - ACTIONS(3605), 1, - anon_sym_LBRACK, - ACTIONS(4694), 1, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1673), 1, + STATE(2517), 1, sym__pattern_branch, - STATE(1783), 1, + STATE(3165), 1, sym_pattern, - STATE(1139), 2, + STATE(1384), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1142), 2, + STATE(1385), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3609), 3, + ACTIONS(4417), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [60686] = 9, + [62313] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4273), 1, + aux_sym__map_rhs_token4, + ACTIONS(4876), 1, + aux_sym_filename_token7, + STATE(1572), 1, + aux_sym_filename_repeat1, + ACTIONS(4874), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4285), 5, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [62339] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3629), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(3633), 1, - anon_sym_LBRACK, - ACTIONS(4696), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1740), 1, + STATE(2425), 1, sym__pattern_branch, - STATE(1784), 1, + STATE(3164), 1, sym_pattern, - STATE(1143), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1147), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3637), 3, + STATE(1420), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [60718] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4698), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4700), 10, - sym__newline_or_pipe, - sym_comment, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - [60738] = 9, + [62371] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(3939), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3943), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, - sym__pattern_branch, - STATE(2924), 1, + STATE(1843), 1, sym_pattern, - STATE(1374), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1380), 2, + STATE(1880), 1, + sym__pattern_branch, + STATE(1230), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4368), 3, + STATE(1231), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3947), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [60770] = 9, + [62403] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(3984), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3988), 1, + anon_sym_LBRACK2, + ACTIONS(4880), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, - sym__pattern_branch, - STATE(3195), 1, + STATE(1796), 1, sym_pattern, - STATE(1374), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1380), 2, + STATE(1881), 1, + sym__pattern_branch, + STATE(1218), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4368), 3, + STATE(1243), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3992), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [60802] = 6, + [62435] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4211), 1, - aux_sym__map_rhs_token4, - ACTIONS(4704), 1, + ACTIONS(4775), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4773), 10, + 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, + [62455] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4884), 1, aux_sym_filename_token7, - STATE(1578), 1, + STATE(1592), 1, aux_sym_filename_repeat1, - ACTIONS(4702), 4, + ACTIONS(4285), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4273), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + sym_bang, + ACTIONS(4882), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4334), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [60828] = 3, + [62481] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4708), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4706), 10, + ACTIONS(4888), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4886), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - [60848] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4392), 1, + anon_sym_conceal, anon_sym_cchar, - ACTIONS(4710), 1, - sym__syn_keyword_identifier, - STATE(1475), 1, - aux_sym__syn_keyword_repeat1, - STATE(1664), 1, - sym__syn_arguments_keyword, - ACTIONS(4394), 2, anon_sym_containedin, anon_sym_nextgroup, - ACTIONS(4390), 6, - anon_sym_conceal, - anon_sym_contained, anon_sym_transparent, anon_sym_skipwhite, anon_sym_skipnl, anon_sym_skipempty, - [60876] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4712), 1, - anon_sym_LBRACE2, - ACTIONS(4714), 1, - aux_sym_identifier_token2, - ACTIONS(785), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1476), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(787), 6, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [60902] = 9, + [62501] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3601), 1, - anon_sym_BSLASH, - ACTIONS(3605), 1, - anon_sym_LBRACK, - ACTIONS(4694), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1707), 1, - sym__pattern_branch, - STATE(1783), 1, - sym_pattern, - STATE(1139), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1142), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(3609), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [60934] = 3, + ACTIONS(4803), 1, + aux_sym_option_name_token1, + ACTIONS(4805), 1, + anon_sym_t_, + ACTIONS(4811), 1, + sym__no, + ACTIONS(4813), 1, + sym__inv, + ACTIONS(4890), 1, + anon_sym_all, + ACTIONS(4892), 1, + anon_sym_all_AMP, + STATE(1764), 1, + sym_option_name, + STATE(2398), 1, + sym_set_item, + STATE(1765), 4, + sym_no_option, + sym_inv_option, + sym_default_option, + sym__set_option, + [62535] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4698), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4700), 10, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - [60954] = 3, + ACTIONS(4803), 1, + aux_sym_option_name_token1, + ACTIONS(4805), 1, + anon_sym_t_, + ACTIONS(4811), 1, + sym__no, + ACTIONS(4813), 1, + sym__inv, + ACTIONS(4890), 1, + anon_sym_all, + ACTIONS(4892), 1, + anon_sym_all_AMP, + STATE(1764), 1, + sym_option_name, + STATE(2397), 1, + sym_set_item, + STATE(1765), 4, + sym_no_option, + sym_inv_option, + sym_default_option, + sym__set_option, + [62569] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4698), 2, + ACTIONS(4852), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4700), 10, + ACTIONS(4854), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -108753,13 +109253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60974] = 3, + [62589] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4698), 2, + ACTIONS(4848), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4700), 10, + ACTIONS(4850), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -108770,13 +109270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [60994] = 3, + [62609] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4698), 2, + ACTIONS(4844), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4700), 10, + ACTIONS(4846), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -108787,13 +109287,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [61014] = 3, + [62629] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4698), 2, + ACTIONS(4834), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4700), 10, + ACTIONS(4836), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -108804,13 +109304,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [61034] = 3, + [62649] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4698), 2, + ACTIONS(4830), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4700), 10, + ACTIONS(4832), 10, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_start, @@ -108821,242 +109321,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [61054] = 13, + [62669] = 13, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4716), 1, + ACTIONS(4894), 1, anon_sym_list, - ACTIONS(4718), 1, + ACTIONS(4896), 1, anon_sym_define, - ACTIONS(4720), 1, + ACTIONS(4898), 1, anon_sym_undefine, - ACTIONS(4722), 1, + ACTIONS(4900), 1, anon_sym_place, - ACTIONS(4724), 1, + ACTIONS(4902), 1, anon_sym_unplace, - ACTIONS(4726), 1, + ACTIONS(4904), 1, anon_sym_jump, - STATE(2871), 1, + STATE(2811), 1, sym__sign_jump, - STATE(2872), 1, + STATE(2812), 1, sym__sign_unplace, - STATE(2873), 1, + STATE(2855), 1, sym__sign_place, - STATE(2876), 1, + STATE(2860), 1, sym__sign_list, - STATE(2877), 1, + STATE(2865), 1, sym__sign_undefine, - STATE(2879), 1, + STATE(2872), 1, sym__sign_define, - [61094] = 9, + [62709] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3900), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4728), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1784), 1, + STATE(2425), 1, + sym__pattern_branch, + STATE(2968), 1, sym_pattern, - STATE(1840), 1, + STATE(1353), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1420), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4541), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [62741] = 10, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4803), 1, + aux_sym_option_name_token1, + ACTIONS(4805), 1, + anon_sym_t_, + ACTIONS(4807), 1, + anon_sym_all, + ACTIONS(4809), 1, + anon_sym_all_AMP, + ACTIONS(4811), 1, + sym__no, + ACTIONS(4813), 1, + sym__inv, + STATE(1764), 1, + sym_option_name, + STATE(2525), 1, + sym_set_item, + STATE(1798), 4, + sym_no_option, + sym_inv_option, + sym_default_option, + sym__set_option, + [62775] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4409), 1, + anon_sym_BSLASH, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2517), 1, sym__pattern_branch, - STATE(1223), 2, + STATE(3149), 1, + sym_pattern, + STATE(1384), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1230), 2, + STATE(1385), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3908), 3, + ACTIONS(4417), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61126] = 9, + [62807] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4888), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4886), 10, + 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, + [62827] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3983), 1, + ACTIONS(4291), 1, + aux_sym__map_rhs_token4, + ACTIONS(4908), 1, + aux_sym_filename_token7, + STATE(1599), 1, + aux_sym_filename_repeat1, + ACTIONS(4906), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4293), 5, anon_sym_BSLASH, - ACTIONS(3987), 1, - anon_sym_LBRACK, - ACTIONS(4730), 1, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [62853] = 8, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4913), 1, + anon_sym_cchar, + ACTIONS(4916), 1, + anon_sym_contained, + ACTIONS(4922), 1, + aux_sym__syn_keyword_identifier_token1, + STATE(1570), 1, + aux_sym__syn_keyword_repeat1, + STATE(1749), 1, + sym__syn_arguments_keyword, + ACTIONS(4919), 2, + anon_sym_containedin, + anon_sym_nextgroup, + ACTIONS(4910), 5, + anon_sym_conceal, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [62883] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4409), 1, + anon_sym_BSLASH, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1783), 1, + STATE(2517), 1, + sym__pattern_branch, + STATE(2948), 1, sym_pattern, - STATE(1897), 1, + STATE(1384), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1385), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4417), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [62915] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4291), 1, + aux_sym__map_rhs_token4, + ACTIONS(4926), 1, + aux_sym_filename_token7, + STATE(1601), 1, + aux_sym_filename_repeat1, + ACTIONS(4924), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4293), 5, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [62941] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4533), 1, + anon_sym_BSLASH, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2425), 1, sym__pattern_branch, - STATE(1240), 2, + STATE(3076), 1, + sym_pattern, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1244), 2, + STATE(1420), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3991), 3, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61158] = 9, + [62973] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4785), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4783), 10, + 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, + [62993] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(3842), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3846), 1, + anon_sym_LBRACK2, + ACTIONS(4928), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, - sym__pattern_branch, - STATE(2986), 1, + STATE(1804), 1, sym_pattern, - STATE(1374), 2, + STATE(1832), 1, + sym__pattern_branch, + STATE(1205), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1380), 2, + STATE(1208), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4368), 3, + ACTIONS(3850), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61190] = 9, + [63025] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(4409), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, + STATE(2517), 1, sym__pattern_branch, - STATE(3136), 1, + STATE(3197), 1, sym_pattern, - STATE(1374), 2, + STATE(1384), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1380), 2, + STATE(1385), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4368), 3, + ACTIONS(4417), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61222] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4712), 1, - anon_sym_LBRACE2, - ACTIONS(4732), 1, - aux_sym_identifier_token2, - ACTIONS(803), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1497), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(805), 6, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [61248] = 9, + [63057] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4426), 1, + ACTIONS(4409), 1, anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2423), 1, + STATE(2517), 1, sym__pattern_branch, - STATE(3030), 1, + STATE(3050), 1, sym_pattern, - STATE(1390), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1392), 2, + STATE(1384), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4434), 3, + STATE(1385), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4417), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61280] = 6, + [63089] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4734), 1, - anon_sym_LBRACE2, - ACTIONS(4736), 1, - aux_sym_identifier_token2, - ACTIONS(803), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1516), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(805), 6, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [61306] = 9, + ACTIONS(4606), 1, + anon_sym_BSLASH, + STATE(1836), 1, + aux_sym_runtime_statement_repeat1, + STATE(2014), 1, + sym__runtime_where, + STATE(2029), 1, + sym_filename, + ACTIONS(4610), 2, + aux_sym_filename_token1, + aux_sym_filename_token3, + ACTIONS(4612), 2, + aux_sym_filename_token2, + aux_sym_filename_token4, + ACTIONS(4543), 4, + anon_sym_START, + anon_sym_OPT, + anon_sym_PACK, + anon_sym_ALL, + [63119] = 10, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4803), 1, + aux_sym_option_name_token1, + ACTIONS(4805), 1, + anon_sym_t_, + ACTIONS(4811), 1, + sym__no, + ACTIONS(4813), 1, + sym__inv, + ACTIONS(4890), 1, + anon_sym_all, + ACTIONS(4892), 1, + anon_sym_all_AMP, + STATE(1764), 1, + sym_option_name, + STATE(2525), 1, + sym_set_item, + STATE(1765), 4, + sym_no_option, + sym_inv_option, + sym_default_option, + sym__set_option, + [63153] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(4409), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, + STATE(2517), 1, sym__pattern_branch, - STATE(3080), 1, + STATE(3028), 1, sym_pattern, - STATE(1374), 2, + STATE(1384), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1380), 2, + STATE(1385), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4368), 3, + ACTIONS(4417), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61338] = 9, + [63185] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4344), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4348), 1, - anon_sym_LBRACK, - ACTIONS(4692), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2487), 1, + STATE(2425), 1, sym__pattern_branch, - STATE(2674), 1, + STATE(3008), 1, + sym_pattern, + STATE(1353), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1420), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4541), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [63217] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4345), 1, + anon_sym_BSLASH, + ACTIONS(4349), 1, + anon_sym_LBRACK2, + ACTIONS(4930), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2549), 1, + sym__pattern_branch, + STATE(2881), 1, sym_pattern, - STATE(1405), 2, + STATE(1365), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1407), 2, + STATE(1366), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4352), 3, + ACTIONS(4353), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61370] = 4, + [63249] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4740), 1, + ACTIONS(4932), 1, anon_sym_BSLASH_AMP, - STATE(1567), 1, + STATE(1583), 1, aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 10, + ACTIONS(3612), 10, sym__newline_or_pipe, sym_comment, sym__normal, @@ -109065,621 +109760,511 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_bang, anon_sym_SEMI, - anon_sym_SLASH2, - anon_sym_BSLASH_PIPE, - [61392] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4734), 1, - anon_sym_LBRACE2, - ACTIONS(4742), 1, - aux_sym_identifier_token2, - ACTIONS(785), 2, + anon_sym_QMARK2, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1525), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(787), 6, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [61418] = 9, + [63271] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4426), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2423), 1, + STATE(2425), 1, sym__pattern_branch, - STATE(3223), 1, + STATE(2969), 1, sym_pattern, - STATE(1390), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1392), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4434), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [61450] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4360), 1, - anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, - sym__pattern_branch, - STATE(2992), 1, - sym_pattern, - STATE(1374), 2, + STATE(1420), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1380), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4368), 3, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61482] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4486), 1, - anon_sym_BSLASH, - STATE(1917), 1, - aux_sym_runtime_statement_repeat1, - STATE(1923), 1, - sym__runtime_where, - STATE(2089), 1, - sym_filename, - ACTIONS(4490), 2, - aux_sym_filename_token1, - aux_sym_filename_token3, - ACTIONS(4492), 2, - aux_sym_filename_token2, - aux_sym_filename_token4, - ACTIONS(4484), 4, - anon_sym_START, - anon_sym_OPT, - anon_sym_PACK, - anon_sym_ALL, - [61512] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4744), 1, - anon_sym_LBRACE2, - ACTIONS(4747), 1, - aux_sym_identifier_token2, - ACTIONS(793), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1520), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(795), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [61538] = 9, + [63303] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4426), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2423), 1, + STATE(2425), 1, sym__pattern_branch, - STATE(3117), 1, + STATE(3053), 1, sym_pattern, - STATE(1390), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1392), 2, + STATE(1420), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4434), 3, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61570] = 9, + [63335] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4426), 1, + ACTIONS(4345), 1, anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, + ACTIONS(4349), 1, + anon_sym_LBRACK2, + ACTIONS(4930), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2423), 1, + STATE(2519), 1, sym__pattern_branch, - STATE(3128), 1, + STATE(2881), 1, sym_pattern, - STATE(1390), 2, + STATE(1365), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1392), 2, + STATE(1366), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4434), 3, + ACTIONS(4353), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61602] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4540), 1, - anon_sym_BSLASH, - STATE(1763), 1, - aux_sym_runtime_statement_repeat1, - STATE(1922), 1, - sym_filename, - STATE(1950), 1, - sym__runtime_where, - ACTIONS(4544), 2, - aux_sym_filename_token1, - aux_sym_filename_token3, - ACTIONS(4546), 2, - aux_sym_filename_token2, - aux_sym_filename_token4, - ACTIONS(4484), 4, - anon_sym_START, - anon_sym_OPT, - anon_sym_PACK, - anon_sym_ALL, - [61632] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4211), 1, - aux_sym__map_rhs_token4, - ACTIONS(4752), 1, - aux_sym_filename_token7, - STATE(1572), 1, - aux_sym_filename_repeat1, - ACTIONS(4750), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4334), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [61658] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4754), 1, - anon_sym_LBRACE2, - ACTIONS(4757), 1, - aux_sym_identifier_token2, - ACTIONS(793), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1525), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(795), 6, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [61684] = 9, + [63367] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4184), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4188), 1, - anon_sym_LBRACK, - ACTIONS(4190), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2260), 1, + STATE(2425), 1, sym__pattern_branch, - STATE(2842), 1, + STATE(2958), 1, sym_pattern, - STATE(1337), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1338), 2, + STATE(1420), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4192), 3, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61716] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4760), 1, - anon_sym_LBRACE2, - ACTIONS(4762), 1, - aux_sym_identifier_token2, - STATE(1530), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(805), 3, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - ACTIONS(803), 5, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_EQ_LT_LT, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [61742] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4764), 1, - anon_sym_LBRACE2, - ACTIONS(4767), 1, - aux_sym_identifier_token2, - ACTIONS(793), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1528), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(795), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [61768] = 9, + [63399] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, + STATE(2425), 1, sym__pattern_branch, - STATE(2985), 1, + STATE(2999), 1, sym_pattern, - STATE(1374), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1380), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4368), 3, + STATE(1420), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61800] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4760), 1, - anon_sym_LBRACE2, - ACTIONS(4770), 1, - aux_sym_identifier_token2, - STATE(1542), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(787), 3, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - ACTIONS(785), 5, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_EQ_LT_LT, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [61826] = 9, + [63431] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1111), 1, + ACTIONS(3792), 1, anon_sym_BSLASH, - ACTIONS(3545), 1, - anon_sym_LBRACK, - ACTIONS(4772), 1, + ACTIONS(3796), 1, + anon_sym_LBRACK2, + ACTIONS(4935), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1632), 1, - sym__pattern_branch, - STATE(1776), 1, + STATE(1805), 1, sym_pattern, - STATE(1117), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1118), 2, + STATE(1839), 1, + sym__pattern_branch, + STATE(1189), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(1131), 3, + STATE(1191), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(3800), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61858] = 6, + [63463] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4774), 1, + ACTIONS(4937), 1, anon_sym_LBRACE2, - ACTIONS(4776), 1, + ACTIONS(4939), 1, aux_sym_identifier_token2, - ACTIONS(785), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1528), 2, + ACTIONS(793), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1533), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(787), 6, + ACTIONS(795), 6, anon_sym_icon, anon_sym_linehl, anon_sym_numhl, anon_sym_text, anon_sym_texthl, anon_sym_culhl, - [61884] = 6, + [63489] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4774), 1, - anon_sym_LBRACE2, - ACTIONS(4778), 1, - aux_sym_identifier_token2, - ACTIONS(803), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1532), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(805), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [61910] = 6, + ACTIONS(4943), 1, + aux_sym_filename_token7, + STATE(1628), 1, + aux_sym_filename_repeat1, + ACTIONS(4293), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4291), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + sym_bang, + ACTIONS(4941), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [63515] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4780), 1, + ACTIONS(4947), 1, + aux_sym_filename_token7, + STATE(1629), 1, + aux_sym_filename_repeat1, + ACTIONS(4293), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4291), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + sym_bang, + ACTIONS(4945), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [63541] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4949), 1, anon_sym_LBRACE2, - ACTIONS(4782), 1, + ACTIONS(4952), 1, aux_sym_identifier_token2, - ACTIONS(805), 2, + ACTIONS(801), 2, sym_au_event, anon_sym_EQ, - STATE(1592), 2, + STATE(1593), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(803), 6, + ACTIONS(799), 6, anon_sym_COMMA, anon_sym_EQ_LT_LT, anon_sym_RPAREN, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_DASH_GT, - [61936] = 9, + [63567] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, + STATE(2425), 1, sym__pattern_branch, - STATE(2999), 1, + STATE(3016), 1, sym_pattern, - STATE(1374), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1380), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4368), 3, + STATE(1420), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [61968] = 9, + [63599] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4426), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2423), 1, + STATE(2425), 1, sym__pattern_branch, - STATE(3201), 1, + STATE(3030), 1, sym_pattern, - STATE(1390), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1392), 2, + STATE(1420), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4434), 3, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62000] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4698), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4700), 10, - sym__newline_or_pipe, - sym_comment, - anon_sym_start, - anon_sym_stop, - anon_sym_ctermfg, - anon_sym_ctermbg, - anon_sym_guifg, - anon_sym_guibg, - anon_sym_guisp, - anon_sym_font, - [62020] = 9, + [63631] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, + STATE(2425), 1, sym__pattern_branch, - STATE(3154), 1, + STATE(3038), 1, sym_pattern, - STATE(1374), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1380), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4368), 3, + STATE(1420), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62052] = 9, + [63663] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1143), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(3525), 1, - anon_sym_LBRACK, - ACTIONS(4784), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1650), 1, + STATE(2425), 1, sym__pattern_branch, - STATE(1774), 1, + STATE(3046), 1, sym_pattern, - STATE(1113), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1119), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(1163), 3, + STATE(1420), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62084] = 6, + [63695] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4788), 1, - aux_sym_filename_token7, - STATE(1575), 1, + STATE(1604), 1, aux_sym_filename_repeat1, - ACTIONS(4445), 2, + ACTIONS(4285), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(4330), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - sym_bang, - ACTIONS(4786), 4, + ACTIONS(4955), 2, aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4957), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [62110] = 13, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4790), 1, - anon_sym_list, - ACTIONS(4792), 1, - anon_sym_define, - ACTIONS(4794), 1, - anon_sym_undefine, - ACTIONS(4796), 1, - anon_sym_place, - ACTIONS(4798), 1, - anon_sym_unplace, - ACTIONS(4800), 1, - anon_sym_jump, - STATE(2728), 1, - sym__sign_jump, - STATE(2729), 1, - sym__sign_unplace, - STATE(2730), 1, - sym__sign_place, - STATE(2731), 1, - sym__sign_list, - STATE(2732), 1, - sym__sign_undefine, - STATE(2734), 1, - sym__sign_define, - [62150] = 6, + ACTIONS(4273), 4, + sym_string_literal, + sym_bang, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [63721] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4802), 1, - anon_sym_LBRACE2, - ACTIONS(4805), 1, - aux_sym_identifier_token2, - STATE(1542), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(795), 3, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - ACTIONS(793), 5, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_EQ_LT_LT, - anon_sym_BSLASH_PIPE, + ACTIONS(4307), 1, aux_sym__map_rhs_token4, - [62176] = 9, + ACTIONS(4926), 1, + aux_sym_filename_token7, + STATE(1601), 1, + aux_sym_filename_repeat1, + ACTIONS(4924), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4491), 5, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [63747] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, + STATE(2425), 1, sym__pattern_branch, - STATE(2971), 1, + STATE(3060), 1, sym_pattern, - STATE(1374), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1380), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4368), 3, + STATE(1420), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62208] = 3, + [63779] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4698), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4700), 10, + ACTIONS(4300), 1, + aux_sym__map_rhs_token4, + ACTIONS(4962), 1, + aux_sym_filename_token7, + STATE(1601), 1, + aux_sym_filename_repeat1, + ACTIONS(4959), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4481), 5, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token3, + aux_sym_filename_token4, + [63805] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4965), 1, + anon_sym_BSLASH_AMP, + STATE(1602), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3612), 10, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + [63827] = 6, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1612), 1, + aux_sym_filename_repeat1, + ACTIONS(4293), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4968), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4970), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 4, + sym_string_literal, + sym_bang, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [63853] = 6, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1615), 1, + aux_sym_filename_repeat1, + ACTIONS(4293), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4972), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4974), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 4, + sym_string_literal, + sym_bang, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [63879] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4976), 1, + sym_bang, + ACTIONS(4980), 1, + sym_hl_group, + ACTIONS(4982), 1, + anon_sym_link, + ACTIONS(4984), 1, + anon_sym_clear, + ACTIONS(4986), 1, + sym__default, + STATE(2929), 1, + sym__hl_body_link, + ACTIONS(4978), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(2930), 4, + sym__hl_body_clear, + sym__hl_body_none, + sym__hl_body_keys, + sym__hl_body, + [63911] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4937), 1, + anon_sym_LBRACE2, + ACTIONS(4988), 1, + aux_sym_identifier_token2, + ACTIONS(785), 2, sym__newline_or_pipe, sym_comment, + STATE(1590), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(787), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [63937] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4733), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4735), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -109688,15 +110273,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [62228] = 3, + [63957] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4698), 2, + ACTIONS(4733), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4700), 10, - sym__newline_or_pipe, - sym_comment, + ACTIONS(4735), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -109705,36 +110290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [62248] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4811), 1, - anon_sym_cchar, - ACTIONS(4817), 1, - sym__syn_keyword_identifier, - STATE(1546), 1, - aux_sym__syn_keyword_repeat1, - STATE(1664), 1, - sym__syn_arguments_keyword, - ACTIONS(4814), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4808), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [62276] = 3, + [63977] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4698), 2, + ACTIONS(4733), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4700), 10, - sym__newline_or_pipe, - sym_comment, + ACTIONS(4735), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -109743,157 +110307,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [62296] = 4, + [63997] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4819), 1, - anon_sym_BSLASH_AMP, - STATE(1559), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 10, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, - [62318] = 6, + ACTIONS(3638), 1, + anon_sym_BSLASH, + ACTIONS(3642), 1, + anon_sym_LBRACK2, + ACTIONS(4799), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1747), 1, + sym__pattern_branch, + STATE(1796), 1, + sym_pattern, + STATE(1149), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1150), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3646), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [64029] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4821), 1, - anon_sym_LBRACE2, - ACTIONS(4823), 1, - aux_sym_identifier_token2, - ACTIONS(785), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1520), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(787), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [62344] = 6, + ACTIONS(3939), 1, + anon_sym_BSLASH, + ACTIONS(3943), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1843), 1, + sym_pattern, + STATE(1915), 1, + sym__pattern_branch, + STATE(1230), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1231), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3947), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [64061] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4828), 1, - aux_sym_filename_token7, - STATE(1550), 1, + STATE(1615), 1, aux_sym_filename_repeat1, - ACTIONS(4289), 2, + ACTIONS(4491), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(4243), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - sym_bang, - ACTIONS(4825), 4, + ACTIONS(4972), 2, aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4974), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [62370] = 6, + ACTIONS(4307), 4, + sym_string_literal, + sym_bang, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [64087] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4833), 1, - aux_sym_filename_token7, - STATE(1550), 1, + ACTIONS(3656), 1, + anon_sym_BSLASH, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4795), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1721), 1, + sym__pattern_branch, + STATE(1843), 1, + sym_pattern, + STATE(1148), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1158), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3664), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [64119] = 9, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3984), 1, + anon_sym_BSLASH, + ACTIONS(3988), 1, + anon_sym_LBRACK2, + ACTIONS(4880), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1796), 1, + sym_pattern, + STATE(1965), 1, + sym__pattern_branch, + STATE(1218), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1243), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3992), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [64151] = 6, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1615), 1, aux_sym_filename_repeat1, - ACTIONS(4273), 2, + ACTIONS(4481), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(4229), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - sym_bang, - ACTIONS(4831), 4, + ACTIONS(4990), 2, aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(4993), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [62396] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3461), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(3463), 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, - sym__syn_keyword_identifier, - [62416] = 9, + ACTIONS(4300), 4, + sym_string_literal, + sym_bang, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [64177] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4426), 1, + ACTIONS(1143), 1, anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, + ACTIONS(3582), 1, + anon_sym_LBRACK2, + ACTIONS(4996), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2423), 1, + STATE(1674), 1, sym__pattern_branch, - STATE(3157), 1, + STATE(1805), 1, sym_pattern, - STATE(1390), 2, + STATE(1124), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1392), 2, + STATE(1125), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4434), 3, + ACTIONS(1163), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62448] = 10, + [64209] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4835), 1, - aux_sym_option_name_token1, - ACTIONS(4837), 1, - anon_sym_t_, - ACTIONS(4839), 1, - anon_sym_all, - ACTIONS(4841), 1, - anon_sym_all_AMP, - ACTIONS(4843), 1, - sym__no, - ACTIONS(4845), 1, - sym__inv, - STATE(1719), 1, - sym_option_name, - STATE(2499), 1, - sym_set_item, - STATE(1731), 4, - sym_no_option, - sym_inv_option, - sym_default_option, - sym__set_option, - [62482] = 3, + ACTIONS(1107), 1, + anon_sym_BSLASH, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(4998), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1695), 1, + sym__pattern_branch, + STATE(1804), 1, + sym_pattern, + STATE(1114), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1115), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(1127), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [64241] = 13, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5000), 1, + anon_sym_list, + ACTIONS(5002), 1, + anon_sym_define, + ACTIONS(5004), 1, + anon_sym_undefine, + ACTIONS(5006), 1, + anon_sym_place, + ACTIONS(5008), 1, + anon_sym_unplace, + ACTIONS(5010), 1, + anon_sym_jump, + STATE(2679), 1, + sym__sign_define, + STATE(2680), 1, + sym__sign_undefine, + STATE(2683), 1, + sym__sign_list, + STATE(2685), 1, + sym__sign_place, + STATE(2688), 1, + sym__sign_unplace, + STATE(2689), 1, + sym__sign_jump, + [64281] = 13, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4894), 1, + anon_sym_list, + ACTIONS(4898), 1, + anon_sym_undefine, + ACTIONS(5012), 1, + anon_sym_define, + ACTIONS(5014), 1, + anon_sym_place, + ACTIONS(5016), 1, + anon_sym_unplace, + ACTIONS(5018), 1, + anon_sym_jump, + STATE(2811), 1, + sym__sign_jump, + STATE(2812), 1, + sym__sign_unplace, + STATE(2855), 1, + sym__sign_place, + STATE(2860), 1, + sym__sign_list, + STATE(2865), 1, + sym__sign_undefine, + STATE(2872), 1, + sym__sign_define, + [64321] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4708), 2, + ACTIONS(4733), 2, anon_sym_cterm, anon_sym_gui, - ACTIONS(4706), 10, - sym__newline_or_pipe, - sym_comment, + ACTIONS(4735), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -109902,156 +110556,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [62502] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3453), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(3455), 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, - sym__syn_keyword_identifier, - [62522] = 8, + [64341] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4566), 1, + ACTIONS(4545), 1, anon_sym_BSLASH, - STATE(1762), 1, + STATE(1815), 1, aux_sym_runtime_statement_repeat1, - STATE(2000), 1, + STATE(2015), 1, sym_filename, - STATE(2016), 1, + STATE(2020), 1, sym__runtime_where, - ACTIONS(4570), 2, + ACTIONS(4549), 2, aux_sym_filename_token1, aux_sym_filename_token3, - ACTIONS(4572), 2, + ACTIONS(4551), 2, aux_sym_filename_token2, aux_sym_filename_token4, - ACTIONS(4484), 4, + ACTIONS(4543), 4, anon_sym_START, anon_sym_OPT, anon_sym_PACK, anon_sym_ALL, - [62552] = 10, + [64371] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4672), 1, + ACTIONS(4753), 1, aux_sym_option_name_token1, - ACTIONS(4674), 1, + ACTIONS(4755), 1, anon_sym_t_, - ACTIONS(4680), 1, - sym__no, - ACTIONS(4682), 1, - sym__inv, - ACTIONS(4847), 1, + ACTIONS(4757), 1, anon_sym_all, - ACTIONS(4849), 1, + ACTIONS(4759), 1, anon_sym_all_AMP, - STATE(1677), 1, + ACTIONS(4761), 1, + sym__no, + ACTIONS(4763), 1, + sym__inv, + STATE(1727), 1, sym_option_name, - STATE(2323), 1, + STATE(2270), 1, sym_set_item, - STATE(1679), 4, + STATE(1711), 4, sym_no_option, sym_inv_option, sym_default_option, sym__set_option, - [62586] = 4, + [64405] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4851), 1, - anon_sym_BSLASH_AMP, - STATE(1559), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 10, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, + ACTIONS(4860), 1, + anon_sym_LBRACE2, + ACTIONS(5020), 1, + aux_sym_identifier_token2, + ACTIONS(787), 2, + sym_au_event, + anon_sym_EQ, + STATE(1541), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + ACTIONS(785), 6, anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_QMARK2, + anon_sym_EQ_LT_LT, + anon_sym_RPAREN, anon_sym_BSLASH_PIPE, - [62608] = 3, + aux_sym__map_rhs_token4, + anon_sym_DASH_GT, + [64431] = 10, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4854), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(4856), 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, - sym__syn_keyword_identifier, - [62628] = 6, + ACTIONS(4753), 1, + aux_sym_option_name_token1, + ACTIONS(4755), 1, + anon_sym_t_, + ACTIONS(4757), 1, + anon_sym_all, + ACTIONS(4759), 1, + anon_sym_all_AMP, + ACTIONS(4761), 1, + sym__no, + ACTIONS(4763), 1, + sym__inv, + STATE(1727), 1, + sym_option_name, + STATE(2337), 1, + sym_set_item, + STATE(1711), 4, + sym_no_option, + sym_inv_option, + sym_default_option, + sym__set_option, + [64465] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4858), 1, + ACTIONS(5022), 1, anon_sym_LBRACE2, - ACTIONS(4861), 1, + ACTIONS(5025), 1, aux_sym_identifier_token2, - ACTIONS(795), 2, - sym_au_event, - anon_sym_EQ, - STATE(1561), 2, + STATE(1625), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - ACTIONS(793), 6, - anon_sym_COMMA, + ACTIONS(801), 3, + anon_sym_LBRACE, + aux_sym_identifier_token1, + anon_sym_EQ, + ACTIONS(799), 5, + sym__scope_dict, + anon_sym_a_COLON, anon_sym_EQ_LT_LT, - anon_sym_RPAREN, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_DASH_GT, - [62654] = 9, + [64491] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4864), 1, + ACTIONS(5028), 1, sym_bang, - ACTIONS(4866), 1, + ACTIONS(5030), 1, sym_hl_group, - ACTIONS(4868), 1, + ACTIONS(5032), 1, anon_sym_link, - ACTIONS(4870), 1, + ACTIONS(5034), 1, anon_sym_clear, - ACTIONS(4874), 1, + ACTIONS(5036), 1, sym__default, - STATE(2801), 1, + STATE(2665), 1, sym__hl_body_link, - ACTIONS(4872), 2, + ACTIONS(4978), 2, sym__newline_or_pipe, sym_comment, - STATE(2745), 4, + STATE(2774), 4, sym__hl_body_clear, sym__hl_body_none, sym__hl_body_keys, sym__hl_body, - [62686] = 3, + [64523] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4698), 2, - anon_sym_cterm, - anon_sym_gui, - ACTIONS(4700), 10, + ACTIONS(3028), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3026), 10, + anon_sym_COMMA, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [64543] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4947), 1, + aux_sym_filename_token7, + STATE(1629), 1, + aux_sym_filename_repeat1, + ACTIONS(4491), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4307), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + sym_bang, + ACTIONS(4945), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [64569] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5041), 1, + aux_sym_filename_token7, + STATE(1629), 1, + aux_sym_filename_repeat1, + ACTIONS(4481), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4300), 4, sym__newline_or_pipe, + sym_string_literal, sym_comment, + sym_bang, + ACTIONS(5038), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [64595] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4733), 2, + anon_sym_cterm, + anon_sym_gui, + ACTIONS(4735), 10, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_start, anon_sym_stop, anon_sym_ctermfg, @@ -110060,84 +110763,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_guibg, anon_sym_guisp, anon_sym_font, - [62706] = 9, + [64615] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2942), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2940), 10, + anon_sym_COMMA, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [64635] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3476), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3474), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [64654] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1686), 1, + aux_sym_filename_repeat1, + ACTIONS(5046), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5044), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [64677] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5048), 1, + anon_sym_BSLASH_AMP, + STATE(1652), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(4815), 9, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [64698] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3629), 1, + ACTIONS(4253), 1, anon_sym_BSLASH, - ACTIONS(3633), 1, - anon_sym_LBRACK, - ACTIONS(4696), 1, + ACTIONS(4257), 1, + anon_sym_LBRACK2, + ACTIONS(4259), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1720), 1, + STATE(2190), 1, sym__pattern_branch, - STATE(1784), 1, - sym_pattern, - STATE(1143), 2, + STATE(1348), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1147), 2, + STATE(1351), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3637), 3, + ACTIONS(4261), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62738] = 10, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4672), 1, - aux_sym_option_name_token1, - ACTIONS(4674), 1, - anon_sym_t_, - ACTIONS(4680), 1, - sym__no, - ACTIONS(4682), 1, - sym__inv, - ACTIONS(4847), 1, - anon_sym_all, - ACTIONS(4849), 1, - anon_sym_all_AMP, - STATE(1677), 1, - sym_option_name, - STATE(2320), 1, - sym_set_item, - STATE(1679), 4, - sym_no_option, - sym_inv_option, - sym_default_option, - sym__set_option, - [62772] = 9, + [64727] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4426), 1, + ACTIONS(1107), 1, anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(4998), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2423), 1, + STATE(1701), 1, sym__pattern_branch, - STATE(3237), 1, - sym_pattern, - STATE(1390), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1392), 2, + STATE(1114), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4434), 3, + STATE(1115), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(1127), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [62804] = 4, + [64756] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4876), 1, - anon_sym_BSLASH_AMP, - STATE(1567), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 10, + ACTIONS(5052), 1, + anon_sym_BSLASH_PIPE, + STATE(1702), 1, + aux_sym_pattern_repeat1, + ACTIONS(5050), 9, sym__newline_or_pipe, sym_comment, sym__normal, @@ -110146,732 +110889,679 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_bang, anon_sym_SEMI, - anon_sym_SLASH2, - anon_sym_BSLASH_PIPE, - [62826] = 6, + anon_sym_QMARK2, + [64777] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4821), 1, - anon_sym_LBRACE2, - ACTIONS(4879), 1, - aux_sym_identifier_token2, - ACTIONS(803), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1549), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(805), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [62852] = 6, + ACTIONS(2942), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(2940), 9, + 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, + [64796] = 6, ACTIONS(3), 1, sym__line_continuation, - STATE(1587), 1, + ACTIONS(5056), 1, + aux_sym_filename_token7, + STATE(1659), 1, aux_sym_filename_repeat1, - ACTIONS(4334), 2, + ACTIONS(4285), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(4881), 2, + ACTIONS(4273), 3, + sym_string_literal, + sym_bang, + aux_sym__map_rhs_token4, + ACTIONS(5054), 4, aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4883), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4211), 4, - sym_string_literal, - sym_bang, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [62878] = 10, + [64821] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4835), 1, - aux_sym_option_name_token1, - ACTIONS(4837), 1, - anon_sym_t_, - ACTIONS(4839), 1, - anon_sym_all, - ACTIONS(4841), 1, - anon_sym_all_AMP, - ACTIONS(4843), 1, - sym__no, - ACTIONS(4845), 1, - sym__inv, - STATE(1719), 1, - sym_option_name, - STATE(2334), 1, - sym_set_item, - STATE(1731), 4, - sym_no_option, - sym_inv_option, - sym_default_option, - sym__set_option, - [62912] = 6, + ACTIONS(3656), 1, + anon_sym_BSLASH, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4795), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1740), 1, + sym__pattern_branch, + STATE(1148), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1158), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3664), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [64850] = 9, ACTIONS(3), 1, sym__line_continuation, - STATE(1588), 1, - aux_sym_filename_repeat1, - ACTIONS(4334), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4885), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4887), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4211), 4, - sym_string_literal, - sym_bang, - anon_sym_BSLASH_PIPE, + ACTIONS(4978), 1, aux_sym__map_rhs_token4, - [62938] = 6, + ACTIONS(4982), 1, + anon_sym_link, + ACTIONS(4984), 1, + anon_sym_clear, + ACTIONS(5058), 1, + sym_bang, + ACTIONS(5060), 1, + sym_hl_group, + ACTIONS(5062), 1, + sym__default, + STATE(2929), 1, + sym__hl_body_link, + STATE(2930), 4, + sym__hl_body_clear, + sym__hl_body_none, + sym__hl_body_keys, + sym__hl_body, + [64881] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4243), 1, - aux_sym__map_rhs_token4, - ACTIONS(4892), 1, - aux_sym_filename_token7, - STATE(1572), 1, - aux_sym_filename_repeat1, - ACTIONS(4889), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4289), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [62964] = 10, + ACTIONS(4032), 1, + anon_sym_LBRACK2, + ACTIONS(5064), 1, + anon_sym_a_COLON, + ACTIONS(5066), 1, + anon_sym_LBRACE, + ACTIONS(5068), 1, + aux_sym_identifier_token1, + ACTIONS(5070), 1, + sym_scope, + STATE(2189), 1, + sym__curly_braces_name_expression, + STATE(3263), 5, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym_list_assignment, + [64910] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4835), 1, - aux_sym_option_name_token1, - ACTIONS(4837), 1, - anon_sym_t_, - ACTIONS(4839), 1, - anon_sym_all, - ACTIONS(4841), 1, - anon_sym_all_AMP, - ACTIONS(4843), 1, - sym__no, - ACTIONS(4845), 1, - sym__inv, - STATE(1719), 1, - sym_option_name, - STATE(2333), 1, - sym_set_item, - STATE(1731), 4, - sym_no_option, - sym_inv_option, - sym_default_option, - sym__set_option, - [62998] = 6, + ACTIONS(4533), 1, + anon_sym_BSLASH, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(2177), 1, + sym__pattern_branch, + STATE(1353), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1420), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4541), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [64939] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4897), 1, - aux_sym_filename_token7, - STATE(1551), 1, + STATE(1662), 1, aux_sym_filename_repeat1, - ACTIONS(4334), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4211), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - sym_bang, - ACTIONS(4895), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, + ACTIONS(5074), 2, aux_sym_filename_token6, aux_sym_filename_token8, - [63024] = 6, + ACTIONS(5072), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4291), 5, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [64962] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4833), 1, + ACTIONS(5078), 1, aux_sym_filename_token7, - STATE(1550), 1, + STATE(1650), 1, aux_sym_filename_repeat1, - ACTIONS(4334), 2, + ACTIONS(4491), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(4211), 4, - sym__newline_or_pipe, + ACTIONS(4307), 3, sym_string_literal, - sym_comment, sym_bang, - ACTIONS(4831), 4, + aux_sym__map_rhs_token4, + ACTIONS(5076), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [63050] = 6, + [64987] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4899), 1, - anon_sym_LBRACE2, - ACTIONS(4902), 1, - aux_sym_identifier_token2, - STATE(1576), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(795), 3, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - ACTIONS(793), 5, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_EQ_LT_LT, - [63076] = 3, + ACTIONS(5080), 1, + anon_sym_BSLASH_AMP, + STATE(1646), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3612), 9, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [65008] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3461), 2, + STATE(1666), 1, + aux_sym_filename_repeat1, + ACTIONS(5085), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(5083), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4291), 5, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [65031] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1644), 1, + aux_sym_filename_repeat1, + ACTIONS(5089), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(5087), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4273), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(3463), 10, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [65054] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3028), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3026), 9, + anon_sym_COMMA, 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, - sym__syn_keyword_identifier, - [63096] = 6, + [65073] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4229), 1, - aux_sym__map_rhs_token4, - ACTIONS(4752), 1, + ACTIONS(5094), 1, aux_sym_filename_token7, - STATE(1572), 1, + STATE(1650), 1, aux_sym_filename_repeat1, - ACTIONS(4750), 4, + ACTIONS(4481), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(4300), 3, + sym_string_literal, + sym_bang, + aux_sym__map_rhs_token4, + ACTIONS(5091), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4273), 5, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token3, - aux_sym_filename_token4, - [63122] = 7, + [65098] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4392), 1, - anon_sym_cchar, - ACTIONS(4905), 1, - sym__syn_keyword_identifier, - STATE(1546), 1, - aux_sym__syn_keyword_repeat1, - STATE(1664), 1, - sym__syn_arguments_keyword, - ACTIONS(4394), 2, - anon_sym_containedin, - anon_sym_nextgroup, - ACTIONS(4390), 6, - anon_sym_conceal, - anon_sym_contained, - anon_sym_transparent, - anon_sym_skipwhite, - anon_sym_skipnl, - anon_sym_skipempty, - [63150] = 3, + ACTIONS(5097), 1, + anon_sym_BSLASH_AMP, + STATE(1646), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(4815), 9, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [65119] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4854), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4856), 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, - sym__syn_keyword_identifier, - [63170] = 9, + ACTIONS(5099), 1, + anon_sym_BSLASH_AMP, + STATE(1652), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3612), 9, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [65140] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3900), 1, + ACTIONS(5104), 1, + aux_sym_filename_token7, + STATE(1645), 1, + aux_sym_filename_repeat1, + ACTIONS(4293), 2, + aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4728), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1784), 1, - sym_pattern, - STATE(1843), 1, - sym__pattern_branch, - STATE(1223), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1230), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(3908), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [63202] = 9, + ACTIONS(4291), 3, + sym_string_literal, + sym_bang, + aux_sym__map_rhs_token4, + ACTIONS(5102), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [65165] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4426), 1, + ACTIONS(1143), 1, anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, + ACTIONS(3582), 1, + anon_sym_LBRACK2, + ACTIONS(4996), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2423), 1, + STATE(1701), 1, sym__pattern_branch, - STATE(3031), 1, - sym_pattern, - STATE(1390), 2, + STATE(1124), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1392), 2, + STATE(1125), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4434), 3, + ACTIONS(1163), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63234] = 10, + [65194] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4672), 1, - aux_sym_option_name_token1, - ACTIONS(4674), 1, - anon_sym_t_, - ACTIONS(4676), 1, - anon_sym_all, - ACTIONS(4678), 1, - anon_sym_all_AMP, - ACTIONS(4680), 1, - sym__no, - ACTIONS(4682), 1, - sym__inv, - STATE(1677), 1, - sym_option_name, - STATE(2529), 1, - sym_set_item, - STATE(1758), 4, - sym_no_option, - sym_inv_option, - sym_default_option, - sym__set_option, - [63268] = 9, + ACTIONS(5106), 1, + anon_sym_BSLASH_PIPE, + STATE(1661), 1, + aux_sym_pattern_repeat1, + ACTIONS(5050), 9, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_SLASH2, + [65215] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3983), 1, + ACTIONS(4345), 1, anon_sym_BSLASH, - ACTIONS(3987), 1, - anon_sym_LBRACK, - ACTIONS(4730), 1, + ACTIONS(4349), 1, + anon_sym_LBRACK2, + ACTIONS(4930), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1783), 1, - sym_pattern, - STATE(1836), 1, + STATE(2177), 1, sym__pattern_branch, - STATE(1240), 2, + STATE(1365), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1244), 2, + STATE(1366), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3991), 3, + ACTIONS(4353), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63300] = 9, + [65244] = 3, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1563), 1, + sym__hl_attr_list, + ACTIONS(5108), 10, + anon_sym_bold, + anon_sym_underline, + anon_sym_undercurl, + anon_sym_strikethrough, + anon_sym_reverse, + anon_sym_inverse, + anon_sym_italic, + anon_sym_standout, + anon_sym_nocombine, + anon_sym_NONE2, + [65263] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(3792), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3796), 1, + anon_sym_LBRACK2, + ACTIONS(4935), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2427), 1, + STATE(1701), 1, sym__pattern_branch, - STATE(2961), 1, - sym_pattern, - STATE(1374), 2, + STATE(1189), 2, sym__pattern_piece, aux_sym__pattern_concat, - STATE(1380), 2, + STATE(1191), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(4368), 3, + ACTIONS(3800), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63332] = 9, + [65292] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3881), 1, + ACTIONS(5078), 1, + aux_sym_filename_token7, + STATE(1650), 1, + aux_sym_filename_repeat1, + ACTIONS(4293), 2, + aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(3885), 1, - anon_sym_LBRACK, - ACTIONS(4907), 1, + ACTIONS(4291), 3, + sym_string_literal, + sym_bang, + aux_sym__map_rhs_token4, + ACTIONS(5076), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [65317] = 8, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4058), 1, + anon_sym_BSLASH, + ACTIONS(4062), 1, + anon_sym_LBRACK2, + ACTIONS(5110), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1776), 1, - sym_pattern, - STATE(1782), 1, + STATE(2190), 1, sym__pattern_branch, - STATE(1190), 2, + STATE(1276), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1214), 2, + STATE(1277), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3889), 3, + ACTIONS(4066), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63364] = 6, + [65346] = 4, ACTIONS(3), 1, sym__line_continuation, - STATE(1588), 1, - aux_sym_filename_repeat1, - ACTIONS(4273), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4885), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4887), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4229), 4, - sym_string_literal, - sym_bang, + ACTIONS(5114), 1, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [63390] = 6, + STATE(1661), 1, + aux_sym_pattern_repeat1, + ACTIONS(5112), 9, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_SLASH2, + [65367] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1588), 1, + STATE(1662), 1, aux_sym_filename_repeat1, - ACTIONS(4289), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4909), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(4912), 3, - aux_sym_filename_token5, + ACTIONS(5120), 2, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4243), 4, - sym_string_literal, - sym_bang, + ACTIONS(5117), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4300), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [63416] = 6, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [65390] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4915), 1, - anon_sym_LBRACE2, - ACTIONS(4917), 1, - aux_sym_identifier_token2, - STATE(1576), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(787), 3, + ACTIONS(4028), 1, anon_sym_LBRACE, + ACTIONS(4030), 1, aux_sym_identifier_token1, - anon_sym_EQ, - ACTIONS(785), 5, - sym__newline_or_pipe, + STATE(1546), 1, + sym__curly_braces_name_expression, + ACTIONS(4036), 2, sym__scope_dict, - sym_comment, anon_sym_a_COLON, - anon_sym_EQ_LT_LT, - [63442] = 9, + ACTIONS(5123), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1679), 4, + sym_scope_dict, + sym_identifier, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + [65417] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4919), 1, - sym_bang, - ACTIONS(4921), 1, - sym_hl_group, - ACTIONS(4923), 1, - anon_sym_link, - ACTIONS(4925), 1, - anon_sym_clear, - ACTIONS(4927), 1, - sym__default, - STATE(2775), 1, - sym__hl_body_link, - ACTIONS(4872), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(2774), 4, - sym__hl_body_clear, - sym__hl_body_none, - sym__hl_body_keys, - sym__hl_body, - [63474] = 9, + ACTIONS(5125), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5127), 1, + anon_sym_BSLASH, + ACTIONS(5131), 1, + anon_sym_LT2, + STATE(487), 1, + sym__map_lhs, + STATE(1131), 1, + sym_keycode, + STATE(1671), 1, + aux_sym_map_statement_repeat1, + ACTIONS(5129), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [65446] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3783), 1, + ACTIONS(5125), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5127), 1, anon_sym_BSLASH, - ACTIONS(3787), 1, - anon_sym_LBRACK, - ACTIONS(4929), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1774), 1, - sym_pattern, - STATE(1800), 1, - sym__pattern_branch, - STATE(1191), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1205), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(3791), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [63506] = 6, + ACTIONS(5131), 1, + anon_sym_LT2, + STATE(442), 1, + sym__map_lhs, + STATE(1131), 1, + sym_keycode, + STATE(1677), 1, + aux_sym_map_statement_repeat1, + ACTIONS(5133), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [65475] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4780), 1, - anon_sym_LBRACE2, - ACTIONS(4931), 1, - aux_sym_identifier_token2, - ACTIONS(787), 2, - sym_au_event, - anon_sym_EQ, - STATE(1561), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(785), 6, - anon_sym_COMMA, - anon_sym_EQ_LT_LT, - anon_sym_RPAREN, + STATE(1662), 1, + aux_sym_filename_repeat1, + ACTIONS(5074), 2, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(5072), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(4307), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_DASH_GT, - [63532] = 10, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4672), 1, - aux_sym_option_name_token1, - ACTIONS(4674), 1, - anon_sym_t_, - ACTIONS(4680), 1, - sym__no, - ACTIONS(4682), 1, - sym__inv, - ACTIONS(4847), 1, - anon_sym_all, - ACTIONS(4849), 1, - anon_sym_all_AMP, - STATE(1677), 1, - sym_option_name, - STATE(2529), 1, - sym_set_item, - STATE(1679), 4, - sym_no_option, - sym_inv_option, - sym_default_option, - sym__set_option, - [63566] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4426), 1, - anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2423), 1, - sym__pattern_branch, - STATE(2938), 1, - sym_pattern, - STATE(1390), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1392), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4434), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [63598] = 6, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [65498] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4915), 1, - anon_sym_LBRACE2, - ACTIONS(4933), 1, - aux_sym_identifier_token2, - STATE(1589), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - ACTIONS(805), 3, - anon_sym_LBRACE, - aux_sym_identifier_token1, - anon_sym_EQ, - ACTIONS(803), 5, + ACTIONS(5030), 1, + sym_hl_group, + ACTIONS(5032), 1, + anon_sym_link, + ACTIONS(5034), 1, + anon_sym_clear, + ACTIONS(5036), 1, + sym__default, + STATE(2665), 1, + sym__hl_body_link, + ACTIONS(5135), 2, sym__newline_or_pipe, - sym__scope_dict, sym_comment, - anon_sym_a_COLON, - anon_sym_EQ_LT_LT, - [63624] = 13, + STATE(2777), 4, + sym__hl_body_clear, + sym__hl_body_none, + sym__hl_body_keys, + sym__hl_body, + [65527] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4790), 1, - anon_sym_list, - ACTIONS(4794), 1, - anon_sym_undefine, - ACTIONS(4935), 1, - anon_sym_define, - ACTIONS(4937), 1, - anon_sym_place, - ACTIONS(4939), 1, - anon_sym_unplace, - ACTIONS(4941), 1, - anon_sym_jump, - STATE(2728), 1, - sym__sign_jump, - STATE(2729), 1, - sym__sign_unplace, - STATE(2730), 1, - sym__sign_place, - STATE(2731), 1, - sym__sign_list, - STATE(2732), 1, - sym__sign_undefine, - STATE(2734), 1, - sym__sign_define, - [63664] = 5, + ACTIONS(4032), 1, + anon_sym_LBRACK2, + ACTIONS(5064), 1, + anon_sym_a_COLON, + ACTIONS(5066), 1, + anon_sym_LBRACE, + ACTIONS(5068), 1, + aux_sym_identifier_token1, + ACTIONS(5070), 1, + sym_scope, + STATE(2189), 1, + sym__curly_braces_name_expression, + STATE(3275), 5, + sym_scoped_identifier, + sym_argument, + sym_identifier, + sym__ident, + sym_list_assignment, + [65556] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4947), 1, + ACTIONS(5141), 1, anon_sym_SQUOTE, - ACTIONS(4945), 2, + ACTIONS(5139), 2, sym__hl_color_nr, aux_sym__hl_color_name_token1, - STATE(1480), 2, + STATE(1562), 2, sym__hl_quoted_name, sym__hl_color_name, - ACTIONS(4943), 6, + ACTIONS(5137), 6, anon_sym_NONE2, anon_sym_bg, anon_sym_background, anon_sym_fg, anon_sym_foreground, aux_sym__hl_color_name_token2, - [63687] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1653), 1, - aux_sym_filename_repeat1, - ACTIONS(4951), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4949), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4211), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [63710] = 8, + [65579] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4093), 1, - anon_sym_BSLASH, - ACTIONS(4097), 1, - anon_sym_LBRACK, - ACTIONS(4953), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2179), 1, - sym__pattern_branch, - STATE(1319), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1320), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4101), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [63739] = 8, + ACTIONS(4785), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4783), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [65598] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4426), 1, + ACTIONS(5125), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5127), 1, anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2563), 1, - sym__pattern_branch, - STATE(1390), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1392), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4434), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [63768] = 5, + ACTIONS(5131), 1, + anon_sym_LT2, + STATE(530), 1, + sym__map_lhs, + STATE(1131), 1, + sym_keycode, + STATE(1821), 1, + aux_sym_map_statement_repeat1, + ACTIONS(5143), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [65627] = 7, ACTIONS(3), 1, sym__line_continuation, - STATE(1654), 1, - aux_sym_filename_repeat1, - ACTIONS(4957), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4955), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4211), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [63791] = 3, + ACTIONS(4042), 1, + anon_sym_LBRACE, + ACTIONS(4044), 1, + aux_sym_identifier_token1, + STATE(1514), 1, + sym__curly_braces_name_expression, + ACTIONS(4046), 2, + sym__scope_dict, + anon_sym_a_COLON, + ACTIONS(5145), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(1683), 4, + sym_scope_dict, + sym_identifier, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + [65654] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1469), 1, + STATE(1561), 1, sym__hl_attr_list, - ACTIONS(4959), 10, + ACTIONS(5108), 10, anon_sym_bold, anon_sym_underline, anon_sym_undercurl, @@ -110882,181 +111572,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_standout, anon_sym_nocombine, anon_sym_NONE2, - [63810] = 8, + [65673] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, - anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2179), 1, - sym__pattern_branch, - STATE(1374), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1380), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(4368), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [63839] = 8, + ACTIONS(5106), 1, + anon_sym_BSLASH_PIPE, + STATE(1655), 1, + aux_sym_pattern_repeat1, + ACTIONS(5147), 9, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_SLASH2, + [65694] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4344), 1, - anon_sym_BSLASH, - ACTIONS(4348), 1, - anon_sym_LBRACK, - ACTIONS(4692), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2179), 1, - sym__pattern_branch, - STATE(1405), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1407), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4352), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [63868] = 2, + ACTIONS(4980), 1, + sym_hl_group, + ACTIONS(4982), 1, + anon_sym_link, + ACTIONS(4984), 1, + anon_sym_clear, + ACTIONS(4986), 1, + sym__default, + STATE(2929), 1, + sym__hl_body_link, + ACTIONS(5135), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(2733), 4, + sym__hl_body_clear, + sym__hl_body_none, + sym__hl_body_keys, + sym__hl_body, + [65723] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4058), 11, + ACTIONS(4409), 1, anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_LBRACK, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, aux_sym__pattern_ordinary_atom_token2, + STATE(2764), 1, + sym__pattern_branch, + STATE(1384), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1385), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(4417), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63885] = 8, + [65752] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4961), 1, + ACTIONS(5125), 1, aux_sym__bang_filter_command_argument_token1, - ACTIONS(4963), 1, + ACTIONS(5127), 1, anon_sym_BSLASH, - ACTIONS(4967), 1, + ACTIONS(5131), 1, anon_sym_LT2, STATE(527), 1, sym__map_lhs, - STATE(1112), 1, + STATE(1131), 1, sym_keycode, - STATE(1799), 1, + STATE(1821), 1, aux_sym_map_statement_repeat1, - ACTIONS(4965), 5, + ACTIONS(5143), 5, anon_sym_LTbuffer_GT, anon_sym_LTnowait_GT, anon_sym_LTsilent_GT, anon_sym_LTunique_GT, anon_sym_LTscript_GT, - [63914] = 4, + [65781] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4969), 1, - anon_sym_BSLASH_AMP, - STATE(1607), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 9, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [63935] = 8, + ACTIONS(4591), 1, + anon_sym_LBRACK, + ACTIONS(3457), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3455), 8, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [65802] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5152), 1, + anon_sym_LBRACE, + ACTIONS(5155), 1, + aux_sym_identifier_token1, + STATE(1546), 1, + sym__curly_braces_name_expression, + ACTIONS(5149), 2, + sym__scope_dict, + anon_sym_a_COLON, + ACTIONS(5158), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1679), 4, + sym_scope_dict, + sym_identifier, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + [65829] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3881), 1, + ACTIONS(4087), 1, anon_sym_BSLASH, - ACTIONS(3885), 1, - anon_sym_LBRACK, - ACTIONS(4907), 1, + ACTIONS(4089), 1, + anon_sym_LBRACK2, + ACTIONS(5160), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1624), 1, + STATE(2177), 1, sym__pattern_branch, - STATE(1190), 2, + STATE(1301), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1214), 2, + STATE(1315), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3889), 3, + ACTIONS(4093), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [65858] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4775), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4773), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [65877] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4048), 11, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63964] = 2, + [65894] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5165), 1, + anon_sym_LBRACE, + ACTIONS(5168), 1, + aux_sym_identifier_token1, + STATE(1514), 1, + sym__curly_braces_name_expression, + ACTIONS(5158), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5162), 2, + sym__scope_dict, + anon_sym_a_COLON, + STATE(1683), 4, + sym_scope_dict, + sym_identifier, + sym__assignment_variable, + aux_sym_let_statement_repeat1, + [65921] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4066), 11, + ACTIONS(4077), 11, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_minlines, anon_sym_maxlines, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [63981] = 5, + [65938] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4976), 1, - anon_sym_SQUOTE, - ACTIONS(4974), 2, - sym__hl_color_nr, - aux_sym__hl_color_name_token1, - STATE(1483), 2, - sym__hl_quoted_name, - sym__hl_color_name, - ACTIONS(4972), 6, - anon_sym_NONE2, - anon_sym_bg, - anon_sym_background, - anon_sym_fg, - anon_sym_foreground, - aux_sym__hl_color_name_token2, - [64004] = 7, + STATE(1633), 1, + aux_sym_filename_repeat1, + ACTIONS(5173), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5171), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4273), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [65961] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4000), 1, + STATE(1686), 1, + aux_sym_filename_repeat1, + ACTIONS(5178), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5175), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4300), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [65984] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4888), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(4886), 9, + aux_sym__map_rhs_token4, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [66003] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1686), 1, + aux_sym_filename_repeat1, + ACTIONS(5046), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5044), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4307), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [66026] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4042), 1, anon_sym_LBRACE, - ACTIONS(4002), 1, + ACTIONS(4044), 1, aux_sym_identifier_token1, - STATE(1527), 1, + STATE(1514), 1, sym__curly_braces_name_expression, - ACTIONS(4008), 2, + ACTIONS(4046), 2, sym__scope_dict, anon_sym_a_COLON, - ACTIONS(4978), 2, + ACTIONS(5123), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - STATE(1626), 4, + STATE(1683), 4, sym_scope_dict, sym_identifier, sym__assignment_variable, aux_sym_let_statement_repeat1, - [64031] = 3, + [66053] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1487), 1, + STATE(1531), 1, sym__hl_attr_list, - ACTIONS(4959), 10, + ACTIONS(5181), 10, anon_sym_bold, anon_sym_underline, anon_sym_undercurl, @@ -111067,92 +111882,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_standout, anon_sym_nocombine, anon_sym_NONE2, - [64050] = 4, + [66072] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4980), 1, - anon_sym_BSLASH_AMP, - STATE(1607), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 9, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [64071] = 8, + ACTIONS(4797), 1, + anon_sym_LBRACK, + ACTIONS(3457), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3455), 8, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [66093] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1688), 1, + aux_sym_filename_repeat1, + ACTIONS(5185), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5183), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [66116] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3601), 1, + ACTIONS(3939), 1, anon_sym_BSLASH, - ACTIONS(3605), 1, - anon_sym_LBRACK, - ACTIONS(4694), 1, + ACTIONS(3943), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1721), 1, + STATE(1740), 1, sym__pattern_branch, - STATE(1139), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1142), 2, + STATE(1230), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3609), 3, + STATE(1231), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3947), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64100] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4000), 1, - anon_sym_LBRACE, - ACTIONS(4002), 1, - aux_sym_identifier_token1, - STATE(1527), 1, - sym__curly_braces_name_expression, - ACTIONS(4008), 2, - sym__scope_dict, - anon_sym_a_COLON, - ACTIONS(4982), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1626), 4, - sym_scope_dict, - sym_identifier, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - [64127] = 7, + [66145] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4987), 1, + ACTIONS(4028), 1, anon_sym_LBRACE, - ACTIONS(4990), 1, + ACTIONS(4030), 1, aux_sym_identifier_token1, - STATE(1595), 1, + STATE(1546), 1, sym__curly_braces_name_expression, - ACTIONS(4984), 2, + ACTIONS(4036), 2, sym__scope_dict, anon_sym_a_COLON, - ACTIONS(4993), 2, + ACTIONS(5145), 2, sym__newline_or_pipe, sym_comment, - STATE(1616), 4, + STATE(1679), 4, sym_scope_dict, sym_identifier, sym__assignment_variable, aux_sym_let_statement_repeat1, - [64154] = 4, + [66172] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4997), 1, + ACTIONS(5052), 1, anon_sym_BSLASH_PIPE, - STATE(1625), 1, + STATE(1637), 1, aux_sym_pattern_repeat1, - ACTIONS(4995), 9, + ACTIONS(5147), 9, sym__newline_or_pipe, sym_comment, sym__normal, @@ -111162,30 +111975,33 @@ static const uint16_t ts_small_parse_table[] = { sym_bang, anon_sym_SEMI, anon_sym_QMARK2, - [64175] = 5, + [66193] = 8, ACTIONS(3), 1, sym__line_continuation, - STATE(1658), 1, - aux_sym_filename_repeat1, - ACTIONS(5001), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4999), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4330), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [64198] = 3, + ACTIONS(3842), 1, + anon_sym_BSLASH, + ACTIONS(3846), 1, + anon_sym_LBRACK2, + ACTIONS(4928), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1701), 1, + sym__pattern_branch, + STATE(1205), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + STATE(1208), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + ACTIONS(3850), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [66222] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1474), 1, + STATE(1535), 1, sym__hl_attr_list, - ACTIONS(5003), 10, + ACTIONS(5181), 10, anon_sym_bold, anon_sym_underline, anon_sym_undercurl, @@ -111196,90 +112012,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_standout, anon_sym_nocombine, anon_sym_NONE2, - [64217] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5007), 1, - anon_sym_BSLASH_PIPE, - STATE(1620), 1, - aux_sym_pattern_repeat1, - ACTIONS(5005), 9, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_SLASH2, - [64238] = 8, + [66241] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1143), 1, + ACTIONS(3984), 1, anon_sym_BSLASH, - ACTIONS(3525), 1, - anon_sym_LBRACK, - ACTIONS(4784), 1, + ACTIONS(3988), 1, + anon_sym_LBRACK2, + ACTIONS(4880), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1624), 1, + STATE(1740), 1, sym__pattern_branch, - STATE(1113), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1119), 2, + STATE(1218), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(1163), 3, + STATE(1243), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3992), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64267] = 8, + [66270] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3783), 1, - anon_sym_BSLASH, - ACTIONS(3787), 1, + ACTIONS(4669), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1624), 1, - sym__pattern_branch, - STATE(1191), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1205), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - ACTIONS(3791), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [64296] = 8, + ACTIONS(3457), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3455), 8, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [66291] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4866), 1, - sym_hl_group, - ACTIONS(4868), 1, - anon_sym_link, - ACTIONS(4870), 1, - anon_sym_clear, - ACTIONS(4874), 1, - sym__default, - STATE(2801), 1, - sym__hl_body_link, - ACTIONS(5010), 2, - sym__newline_or_pipe, - sym_comment, - STATE(2672), 4, - sym__hl_body_clear, - sym__hl_body_none, - sym__hl_body_keys, - sym__hl_body, - [64325] = 2, + ACTIONS(5191), 1, + anon_sym_SQUOTE, + ACTIONS(5189), 2, + sym__hl_color_nr, + aux_sym__hl_color_name_token1, + STATE(1532), 2, + sym__hl_quoted_name, + sym__hl_color_name, + ACTIONS(5187), 6, + anon_sym_NONE2, + anon_sym_bg, + anon_sym_background, + anon_sym_fg, + anon_sym_foreground, + aux_sym__hl_color_name_token2, + [66314] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5005), 11, + ACTIONS(5112), 11, sym__newline_or_pipe, sym_comment, sym__normal, @@ -111291,14 +112083,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH2, anon_sym_QMARK2, anon_sym_BSLASH_PIPE, - [64342] = 4, + [66331] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5012), 1, + ACTIONS(5193), 1, anon_sym_BSLASH_PIPE, - STATE(1625), 1, + STATE(1702), 1, aux_sym_pattern_repeat1, - ACTIONS(5005), 9, + ACTIONS(5112), 9, sym__newline_or_pipe, sym_comment, sym__normal, @@ -111308,460 +112100,322 @@ static const uint16_t ts_small_parse_table[] = { sym_bang, anon_sym_SEMI, anon_sym_QMARK2, - [64363] = 7, + [66352] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5018), 1, - anon_sym_LBRACE, - ACTIONS(5021), 1, - aux_sym_identifier_token1, - STATE(1527), 1, - sym__curly_braces_name_expression, - ACTIONS(4993), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5015), 2, - sym__scope_dict, - anon_sym_a_COLON, - STATE(1626), 4, - sym_scope_dict, - sym_identifier, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - [64390] = 7, + ACTIONS(3638), 1, + anon_sym_BSLASH, + ACTIONS(3642), 1, + anon_sym_LBRACK2, + ACTIONS(4799), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1740), 1, + sym__pattern_branch, + STATE(1149), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1150), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3646), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [66381] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4028), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - aux_sym_identifier_token1, - STATE(1595), 1, - sym__curly_braces_name_expression, - ACTIONS(4032), 2, - sym__scope_dict, - anon_sym_a_COLON, - ACTIONS(4978), 2, + ACTIONS(5196), 1, + sym__printable, + STATE(1886), 1, + sym__sign_define_arg_text, + ACTIONS(4363), 2, sym__newline_or_pipe, sym_comment, - STATE(1616), 4, - sym_scope_dict, - sym_identifier, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - [64417] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_a_COLON, - ACTIONS(5026), 1, - anon_sym_LBRACE, - ACTIONS(5028), 1, - aux_sym_identifier_token1, - ACTIONS(5030), 1, - sym_scope, - STATE(2187), 1, - sym__curly_braces_name_expression, - STATE(3197), 5, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym_list_assignment, - [64446] = 3, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1481), 1, - sym__hl_attr_list, - ACTIONS(5003), 10, - anon_sym_bold, - anon_sym_underline, - anon_sym_undercurl, - anon_sym_strikethrough, - anon_sym_reverse, - anon_sym_inverse, - anon_sym_italic, - anon_sym_standout, - anon_sym_nocombine, - anon_sym_NONE2, - [64465] = 6, + ACTIONS(4365), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [66403] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5035), 1, - aux_sym_filename_token7, - STATE(1630), 1, - aux_sym_filename_repeat1, - ACTIONS(4289), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4243), 3, - sym_string_literal, - sym_bang, - aux_sym__map_rhs_token4, - ACTIONS(5032), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [64490] = 6, + ACTIONS(833), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_LBRACE2, + ACTIONS(835), 7, + aux_sym_identifier_token2, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [66421] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5040), 1, - aux_sym_filename_token7, - STATE(1630), 1, - aux_sym_filename_repeat1, - ACTIONS(4273), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4229), 3, - sym_string_literal, - sym_bang, - aux_sym__map_rhs_token4, - ACTIONS(5038), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [64515] = 4, + ACTIONS(2685), 1, + anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_LT_LT, + STATE(515), 1, + sym__let_operator, + STATE(2901), 1, + sym__let_heredoc, + ACTIONS(2687), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + [66445] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5044), 1, - anon_sym_BSLASH_PIPE, - STATE(1646), 1, - aux_sym_pattern_repeat1, - ACTIONS(5042), 9, + ACTIONS(5198), 1, + anon_sym_BSLASH_AMP, + STATE(1718), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(4815), 8, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, anon_sym_COLON, - anon_sym_COMMA, sym_bang, - anon_sym_SEMI, - anon_sym_SLASH2, - [64536] = 8, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + [66465] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3900), 1, + ACTIONS(3842), 1, anon_sym_BSLASH, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4728), 1, + ACTIONS(3846), 1, + anon_sym_LBRACK2, + ACTIONS(4928), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1721), 1, - sym__pattern_branch, - STATE(1223), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1230), 2, + STATE(1208), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3908), 3, + STATE(1239), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3850), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64565] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4872), 1, - aux_sym__map_rhs_token4, - ACTIONS(4923), 1, - anon_sym_link, - ACTIONS(4925), 1, - anon_sym_clear, - ACTIONS(5046), 1, - sym_bang, - ACTIONS(5048), 1, - sym_hl_group, - ACTIONS(5050), 1, - sym__default, - STATE(2775), 1, - sym__hl_body_link, - STATE(2774), 4, - sym__hl_body_clear, - sym__hl_body_none, - sym__hl_body_keys, - sym__hl_body, - [64596] = 4, + [66491] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5052), 1, - anon_sym_BSLASH_AMP, - STATE(1649), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 9, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_SLASH2, + ACTIONS(5200), 1, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [64617] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5040), 1, - aux_sym_filename_token7, - STATE(1630), 1, - aux_sym_filename_repeat1, - ACTIONS(4334), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4211), 3, - sym_string_literal, + STATE(1781), 1, + aux_sym_pattern_repeat1, + ACTIONS(5050), 8, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, sym_bang, + anon_sym_SEMI, + anon_sym_SLASH2, aux_sym__map_rhs_token4, - ACTIONS(5038), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [64642] = 8, + [66511] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3629), 1, + ACTIONS(3939), 1, anon_sym_BSLASH, - ACTIONS(3633), 1, - anon_sym_LBRACK, - ACTIONS(4696), 1, + ACTIONS(3943), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1721), 1, - sym__pattern_branch, - STATE(1143), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - STATE(1147), 2, + STATE(1230), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - ACTIONS(3637), 3, + STATE(1260), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3947), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64671] = 6, + [66537] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5056), 1, - aux_sym_filename_token7, - STATE(1631), 1, - aux_sym_filename_repeat1, - ACTIONS(4334), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4211), 3, - sym_string_literal, - sym_bang, - aux_sym__map_rhs_token4, - ACTIONS(5054), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [64696] = 8, + STATE(2317), 1, + sym__set_operator, + STATE(2500), 1, + sym__set_rhs, + ACTIONS(5204), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_, + ACTIONS(5202), 5, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + [66559] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4921), 1, - sym_hl_group, - ACTIONS(4923), 1, - anon_sym_link, - ACTIONS(4925), 1, + ACTIONS(5206), 1, anon_sym_clear, - ACTIONS(4927), 1, - sym__default, - STATE(2775), 1, - sym__hl_body_link, - ACTIONS(5010), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(2687), 4, - sym__hl_body_clear, - sym__hl_body_none, - sym__hl_body_keys, - sym__hl_body, - [64725] = 8, + ACTIONS(5212), 1, + anon_sym_fromstart, + ACTIONS(5214), 1, + anon_sym_ccomment, + ACTIONS(5216), 1, + anon_sym_linecont, + ACTIONS(5208), 2, + anon_sym_match, + anon_sym_region, + ACTIONS(5210), 4, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_linebreaks, + anon_sym_lines, + [66585] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4961), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4963), 1, - anon_sym_BSLASH, - ACTIONS(4967), 1, - anon_sym_LT2, - STATE(612), 1, - sym__map_lhs, - STATE(1112), 1, - sym_keycode, - STATE(1606), 1, - aux_sym_map_statement_repeat1, - ACTIONS(5058), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [64754] = 6, + ACTIONS(5191), 1, + anon_sym_SQUOTE, + ACTIONS(5220), 1, + aux_sym__hl_color_name_token1, + STATE(1536), 2, + sym__hl_quoted_name, + sym__hl_color_name, + ACTIONS(5218), 6, + anon_sym_NONE2, + anon_sym_bg, + anon_sym_background, + anon_sym_fg, + anon_sym_foreground, + aux_sym__hl_color_name_token2, + [66607] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5062), 1, - aux_sym_filename_token7, - STATE(1636), 1, - aux_sym_filename_repeat1, - ACTIONS(4445), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(4330), 3, - sym_string_literal, + STATE(1724), 1, + aux_sym_pattern_repeat1, + ACTIONS(5147), 9, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, sym_bang, + anon_sym_SEMI, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5060), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [64779] = 5, + [66625] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1642), 1, - aux_sym_filename_repeat1, - ACTIONS(5067), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(5064), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4243), 5, + ACTIONS(813), 3, + anon_sym_LBRACE2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, + ACTIONS(815), 7, + aux_sym_identifier_token2, + anon_sym_line, + anon_sym_name, anon_sym_buffer, anon_sym_group, + anon_sym_priority, anon_sym_file, - [64802] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1598), 1, - aux_sym_filename_repeat1, - ACTIONS(5072), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(5070), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4330), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [64825] = 5, + [66643] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1642), 1, - aux_sym_filename_repeat1, - ACTIONS(5076), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(5074), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4229), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [64848] = 8, + ACTIONS(5141), 1, + anon_sym_SQUOTE, + ACTIONS(5224), 1, + aux_sym__hl_color_name_token1, + STATE(1560), 2, + sym__hl_quoted_name, + sym__hl_color_name, + ACTIONS(5222), 6, + anon_sym_NONE2, + anon_sym_bg, + anon_sym_background, + anon_sym_fg, + anon_sym_foreground, + aux_sym__hl_color_name_token2, + [66665] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_a_COLON, - ACTIONS(5026), 1, - anon_sym_LBRACE, - ACTIONS(5028), 1, - aux_sym_identifier_token1, - ACTIONS(5030), 1, - sym_scope, - STATE(2187), 1, - sym__curly_braces_name_expression, - STATE(3144), 5, - sym_scoped_identifier, - sym_argument, - sym_identifier, - sym__ident, - sym_list_assignment, - [64877] = 4, + ACTIONS(2693), 1, + anon_sym_EQ, + ACTIONS(2697), 1, + anon_sym_EQ_LT_LT, + STATE(501), 1, + sym__let_operator, + STATE(2670), 1, + sym__let_heredoc, + ACTIONS(2695), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_DOT_EQ, + [66689] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5044), 1, - anon_sym_BSLASH_PIPE, - STATE(1620), 1, - aux_sym_pattern_repeat1, - ACTIONS(4995), 9, + ACTIONS(5226), 1, + anon_sym_BSLASH_AMP, + STATE(1718), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3612), 8, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, anon_sym_COLON, - anon_sym_COMMA, sym_bang, - anon_sym_SEMI, - anon_sym_SLASH2, - [64898] = 8, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + [66709] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4961), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4963), 1, - anon_sym_BSLASH, - ACTIONS(4967), 1, - anon_sym_LT2, - STATE(651), 1, - sym__map_lhs, - STATE(1112), 1, - sym_keycode, - STATE(1799), 1, - aux_sym_map_statement_repeat1, - ACTIONS(4965), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [64927] = 8, + ACTIONS(5229), 2, + anon_sym_vi, + anon_sym_vim, + ACTIONS(5233), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5231), 6, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [66729] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1111), 1, + STATE(1720), 1, + aux_sym__syn_sync_repeat1, + STATE(1941), 1, + sym__syn_sync_lines, + ACTIONS(5237), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(5235), 6, anon_sym_BSLASH, - ACTIONS(3545), 1, - anon_sym_LBRACK, - ACTIONS(4772), 1, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, - STATE(1624), 1, - sym__pattern_branch, - STATE(1117), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1118), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(1131), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [64956] = 4, + [66751] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5078), 1, - anon_sym_BSLASH_AMP, - STATE(1649), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 9, + ACTIONS(5200), 1, + anon_sym_BSLASH_PIPE, + STATE(1709), 1, + aux_sym_pattern_repeat1, + ACTIONS(5147), 8, sym__normal, sym__source, anon_sym_COLON, @@ -111769,311 +112423,285 @@ static const uint16_t ts_small_parse_table[] = { sym_bang, anon_sym_SEMI, anon_sym_SLASH2, + aux_sym__map_rhs_token4, + [66771] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5240), 1, + sym__printable, + STATE(1889), 1, + sym__sign_define_arg_text, + ACTIONS(4365), 8, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [64977] = 4, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [66791] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4997), 1, + ACTIONS(5244), 1, + anon_sym_icon, + ACTIONS(5250), 1, + anon_sym_text, + STATE(1723), 1, + aux_sym__sign_define_repeat1, + STATE(1905), 1, + sym__sign_define_argument, + ACTIONS(5242), 2, anon_sym_BSLASH_PIPE, - STATE(1617), 1, + aux_sym__map_rhs_token4, + ACTIONS(5247), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [66817] = 3, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1781), 1, aux_sym_pattern_repeat1, - ACTIONS(5042), 9, - sym__newline_or_pipe, - sym_comment, + ACTIONS(5050), 9, sym__normal, sym__source, anon_sym_COLON, anon_sym_COMMA, sym_bang, anon_sym_SEMI, - anon_sym_QMARK2, - [64998] = 8, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [66835] = 8, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5258), 1, + anon_sym_name, + ACTIONS(5261), 1, + anon_sym_group, + ACTIONS(5264), 1, + anon_sym_file, + STATE(1725), 1, + aux_sym__sign_place_place_repeat1, + STATE(1854), 1, + sym__sign_place_place_argument, + ACTIONS(5253), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5255), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [66863] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3983), 1, + ACTIONS(4087), 1, anon_sym_BSLASH, - ACTIONS(3987), 1, - anon_sym_LBRACK, - ACTIONS(4730), 1, + ACTIONS(4089), 1, + anon_sym_LBRACK2, + ACTIONS(5160), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1721), 1, - sym__pattern_branch, - STATE(1240), 2, + STATE(1301), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1244), 2, + STATE(1338), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3991), 3, + ACTIONS(4093), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65027] = 7, + [66889] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4028), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - aux_sym_identifier_token1, - STATE(1595), 1, - sym__curly_braces_name_expression, - ACTIONS(4032), 2, - sym__scope_dict, - anon_sym_a_COLON, - ACTIONS(4982), 2, + ACTIONS(5267), 1, + anon_sym_AMP, + ACTIONS(5269), 1, + anon_sym_QMARK, + ACTIONS(5271), 8, sym__newline_or_pipe, sym_comment, - STATE(1616), 4, - sym_scope_dict, - sym_identifier, - sym__assignment_variable, - aux_sym_let_statement_repeat1, - [65054] = 5, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [66909] = 8, ACTIONS(3), 1, sym__line_continuation, - STATE(1653), 1, - aux_sym_filename_repeat1, - ACTIONS(5084), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(5081), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4243), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [65077] = 5, + ACTIONS(1051), 1, + anon_sym_LT, + ACTIONS(1053), 1, + anon_sym_BSLASH2, + ACTIONS(5273), 1, + aux_sym__bang_filter_command_argument_token3, + STATE(1733), 1, + aux_sym__map_lhs_repeat1, + STATE(1933), 1, + sym__immediate_keycode, + ACTIONS(3509), 2, + anon_sym_COLON, + aux_sym__map_rhs_token3, + ACTIONS(3513), 3, + anon_sym_BSLASH, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [66937] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1653), 1, - aux_sym_filename_repeat1, - ACTIONS(4951), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4949), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4229), 5, - sym__newline_or_pipe, - sym_comment, + ACTIONS(833), 3, + anon_sym_LBRACE2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(835), 7, + aux_sym_identifier_token2, + anon_sym_line, + anon_sym_name, anon_sym_buffer, anon_sym_group, + anon_sym_priority, anon_sym_file, - [65100] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4184), 1, - anon_sym_BSLASH, - ACTIONS(4188), 1, - anon_sym_LBRACK, - ACTIONS(4190), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(2196), 1, - sym__pattern_branch, - STATE(1337), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1338), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4192), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [65129] = 8, + [66955] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4961), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(4963), 1, + ACTIONS(1051), 1, + anon_sym_LT, + ACTIONS(1053), 1, + anon_sym_BSLASH2, + ACTIONS(5275), 1, + aux_sym__bang_filter_command_argument_token3, + STATE(1732), 1, + aux_sym__map_lhs_repeat1, + STATE(1933), 1, + sym__immediate_keycode, + ACTIONS(3509), 2, + anon_sym_COLON, + aux_sym__map_rhs_token3, + ACTIONS(3513), 3, anon_sym_BSLASH, - ACTIONS(4967), 1, anon_sym_LT2, - STATE(533), 1, - sym__map_lhs, - STATE(1112), 1, - sym_keycode, - STATE(1647), 1, - aux_sym_map_statement_repeat1, - ACTIONS(5087), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [65158] = 8, + aux_sym__map_rhs_token1, + [66983] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4048), 1, + ACTIONS(4409), 1, anon_sym_BSLASH, - ACTIONS(4052), 1, - anon_sym_LBRACK, - ACTIONS(5089), 1, + ACTIONS(4413), 1, + anon_sym_LBRACK2, + ACTIONS(4415), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(2196), 1, - sym__pattern_branch, - STATE(1275), 2, + STATE(1385), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1276), 2, + STATE(1455), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4056), 3, + ACTIONS(4417), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65187] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1642), 1, - aux_sym_filename_repeat1, - ACTIONS(5076), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(5074), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4211), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [65210] = 5, + [67009] = 8, ACTIONS(3), 1, sym__line_continuation, - STATE(1644), 1, - aux_sym_filename_repeat1, - ACTIONS(5093), 2, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(5091), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(4211), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [65233] = 5, + ACTIONS(1051), 1, + anon_sym_LT, + ACTIONS(1053), 1, + anon_sym_BSLASH2, + ACTIONS(5273), 1, + aux_sym__bang_filter_command_argument_token3, + STATE(1733), 1, + aux_sym__map_lhs_repeat1, + STATE(1933), 1, + sym__immediate_keycode, + ACTIONS(3568), 2, + anon_sym_COLON, + aux_sym__map_rhs_token3, + ACTIONS(3572), 3, + anon_sym_BSLASH, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [67037] = 8, ACTIONS(3), 1, sym__line_continuation, - STATE(1690), 1, - aux_sym_filename_repeat1, - ACTIONS(5097), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(5095), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4211), 4, - aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [65255] = 7, + ACTIONS(5277), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(5280), 1, + anon_sym_LT, + ACTIONS(5283), 1, + anon_sym_BSLASH2, + STATE(1733), 1, + aux_sym__map_lhs_repeat1, + STATE(1933), 1, + sym__immediate_keycode, + ACTIONS(3515), 2, + anon_sym_COLON, + aux_sym__map_rhs_token3, + ACTIONS(3520), 3, + anon_sym_BSLASH, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [67065] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5099), 1, - anon_sym_icon, - ACTIONS(5103), 1, - anon_sym_text, - STATE(1674), 1, - aux_sym__sign_define_repeat1, - STATE(1829), 1, - sym__sign_define_argument, - ACTIONS(5105), 2, + ACTIONS(909), 2, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(907), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(5101), 4, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [65281] = 8, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [67083] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4923), 1, - anon_sym_link, - ACTIONS(4925), 1, - anon_sym_clear, - ACTIONS(5010), 1, - aux_sym__map_rhs_token4, - ACTIONS(5048), 1, - sym_hl_group, - ACTIONS(5050), 1, - sym__default, - STATE(2775), 1, - sym__hl_body_link, - STATE(2687), 4, - sym__hl_body_clear, - sym__hl_body_none, - sym__hl_body_keys, - sym__hl_body, - [65309] = 7, + STATE(1735), 1, + aux_sym_map_statement_repeat1, + ACTIONS(5286), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_LT2, + ACTIONS(5288), 2, + anon_sym_BSLASH, + anon_sym_LTexpr_GT, + ACTIONS(5290), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [67105] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5107), 1, + ACTIONS(5293), 1, anon_sym_clear, - ACTIONS(5113), 1, + ACTIONS(5299), 1, anon_sym_fromstart, - ACTIONS(5115), 1, + ACTIONS(5301), 1, anon_sym_ccomment, - ACTIONS(5117), 1, + ACTIONS(5303), 1, anon_sym_linecont, - ACTIONS(5109), 2, - anon_sym_match, - anon_sym_region, - ACTIONS(5111), 4, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_linebreaks, - anon_sym_lines, - [65335] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5119), 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, - sym__syn_keyword_identifier, - [65351] = 3, + ACTIONS(5295), 2, + anon_sym_match, + anon_sym_region, + ACTIONS(5297), 4, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_linebreaks, + anon_sym_lines, + [67131] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(815), 2, - sym_au_event, - anon_sym_EQ, - ACTIONS(813), 8, - anon_sym_COMMA, - anon_sym_LBRACE2, - aux_sym_identifier_token2, - anon_sym_EQ_LT_LT, - anon_sym_RPAREN, + ACTIONS(5305), 1, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_DASH_GT, - [65369] = 3, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1688), 1, + STATE(1778), 1, aux_sym_pattern_repeat1, - ACTIONS(4995), 9, + ACTIONS(5050), 8, sym__normal, sym__source, anon_sym_COLON, @@ -112081,65 +112709,101 @@ static const uint16_t ts_small_parse_table[] = { sym_bang, anon_sym_SEMI, anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [65387] = 3, + [67151] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(851), 2, - anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(849), 8, + ACTIONS(4345), 1, + anon_sym_BSLASH, + ACTIONS(4349), 1, + anon_sym_LBRACK2, + ACTIONS(4930), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1365), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1438), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4353), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [67177] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5307), 1, + anon_sym_icon, + ACTIONS(5313), 1, + anon_sym_text, + STATE(1739), 1, + aux_sym__sign_define_repeat1, + STATE(1955), 1, + sym__sign_define_argument, + ACTIONS(5242), 2, 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_, - [65405] = 7, + ACTIONS(5310), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [67203] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5112), 10, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_SLASH2, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [67219] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3601), 1, + ACTIONS(4253), 1, anon_sym_BSLASH, - ACTIONS(3605), 1, - anon_sym_LBRACK, - ACTIONS(4694), 1, + ACTIONS(4257), 1, + anon_sym_LBRACK2, + ACTIONS(4259), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1142), 2, + STATE(1351), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1215), 2, + STATE(1421), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3609), 3, + ACTIONS(4261), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65431] = 3, + [67245] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5121), 2, - anon_sym_vi, - anon_sym_vim, - ACTIONS(5123), 8, + ACTIONS(4050), 3, 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_, - [65449] = 3, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(4048), 7, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [67263] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(823), 3, + ACTIONS(813), 3, sym__newline_or_pipe, sym_comment, anon_sym_LBRACE2, - ACTIONS(825), 7, + ACTIONS(815), 7, aux_sym_identifier_token2, anon_sym_line, anon_sym_name, @@ -112147,42 +112811,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_priority, anon_sym_file, - [65467] = 4, + [67281] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5125), 1, + ACTIONS(909), 4, + anon_sym_AMP, + anon_sym_QMARK, anon_sym_BSLASH_PIPE, - STATE(1715), 1, - aux_sym_pattern_repeat1, - ACTIONS(4995), 8, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_SLASH2, aux_sym__map_rhs_token4, - [65487] = 2, + ACTIONS(907), 6, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [67299] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5127), 10, - anon_sym_bold, - anon_sym_underline, - anon_sym_undercurl, - anon_sym_strikethrough, - anon_sym_reverse, - anon_sym_inverse, - anon_sym_italic, - anon_sym_standout, - anon_sym_nocombine, - anon_sym_NONE2, - [65503] = 3, + ACTIONS(4079), 3, + sym__newline_or_pipe, + sym_comment, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(4077), 7, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [67317] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1666), 1, + ACTIONS(3476), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3474), 8, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [67335] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5305), 1, + anon_sym_BSLASH_PIPE, + STATE(1737), 1, aux_sym_pattern_repeat1, - ACTIONS(5042), 9, + ACTIONS(5147), 8, sym__normal, sym__source, anon_sym_COLON, @@ -112190,357 +112871,171 @@ static const uint16_t ts_small_parse_table[] = { sym_bang, anon_sym_SEMI, anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [65521] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5099), 1, - anon_sym_icon, - ACTIONS(5103), 1, - anon_sym_text, - STATE(1742), 1, - aux_sym__sign_define_repeat1, - STATE(1829), 1, - sym__sign_define_argument, - ACTIONS(5129), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5101), 4, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [65547] = 7, + [67355] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3900), 1, + ACTIONS(3656), 1, anon_sym_BSLASH, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4728), 1, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4795), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1230), 2, + STATE(1148), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1266), 2, + STATE(1214), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(3908), 3, + ACTIONS(3664), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65573] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(823), 3, - anon_sym_LBRACE2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(825), 7, - aux_sym_identifier_token2, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [65591] = 5, + [67381] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5131), 1, - anon_sym_AMP, - ACTIONS(5133), 1, - anon_sym_QMARK, - ACTIONS(5137), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5135), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [65613] = 4, + ACTIONS(5318), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(5316), 8, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [67399] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5139), 1, - anon_sym_BSLASH_AMP, - STATE(1678), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, + ACTIONS(1045), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(1051), 1, + anon_sym_LT, + ACTIONS(1053), 1, + anon_sym_BSLASH2, + STATE(1728), 1, + aux_sym__map_lhs_repeat1, + STATE(1933), 1, + sym__immediate_keycode, + ACTIONS(1011), 2, anon_sym_COLON, - sym_bang, - anon_sym_SLASH2, - anon_sym_BSLASH_PIPE, - [65633] = 6, + aux_sym__map_rhs_token3, + ACTIONS(1015), 3, + anon_sym_BSLASH, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [67427] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5144), 1, - anon_sym_, - STATE(2258), 1, - sym__set_operator, - STATE(2485), 1, - sym__set_rhs, - ACTIONS(5146), 2, + ACTIONS(881), 4, + anon_sym_AMP, + anon_sym_QMARK, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5142), 5, + ACTIONS(879), 6, anon_sym_EQ2, anon_sym_COLON2, anon_sym_PLUS_EQ2, anon_sym_CARET_EQ, anon_sym_DASH_EQ2, - [65657] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(813), 3, - anon_sym_LBRACE2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(815), 7, - aux_sym_identifier_token2, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [65675] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(813), 3, - anon_sym_LBRACE2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(815), 7, - aux_sym_identifier_token2, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [65693] = 7, + anon_sym_, + [67445] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5148), 1, + ACTIONS(5322), 1, anon_sym_icon, - ACTIONS(5152), 1, + ACTIONS(5326), 1, anon_sym_text, - STATE(1747), 1, + STATE(1779), 1, aux_sym__sign_define_repeat1, - STATE(1834), 1, + STATE(1905), 1, sym__sign_define_argument, - ACTIONS(5129), 2, + ACTIONS(5320), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5150), 4, + ACTIONS(5324), 4, anon_sym_linehl, anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [65719] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5158), 1, - anon_sym_name, - ACTIONS(5160), 1, - anon_sym_group, - ACTIONS(5162), 1, - anon_sym_file, - STATE(1749), 1, - aux_sym__sign_place_place_repeat1, - STATE(1837), 1, - sym__sign_place_place_argument, - ACTIONS(5154), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5156), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [65747] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4976), 1, - anon_sym_SQUOTE, - ACTIONS(5166), 1, - aux_sym__hl_color_name_token1, - STATE(1468), 2, - sym__hl_quoted_name, - sym__hl_color_name, - ACTIONS(5164), 6, - anon_sym_NONE2, - anon_sym_bg, - anon_sym_background, - anon_sym_fg, - anon_sym_foreground, - aux_sym__hl_color_name_token2, - [65769] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(823), 3, - anon_sym_LBRACE2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(825), 7, - aux_sym_identifier_token2, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [65787] = 8, + [67471] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5170), 1, - anon_sym_name, - ACTIONS(5172), 1, - anon_sym_group, - ACTIONS(5174), 1, - anon_sym_file, - STATE(1736), 1, - aux_sym__sign_place_place_repeat1, - STATE(1842), 1, - sym__sign_place_place_argument, - ACTIONS(5154), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5168), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [65815] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1687), 1, - aux_sym_map_statement_repeat1, - ACTIONS(5176), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_LT2, - ACTIONS(5178), 2, + ACTIONS(4058), 1, anon_sym_BSLASH, - anon_sym_LTexpr_GT, - ACTIONS(5180), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [65837] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5183), 1, - anon_sym_BSLASH_PIPE, - STATE(1688), 1, - aux_sym_pattern_repeat1, - ACTIONS(5005), 8, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_QMARK2, - aux_sym__map_rhs_token4, - [65857] = 7, + ACTIONS(4062), 1, + anon_sym_LBRACK2, + ACTIONS(5110), 1, + aux_sym__pattern_ordinary_atom_token2, + STATE(1276), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1313), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(4066), 3, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [67497] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1143), 1, + ACTIONS(3792), 1, anon_sym_BSLASH, - ACTIONS(3525), 1, - anon_sym_LBRACK, - ACTIONS(4784), 1, + ACTIONS(3796), 1, + anon_sym_LBRACK2, + ACTIONS(4935), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1119), 2, + STATE(1191), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1167), 2, + STATE(1220), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(1163), 3, + ACTIONS(3800), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [65883] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1690), 1, - aux_sym_filename_repeat1, - ACTIONS(5189), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(5186), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4243), 4, - aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [65905] = 3, + [67523] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(825), 2, - sym_au_event, - anon_sym_EQ, - ACTIONS(823), 8, - anon_sym_COMMA, + ACTIONS(813), 3, anon_sym_LBRACE2, - aux_sym_identifier_token2, - anon_sym_EQ_LT_LT, - anon_sym_RPAREN, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_DASH_GT, - [65923] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1690), 1, - aux_sym_filename_repeat1, - ACTIONS(5097), 2, - aux_sym_filename_token5, - aux_sym_filename_token7, - ACTIONS(5095), 3, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token6, - aux_sym_filename_token8, - ACTIONS(4229), 4, - aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [65945] = 3, + ACTIONS(815), 7, + aux_sym_identifier_token2, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [67541] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(815), 4, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym_identifier_token2, - anon_sym_EQ, - ACTIONS(813), 6, - sym__scope_dict, - anon_sym_a_COLON, + ACTIONS(833), 3, anon_sym_LBRACE2, - anon_sym_EQ_LT_LT, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [65963] = 4, + ACTIONS(835), 7, + aux_sym_identifier_token2, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [67559] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5192), 1, + ACTIONS(5328), 1, anon_sym_BSLASH_AMP, - STATE(1678), 1, + STATE(1766), 1, aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 8, + ACTIONS(4815), 8, sym__newline_or_pipe, sym_comment, sym__normal, @@ -112549,374 +113044,302 @@ static const uint16_t ts_small_parse_table[] = { sym_bang, anon_sym_SLASH2, anon_sym_BSLASH_PIPE, - [65983] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5194), 10, - anon_sym_bold, - anon_sym_underline, - anon_sym_undercurl, - anon_sym_strikethrough, - anon_sym_reverse, - anon_sym_inverse, - anon_sym_italic, - anon_sym_standout, - anon_sym_nocombine, - anon_sym_NONE2, - [65999] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3881), 1, - anon_sym_BSLASH, - ACTIONS(3885), 1, - anon_sym_LBRACK, - ACTIONS(4907), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1190), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1233), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3889), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [66025] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4947), 1, - anon_sym_SQUOTE, - ACTIONS(5198), 1, - aux_sym__hl_color_name_token1, - STATE(1473), 2, - sym__hl_quoted_name, - sym__hl_color_name, - ACTIONS(5196), 6, - anon_sym_NONE2, - anon_sym_bg, - anon_sym_background, - anon_sym_fg, - anon_sym_foreground, - aux_sym__hl_color_name_token2, - [66047] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2685), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_LT_LT, - STATE(445), 1, - sym__let_operator, - STATE(2593), 1, - sym__let_heredoc, - ACTIONS(2687), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - [66071] = 3, + [67579] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(851), 4, + ACTIONS(881), 2, anon_sym_AMP, anon_sym_QMARK, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(849), 6, + ACTIONS(879), 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_, - [66089] = 3, + [67597] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(825), 4, - anon_sym_LBRACE, - aux_sym_identifier_token1, - aux_sym_identifier_token2, - anon_sym_EQ, - ACTIONS(823), 6, + ACTIONS(5333), 1, + anon_sym_name, + ACTIONS(5336), 1, + anon_sym_group, + ACTIONS(5339), 1, + anon_sym_file, + STATE(1759), 1, + aux_sym__sign_place_place_repeat1, + STATE(1960), 1, + sym__sign_place_place_argument, + ACTIONS(5253), 2, sym__newline_or_pipe, - sym__scope_dict, sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE2, - anon_sym_EQ_LT_LT, - [66107] = 8, + ACTIONS(5330), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [67625] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1045), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(1051), 1, - anon_sym_LT, - ACTIONS(1053), 1, - anon_sym_BSLASH2, - STATE(1717), 1, - aux_sym__map_lhs_repeat1, - STATE(1905), 1, - sym__immediate_keycode, - ACTIONS(1011), 2, + ACTIONS(5342), 2, + anon_sym_vi, + anon_sym_vim, + ACTIONS(5231), 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_, + [67643] = 3, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1785), 1, + aux_sym_pattern_repeat1, + ACTIONS(5147), 9, + sym__normal, + sym__source, anon_sym_COLON, - aux_sym__map_rhs_token3, - ACTIONS(1015), 3, - anon_sym_BSLASH, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [66135] = 5, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [67661] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1692), 1, + STATE(1762), 1, aux_sym_filename_repeat1, - ACTIONS(5202), 2, + ACTIONS(5347), 2, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(5200), 3, + ACTIONS(5344), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4211), 4, + ACTIONS(4300), 4, aux_sym__map_rhs_token4, anon_sym_buffer, anon_sym_group, anon_sym_file, - [66157] = 5, + [67683] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1660), 1, + STATE(1762), 1, aux_sym_filename_repeat1, - ACTIONS(5206), 2, + ACTIONS(5352), 2, aux_sym_filename_token5, aux_sym_filename_token7, - ACTIONS(5204), 3, + ACTIONS(5350), 3, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token6, aux_sym_filename_token8, - ACTIONS(4330), 4, + ACTIONS(4307), 4, aux_sym__map_rhs_token4, anon_sym_buffer, anon_sym_group, anon_sym_file, - [66179] = 3, + [67705] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(847), 2, + ACTIONS(5354), 1, anon_sym_AMP, + ACTIONS(5356), 1, anon_sym_QMARK, - ACTIONS(845), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(5358), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5271), 6, anon_sym_EQ2, anon_sym_COLON2, anon_sym_PLUS_EQ2, anon_sym_CARET_EQ, anon_sym_DASH_EQ2, anon_sym_, - [66197] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1051), 1, - anon_sym_LT, - ACTIONS(1053), 1, - anon_sym_BSLASH2, - ACTIONS(5208), 1, - aux_sym__bang_filter_command_argument_token3, - STATE(1706), 1, - aux_sym__map_lhs_repeat1, - STATE(1905), 1, - sym__immediate_keycode, - ACTIONS(3513), 2, - anon_sym_COLON, - aux_sym__map_rhs_token3, - ACTIONS(3517), 3, - anon_sym_BSLASH, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [66225] = 8, + [67727] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5210), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5213), 1, - anon_sym_LT, - ACTIONS(5216), 1, - anon_sym_BSLASH2, - STATE(1706), 1, - aux_sym__map_lhs_repeat1, - STATE(1905), 1, - sym__immediate_keycode, - ACTIONS(3573), 2, - anon_sym_COLON, - aux_sym__map_rhs_token3, - ACTIONS(3578), 3, - anon_sym_BSLASH, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [66253] = 4, + ACTIONS(5204), 1, + anon_sym_, + STATE(2343), 1, + sym__set_operator, + STATE(2593), 1, + sym__set_rhs, + ACTIONS(5362), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5360), 5, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + [67751] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5219), 1, - anon_sym_BSLASH_PIPE, - STATE(1725), 1, - aux_sym_pattern_repeat1, - ACTIONS(5042), 8, + ACTIONS(5364), 1, + anon_sym_BSLASH_AMP, + STATE(1766), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3612), 8, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, anon_sym_COLON, - anon_sym_COMMA, sym_bang, - anon_sym_SEMI, - anon_sym_QMARK2, - aux_sym__map_rhs_token4, - [66273] = 3, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + [67771] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(847), 4, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_BSLASH_PIPE, + STATE(1762), 1, + aux_sym_filename_repeat1, + ACTIONS(5352), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5350), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 4, aux_sym__map_rhs_token4, - ACTIONS(845), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [66291] = 7, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [67793] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4048), 1, - anon_sym_BSLASH, - ACTIONS(4052), 1, - anon_sym_LBRACK, - ACTIONS(5089), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1275), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1316), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4056), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [66317] = 7, + STATE(1763), 1, + aux_sym_filename_repeat1, + ACTIONS(5369), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5367), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4291), 4, + aux_sym__map_rhs_token4, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [67815] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3629), 1, - anon_sym_BSLASH, - ACTIONS(3633), 1, - anon_sym_LBRACK, - ACTIONS(4696), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1147), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1180), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3637), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [66343] = 3, + STATE(1767), 1, + aux_sym_filename_repeat1, + ACTIONS(5373), 2, + aux_sym_filename_token5, + aux_sym_filename_token7, + ACTIONS(5371), 3, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token6, + aux_sym_filename_token8, + ACTIONS(4273), 4, + aux_sym__map_rhs_token4, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [67837] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(825), 4, + ACTIONS(815), 4, anon_sym_LBRACE, aux_sym_identifier_token1, aux_sym_identifier_token2, anon_sym_EQ, - ACTIONS(823), 6, + ACTIONS(813), 6, sym__scope_dict, anon_sym_a_COLON, anon_sym_LBRACE2, anon_sym_EQ_LT_LT, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [66361] = 3, + [67855] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(813), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_LBRACE2, - ACTIONS(815), 7, - aux_sym_identifier_token2, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [66379] = 7, + ACTIONS(5379), 1, + anon_sym_name, + ACTIONS(5381), 1, + anon_sym_group, + ACTIONS(5383), 1, + anon_sym_file, + STATE(1725), 1, + aux_sym__sign_place_place_repeat1, + STATE(1854), 1, + sym__sign_place_place_argument, + ACTIONS(5375), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5377), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [67883] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1111), 1, + ACTIONS(1143), 1, anon_sym_BSLASH, - ACTIONS(3545), 1, - anon_sym_LBRACK, - ACTIONS(4772), 1, + ACTIONS(3582), 1, + anon_sym_LBRACK2, + ACTIONS(4996), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1117), 2, + STATE(1124), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1146), 2, + STATE(1139), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(1131), 3, + ACTIONS(1163), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [66405] = 7, + [67909] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3983), 1, - anon_sym_BSLASH, - ACTIONS(3987), 1, - anon_sym_LBRACK, - ACTIONS(4730), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1240), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1256), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3991), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [66431] = 4, + ACTIONS(5385), 1, + anon_sym_icon, + ACTIONS(5389), 1, + anon_sym_text, + STATE(1786), 1, + aux_sym__sign_define_repeat1, + STATE(1955), 1, + sym__sign_define_argument, + ACTIONS(5320), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5387), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [67935] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5221), 1, - anon_sym_BSLASH_PIPE, - STATE(1715), 1, - aux_sym_pattern_repeat1, - ACTIONS(5005), 8, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_SLASH2, - aux_sym__map_rhs_token4, - [66451] = 3, + ACTIONS(5391), 10, + anon_sym_bold, + anon_sym_underline, + anon_sym_undercurl, + anon_sym_strikethrough, + anon_sym_reverse, + anon_sym_inverse, + anon_sym_italic, + anon_sym_standout, + anon_sym_nocombine, + anon_sym_NONE2, + [67951] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(823), 3, + ACTIONS(813), 3, sym__newline_or_pipe, sym_comment, anon_sym_LBRACE2, - ACTIONS(825), 7, + ACTIONS(815), 7, aux_sym_identifier_token2, anon_sym_icon, anon_sym_linehl, @@ -112924,517 +113347,398 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_text, anon_sym_texthl, anon_sym_culhl, - [66469] = 8, + [67969] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1051), 1, - anon_sym_LT, - ACTIONS(1053), 1, - anon_sym_BSLASH2, - ACTIONS(5208), 1, - aux_sym__bang_filter_command_argument_token3, - STATE(1706), 1, - aux_sym__map_lhs_repeat1, - STATE(1905), 1, - sym__immediate_keycode, - ACTIONS(3531), 2, - anon_sym_COLON, - aux_sym__map_rhs_token3, - ACTIONS(3533), 3, - anon_sym_BSLASH, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [66497] = 3, + ACTIONS(815), 4, + anon_sym_LBRACE, + aux_sym_identifier_token1, + aux_sym_identifier_token2, + anon_sym_EQ, + ACTIONS(813), 6, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE2, + anon_sym_EQ_LT_LT, + [67987] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1715), 1, - aux_sym_pattern_repeat1, - ACTIONS(4995), 9, - sym__normal, - sym__source, - anon_sym_COLON, + ACTIONS(835), 2, + sym_au_event, + anon_sym_EQ, + ACTIONS(833), 8, anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_SLASH2, + anon_sym_LBRACE2, + aux_sym_identifier_token2, + anon_sym_EQ_LT_LT, + anon_sym_RPAREN, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [66515] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5224), 1, - anon_sym_AMP, - ACTIONS(5226), 1, - anon_sym_QMARK, - ACTIONS(5135), 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_, - [66535] = 4, + anon_sym_DASH_GT, + [68005] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5125), 1, + ACTIONS(5393), 1, anon_sym_BSLASH_PIPE, - STATE(1671), 1, + STATE(1778), 1, aux_sym_pattern_repeat1, - ACTIONS(5042), 8, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_SLASH2, - aux_sym__map_rhs_token4, - [66555] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5005), 10, + ACTIONS(5112), 8, sym__normal, sym__source, anon_sym_COLON, anon_sym_COMMA, sym_bang, anon_sym_SEMI, - anon_sym_SLASH2, anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [66571] = 8, + [68025] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1051), 1, - anon_sym_LT, - ACTIONS(1053), 1, - anon_sym_BSLASH2, - ACTIONS(5228), 1, - aux_sym__bang_filter_command_argument_token3, - STATE(1705), 1, - aux_sym__map_lhs_repeat1, + ACTIONS(5322), 1, + anon_sym_icon, + ACTIONS(5326), 1, + anon_sym_text, + STATE(1723), 1, + aux_sym__sign_define_repeat1, STATE(1905), 1, - sym__immediate_keycode, - ACTIONS(3531), 2, - anon_sym_COLON, - aux_sym__map_rhs_token3, - ACTIONS(3533), 3, - anon_sym_BSLASH, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [66599] = 3, + sym__sign_define_argument, + ACTIONS(5396), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5324), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [68051] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(813), 3, - sym__newline_or_pipe, - sym_comment, + ACTIONS(815), 2, + sym_au_event, + anon_sym_EQ, + ACTIONS(813), 8, + anon_sym_COMMA, anon_sym_LBRACE2, - ACTIONS(815), 7, aux_sym_identifier_token2, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [66617] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5230), 1, - anon_sym_clear, - ACTIONS(5236), 1, - anon_sym_fromstart, - ACTIONS(5238), 1, - anon_sym_ccomment, - ACTIONS(5240), 1, - anon_sym_linecont, - ACTIONS(5232), 2, - anon_sym_match, - anon_sym_region, - ACTIONS(5234), 4, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_linebreaks, - anon_sym_lines, - [66643] = 4, + anon_sym_EQ_LT_LT, + anon_sym_RPAREN, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_DASH_GT, + [68069] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5219), 1, + ACTIONS(5398), 1, anon_sym_BSLASH_PIPE, - STATE(1688), 1, + STATE(1781), 1, aux_sym_pattern_repeat1, - ACTIONS(4995), 8, + ACTIONS(5112), 8, sym__normal, sym__source, anon_sym_COLON, anon_sym_COMMA, sym_bang, anon_sym_SEMI, - anon_sym_QMARK2, - aux_sym__map_rhs_token4, - [66663] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4068), 3, - sym__newline_or_pipe, - sym_comment, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(4066), 7, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [66681] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5242), 2, - anon_sym_vi, - anon_sym_vim, - ACTIONS(5244), 2, - anon_sym_BSLASH_PIPE, + anon_sym_SLASH2, aux_sym__map_rhs_token4, - ACTIONS(5123), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [66701] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4060), 3, - sym__newline_or_pipe, - sym_comment, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(4058), 7, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [66719] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4184), 1, - anon_sym_BSLASH, - ACTIONS(4188), 1, - anon_sym_LBRACK, - ACTIONS(4190), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1337), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1389), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4192), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [66745] = 7, + [68089] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4093), 1, + ACTIONS(4533), 1, anon_sym_BSLASH, - ACTIONS(4097), 1, - anon_sym_LBRACK, - ACTIONS(4953), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + ACTIONS(4539), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1319), 2, + STATE(1353), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1324), 2, + STATE(1451), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4101), 3, + ACTIONS(4541), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [66771] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(2230), 1, - sym__set_operator, - STATE(2540), 1, - sym__set_rhs, - ACTIONS(5144), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_, - ACTIONS(5246), 5, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - [66793] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5248), 1, - anon_sym_BSLASH_AMP, - STATE(1732), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, - anon_sym_QMARK2, - anon_sym_BSLASH_PIPE, - [66813] = 7, + [68115] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5230), 1, + ACTIONS(5206), 1, anon_sym_clear, - ACTIONS(5236), 1, + ACTIONS(5212), 1, anon_sym_fromstart, - ACTIONS(5238), 1, + ACTIONS(5214), 1, anon_sym_ccomment, - ACTIONS(5253), 1, + ACTIONS(5403), 1, anon_sym_linecont, - ACTIONS(5251), 2, + ACTIONS(5401), 2, anon_sym_match, anon_sym_region, - ACTIONS(5234), 4, + ACTIONS(5210), 4, anon_sym_minlines, anon_sym_maxlines, anon_sym_linebreaks, anon_sym_lines, - [66839] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2751), 1, - anon_sym_EQ, - ACTIONS(2755), 1, - anon_sym_EQ_LT_LT, - STATE(665), 1, - sym__let_operator, - STATE(2649), 1, - sym__let_heredoc, - ACTIONS(2753), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_DOT_EQ, - [66863] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4344), 1, - anon_sym_BSLASH, - ACTIONS(4348), 1, - anon_sym_LBRACK, - ACTIONS(4692), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1405), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1438), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(4352), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [66889] = 8, + [68141] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5258), 1, - anon_sym_name, - ACTIONS(5261), 1, - anon_sym_group, - ACTIONS(5264), 1, - anon_sym_file, - STATE(1736), 1, - aux_sym__sign_place_place_repeat1, - STATE(1842), 1, - sym__sign_place_place_argument, - ACTIONS(5267), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5255), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [66917] = 4, + ACTIONS(5405), 10, + anon_sym_bold, + anon_sym_underline, + anon_sym_undercurl, + anon_sym_strikethrough, + anon_sym_reverse, + anon_sym_inverse, + anon_sym_italic, + anon_sym_standout, + anon_sym_nocombine, + anon_sym_NONE2, + [68157] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5269), 1, - anon_sym_BSLASH_AMP, - STATE(1732), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 8, - sym__newline_or_pipe, - sym_comment, + STATE(1778), 1, + aux_sym_pattern_repeat1, + ACTIONS(5050), 9, sym__normal, sym__source, anon_sym_COLON, + anon_sym_COMMA, sym_bang, + anon_sym_SEMI, anon_sym_QMARK2, anon_sym_BSLASH_PIPE, - [66937] = 7, + aux_sym__map_rhs_token4, + [68175] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3783), 1, - anon_sym_BSLASH, - ACTIONS(3787), 1, - anon_sym_LBRACK, - ACTIONS(4929), 1, - aux_sym__pattern_ordinary_atom_token2, - STATE(1205), 2, - aux_sym__pattern_ordinary_atom, - sym__pattern_atom, - STATE(1227), 2, - sym__pattern_piece, - aux_sym__pattern_concat, - ACTIONS(3791), 3, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [66963] = 3, + ACTIONS(5385), 1, + anon_sym_icon, + ACTIONS(5389), 1, + anon_sym_text, + STATE(1739), 1, + aux_sym__sign_define_repeat1, + STATE(1955), 1, + sym__sign_define_argument, + ACTIONS(5396), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5387), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [68201] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(815), 4, + ACTIONS(835), 4, anon_sym_LBRACE, aux_sym_identifier_token1, aux_sym_identifier_token2, anon_sym_EQ, - ACTIONS(813), 6, + ACTIONS(833), 6, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE2, + anon_sym_EQ_LT_LT, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [68219] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(835), 4, + anon_sym_LBRACE, + aux_sym_identifier_token1, + aux_sym_identifier_token2, + anon_sym_EQ, + ACTIONS(833), 6, sym__newline_or_pipe, sym__scope_dict, sym_comment, anon_sym_a_COLON, anon_sym_LBRACE2, anon_sym_EQ_LT_LT, - [66981] = 3, + [68237] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1718), 1, - aux_sym_pattern_repeat1, - ACTIONS(5042), 9, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_SLASH2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [66999] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5148), 1, + ACTIONS(833), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_LBRACE2, + ACTIONS(835), 7, + aux_sym_identifier_token2, anon_sym_icon, - ACTIONS(5152), 1, - anon_sym_text, - STATE(1682), 1, - aux_sym__sign_define_repeat1, - STATE(1834), 1, - sym__sign_define_argument, - ACTIONS(5105), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5150), 4, anon_sym_linehl, anon_sym_numhl, + anon_sym_text, anon_sym_texthl, anon_sym_culhl, - [67025] = 7, + [68255] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5271), 1, - anon_sym_icon, - ACTIONS(5277), 1, - anon_sym_text, - STATE(1742), 1, - aux_sym__sign_define_repeat1, - STATE(1829), 1, - sym__sign_define_argument, - ACTIONS(5280), 2, + ACTIONS(3457), 2, + anon_sym_contained, + aux_sym__syn_keyword_identifier_token1, + ACTIONS(3455), 8, + anon_sym_conceal, + anon_sym_cchar, + anon_sym_containedin, + anon_sym_nextgroup, + anon_sym_transparent, + anon_sym_skipwhite, + anon_sym_skipnl, + anon_sym_skipempty, + [68273] = 8, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4982), 1, + anon_sym_link, + ACTIONS(4984), 1, + anon_sym_clear, + ACTIONS(5060), 1, + sym_hl_group, + ACTIONS(5062), 1, + sym__default, + ACTIONS(5135), 1, + aux_sym__map_rhs_token4, + STATE(2929), 1, + sym__hl_body_link, + STATE(2733), 4, + sym__hl_body_clear, + sym__hl_body_none, + sym__hl_body_keys, + sym__hl_body, + [68301] = 8, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5409), 1, + anon_sym_name, + ACTIONS(5411), 1, + anon_sym_group, + ACTIONS(5413), 1, + anon_sym_file, + STATE(1759), 1, + aux_sym__sign_place_place_repeat1, + STATE(1960), 1, + sym__sign_place_place_argument, + ACTIONS(5375), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5274), 4, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [67051] = 7, + ACTIONS(5407), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [68329] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4426), 1, + ACTIONS(3984), 1, anon_sym_BSLASH, - ACTIONS(4430), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, + ACTIONS(3988), 1, + anon_sym_LBRACK2, + ACTIONS(4880), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1390), 2, + STATE(1218), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1429), 2, + STATE(1251), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4434), 3, + ACTIONS(3992), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [67077] = 5, + [68355] = 7, ACTIONS(3), 1, sym__line_continuation, - STATE(1744), 1, - aux_sym__syn_sync_repeat1, - STATE(1819), 1, - sym__syn_sync_lines, - ACTIONS(5284), 2, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(5282), 6, + ACTIONS(3638), 1, anon_sym_BSLASH, - anon_sym_LBRACK, + ACTIONS(3642), 1, + anon_sym_LBRACK2, + ACTIONS(4799), 1, aux_sym__pattern_ordinary_atom_token2, + STATE(1149), 2, + aux_sym__pattern_ordinary_atom, + sym__pattern_atom, + STATE(1197), 2, + sym__pattern_piece, + aux_sym__pattern_concat, + ACTIONS(3646), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [67099] = 7, + [68381] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4360), 1, + ACTIONS(1107), 1, anon_sym_BSLASH, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(4998), 1, aux_sym__pattern_ordinary_atom_token2, - STATE(1380), 2, + STATE(1115), 2, aux_sym__pattern_ordinary_atom, sym__pattern_atom, - STATE(1412), 2, + STATE(1167), 2, sym__pattern_piece, aux_sym__pattern_concat, - ACTIONS(4368), 3, + ACTIONS(1127), 3, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [67125] = 4, + [68407] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5417), 1, + anon_sym_QMARK2, + ACTIONS(5415), 8, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [68424] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5421), 1, + anon_sym_EQ, + ACTIONS(5419), 8, + 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_EQ_LT_LT, + [68441] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5204), 1, + anon_sym_, + ACTIONS(5362), 1, + aux_sym__map_rhs_token4, + STATE(2421), 1, + sym__set_operator, + STATE(2593), 1, + sym__set_rhs, + ACTIONS(5423), 5, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + [68464] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5287), 1, + ACTIONS(5425), 1, sym__printable, - STATE(1879), 1, + STATE(1889), 1, sym__sign_define_arg_text, - ACTIONS(4457), 8, - anon_sym_BSLASH_PIPE, + ACTIONS(4365), 7, aux_sym__map_rhs_token4, anon_sym_icon, anon_sym_linehl, @@ -113442,382 +113746,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_text, anon_sym_texthl, anon_sym_culhl, - [67145] = 7, + [68483] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5289), 1, - anon_sym_icon, - ACTIONS(5295), 1, - anon_sym_text, - STATE(1747), 1, - aux_sym__sign_define_repeat1, - STATE(1834), 1, - sym__sign_define_argument, - ACTIONS(5280), 2, + ACTIONS(5427), 1, + anon_sym_BSLASH_AMP, + STATE(1840), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(4815), 7, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, + anon_sym_QMARK2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5292), 4, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [67171] = 5, + [68502] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5298), 1, - sym__printable, + ACTIONS(5429), 1, + anon_sym_BSLASH, + ACTIONS(5431), 1, + sym_bang, + ACTIONS(5437), 1, + aux_sym_filename_token3, + STATE(2674), 1, + sym_filename, + ACTIONS(5433), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5435), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [68527] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5439), 1, + anon_sym_BSLASH_PIPE, STATE(1820), 1, - sym__sign_define_arg_text, - ACTIONS(4455), 2, + aux_sym_pattern_repeat1, + ACTIONS(5050), 7, sym__newline_or_pipe, sym_comment, - ACTIONS(4457), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [67193] = 8, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, + anon_sym_QMARK2, + [68546] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5303), 1, - anon_sym_name, - ACTIONS(5306), 1, - anon_sym_group, - ACTIONS(5309), 1, - anon_sym_file, - STATE(1749), 1, - aux_sym__sign_place_place_repeat1, - STATE(1837), 1, - sym__sign_place_place_argument, - ACTIONS(5267), 2, + ACTIONS(5441), 1, + anon_sym_BSLASH_AMP, + STATE(1834), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(4815), 7, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, + anon_sym_SLASH2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5300), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [67221] = 4, + [68565] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5312), 1, - sym_hl_group, - ACTIONS(4455), 2, + ACTIONS(5443), 1, + anon_sym_QMARK2, + ACTIONS(5415), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(4457), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [67240] = 7, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + [68582] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(3649), 1, - sym_hl_group, - STATE(2207), 1, - sym_hl_groups, - STATE(3022), 1, - sym_at, - ACTIONS(5316), 2, + ACTIONS(5443), 1, + anon_sym_SLASH2, + ACTIONS(5415), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(5314), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [67265] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4068), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(4066), 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, - [67282] = 3, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + [68599] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4060), 1, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(4058), 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, - [67299] = 7, + ACTIONS(5445), 1, + sym_au_event, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(5449), 1, + aux_sym_identifier_token1, + ACTIONS(5451), 1, + sym_bang, + STATE(1999), 1, + sym__curly_braces_name_expression, + STATE(2350), 1, + sym_identifier, + STATE(3257), 1, + sym_au_event_list, + ACTIONS(5453), 2, + sym__newline_or_pipe, + sym_comment, + [68628] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5318), 1, + ACTIONS(4606), 1, anon_sym_BSLASH, - ACTIONS(5320), 1, - sym_bang, - ACTIONS(5324), 1, + ACTIONS(4610), 1, aux_sym_filename_token3, - STATE(2858), 1, + STATE(1835), 1, + aux_sym_runtime_statement_repeat1, + STATE(2029), 1, sym_filename, - ACTIONS(5326), 2, + ACTIONS(5455), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5322), 3, + ACTIONS(4612), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [67324] = 7, + [68653] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5318), 1, + ACTIONS(5457), 1, anon_sym_BSLASH, - ACTIONS(5324), 1, - aux_sym_filename_token3, - ACTIONS(5328), 1, + ACTIONS(5459), 1, sym_bang, - STATE(2798), 1, + ACTIONS(5463), 1, + aux_sym_filename_token3, + STATE(2712), 1, sym_filename, - ACTIONS(5330), 2, + ACTIONS(5433), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5322), 3, + ACTIONS(5461), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [67349] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4060), 2, - sym__separator, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(4058), 7, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [67366] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4068), 2, - sym__separator, - aux_sym__pattern_ordinary_atom_token2, - ACTIONS(4066), 7, - anon_sym_BSLASH, - anon_sym_BSLASH_AMP, - anon_sym_BSLASH_PIPE, - anon_sym_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [67383] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5144), 1, - anon_sym_, - ACTIONS(5146), 1, - aux_sym__map_rhs_token4, - STATE(2417), 1, - sym__set_operator, - STATE(2485), 1, - sym__set_rhs, - ACTIONS(5332), 5, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - [67406] = 7, + [68678] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, + ACTIONS(3094), 1, anon_sym_AT, - ACTIONS(3128), 1, + ACTIONS(3098), 1, sym_hl_group, - STATE(2152), 1, + STATE(2248), 1, sym_hl_groups, - STATE(3102), 1, + STATE(3134), 1, sym_at, - ACTIONS(5316), 2, + ACTIONS(5465), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5314), 3, + ACTIONS(5467), 3, anon_sym_contains, anon_sym_add, anon_sym_remove, - [67431] = 7, + [68703] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5280), 1, + ACTIONS(5242), 1, aux_sym__map_rhs_token4, - ACTIONS(5334), 1, + ACTIONS(5469), 1, anon_sym_icon, - ACTIONS(5337), 1, + ACTIONS(5472), 1, anon_sym_text, - STATE(1760), 1, + STATE(1810), 1, aux_sym__sign_define_repeat1, - STATE(1834), 1, + STATE(1905), 1, sym__sign_define_argument, - ACTIONS(5292), 4, + ACTIONS(5247), 4, anon_sym_linehl, anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [67456] = 7, + [68728] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5340), 1, - anon_sym_BSLASH, - ACTIONS(5348), 1, - aux_sym_filename_token3, - STATE(1761), 1, - aux_sym_runtime_statement_repeat1, - STATE(2000), 1, - sym_filename, - ACTIONS(5343), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(5396), 1, aux_sym__map_rhs_token4, - ACTIONS(5345), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [67481] = 7, + ACTIONS(5475), 1, + anon_sym_icon, + ACTIONS(5477), 1, + anon_sym_text, + STATE(1810), 1, + aux_sym__sign_define_repeat1, + STATE(1905), 1, + sym__sign_define_argument, + ACTIONS(5324), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [68753] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4570), 1, - aux_sym_filename_token3, - ACTIONS(5351), 1, - anon_sym_BSLASH, - STATE(1761), 1, - aux_sym_runtime_statement_repeat1, - STATE(2000), 1, - sym_filename, - ACTIONS(5353), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(5320), 1, aux_sym__map_rhs_token4, - ACTIONS(4572), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [67506] = 7, + ACTIONS(5475), 1, + anon_sym_icon, + ACTIONS(5477), 1, + anon_sym_text, + STATE(1811), 1, + aux_sym__sign_define_repeat1, + STATE(1905), 1, + sym__sign_define_argument, + ACTIONS(5324), 4, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [68778] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4540), 1, + ACTIONS(4050), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(4048), 8, anon_sym_BSLASH, - ACTIONS(4544), 1, - aux_sym_filename_token3, - STATE(1764), 1, - aux_sym_runtime_statement_repeat1, - STATE(1922), 1, - sym_filename, - ACTIONS(5353), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4546), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [67531] = 7, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_RPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [68795] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5355), 1, + ACTIONS(4079), 1, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(4077), 8, anon_sym_BSLASH, - ACTIONS(5361), 1, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_RPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [68812] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4549), 1, aux_sym_filename_token3, - STATE(1764), 1, + ACTIONS(5479), 1, + anon_sym_BSLASH, + STATE(1817), 1, aux_sym_runtime_statement_repeat1, - STATE(1922), 1, + STATE(2015), 1, sym_filename, - ACTIONS(5343), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5358), 3, + ACTIONS(5481), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(4551), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [67556] = 7, + [68837] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5129), 1, + ACTIONS(5483), 1, + sym_hl_group, + ACTIONS(4363), 2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5364), 1, + ACTIONS(4365), 6, anon_sym_icon, - ACTIONS(5366), 1, - anon_sym_text, - STATE(1760), 1, - aux_sym__sign_define_repeat1, - STATE(1834), 1, - sym__sign_define_argument, - ACTIONS(5150), 4, anon_sym_linehl, anon_sym_numhl, + anon_sym_text, anon_sym_texthl, anon_sym_culhl, - [67581] = 7, + [68856] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5105), 1, + ACTIONS(5485), 1, + anon_sym_BSLASH, + ACTIONS(5493), 1, + aux_sym_filename_token3, + STATE(1817), 1, + aux_sym_runtime_statement_repeat1, + STATE(2015), 1, + sym_filename, + ACTIONS(5488), 2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5364), 1, - anon_sym_icon, - ACTIONS(5366), 1, - anon_sym_text, - STATE(1765), 1, - aux_sym__sign_define_repeat1, - STATE(1834), 1, - sym__sign_define_argument, - ACTIONS(5150), 4, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [67606] = 2, + ACTIONS(5490), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [68881] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4058), 9, + ACTIONS(4077), 9, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [67621] = 2, + [68896] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4066), 9, + ACTIONS(4048), 9, anon_sym_BSLASH, anon_sym_BSLASH_AMP, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_LBRACK, + anon_sym_LBRACK2, aux_sym__pattern_ordinary_atom_token2, anon_sym_BSLASH_LPAREN, anon_sym_BSLASH_PERCENT_LPAREN, anon_sym_BSLASHz_LPAREN, - [67636] = 4, + [68911] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5368), 1, + ACTIONS(5496), 1, anon_sym_BSLASH_PIPE, - STATE(1772), 1, + STATE(1820), 1, aux_sym_pattern_repeat1, - ACTIONS(4995), 7, + ACTIONS(5112), 7, sym__newline_or_pipe, sym_comment, sym__normal, @@ -113825,49 +114085,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, sym_bang, anon_sym_QMARK2, - [67655] = 4, + [68930] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5288), 1, + anon_sym_BSLASH, + STATE(1821), 1, + aux_sym_map_statement_repeat1, + ACTIONS(5286), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_LT2, + ACTIONS(5499), 5, + anon_sym_LTbuffer_GT, + anon_sym_LTnowait_GT, + anon_sym_LTsilent_GT, + anon_sym_LTunique_GT, + anon_sym_LTscript_GT, + [68951] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4606), 1, + anon_sym_BSLASH, + ACTIONS(4610), 1, + aux_sym_filename_token3, + STATE(1835), 1, + aux_sym_runtime_statement_repeat1, + STATE(2029), 1, + sym_filename, + ACTIONS(5502), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4612), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [68976] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5370), 1, + ACTIONS(4079), 2, + sym__separator, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(4077), 7, + anon_sym_BSLASH, anon_sym_BSLASH_AMP, - STATE(1798), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 7, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, - anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [68993] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4050), 2, + sym__separator, + aux_sym__pattern_ordinary_atom_token2, + ACTIONS(4048), 7, + anon_sym_BSLASH, + anon_sym_BSLASH_AMP, + anon_sym_BSLASH_PIPE, + anon_sym_LBRACK2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [69010] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4549), 1, + aux_sym_filename_token3, + ACTIONS(5479), 1, + anon_sym_BSLASH, + STATE(1817), 1, + aux_sym_runtime_statement_repeat1, + STATE(2015), 1, + sym_filename, + ACTIONS(5455), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [67674] = 9, + ACTIONS(4551), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [69035] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5372), 1, - sym_au_event, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym_identifier_token1, - ACTIONS(5378), 1, + ACTIONS(5506), 1, + anon_sym_EQ, + ACTIONS(5504), 8, + 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_EQ_LT_LT, + [69052] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5457), 1, + anon_sym_BSLASH, + ACTIONS(5463), 1, + aux_sym_filename_token3, + ACTIONS(5508), 1, + sym_bang, + STATE(2657), 1, + sym_filename, + ACTIONS(5510), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5461), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [69077] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(3632), 1, + sym_hl_group, + STATE(2206), 1, + sym_hl_groups, + STATE(2961), 1, + sym_at, + ACTIONS(5465), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5467), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [69102] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5512), 1, + sym__printable, + ACTIONS(5516), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5514), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [69121] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5520), 1, + sym__wincmd, + ACTIONS(5518), 8, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, sym_bang, - STATE(1534), 1, - sym__curly_braces_name_expression, - STATE(2355), 1, - sym_identifier, - STATE(3147), 1, - sym_au_event_list, - ACTIONS(5380), 2, + anon_sym_SEMI, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [67703] = 4, + [69138] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5522), 1, + sym_hl_group, + ACTIONS(4363), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(4365), 6, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [69157] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5382), 1, + ACTIONS(5439), 1, anon_sym_BSLASH_PIPE, - STATE(1772), 1, + STATE(1802), 1, aux_sym_pattern_repeat1, - ACTIONS(5005), 7, + ACTIONS(5147), 7, sym__newline_or_pipe, sym_comment, sym__normal, @@ -113875,158 +114274,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, sym_bang, anon_sym_QMARK2, - [67722] = 7, + [69176] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4570), 1, - aux_sym_filename_token3, - ACTIONS(5351), 1, + ACTIONS(5457), 1, anon_sym_BSLASH, - STATE(1761), 1, - aux_sym_runtime_statement_repeat1, - STATE(2000), 1, + ACTIONS(5463), 1, + aux_sym_filename_token3, + ACTIONS(5524), 1, + sym_bang, + STATE(2751), 1, sym_filename, - ACTIONS(5385), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(4572), 3, + ACTIONS(5526), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5461), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [67747] = 3, + [69201] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5389), 1, - anon_sym_QMARK2, - ACTIONS(5387), 8, - sym__newline_or_pipe, - sym_comment, + ACTIONS(5528), 1, + anon_sym_BSLASH_AMP, + STATE(1834), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3612), 7, sym__normal, sym__source, anon_sym_COLON, - anon_sym_COMMA, sym_bang, - anon_sym_SEMI, - [67764] = 7, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [69220] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5391), 1, + ACTIONS(5531), 1, anon_sym_BSLASH, - ACTIONS(5393), 1, - sym_bang, - ACTIONS(5397), 1, + ACTIONS(5537), 1, aux_sym_filename_token3, - STATE(2738), 1, + STATE(1835), 1, + aux_sym_runtime_statement_repeat1, + STATE(2029), 1, sym_filename, - ACTIONS(5326), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5395), 3, + ACTIONS(5488), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5534), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [67789] = 3, + [69245] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5389), 1, - anon_sym_SLASH2, - ACTIONS(5387), 8, + ACTIONS(4606), 1, + anon_sym_BSLASH, + ACTIONS(4610), 1, + aux_sym_filename_token3, + STATE(1835), 1, + aux_sym_runtime_statement_repeat1, + STATE(2029), 1, + sym_filename, + ACTIONS(5481), 2, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - [67806] = 8, + ACTIONS(4612), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [69270] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5154), 1, + ACTIONS(5253), 1, aux_sym__map_rhs_token4, - ACTIONS(5158), 1, + ACTIONS(5258), 1, anon_sym_name, - ACTIONS(5160), 1, + ACTIONS(5261), 1, anon_sym_group, - ACTIONS(5399), 1, + ACTIONS(5540), 1, anon_sym_file, - STATE(1787), 1, - aux_sym__sign_place_place_repeat1, STATE(1837), 1, + aux_sym__sign_place_place_repeat1, + STATE(1854), 1, sym__sign_place_place_argument, - ACTIONS(5156), 3, + ACTIONS(5255), 3, anon_sym_line, anon_sym_buffer, anon_sym_priority, - [67833] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5318), 1, - anon_sym_BSLASH, - ACTIONS(5324), 1, - aux_sym_filename_token3, - ACTIONS(5401), 1, - sym_bang, - STATE(2700), 1, - sym_filename, - ACTIONS(5403), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5322), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [67858] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2779), 1, - anon_sym_EQ, - ACTIONS(2781), 8, - 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_EQ_LT_LT, - [67875] = 4, + [69297] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5405), 1, - sym_hl_group, - ACTIONS(4455), 2, + ACTIONS(5543), 1, + sym__printable, + ACTIONS(5514), 8, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(4457), 6, anon_sym_icon, anon_sym_linehl, anon_sym_numhl, anon_sym_text, anon_sym_texthl, anon_sym_culhl, - [67894] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5409), 1, - anon_sym_EQ, - ACTIONS(5407), 8, - 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_EQ_LT_LT, - [67911] = 4, + [69314] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5411), 1, + ACTIONS(5545), 1, anon_sym_BSLASH_PIPE, - STATE(1792), 1, + STATE(1844), 1, aux_sym_pattern_repeat1, - ACTIONS(5042), 7, + ACTIONS(5147), 7, sym__newline_or_pipe, sym_comment, sym__normal, @@ -114034,91 +114391,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, sym_bang, anon_sym_SLASH2, - [67930] = 3, + [69333] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5413), 1, - anon_sym_QMARK2, - ACTIONS(5387), 8, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [67947] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5413), 1, - anon_sym_SLASH2, - ACTIONS(5387), 8, + ACTIONS(5547), 1, + anon_sym_BSLASH_AMP, + STATE(1840), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3612), 7, sym__normal, sym__source, anon_sym_COLON, - anon_sym_COMMA, sym_bang, - anon_sym_SEMI, + anon_sym_QMARK2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [67964] = 7, + [69352] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5391), 1, + ACTIONS(5429), 1, anon_sym_BSLASH, - ACTIONS(5397), 1, + ACTIONS(5437), 1, aux_sym_filename_token3, - ACTIONS(5415), 1, + ACTIONS(5550), 1, sym_bang, - STATE(2572), 1, + STATE(2898), 1, sym_filename, - ACTIONS(5403), 2, + ACTIONS(5510), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5395), 3, + ACTIONS(5435), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [67989] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5419), 1, - sym__wincmd, - ACTIONS(5417), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - [68006] = 8, + [69377] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5267), 1, + ACTIONS(4549), 1, + aux_sym_filename_token3, + ACTIONS(5479), 1, + anon_sym_BSLASH, + STATE(1817), 1, + aux_sym_runtime_statement_repeat1, + STATE(2015), 1, + sym_filename, + ACTIONS(5502), 2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5303), 1, - anon_sym_name, - ACTIONS(5306), 1, - anon_sym_group, - ACTIONS(5421), 1, - anon_sym_file, - STATE(1787), 1, - aux_sym__sign_place_place_repeat1, - STATE(1837), 1, - sym__sign_place_place_argument, - ACTIONS(5300), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [68033] = 3, + ACTIONS(4551), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [69402] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5424), 1, - sym__wincmd, - ACTIONS(5417), 8, + ACTIONS(5417), 1, + anon_sym_SLASH2, + ACTIONS(5415), 8, sym__normal, sym__source, anon_sym_COLON, @@ -114127,95 +114456,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [68050] = 9, + [69419] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5372), 1, - sym_au_event, - ACTIONS(5426), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, - aux_sym_identifier_token1, - ACTIONS(5430), 1, - sym_bang, - STATE(1931), 1, - sym__curly_braces_name_expression, - STATE(2280), 1, - sym_identifier, - STATE(3124), 1, - sym_au_event_list, - ACTIONS(5380), 2, + ACTIONS(5545), 1, + anon_sym_BSLASH_PIPE, + STATE(1846), 1, + aux_sym_pattern_repeat1, + ACTIONS(5050), 7, sym__newline_or_pipe, sym_comment, - [68079] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5432), 1, - anon_sym_BSLASH_AMP, - STATE(1790), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 7, sym__normal, sym__source, anon_sym_COLON, sym_bang, anon_sym_SLASH2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [68098] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5391), 1, - anon_sym_BSLASH, - ACTIONS(5397), 1, - aux_sym_filename_token3, - ACTIONS(5435), 1, - sym_bang, - STATE(2571), 1, - sym_filename, - ACTIONS(5330), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5395), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [68123] = 4, + [69438] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5411), 1, - anon_sym_BSLASH_PIPE, - STATE(1795), 1, - aux_sym_pattern_repeat1, - ACTIONS(4995), 7, + ACTIONS(5552), 1, + sym__wincmd, + ACTIONS(5518), 8, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, anon_sym_COLON, + anon_sym_COMMA, sym_bang, - anon_sym_SLASH2, - [68142] = 4, + anon_sym_SEMI, + [69455] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5437), 1, - anon_sym_BSLASH_AMP, - STATE(1790), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 7, + ACTIONS(5554), 1, + anon_sym_BSLASH_PIPE, + STATE(1846), 1, + aux_sym_pattern_repeat1, + ACTIONS(5112), 7, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, anon_sym_COLON, sym_bang, anon_sym_SLASH2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [68161] = 3, + [69474] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5441), 1, + ACTIONS(2769), 1, anon_sym_EQ, - ACTIONS(5439), 8, + ACTIONS(2771), 8, anon_sym_in, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -114224,396 +114514,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_DOT_EQ, anon_sym_EQ_LT_LT, - [68178] = 4, + [69491] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5443), 1, - anon_sym_BSLASH_PIPE, - STATE(1795), 1, - aux_sym_pattern_repeat1, - ACTIONS(5005), 7, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, + ACTIONS(5445), 1, + sym_au_event, + ACTIONS(5557), 1, + anon_sym_LBRACE, + ACTIONS(5559), 1, + aux_sym_identifier_token1, + ACTIONS(5561), 1, sym_bang, - anon_sym_SLASH2, - [68197] = 3, + STATE(1623), 1, + sym__curly_braces_name_expression, + STATE(2393), 1, + sym_identifier, + STATE(3306), 1, + sym_au_event_list, + ACTIONS(5453), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [69520] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5446), 1, - sym__printable, - ACTIONS(5448), 8, + ACTIONS(5375), 1, + aux_sym__map_rhs_token4, + ACTIONS(5379), 1, + anon_sym_name, + ACTIONS(5381), 1, + anon_sym_group, + ACTIONS(5563), 1, + anon_sym_file, + STATE(1837), 1, + aux_sym__sign_place_place_repeat1, + STATE(1854), 1, + sym__sign_place_place_argument, + ACTIONS(5377), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [69547] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5429), 1, + anon_sym_BSLASH, + ACTIONS(5437), 1, + aux_sym_filename_token3, + ACTIONS(5565), 1, + sym_bang, + STATE(2770), 1, + sym_filename, + ACTIONS(5526), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [68214] = 4, + ACTIONS(5435), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [69572] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5450), 1, - sym__printable, - ACTIONS(5452), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5448), 6, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [68233] = 4, + STATE(1882), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5567), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5569), 2, + aux_sym__bang_filter_command_argument_token3, + aux_sym__bang_filter_command_argument_token4, + ACTIONS(5571), 3, + sym_string_literal, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [69592] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5454), 1, - anon_sym_BSLASH_AMP, - STATE(1798), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 7, + ACTIONS(5575), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5573), 6, sym__normal, sym__source, anon_sym_COLON, sym_bang, - anon_sym_QMARK2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [68252] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5178), 1, - anon_sym_BSLASH, - STATE(1799), 1, - aux_sym_map_statement_repeat1, - ACTIONS(5176), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_LT2, - ACTIONS(5457), 5, - anon_sym_LTbuffer_GT, - anon_sym_LTnowait_GT, - anon_sym_LTsilent_GT, - anon_sym_LTunique_GT, - anon_sym_LTscript_GT, - [68273] = 4, + [69608] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5368), 1, + ACTIONS(5577), 1, anon_sym_BSLASH_PIPE, - STATE(1769), 1, + STATE(1896), 1, aux_sym_pattern_repeat1, - ACTIONS(5042), 7, - sym__newline_or_pipe, - sym_comment, + ACTIONS(5050), 6, sym__normal, sym__source, anon_sym_COLON, sym_bang, - anon_sym_QMARK2, - [68292] = 7, + anon_sym_SLASH2, + aux_sym__map_rhs_token4, + [69626] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4570), 1, - aux_sym_filename_token3, - ACTIONS(5351), 1, - anon_sym_BSLASH, - STATE(1761), 1, - aux_sym_runtime_statement_repeat1, - STATE(2000), 1, - sym_filename, - ACTIONS(5460), 2, + ACTIONS(5579), 8, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(4572), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [68317] = 7, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [69640] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4540), 1, - anon_sym_BSLASH, - ACTIONS(4544), 1, - aux_sym_filename_token3, - STATE(1764), 1, - aux_sym_runtime_statement_repeat1, - STATE(1922), 1, - sym_filename, - ACTIONS(5460), 2, + ACTIONS(5583), 1, + aux_sym_filename_token7, + STATE(1943), 1, + aux_sym_filename_repeat1, + ACTIONS(4291), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(4546), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [68342] = 7, + ACTIONS(5581), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [69660] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5587), 1, + anon_sym_plugin, + ACTIONS(5589), 1, + anon_sym_indent, + ACTIONS(5591), 1, + anon_sym_detect, + STATE(2699), 1, + sym__filetype_state, + ACTIONS(5585), 2, + anon_sym_on, + anon_sym_off, + ACTIONS(5593), 2, + sym__newline_or_pipe, + sym_comment, + [69684] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4540), 1, + ACTIONS(4618), 1, anon_sym_BSLASH, - ACTIONS(4544), 1, + ACTIONS(4622), 1, aux_sym_filename_token3, - STATE(1764), 1, + ACTIONS(5455), 1, + aux_sym__map_rhs_token4, + STATE(1916), 1, aux_sym_runtime_statement_repeat1, - STATE(1922), 1, + STATE(2109), 1, sym_filename, - ACTIONS(5385), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(4546), 3, + ACTIONS(4624), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [68367] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5462), 1, - sym__printable, - STATE(1879), 1, - sym__sign_define_arg_text, - ACTIONS(4457), 7, - aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [68386] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5466), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5464), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [68402] = 5, + [69708] = 7, ACTIONS(3), 1, sym__line_continuation, - STATE(1869), 1, - aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5468), 2, + ACTIONS(5595), 1, aux_sym__bang_filter_command_argument_token1, + ACTIONS(5597), 1, anon_sym_BSLASH, - ACTIONS(5470), 2, - aux_sym__bang_filter_command_argument_token3, - aux_sym__bang_filter_command_argument_token4, - ACTIONS(5472), 3, + ACTIONS(5599), 1, + sym_bang, + ACTIONS(5603), 1, sym_string_literal, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [68422] = 2, + ACTIONS(5601), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1967), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [69732] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5474), 8, + ACTIONS(1203), 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_, - [68436] = 5, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + [69746] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2653), 1, - anon_sym_EQ, - ACTIONS(2655), 1, - aux_sym_identifier_token1, - ACTIONS(2657), 1, - anon_sym_EQ_LT_LT, - ACTIONS(2651), 5, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, + ACTIONS(5429), 1, + anon_sym_BSLASH, + ACTIONS(5437), 1, + aux_sym_filename_token3, + STATE(2639), 1, + sym_filename, + ACTIONS(5605), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [68456] = 5, + ACTIONS(5435), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [69768] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(831), 1, - aux_sym_identifier_token1, - ACTIONS(2783), 1, - aux_sym_argument_token1, - ACTIONS(2785), 1, - aux_sym_argument_token2, - ACTIONS(829), 5, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, + ACTIONS(5607), 1, anon_sym_BSLASH_PIPE, + STATE(1898), 1, + aux_sym_pattern_repeat1, + ACTIONS(5050), 6, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, + anon_sym_QMARK2, aux_sym__map_rhs_token4, - [68476] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(30), 1, - sym__cmd_separator, - STATE(1851), 1, - aux_sym_function_definition_repeat1, - ACTIONS(5478), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5476), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [68496] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(831), 1, - aux_sym_identifier_token1, - ACTIONS(2783), 1, - aux_sym_argument_token1, - ACTIONS(2785), 1, - aux_sym_argument_token2, - ACTIONS(829), 5, - sym__newline_or_pipe, - sym__scope_dict, - sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - [68516] = 2, + [69786] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5464), 8, + ACTIONS(1223), 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_, - [68530] = 2, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + [69800] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5480), 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_, - [68544] = 6, + ACTIONS(5379), 1, + anon_sym_name, + ACTIONS(5381), 1, + anon_sym_group, + ACTIONS(5383), 1, + anon_sym_file, + STATE(1771), 1, + aux_sym__sign_place_place_repeat1, + STATE(1854), 1, + sym__sign_place_place_argument, + ACTIONS(5377), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [69824] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5484), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5486), 1, - aux_sym__bang_filter_command_argument_token4, - STATE(1815), 1, - aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5482), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5488), 3, + ACTIONS(5611), 1, + aux_sym_filename_token7, + STATE(1937), 1, + aux_sym_filename_repeat1, + ACTIONS(4291), 2, sym__newline_or_pipe, - sym_string_literal, sym_comment, - [68566] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5492), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5495), 1, + ACTIONS(5609), 4, aux_sym__bang_filter_command_argument_token4, - STATE(1815), 1, - aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5490), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5498), 3, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - [68588] = 5, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [69844] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(30), 1, + STATE(27), 1, sym__cmd_separator, - STATE(1960), 1, + STATE(2032), 1, aux_sym_function_definition_repeat1, - ACTIONS(5478), 2, + ACTIONS(5615), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5500), 4, + ACTIONS(5613), 4, anon_sym_dict, anon_sym_range, anon_sym_abort, anon_sym_closure, - [68608] = 9, + [69864] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5617), 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_, + [69878] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5374), 1, + ACTIONS(5557), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(5619), 1, anon_sym_COMMA, - ACTIONS(5504), 1, + ACTIONS(5621), 1, aux_sym_identifier_token1, - ACTIONS(5506), 1, + ACTIONS(5623), 1, anon_sym_RPAREN, - ACTIONS(5508), 1, + ACTIONS(5625), 1, sym_spread, - STATE(1534), 1, + STATE(1623), 1, sym__curly_braces_name_expression, - STATE(2389), 1, + STATE(2554), 1, sym_default_parameter, - STATE(2977), 1, + STATE(3163), 1, sym_identifier, - [68636] = 2, + [69906] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5510), 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, - [68650] = 2, + ACTIONS(5627), 8, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [69920] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5512), 8, - anon_sym_BSLASH, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [68664] = 3, + ACTIONS(5629), 8, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + [69934] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5516), 1, - anon_sym_text, - ACTIONS(5514), 7, + ACTIONS(5631), 8, sym__newline_or_pipe, sym_comment, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [68680] = 2, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + [69948] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5518), 8, + ACTIONS(5429), 1, + anon_sym_BSLASH, + ACTIONS(5437), 1, + aux_sym_filename_token3, + STATE(2768), 1, + sym_filename, + ACTIONS(5526), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5435), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [69970] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5633), 8, sym__newline_or_pipe, sym_comment, anon_sym_EQ2, @@ -114622,114 +114887,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_DASH_EQ2, anon_sym_, - [68694] = 3, + [69984] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5520), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5518), 6, + ACTIONS(5635), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5573), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, + [70000] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5637), 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_, - [68710] = 5, + [70014] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5524), 1, - aux_sym_filename_token7, - STATE(1824), 1, - aux_sym_filename_repeat1, - ACTIONS(4229), 2, + ACTIONS(5639), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(5522), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [68730] = 5, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [70028] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5529), 1, - aux_sym_filename_token7, - STATE(1824), 1, - aux_sym_filename_repeat1, - ACTIONS(4243), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5526), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [68750] = 5, + ACTIONS(5641), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5643), 1, + anon_sym_BSLASH, + ACTIONS(5645), 1, + sym_bang, + ACTIONS(5647), 1, + sym_string_literal, + ACTIONS(5601), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(2058), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [70052] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(24), 1, + STATE(43), 1, sym__cmd_separator, - STATE(1960), 1, + STATE(1947), 1, aux_sym_function_definition_repeat1, - ACTIONS(5532), 2, + ACTIONS(5651), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5500), 4, + ACTIONS(5649), 4, anon_sym_dict, anon_sym_range, anon_sym_abort, anon_sym_closure, - [68770] = 4, + [70072] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5429), 1, + anon_sym_BSLASH, + ACTIONS(5437), 1, + aux_sym_filename_token3, + STATE(2891), 1, + sym_filename, + ACTIONS(5653), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5435), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [70094] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5657), 1, + anon_sym_plugin, + ACTIONS(5659), 1, + anon_sym_indent, + ACTIONS(5661), 1, + anon_sym_detect, + STATE(2786), 1, + sym__filetype_state, + ACTIONS(5593), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5655), 2, + anon_sym_on, + anon_sym_off, + [70118] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5577), 1, + anon_sym_BSLASH_PIPE, + STATE(1853), 1, + aux_sym_pattern_repeat1, + ACTIONS(5147), 6, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, + anon_sym_SLASH2, + aux_sym__map_rhs_token4, + [70136] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5534), 1, + ACTIONS(5607), 1, anon_sym_BSLASH_PIPE, - STATE(1826), 1, + STATE(1861), 1, aux_sym_pattern_repeat1, - ACTIONS(5005), 6, + ACTIONS(5147), 6, sym__normal, sym__source, anon_sym_COLON, sym_bang, anon_sym_QMARK2, aux_sym__map_rhs_token4, - [68788] = 7, + [70154] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4486), 1, + STATE(1882), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5663), 2, + aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(4490), 1, - aux_sym_filename_token3, - ACTIONS(5385), 1, + ACTIONS(5665), 2, + aux_sym__bang_filter_command_argument_token3, + aux_sym__bang_filter_command_argument_token4, + ACTIONS(5668), 3, + sym_string_literal, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - STATE(1919), 1, - aux_sym_runtime_statement_repeat1, - STATE(2089), 1, - sym_filename, - ACTIONS(4492), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [68812] = 3, + [70174] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1262), 1, - sym__syn_pattern_offset, - ACTIONS(2885), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [68828] = 3, + ACTIONS(2653), 1, + anon_sym_EQ, + ACTIONS(2655), 1, + aux_sym_identifier_token1, + ACTIONS(2657), 1, + anon_sym_EQ_LT_LT, + ACTIONS(2651), 5, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + [70194] = 3, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1896), 1, + aux_sym_pattern_repeat1, + ACTIONS(5050), 7, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [70210] = 8, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5445), 1, + sym_au_event, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(5449), 1, + aux_sym_identifier_token1, + STATE(1999), 1, + sym__curly_braces_name_expression, + STATE(2303), 1, + sym_identifier, + STATE(3132), 1, + sym_au_event_list, + ACTIONS(5670), 2, + sym__newline_or_pipe, + sym_comment, + [70236] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5539), 1, + ACTIONS(5674), 1, anon_sym_text, - ACTIONS(5537), 7, + ACTIONS(5672), 7, sym__newline_or_pipe, sym_comment, anon_sym_icon, @@ -114737,73 +115091,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [68844] = 7, + [70252] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5326), 1, + ACTIONS(5676), 8, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5541), 1, - anon_sym_BSLASH, - ACTIONS(5543), 1, - sym_bang, - ACTIONS(5547), 1, - aux_sym_filename_token3, - STATE(2738), 1, - sym_filename, - ACTIONS(5545), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [68868] = 3, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1128), 1, - sym__syn_pattern_offset, - ACTIONS(2817), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [68884] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(47), 1, - sym__cmd_separator, - STATE(1816), 1, - aux_sym_function_definition_repeat1, - ACTIONS(5551), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5549), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [68904] = 6, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [70266] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5318), 1, - anon_sym_BSLASH, - ACTIONS(5324), 1, - aux_sym_filename_token3, - STATE(2556), 1, - sym_filename, - ACTIONS(5553), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5322), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [68926] = 3, + ACTIONS(5680), 1, + anon_sym_group, + ACTIONS(5682), 1, + anon_sym_STAR2, + ACTIONS(5684), 1, + sym_integer_literal, + STATE(2658), 1, + sym__sign_unplace_cursor_argument, + STATE(2660), 1, + sym__sign_unplace_cursor, + STATE(2661), 1, + sym__sign_unplace_id, + ACTIONS(5678), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [70292] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5539), 1, + ACTIONS(5674), 1, anon_sym_text, - ACTIONS(5537), 7, + ACTIONS(5672), 7, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_icon, @@ -114811,155 +115134,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [68942] = 7, + [70308] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5403), 1, - aux_sym__map_rhs_token4, - ACTIONS(5541), 1, + ACTIONS(5429), 1, anon_sym_BSLASH, - ACTIONS(5547), 1, + ACTIONS(5437), 1, aux_sym_filename_token3, - ACTIONS(5555), 1, - sym_bang, - STATE(2572), 1, + STATE(2833), 1, sym_filename, - ACTIONS(5545), 3, + ACTIONS(5686), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5435), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [68966] = 3, + [70330] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(1914), 1, - aux_sym_pattern_repeat1, - ACTIONS(5042), 7, + ACTIONS(1203), 8, sym__normal, sym__source, anon_sym_COLON, + anon_sym_COMMA, sym_bang, - anon_sym_QMARK2, + anon_sym_SEMI, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [68982] = 2, + [70344] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5557), 8, + ACTIONS(5688), 8, + anon_sym_BSLASH, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [70358] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1223), 8, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [68996] = 8, + [70372] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5372), 1, - sym_au_event, - ACTIONS(5426), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, - aux_sym_identifier_token1, - STATE(1931), 1, - sym__curly_braces_name_expression, - STATE(2282), 1, - sym_identifier, - STATE(3073), 1, - sym_au_event_list, - ACTIONS(5559), 2, - sym__newline_or_pipe, - sym_comment, - [69022] = 3, + STATE(1939), 1, + aux_sym_filename_repeat1, + ACTIONS(4273), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5690), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(5692), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [70392] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(1259), 1, - sym__syn_pattern_offset, - ACTIONS(2863), 7, - anon_sym_ms, - anon_sym_me, - anon_sym_hs, - anon_sym_he, - anon_sym_rs, - anon_sym_re, - anon_sym_lc, - [69038] = 4, + ACTIONS(5629), 8, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [70406] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5561), 1, + ACTIONS(5694), 1, anon_sym_BSLASH_PIPE, - STATE(1898), 1, + STATE(1896), 1, aux_sym_pattern_repeat1, - ACTIONS(5042), 6, + ACTIONS(5112), 6, sym__normal, sym__source, anon_sym_COLON, sym_bang, anon_sym_SLASH2, aux_sym__map_rhs_token4, - [69056] = 3, + [70424] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1918), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5697), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5699), 2, + aux_sym__bang_filter_command_argument_token3, + aux_sym__bang_filter_command_argument_token4, + ACTIONS(5701), 3, + sym_string_literal, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [70444] = 4, ACTIONS(3), 1, sym__line_continuation, - STATE(1864), 1, + ACTIONS(5703), 1, + anon_sym_BSLASH_PIPE, + STATE(1898), 1, aux_sym_pattern_repeat1, - ACTIONS(4995), 7, + ACTIONS(5112), 6, sym__normal, sym__source, anon_sym_COLON, sym_bang, - anon_sym_SLASH2, + anon_sym_QMARK2, + aux_sym__map_rhs_token4, + [70462] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5631), 8, + sym__normal, + sym__source, + anon_sym_COLON, + anon_sym_COMMA, + sym_bang, + anon_sym_SEMI, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [69072] = 2, + [70476] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5557), 8, + ACTIONS(5457), 1, + anon_sym_BSLASH, + ACTIONS(5463), 1, + aux_sym_filename_token3, + STATE(2662), 1, + sym_filename, + ACTIONS(5653), 2, sym__newline_or_pipe, sym_comment, - anon_sym_line, + ACTIONS(5461), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [70498] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(34), 1, + sym__cmd_separator, + STATE(1926), 1, + aux_sym_function_definition_repeat1, + ACTIONS(5708), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5706), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [70518] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5409), 1, anon_sym_name, - anon_sym_buffer, + ACTIONS(5411), 1, anon_sym_group, - anon_sym_priority, + ACTIONS(5413), 1, anon_sym_file, - [69086] = 3, + STATE(1792), 1, + aux_sym__sign_place_place_repeat1, + STATE(1960), 1, + sym__sign_place_place_argument, + ACTIONS(5407), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [70542] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(821), 1, + aux_sym_identifier_token1, + ACTIONS(2777), 1, + aux_sym_argument_token1, + ACTIONS(2779), 1, + aux_sym_argument_token2, + ACTIONS(819), 5, + sym__newline_or_pipe, + sym__scope_dict, + sym_comment, + anon_sym_a_COLON, + anon_sym_LBRACE, + [70562] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1841), 1, + STATE(1898), 1, aux_sym_pattern_repeat1, - ACTIONS(5042), 7, + ACTIONS(5050), 7, sym__normal, sym__source, anon_sym_COLON, sym_bang, - anon_sym_SLASH2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [69102] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5372), 1, - sym_au_event, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym_identifier_token1, - STATE(1534), 1, - sym__curly_braces_name_expression, - STATE(2293), 1, - sym_identifier, - STATE(3179), 1, - sym_au_event_list, - ACTIONS(5559), 2, + anon_sym_QMARK2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [69128] = 3, + [70578] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5565), 1, + ACTIONS(5712), 1, anon_sym_text, - ACTIONS(5563), 7, + ACTIONS(5710), 7, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_icon, @@ -114967,161 +115357,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [69144] = 7, + [70594] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4486), 1, + ACTIONS(5716), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(5718), 1, + aux_sym__bang_filter_command_argument_token4, + STATE(1914), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5714), 2, + aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(4490), 1, - aux_sym_filename_token3, - ACTIONS(5460), 1, - aux_sym__map_rhs_token4, - STATE(1919), 1, - aux_sym_runtime_statement_repeat1, - STATE(2089), 1, - sym_filename, - ACTIONS(4492), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [69168] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5569), 1, - aux_sym_filename_token7, - STATE(1910), 1, - aux_sym_filename_repeat1, - ACTIONS(4330), 2, + ACTIONS(5720), 3, sym__newline_or_pipe, + sym_string_literal, sym_comment, - ACTIONS(5567), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [69188] = 9, + [70616] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5374), 1, + ACTIONS(5557), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5621), 1, aux_sym_identifier_token1, - ACTIONS(5571), 1, + ACTIONS(5722), 1, anon_sym_COMMA, - ACTIONS(5573), 1, + ACTIONS(5724), 1, anon_sym_RPAREN, - ACTIONS(5575), 1, + ACTIONS(5726), 1, sym_spread, - STATE(1534), 1, + STATE(1623), 1, sym__curly_braces_name_expression, - STATE(2275), 1, - sym_identifier, - STATE(2455), 1, + STATE(2532), 1, sym_default_parameter, - [69216] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5579), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5577), 6, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [69232] = 7, + STATE(2581), 1, + sym_identifier, + [70644] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5426), 1, + ACTIONS(5557), 1, anon_sym_LBRACE, - ACTIONS(5581), 1, + ACTIONS(5621), 1, aux_sym_identifier_token1, - ACTIONS(5583), 1, + ACTIONS(5730), 1, sym_integer_literal, - STATE(1931), 1, + STATE(1623), 1, sym__curly_braces_name_expression, - ACTIONS(5585), 2, - sym__newline_or_pipe, - sym_comment, - STATE(2607), 2, + ACTIONS(5728), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(2646), 2, sym_identifier, sym__sign_name, - [69256] = 5, + [70668] = 6, ACTIONS(3), 1, sym__line_continuation, - STATE(33), 1, - sym__cmd_separator, - STATE(1960), 1, - aux_sym_function_definition_repeat1, - ACTIONS(5587), 2, + ACTIONS(5716), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(5718), 1, + aux_sym__bang_filter_command_argument_token4, + STATE(1914), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5567), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5571), 3, sym__newline_or_pipe, + sym_string_literal, sym_comment, - ACTIONS(5500), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [69276] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5446), 1, - sym__printable, - ACTIONS(5448), 7, - aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_text, - anon_sym_texthl, - anon_sym_culhl, - [69292] = 5, + [70690] = 6, ACTIONS(3), 1, sym__line_continuation, - STATE(38), 1, - sym__cmd_separator, - STATE(1960), 1, - aux_sym_function_definition_repeat1, - ACTIONS(5589), 2, + ACTIONS(5457), 1, + anon_sym_BSLASH, + ACTIONS(5463), 1, + aux_sym_filename_token3, + STATE(2837), 1, + sym_filename, + ACTIONS(5605), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5500), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [69312] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5591), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5480), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [69328] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5593), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5595), 1, - anon_sym_BSLASH, - ACTIONS(5597), 1, - sym_bang, - ACTIONS(5601), 1, - sym_string_literal, - ACTIONS(5599), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(2005), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [69352] = 5, + ACTIONS(5461), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [70712] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5734), 1, + aux_sym_filename_token7, + STATE(1855), 1, + aux_sym_filename_repeat1, + ACTIONS(4273), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5732), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [70732] = 5, ACTIONS(3), 1, sym__line_continuation, ACTIONS(2653), 1, @@ -115131,249 +115466,248 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2657), 1, anon_sym_EQ_LT_LT, ACTIONS(2651), 5, - sym__newline_or_pipe, sym__scope_dict, - sym_comment, anon_sym_a_COLON, anon_sym_LBRACE, - [69372] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(35), 1, - sym__cmd_separator, - STATE(1825), 1, - aux_sym_function_definition_repeat1, - ACTIONS(5605), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5603), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [69392] = 7, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [70752] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5170), 1, - anon_sym_name, - ACTIONS(5172), 1, - anon_sym_group, - ACTIONS(5174), 1, - anon_sym_file, - STATE(1686), 1, - aux_sym__sign_place_place_repeat1, - STATE(1842), 1, - sym__sign_place_place_argument, - ACTIONS(5168), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [69416] = 3, + ACTIONS(3818), 3, + anon_sym_COLON, + anon_sym_BSLASH2, + aux_sym__map_rhs_token3, + ACTIONS(3820), 5, + anon_sym_BSLASH, + aux_sym__bang_filter_command_argument_token3, + anon_sym_LT, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [70768] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5607), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5577), 6, + ACTIONS(5736), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(5739), 1, + aux_sym__bang_filter_command_argument_token4, + STATE(1914), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5663), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5668), 3, sym__newline_or_pipe, + sym_string_literal, sym_comment, + [70790] = 3, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1884), 1, + aux_sym_pattern_repeat1, + ACTIONS(5147), 7, sym__normal, sym__source, anon_sym_COLON, sym_bang, - [69432] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5158), 1, - anon_sym_name, - ACTIONS(5160), 1, - anon_sym_group, - ACTIONS(5399), 1, - anon_sym_file, - STATE(1777), 1, - aux_sym__sign_place_place_repeat1, - STATE(1837), 1, - sym__sign_place_place_argument, - ACTIONS(5156), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [69456] = 6, + anon_sym_SLASH2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [70806] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5391), 1, + ACTIONS(5488), 1, + aux_sym__map_rhs_token4, + ACTIONS(5742), 1, anon_sym_BSLASH, - ACTIONS(5397), 1, + ACTIONS(5748), 1, aux_sym_filename_token3, - STATE(2625), 1, + STATE(1916), 1, + aux_sym_runtime_statement_repeat1, + STATE(2109), 1, sym_filename, - ACTIONS(5609), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5395), 3, + ACTIONS(5745), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [69478] = 5, + [70830] = 3, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1102), 1, + sym__syn_pattern_offset, + ACTIONS(2835), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [70846] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1920), 1, + STATE(1882), 1, aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5611), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5613), 2, + ACTIONS(5569), 2, aux_sym__bang_filter_command_argument_token3, aux_sym__bang_filter_command_argument_token4, - ACTIONS(5615), 3, + ACTIONS(5714), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5720), 3, sym_string_literal, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [69498] = 3, + [70866] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3793), 3, - anon_sym_COLON, - anon_sym_BSLASH2, - aux_sym__map_rhs_token3, - ACTIONS(3795), 5, - anon_sym_BSLASH, - aux_sym__bang_filter_command_argument_token3, - anon_sym_LT, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [69514] = 4, + ACTIONS(5379), 1, + anon_sym_name, + ACTIONS(5381), 1, + anon_sym_group, + ACTIONS(5563), 1, + anon_sym_file, + STATE(1849), 1, + aux_sym__sign_place_place_repeat1, + STATE(1854), 1, + sym__sign_place_place_argument, + ACTIONS(5377), 3, + anon_sym_line, + anon_sym_buffer, + anon_sym_priority, + [70890] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5617), 1, - anon_sym_BSLASH_PIPE, - STATE(1864), 1, - aux_sym_pattern_repeat1, - ACTIONS(5005), 6, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, - anon_sym_SLASH2, - aux_sym__map_rhs_token4, - [69532] = 6, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(5751), 1, + aux_sym_identifier_token1, + ACTIONS(5753), 1, + sym_integer_literal, + STATE(1999), 1, + sym__curly_braces_name_expression, + ACTIONS(5728), 2, + sym__newline_or_pipe, + sym_comment, + STATE(2845), 2, + sym_identifier, + sym__sign_name, + [70914] = 8, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5755), 1, + anon_sym_group, + ACTIONS(5757), 1, + anon_sym_STAR2, + ACTIONS(5759), 1, + sym_integer_literal, + STATE(2878), 1, + sym__sign_unplace_cursor_argument, + STATE(2880), 1, + sym__sign_unplace_cursor, + STATE(2890), 1, + sym__sign_unplace_id, + ACTIONS(5678), 2, + sym__newline_or_pipe, + sym_comment, + [70940] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5391), 1, + ACTIONS(5526), 1, + aux_sym__map_rhs_token4, + ACTIONS(5761), 1, anon_sym_BSLASH, - ACTIONS(5397), 1, + ACTIONS(5763), 1, + sym_bang, + ACTIONS(5767), 1, aux_sym_filename_token3, - STATE(2567), 1, + STATE(2770), 1, sym_filename, - ACTIONS(5330), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5395), 3, + ACTIONS(5765), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [69554] = 6, + [70964] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1954), 1, + aux_sym_filename_repeat1, + ACTIONS(4291), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5769), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(5771), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [70984] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5318), 1, + ACTIONS(4618), 1, anon_sym_BSLASH, - ACTIONS(5324), 1, + ACTIONS(4622), 1, aux_sym_filename_token3, - STATE(2875), 1, + ACTIONS(5481), 1, + aux_sym__map_rhs_token4, + STATE(1916), 1, + aux_sym_runtime_statement_repeat1, + STATE(2109), 1, sym_filename, - ACTIONS(5609), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5322), 3, + ACTIONS(4624), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [69576] = 6, + [71008] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5620), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5622), 1, - aux_sym__bang_filter_command_argument_token4, - STATE(1901), 1, - aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5611), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5615), 3, + STATE(39), 1, + sym__cmd_separator, + STATE(1934), 1, + aux_sym_function_definition_repeat1, + ACTIONS(5775), 2, sym__newline_or_pipe, - sym_string_literal, sym_comment, - [69598] = 5, + ACTIONS(5773), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [71028] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(24), 1, + STATE(39), 1, sym__cmd_separator, - STATE(1853), 1, + STATE(2032), 1, aux_sym_function_definition_repeat1, - ACTIONS(5532), 2, + ACTIONS(5775), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5624), 4, + ACTIONS(5613), 4, anon_sym_dict, anon_sym_range, anon_sym_abort, anon_sym_closure, - [69618] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1871), 1, - aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5482), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5626), 2, - aux_sym__bang_filter_command_argument_token3, - aux_sym__bang_filter_command_argument_token4, - ACTIONS(5488), 3, - sym_string_literal, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [69638] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5372), 1, - sym_au_event, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym_identifier_token1, - ACTIONS(5380), 1, - aux_sym__map_rhs_token4, - ACTIONS(5628), 1, - sym_bang, - STATE(1534), 1, - sym__curly_braces_name_expression, - STATE(2396), 1, - sym_identifier, - STATE(3180), 1, - sym_au_event_list, - [69666] = 5, + [71048] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1871), 1, - aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5490), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5630), 2, - aux_sym__bang_filter_command_argument_token3, - aux_sym__bang_filter_command_argument_token4, - ACTIONS(5498), 3, - sym_string_literal, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [69686] = 3, + ACTIONS(5779), 1, + anon_sym_text, + ACTIONS(5777), 7, + sym__newline_or_pipe, + sym_comment, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [71064] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1099), 1, + STATE(1256), 1, sym__syn_pattern_offset, - ACTIONS(2823), 7, + ACTIONS(2897), 7, anon_sym_ms, anon_sym_me, anon_sym_hs, @@ -115381,531 +115715,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rs, anon_sym_re, anon_sym_lc, - [69702] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5510), 8, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_line, - anon_sym_name, - anon_sym_buffer, - anon_sym_group, - anon_sym_priority, - anon_sym_file, - [69716] = 8, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5633), 1, - anon_sym_group, - ACTIONS(5635), 1, - anon_sym_STAR2, - ACTIONS(5637), 1, - sym_integer_literal, - STATE(2633), 1, - sym__sign_unplace_cursor_argument, - STATE(2634), 1, - sym__sign_unplace_cursor, - STATE(2637), 1, - sym__sign_unplace_id, - ACTIONS(5639), 2, - sym__newline_or_pipe, - sym_comment, - [69742] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5504), 1, - aux_sym_identifier_token1, - ACTIONS(5641), 1, - anon_sym_COMMA, - ACTIONS(5643), 1, - anon_sym_RPAREN, - ACTIONS(5645), 1, - sym_spread, - STATE(1534), 1, - sym__curly_braces_name_expression, - STATE(2421), 1, - sym_default_parameter, - STATE(2486), 1, - sym_identifier, - [69770] = 6, + [71080] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5391), 1, + ACTIONS(4618), 1, anon_sym_BSLASH, - ACTIONS(5397), 1, + ACTIONS(4622), 1, aux_sym_filename_token3, - STATE(2737), 1, - sym_filename, - ACTIONS(5647), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(5502), 1, aux_sym__map_rhs_token4, - ACTIONS(5395), 3, + STATE(1916), 1, + aux_sym_runtime_statement_repeat1, + STATE(2109), 1, + sym_filename, + ACTIONS(4624), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [69792] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5649), 8, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [69806] = 2, + [71104] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5651), 8, - sym__normal, - sym__source, + ACTIONS(3515), 3, anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [69820] = 3, + anon_sym_BSLASH2, + aux_sym__map_rhs_token3, + ACTIONS(3520), 5, + anon_sym_BSLASH, + aux_sym__bang_filter_command_argument_token3, + anon_sym_LT, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [71120] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5516), 1, - anon_sym_text, - ACTIONS(5514), 7, + ACTIONS(5781), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_icon, - anon_sym_linehl, - anon_sym_numhl, - anon_sym_texthl, - anon_sym_culhl, - [69836] = 3, + ACTIONS(5617), 6, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [71136] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3573), 3, + ACTIONS(3779), 3, anon_sym_COLON, anon_sym_BSLASH2, aux_sym__map_rhs_token3, - ACTIONS(3578), 5, + ACTIONS(3781), 5, anon_sym_BSLASH, aux_sym__bang_filter_command_argument_token3, anon_sym_LT, anon_sym_LT2, aux_sym__map_rhs_token1, - [69852] = 2, + [71152] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1227), 8, - sym__normal, - sym__source, + ACTIONS(3707), 3, anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [69866] = 2, + anon_sym_BSLASH2, + aux_sym__map_rhs_token3, + ACTIONS(3709), 5, + anon_sym_BSLASH, + aux_sym__bang_filter_command_argument_token3, + anon_sym_LT, + anon_sym_LT2, + aux_sym__map_rhs_token1, + [71168] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5649), 8, + STATE(23), 1, + sym__cmd_separator, + STATE(2032), 1, + aux_sym_function_definition_repeat1, + ACTIONS(5783), 2, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - [69880] = 2, + ACTIONS(5613), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [71188] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5653), 8, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, + STATE(1851), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5714), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5785), 2, + aux_sym__bang_filter_command_argument_token3, + aux_sym__bang_filter_command_argument_token4, + ACTIONS(5720), 3, + sym_string_literal, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [69894] = 2, + [71208] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5655), 8, - anon_sym_BSLASH, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_LBRACK, - aux_sym__pattern_ordinary_atom_token2, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_PERCENT_LPAREN, - anon_sym_BSLASHz_LPAREN, - [69908] = 5, + ACTIONS(5445), 1, + sym_au_event, + ACTIONS(5453), 1, + aux_sym__map_rhs_token4, + ACTIONS(5557), 1, + anon_sym_LBRACE, + ACTIONS(5559), 1, + aux_sym_identifier_token1, + ACTIONS(5787), 1, + sym_bang, + STATE(1623), 1, + sym__curly_braces_name_expression, + STATE(2533), 1, + sym_identifier, + STATE(3194), 1, + sym_au_event_list, + [71236] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1885), 1, + ACTIONS(5583), 1, + aux_sym_filename_token7, + STATE(1943), 1, aux_sym_filename_repeat1, - ACTIONS(4243), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5657), 2, + ACTIONS(4307), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5581), 4, aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(5660), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [69928] = 5, + [71256] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5543), 1, + sym__printable, + ACTIONS(5514), 7, + aux_sym__map_rhs_token4, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_text, + anon_sym_texthl, + anon_sym_culhl, + [71272] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(1885), 1, + STATE(1953), 1, aux_sym_filename_repeat1, - ACTIONS(4229), 2, + ACTIONS(4291), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5663), 2, + ACTIONS(5789), 2, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token7, - ACTIONS(5665), 3, + ACTIONS(5791), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [69948] = 2, + [71292] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1207), 8, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, + ACTIONS(5779), 1, + anon_sym_text, + ACTIONS(5777), 7, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [69962] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5158), 1, - anon_sym_name, - ACTIONS(5160), 1, - anon_sym_group, - ACTIONS(5162), 1, - anon_sym_file, - STATE(1683), 1, - aux_sym__sign_place_place_repeat1, - STATE(1837), 1, - sym__sign_place_place_argument, - ACTIONS(5156), 3, - anon_sym_line, - anon_sym_buffer, - anon_sym_priority, - [69986] = 2, + anon_sym_icon, + anon_sym_linehl, + anon_sym_numhl, + anon_sym_texthl, + anon_sym_culhl, + [71308] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5651), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - [70000] = 6, + ACTIONS(5793), 8, + anon_sym_BSLASH, + anon_sym_minlines, + anon_sym_maxlines, + anon_sym_LBRACK2, + aux_sym__pattern_ordinary_atom_token2, + anon_sym_BSLASH_LPAREN, + anon_sym_BSLASH_PERCENT_LPAREN, + anon_sym_BSLASHz_LPAREN, + [71322] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5391), 1, + ACTIONS(5510), 1, + aux_sym__map_rhs_token4, + ACTIONS(5761), 1, anon_sym_BSLASH, - ACTIONS(5397), 1, + ACTIONS(5767), 1, aux_sym_filename_token3, - STATE(2629), 1, + ACTIONS(5795), 1, + sym_bang, + STATE(2898), 1, sym_filename, - ACTIONS(5553), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5395), 3, + ACTIONS(5765), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [70022] = 9, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5504), 1, - aux_sym_identifier_token1, - ACTIONS(5667), 1, - anon_sym_COMMA, - ACTIONS(5669), 1, - anon_sym_RPAREN, - ACTIONS(5671), 1, - sym_spread, - STATE(1534), 1, - sym__curly_braces_name_expression, - STATE(2478), 1, - sym_default_parameter, - STATE(2486), 1, - sym_identifier, - [70050] = 7, + [71346] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5675), 1, - anon_sym_plugin, - ACTIONS(5677), 1, - anon_sym_indent, - ACTIONS(5679), 1, - anon_sym_detect, - STATE(2724), 1, - sym__filetype_state, - ACTIONS(5673), 2, - anon_sym_on, - anon_sym_off, - ACTIONS(5681), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [70074] = 6, + ACTIONS(5800), 1, + aux_sym_filename_token7, + STATE(1943), 1, + aux_sym_filename_repeat1, + ACTIONS(4300), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5797), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [71366] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5318), 1, + ACTIONS(5457), 1, anon_sym_BSLASH, - ACTIONS(5324), 1, + ACTIONS(5463), 1, aux_sym_filename_token3, - STATE(2791), 1, + STATE(2756), 1, sym_filename, - ACTIONS(5330), 2, + ACTIONS(5526), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5322), 3, + ACTIONS(5461), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [70096] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1227), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - [70110] = 7, + [71388] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5683), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5685), 1, + ACTIONS(5433), 1, + aux_sym__map_rhs_token4, + ACTIONS(5761), 1, anon_sym_BSLASH, - ACTIONS(5687), 1, + ACTIONS(5767), 1, + aux_sym_filename_token3, + ACTIONS(5803), 1, sym_bang, - ACTIONS(5689), 1, - sym_string_literal, - ACTIONS(5599), 2, - sym__newline_or_pipe, - sym_comment, - STATE(2015), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [70134] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1913), 1, - aux_sym_filename_repeat1, - ACTIONS(4330), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5691), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(5693), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [70154] = 4, + STATE(2674), 1, + sym_filename, + ACTIONS(5765), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [71412] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5695), 1, - anon_sym_BSLASH_PIPE, - STATE(1916), 1, - aux_sym_pattern_repeat1, - ACTIONS(5042), 6, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, - anon_sym_QMARK2, - aux_sym__map_rhs_token4, - [70172] = 4, + STATE(1122), 1, + sym__syn_pattern_offset, + ACTIONS(2811), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [71428] = 5, ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5561), 1, - anon_sym_BSLASH_PIPE, - STATE(1864), 1, - aux_sym_pattern_repeat1, - ACTIONS(4995), 6, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, - anon_sym_SLASH2, - aux_sym__map_rhs_token4, - [70190] = 7, + sym__line_continuation, + STATE(46), 1, + sym__cmd_separator, + STATE(2032), 1, + aux_sym_function_definition_repeat1, + ACTIONS(5805), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5613), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [71448] = 9, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5374), 1, + ACTIONS(5557), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5621), 1, aux_sym_identifier_token1, - ACTIONS(5697), 1, - sym_integer_literal, - STATE(1534), 1, + ACTIONS(5807), 1, + anon_sym_COMMA, + ACTIONS(5809), 1, + anon_sym_RPAREN, + ACTIONS(5811), 1, + sym_spread, + STATE(1623), 1, sym__curly_braces_name_expression, - ACTIONS(5585), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(2626), 2, + STATE(2357), 1, sym_identifier, - sym__sign_name, - [70214] = 6, + STATE(2471), 1, + sym_default_parameter, + [71476] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5699), 1, + ACTIONS(5813), 1, aux_sym__bang_filter_command_argument_token3, - ACTIONS(5701), 1, + ACTIONS(5815), 1, aux_sym__bang_filter_command_argument_token4, - STATE(1814), 1, + STATE(1906), 1, aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5468), 2, + ACTIONS(5697), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(5472), 3, + ACTIONS(5701), 3, sym__newline_or_pipe, sym_string_literal, sym_comment, - [70236] = 6, + [71498] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5484), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5486), 1, - aux_sym__bang_filter_command_argument_token4, - STATE(1815), 1, - aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5468), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5472), 3, + STATE(46), 1, + sym__cmd_separator, + STATE(1865), 1, + aux_sym_function_definition_repeat1, + ACTIONS(5805), 2, sym__newline_or_pipe, - sym_string_literal, sym_comment, - [70258] = 8, + ACTIONS(5817), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [71518] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5703), 1, - anon_sym_group, - ACTIONS(5705), 1, - anon_sym_STAR2, - ACTIONS(5707), 1, - sym_integer_literal, - STATE(2600), 1, - sym__sign_unplace_id, - STATE(2601), 1, - sym__sign_unplace_cursor, - STATE(2603), 1, - sym__sign_unplace_cursor_argument, - ACTIONS(5639), 2, + ACTIONS(5445), 1, + sym_au_event, + ACTIONS(5557), 1, + anon_sym_LBRACE, + ACTIONS(5559), 1, + aux_sym_identifier_token1, + STATE(1623), 1, + sym__curly_braces_name_expression, + STATE(2361), 1, + sym_identifier, + STATE(3288), 1, + sym_au_event_list, + ACTIONS(5670), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [70284] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3877), 3, - anon_sym_COLON, - anon_sym_BSLASH2, - aux_sym__map_rhs_token3, - ACTIONS(3879), 5, - anon_sym_BSLASH, - aux_sym__bang_filter_command_argument_token3, - anon_sym_LT, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [70300] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5653), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - [70314] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3685), 3, - anon_sym_COLON, - anon_sym_BSLASH2, - aux_sym__map_rhs_token3, - ACTIONS(3687), 5, - anon_sym_BSLASH, - aux_sym__bang_filter_command_argument_token3, - anon_sym_LT, - anon_sym_LT2, - aux_sym__map_rhs_token1, - [70330] = 3, + [71544] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5709), 2, + ACTIONS(821), 1, + aux_sym_identifier_token1, + ACTIONS(2777), 1, + aux_sym_argument_token1, + ACTIONS(2779), 1, + aux_sym_argument_token2, + ACTIONS(819), 5, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5474), 6, - anon_sym_EQ2, - anon_sym_COLON2, - anon_sym_PLUS_EQ2, - anon_sym_CARET_EQ, - anon_sym_DASH_EQ2, - anon_sym_, - [70346] = 5, + [71564] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5713), 1, - aux_sym_filename_token7, - STATE(1823), 1, + STATE(1953), 1, aux_sym_filename_repeat1, - ACTIONS(4211), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5711), 4, + ACTIONS(4300), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5819), 2, aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(5822), 3, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [70366] = 2, + [71584] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1207), 8, - sym__newline_or_pipe, - sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - anon_sym_COMMA, - sym_bang, - anon_sym_SEMI, - [70380] = 3, + STATE(1953), 1, + aux_sym_filename_repeat1, + ACTIONS(4307), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5789), 2, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token7, + ACTIONS(5791), 3, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [71604] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5565), 1, + ACTIONS(5712), 1, anon_sym_text, - ACTIONS(5563), 7, + ACTIONS(5710), 7, sym__newline_or_pipe, sym_comment, anon_sym_icon, @@ -115913,11064 +116120,11181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_numhl, anon_sym_texthl, anon_sym_culhl, - [70396] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5524), 1, - aux_sym_filename_token7, - STATE(1824), 1, - aux_sym_filename_repeat1, - ACTIONS(4211), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5522), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [70416] = 7, + [71620] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5330), 1, - aux_sym__map_rhs_token4, - ACTIONS(5541), 1, + ACTIONS(5457), 1, anon_sym_BSLASH, - ACTIONS(5547), 1, + ACTIONS(5463), 1, aux_sym_filename_token3, - ACTIONS(5715), 1, - sym_bang, - STATE(2571), 1, + STATE(2634), 1, sym_filename, - ACTIONS(5545), 3, + ACTIONS(5686), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(5461), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [70440] = 5, + [71642] = 9, ACTIONS(3), 1, sym__line_continuation, - STATE(1886), 1, - aux_sym_filename_repeat1, - ACTIONS(4211), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5717), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(5719), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [70460] = 5, + ACTIONS(5557), 1, + anon_sym_LBRACE, + ACTIONS(5621), 1, + aux_sym_identifier_token1, + ACTIONS(5825), 1, + anon_sym_COMMA, + ACTIONS(5827), 1, + anon_sym_RPAREN, + ACTIONS(5829), 1, + sym_spread, + STATE(1623), 1, + sym__curly_braces_name_expression, + STATE(2404), 1, + sym_default_parameter, + STATE(2581), 1, + sym_identifier, + [71670] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1885), 1, - aux_sym_filename_repeat1, - ACTIONS(4211), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(5663), 2, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token7, - ACTIONS(5665), 3, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [70480] = 3, + STATE(1270), 1, + sym__syn_pattern_offset, + ACTIONS(2877), 7, + anon_sym_ms, + anon_sym_me, + anon_sym_hs, + anon_sym_he, + anon_sym_rs, + anon_sym_re, + anon_sym_lc, + [71686] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(1826), 1, - aux_sym_pattern_repeat1, - ACTIONS(4995), 7, + ACTIONS(5627), 8, + sym__newline_or_pipe, + sym_comment, sym__normal, sym__source, anon_sym_COLON, + anon_sym_COMMA, sym_bang, - anon_sym_QMARK2, + anon_sym_SEMI, + [71700] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5579), 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, + [71714] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5831), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5639), 6, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [71730] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5833), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [70496] = 6, + ACTIONS(5637), 6, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [71746] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5318), 1, + ACTIONS(5835), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(5837), 1, + aux_sym__bang_filter_command_argument_token4, + STATE(1909), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5714), 2, + aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(5324), 1, - aux_sym_filename_token3, - STATE(2859), 1, - sym_filename, - ACTIONS(5647), 2, + ACTIONS(5720), 3, sym__newline_or_pipe, + sym_string_literal, sym_comment, - ACTIONS(5322), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [70518] = 4, + [71768] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5695), 1, + ACTIONS(5839), 2, anon_sym_BSLASH_PIPE, - STATE(1826), 1, + aux_sym__map_rhs_token4, + ACTIONS(5633), 6, + anon_sym_EQ2, + anon_sym_COLON2, + anon_sym_PLUS_EQ2, + anon_sym_CARET_EQ, + anon_sym_DASH_EQ2, + anon_sym_, + [71784] = 3, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1904), 1, aux_sym_pattern_repeat1, - ACTIONS(4995), 6, + ACTIONS(5147), 7, sym__normal, sym__source, anon_sym_COLON, sym_bang, anon_sym_QMARK2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [70536] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4486), 1, - anon_sym_BSLASH, - ACTIONS(4490), 1, - aux_sym_filename_token3, - ACTIONS(5353), 1, - aux_sym__map_rhs_token4, - STATE(1919), 1, - aux_sym_runtime_statement_repeat1, - STATE(2089), 1, - sym_filename, - ACTIONS(4492), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [70560] = 7, + [71800] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5723), 1, - anon_sym_plugin, - ACTIONS(5725), 1, - anon_sym_indent, - ACTIONS(5727), 1, - anon_sym_detect, - STATE(2864), 1, - sym__filetype_state, - ACTIONS(5681), 2, + ACTIONS(5676), 8, sym__newline_or_pipe, sym_comment, - ACTIONS(5721), 2, - anon_sym_on, - anon_sym_off, - [70584] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5343), 1, - aux_sym__map_rhs_token4, - ACTIONS(5729), 1, - anon_sym_BSLASH, - ACTIONS(5735), 1, - aux_sym_filename_token3, - STATE(1919), 1, - aux_sym_runtime_statement_repeat1, - STATE(2089), 1, - sym_filename, - ACTIONS(5732), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [70608] = 5, + anon_sym_line, + anon_sym_name, + anon_sym_buffer, + anon_sym_group, + anon_sym_priority, + anon_sym_file, + [71814] = 6, ACTIONS(3), 1, sym__line_continuation, - STATE(1871), 1, - aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5468), 2, + ACTIONS(5595), 1, aux_sym__bang_filter_command_argument_token1, + ACTIONS(5597), 1, anon_sym_BSLASH, - ACTIONS(5626), 2, - aux_sym__bang_filter_command_argument_token3, - aux_sym__bang_filter_command_argument_token4, - ACTIONS(5472), 3, + ACTIONS(5603), 1, sym_string_literal, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [70628] = 7, + ACTIONS(5841), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1991), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [71835] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5740), 1, + ACTIONS(5843), 1, anon_sym_buffer, - ACTIONS(5742), 1, + ACTIONS(5845), 1, anon_sym_group, - ACTIONS(5744), 1, + ACTIONS(5847), 1, anon_sym_file, - STATE(1965), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2135), 1, - sym__sign_unplace_id_argument, - ACTIONS(5738), 2, + STATE(1975), 1, + aux_sym__sign_jump_repeat1, + STATE(2262), 1, + sym__sign_jump_argument, + ACTIONS(5849), 2, + sym__newline_or_pipe, + sym_comment, + [71858] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5853), 1, + anon_sym_buffer, + ACTIONS(5856), 1, + anon_sym_group, + ACTIONS(5859), 1, + anon_sym_file, + STATE(1969), 1, + aux_sym__sign_jump_repeat1, + STATE(2259), 1, + sym__sign_jump_argument, + ACTIONS(5851), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [70651] = 3, + [71881] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5748), 1, - aux_sym_filename_token3, - ACTIONS(5746), 6, + ACTIONS(5862), 1, + anon_sym_buffer, + ACTIONS(5865), 1, + anon_sym_group, + ACTIONS(5868), 1, + anon_sym_file, + STATE(1970), 1, + aux_sym__sign_place_list, + STATE(2241), 1, + sym__sign_place_list_argument, + ACTIONS(5871), 2, sym__newline_or_pipe, sym_comment, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [70666] = 6, + [71904] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4486), 1, - anon_sym_BSLASH, - ACTIONS(4490), 1, - aux_sym_filename_token3, - STATE(1846), 1, - aux_sym_runtime_statement_repeat1, - STATE(2089), 1, - sym_filename, - ACTIONS(4492), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [70687] = 7, + ACTIONS(5875), 1, + anon_sym_buffer, + ACTIONS(5878), 1, + anon_sym_group, + ACTIONS(5881), 1, + anon_sym_file, + STATE(1971), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2257), 1, + sym__sign_unplace_id_argument, + ACTIONS(5873), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [71927] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1075), 1, - anon_sym_LT, - ACTIONS(1077), 1, - anon_sym_BSLASH2, - ACTIONS(5750), 1, - aux_sym__map_rhs_token2, - STATE(1983), 1, - aux_sym__map_rhs_repeat1, - STATE(2144), 1, - sym__immediate_keycode, - ACTIONS(5752), 2, + ACTIONS(5886), 1, + anon_sym_buffer, + ACTIONS(5888), 1, + anon_sym_group, + ACTIONS(5890), 1, + anon_sym_file, + STATE(2024), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2257), 1, + sym__sign_unplace_id_argument, + ACTIONS(5884), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [70710] = 6, + [71950] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5330), 1, - aux_sym__map_rhs_token4, - ACTIONS(5541), 1, + ACTIONS(5892), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(5894), 1, + aux_sym__bang_filter_command_argument_token4, + STATE(1980), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5567), 2, + aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(5547), 1, - aux_sym_filename_token3, - STATE(2567), 1, - sym_filename, - ACTIONS(5545), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [70731] = 7, + ACTIONS(5571), 2, + sym_string_literal, + aux_sym__map_rhs_token4, + [71971] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5754), 1, - aux_sym_command_argument_token1, - ACTIONS(5756), 1, - sym_bang, - ACTIONS(5760), 1, - sym_string_literal, - STATE(2082), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2236), 1, - sym_command_argument, - ACTIONS(5758), 2, + ACTIONS(795), 1, + sym_au_event, + ACTIONS(5896), 1, + anon_sym_LBRACE2, + ACTIONS(5898), 1, + aux_sym_identifier_token2, + ACTIONS(793), 2, sym__newline_or_pipe, sym_comment, - [70754] = 7, + STATE(2000), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + [71992] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5754), 1, - aux_sym_command_argument_token1, - ACTIONS(5760), 1, - sym_string_literal, - ACTIONS(5762), 1, - sym_bang, - STATE(2092), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2236), 1, - sym_command_argument, - ACTIONS(5764), 2, + ACTIONS(5900), 1, + anon_sym_buffer, + ACTIONS(5903), 1, + anon_sym_group, + ACTIONS(5906), 1, + anon_sym_file, + STATE(1975), 1, + aux_sym__sign_jump_repeat1, + STATE(2262), 1, + sym__sign_jump_argument, + ACTIONS(5851), 2, sym__newline_or_pipe, sym_comment, - [70777] = 6, + [72015] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5766), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5769), 1, - anon_sym_BSLASH, - ACTIONS(5774), 1, - sym_string_literal, - ACTIONS(5772), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1928), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [70798] = 7, + ACTIONS(5909), 1, + anon_sym_buffer, + ACTIONS(5911), 1, + anon_sym_group, + ACTIONS(5913), 1, + anon_sym_file, + ACTIONS(5915), 1, + sym_integer_literal, + STATE(2037), 1, + aux_sym__sign_place_list, + STATE(2231), 1, + sym__sign_place_list_argument, + STATE(2656), 1, + sym__sign_place_place, + [72040] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1075), 1, + ACTIONS(1063), 1, anon_sym_LT, - ACTIONS(1077), 1, + ACTIONS(1065), 1, anon_sym_BSLASH2, - ACTIONS(5777), 1, + ACTIONS(5917), 1, aux_sym__map_rhs_token2, - STATE(1977), 1, + STATE(2006), 1, aux_sym__map_rhs_repeat1, - STATE(2144), 1, + STATE(2247), 1, sym__immediate_keycode, - ACTIONS(5752), 2, + ACTIONS(5919), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [70821] = 6, + [72063] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5593), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5595), 1, - anon_sym_BSLASH, - ACTIONS(5601), 1, - sym_string_literal, - ACTIONS(5779), 2, + ACTIONS(5678), 1, + aux_sym__map_rhs_token4, + ACTIONS(5680), 1, + anon_sym_group, + ACTIONS(5921), 1, + anon_sym_STAR2, + ACTIONS(5923), 1, + sym_integer_literal, + STATE(2658), 1, + sym__sign_unplace_cursor_argument, + STATE(2660), 1, + sym__sign_unplace_cursor, + STATE(2661), 1, + sym__sign_unplace_id, + [72088] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1979), 1, + aux_sym__syn_cluster_repeat1, + STATE(2253), 1, + sym__syn_arguments_cluster, + ACTIONS(5925), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - STATE(1928), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [70842] = 6, + ACTIONS(5927), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [72107] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(805), 1, - sym_au_event, - ACTIONS(5781), 1, - anon_sym_LBRACE2, - ACTIONS(5783), 1, - aux_sym_identifier_token2, - ACTIONS(803), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1944), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - [70863] = 6, + ACTIONS(5930), 1, + aux_sym__bang_filter_command_argument_token3, + ACTIONS(5933), 1, + aux_sym__bang_filter_command_argument_token4, + STATE(1980), 1, + aux_sym__bang_filter_command_argument_repeat1, + ACTIONS(5663), 2, + aux_sym__bang_filter_command_argument_token1, + anon_sym_BSLASH, + ACTIONS(5668), 2, + sym_string_literal, + aux_sym__map_rhs_token4, + [72128] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5785), 1, + ACTIONS(5936), 1, anon_sym_BSLASH, - ACTIONS(5789), 1, + ACTIONS(5940), 1, aux_sym_filename_token3, - STATE(1958), 1, + STATE(1858), 1, sym_filename, - STATE(2562), 1, + STATE(2944), 1, sym__bang_filter_command, - ACTIONS(5787), 3, + ACTIONS(5938), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [70884] = 7, + [72149] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5793), 1, - anon_sym_BSLASH, - ACTIONS(5795), 1, - anon_sym_LT2, - ACTIONS(5797), 1, - aux_sym__map_rhs_token1, - STATE(2006), 1, - sym_keycode, - STATE(2771), 1, - sym__map_rhs, - ACTIONS(5791), 2, - anon_sym_COLON, - aux_sym__map_rhs_token3, - [70907] = 7, + ACTIONS(5944), 1, + sym_hl_group, + STATE(2149), 1, + aux_sym__syn_sync_repeat1, + STATE(2367), 1, + sym__syn_sync_lines, + ACTIONS(5942), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5946), 2, + anon_sym_minlines, + anon_sym_maxlines, + [72170] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1063), 1, + anon_sym_LT, + ACTIONS(1065), 1, + anon_sym_BSLASH2, + ACTIONS(5948), 1, + aux_sym__map_rhs_token2, + STATE(2002), 1, + aux_sym__map_rhs_repeat1, + STATE(2247), 1, + sym__immediate_keycode, + ACTIONS(5919), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [72193] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5801), 1, + ACTIONS(5886), 1, anon_sym_buffer, - ACTIONS(5804), 1, + ACTIONS(5888), 1, anon_sym_group, - ACTIONS(5807), 1, + ACTIONS(5890), 1, anon_sym_file, - STATE(1934), 1, - aux_sym__sign_jump_repeat1, - STATE(2136), 1, - sym__sign_jump_argument, - ACTIONS(5799), 2, + STATE(2025), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2257), 1, + sym__sign_unplace_id_argument, + ACTIONS(5950), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [70930] = 6, + [72216] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1075), 1, + anon_sym_LT, + ACTIONS(1077), 1, + anon_sym_BSLASH2, + ACTIONS(1079), 1, + aux_sym__map_rhs_token2, + STATE(1988), 1, + aux_sym__map_rhs_repeat1, + STATE(2242), 1, + sym__immediate_keycode, + ACTIONS(1081), 2, + sym__newline_or_pipe, + sym_comment, + [72239] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5318), 1, + ACTIONS(5641), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5643), 1, anon_sym_BSLASH, - ACTIONS(5324), 1, - aux_sym_filename_token3, - ACTIONS(5810), 1, - anon_sym_AT, - STATE(2574), 1, - sym_filename, - ACTIONS(5322), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [70951] = 7, + ACTIONS(5647), 1, + sym_string_literal, + ACTIONS(5952), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + STATE(1994), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [72260] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5814), 1, + ACTIONS(5954), 1, anon_sym_buffer, - ACTIONS(5817), 1, + ACTIONS(5957), 1, anon_sym_group, - ACTIONS(5820), 1, + ACTIONS(5960), 1, anon_sym_file, - STATE(1936), 1, + STATE(1987), 1, aux_sym__sign_unplace_id_repeat1, - STATE(2135), 1, + STATE(2267), 1, sym__sign_unplace_id_argument, - ACTIONS(5812), 2, + ACTIONS(5873), 2, + sym__newline_or_pipe, + sym_comment, + [72283] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1075), 1, + anon_sym_LT, + ACTIONS(1077), 1, + anon_sym_BSLASH2, + ACTIONS(5963), 1, + aux_sym__map_rhs_token2, + STATE(2028), 1, + aux_sym__map_rhs_repeat1, + STATE(2242), 1, + sym__immediate_keycode, + ACTIONS(5965), 2, + sym__newline_or_pipe, + sym_comment, + [72306] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4300), 1, + aux_sym__map_rhs_token4, + ACTIONS(5970), 1, + aux_sym_filename_token7, + STATE(1989), 1, + aux_sym_filename_repeat1, + ACTIONS(5967), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [72325] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1979), 1, + aux_sym__syn_cluster_repeat1, + STATE(2253), 1, + sym__syn_arguments_cluster, + ACTIONS(5973), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [70974] = 6, + ACTIONS(5975), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [72344] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5823), 1, + ACTIONS(5977), 1, aux_sym__bang_filter_command_argument_token1, - ACTIONS(5826), 1, + ACTIONS(5980), 1, anon_sym_BSLASH, - ACTIONS(5829), 1, + ACTIONS(5985), 1, sym_string_literal, - ACTIONS(5772), 2, + ACTIONS(5983), 2, sym__newline_or_pipe, sym_comment, - STATE(1937), 2, + STATE(1991), 2, sym__bang_filter_command_argument, aux_sym__bang_filter_command_repeat1, - [70995] = 6, + [72365] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4566), 1, - anon_sym_BSLASH, - ACTIONS(4570), 1, - aux_sym_filename_token3, - STATE(1762), 1, - aux_sym_runtime_statement_repeat1, - STATE(2000), 1, - sym_filename, - ACTIONS(4572), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [71016] = 5, + ACTIONS(1063), 1, + anon_sym_LT, + ACTIONS(1065), 1, + anon_sym_BSLASH2, + ACTIONS(1067), 1, + aux_sym__map_rhs_token2, + STATE(1983), 1, + aux_sym__map_rhs_repeat1, + STATE(2247), 1, + sym__immediate_keycode, + ACTIONS(1069), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [72388] = 7, ACTIONS(3), 1, sym__line_continuation, - STATE(1948), 1, - aux_sym__syn_cluster_repeat1, - STATE(2148), 1, - sym__syn_arguments_cluster, - ACTIONS(5834), 2, + ACTIONS(5843), 1, + anon_sym_buffer, + ACTIONS(5845), 1, + anon_sym_group, + ACTIONS(5847), 1, + anon_sym_file, + STATE(2057), 1, + aux_sym__sign_jump_repeat1, + STATE(2262), 1, + sym__sign_jump_argument, + ACTIONS(5988), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5832), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [71035] = 5, + [72411] = 6, ACTIONS(3), 1, sym__line_continuation, - STATE(1961), 1, - aux_sym__syn_cluster_repeat1, - STATE(2134), 1, - sym__syn_arguments_cluster, - ACTIONS(5834), 2, + ACTIONS(5990), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5993), 1, + anon_sym_BSLASH, + ACTIONS(5996), 1, + sym_string_literal, + ACTIONS(5983), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5836), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [71054] = 7, + STATE(1994), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [72432] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5838), 1, + ACTIONS(5843), 1, anon_sym_buffer, - ACTIONS(5840), 1, + ACTIONS(5845), 1, anon_sym_group, - ACTIONS(5842), 1, + ACTIONS(5847), 1, anon_sym_file, - STATE(1990), 1, + STATE(1968), 1, aux_sym__sign_jump_repeat1, - STATE(2164), 1, + STATE(2262), 1, sym__sign_jump_argument, - ACTIONS(5844), 2, + ACTIONS(5999), 2, + sym__newline_or_pipe, + sym_comment, + [72455] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6001), 1, + anon_sym_buffer, + ACTIONS(6003), 1, + anon_sym_group, + ACTIONS(6005), 1, + anon_sym_file, + STATE(2019), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2267), 1, + sym__sign_unplace_id_argument, + ACTIONS(5950), 2, sym__newline_or_pipe, sym_comment, - [71077] = 6, + [72478] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(1990), 1, + aux_sym__syn_cluster_repeat1, + STATE(2253), 1, + sym__syn_arguments_cluster, + ACTIONS(6007), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(5975), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [72497] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5846), 1, + ACTIONS(6009), 1, aux_sym__bang_filter_command_argument_token3, - ACTIONS(5848), 1, + ACTIONS(6011), 1, aux_sym__bang_filter_command_argument_token4, - STATE(1991), 1, + STATE(1973), 1, aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5468), 2, + ACTIONS(5714), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(5472), 2, + ACTIONS(5720), 2, sym_string_literal, aux_sym__map_rhs_token4, - [71098] = 6, + [72518] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5850), 1, - sym_hl_group, - STATE(2108), 1, - aux_sym__syn_sync_repeat1, - STATE(2247), 1, - sym__syn_sync_lines, - ACTIONS(5852), 2, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(5854), 2, + ACTIONS(787), 1, + sym_au_event, + ACTIONS(5896), 1, + anon_sym_LBRACE2, + ACTIONS(6013), 1, + aux_sym_identifier_token2, + ACTIONS(785), 2, sym__newline_or_pipe, sym_comment, - [71119] = 6, + STATE(1974), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + [72539] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(787), 1, + ACTIONS(801), 1, sym_au_event, - ACTIONS(5781), 1, + ACTIONS(6015), 1, anon_sym_LBRACE2, - ACTIONS(5856), 1, + ACTIONS(6018), 1, aux_sym_identifier_token2, - ACTIONS(785), 2, + ACTIONS(799), 2, sym__newline_or_pipe, sym_comment, - STATE(1970), 2, + STATE(2000), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - [71140] = 6, + [72560] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5858), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5860), 1, - aux_sym__bang_filter_command_argument_token4, - STATE(1992), 1, - aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5468), 2, + ACTIONS(5595), 1, aux_sym__bang_filter_command_argument_token1, + ACTIONS(5597), 1, anon_sym_BSLASH, - ACTIONS(5472), 2, + ACTIONS(5603), 1, sym_string_literal, - aux_sym__map_rhs_token4, - [71161] = 6, + ACTIONS(5952), 2, + sym__newline_or_pipe, + sym_comment, + STATE(1991), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [72581] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5541), 1, - anon_sym_BSLASH, - ACTIONS(5547), 1, - aux_sym_filename_token3, - ACTIONS(5647), 1, + ACTIONS(6021), 1, + anon_sym_LT, + ACTIONS(6024), 1, + anon_sym_BSLASH2, + ACTIONS(6027), 1, + aux_sym__map_rhs_token2, + STATE(2002), 1, + aux_sym__map_rhs_repeat1, + STATE(2247), 1, + sym__immediate_keycode, + ACTIONS(6030), 2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - STATE(2737), 1, - sym_filename, - ACTIONS(5545), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [71182] = 7, + [72604] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5838), 1, + ACTIONS(6001), 1, anon_sym_buffer, - ACTIONS(5840), 1, + ACTIONS(6003), 1, anon_sym_group, - ACTIONS(5842), 1, + ACTIONS(6005), 1, anon_sym_file, - STATE(1989), 1, - aux_sym__sign_jump_repeat1, - STATE(2164), 1, - sym__sign_jump_argument, - ACTIONS(5862), 2, - sym__newline_or_pipe, - sym_comment, - [71205] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1948), 1, - aux_sym__syn_cluster_repeat1, - STATE(2148), 1, - sym__syn_arguments_cluster, - ACTIONS(5867), 2, + STATE(2050), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2267), 1, + sym__sign_unplace_id_argument, + ACTIONS(5884), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5864), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [71224] = 6, + [72627] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4486), 1, + ACTIONS(4545), 1, anon_sym_BSLASH, - ACTIONS(4490), 1, + ACTIONS(4549), 1, aux_sym_filename_token3, - STATE(1917), 1, + STATE(1815), 1, aux_sym_runtime_statement_repeat1, - STATE(2089), 1, + STATE(2015), 1, sym_filename, - ACTIONS(4492), 3, + ACTIONS(4551), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [71245] = 6, + [72648] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4540), 1, - anon_sym_BSLASH, - ACTIONS(4544), 1, - aux_sym_filename_token3, - STATE(1802), 1, - aux_sym_runtime_statement_repeat1, - STATE(1922), 1, - sym_filename, - ACTIONS(4546), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [71266] = 6, + ACTIONS(6032), 1, + anon_sym_buffer, + ACTIONS(6034), 1, + anon_sym_group, + ACTIONS(6036), 1, + anon_sym_file, + STATE(1970), 1, + aux_sym__sign_place_list, + STATE(2241), 1, + sym__sign_place_list_argument, + ACTIONS(6038), 2, + sym__newline_or_pipe, + sym_comment, + [72671] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5541), 1, - anon_sym_BSLASH, - ACTIONS(5547), 1, - aux_sym_filename_token3, - ACTIONS(5869), 1, - anon_sym_AT, - STATE(2652), 1, - sym_filename, - ACTIONS(5545), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [71287] = 6, + ACTIONS(1063), 1, + anon_sym_LT, + ACTIONS(1065), 1, + anon_sym_BSLASH2, + ACTIONS(5948), 1, + aux_sym__map_rhs_token2, + STATE(2002), 1, + aux_sym__map_rhs_repeat1, + STATE(2247), 1, + sym__immediate_keycode, + ACTIONS(6040), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [72694] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4540), 1, - anon_sym_BSLASH, - ACTIONS(4544), 1, - aux_sym_filename_token3, - STATE(1763), 1, - aux_sym_runtime_statement_repeat1, - STATE(1922), 1, - sym_filename, - ACTIONS(4546), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [71308] = 6, + ACTIONS(6042), 1, + anon_sym_buffer, + ACTIONS(6044), 1, + anon_sym_group, + ACTIONS(6046), 1, + anon_sym_file, + STATE(2040), 1, + aux_sym__sign_jump_repeat1, + STATE(2259), 1, + sym__sign_jump_argument, + ACTIONS(5999), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [72717] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5871), 1, + ACTIONS(5892), 1, aux_sym__bang_filter_command_argument_token3, - ACTIONS(5873), 1, + ACTIONS(5894), 1, aux_sym__bang_filter_command_argument_token4, - STATE(1942), 1, + STATE(1980), 1, aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5611), 2, + ACTIONS(5714), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(5615), 2, + ACTIONS(5720), 2, sym_string_literal, aux_sym__map_rhs_token4, - [71329] = 7, + [72738] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5877), 1, - anon_sym_BSLASH, - ACTIONS(5879), 1, - anon_sym_LT2, - ACTIONS(5881), 1, - aux_sym__map_rhs_token1, - STATE(2010), 1, - sym_keycode, - STATE(2693), 1, - sym__map_rhs, - ACTIONS(5875), 2, - anon_sym_COLON, - aux_sym__map_rhs_token3, - [71352] = 7, + ACTIONS(1075), 1, + anon_sym_LT, + ACTIONS(1077), 1, + anon_sym_BSLASH2, + ACTIONS(6048), 1, + aux_sym__map_rhs_token2, + STATE(2033), 1, + aux_sym__map_rhs_repeat1, + STATE(2242), 1, + sym__immediate_keycode, + ACTIONS(5965), 2, + sym__newline_or_pipe, + sym_comment, + [72761] = 8, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5445), 1, + sym_au_event, + ACTIONS(5557), 1, + anon_sym_LBRACE, + ACTIONS(5559), 1, + aux_sym_identifier_token1, + ACTIONS(5670), 1, + aux_sym__map_rhs_token4, + STATE(1623), 1, + sym__curly_braces_name_expression, + STATE(2546), 1, + sym_identifier, + STATE(3181), 1, + sym_au_event_list, + [72786] = 8, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5885), 1, + ACTIONS(5909), 1, anon_sym_buffer, - ACTIONS(5888), 1, + ACTIONS(5911), 1, anon_sym_group, - ACTIONS(5891), 1, + ACTIONS(6050), 1, anon_sym_file, - STATE(1955), 1, + ACTIONS(6052), 1, + sym_integer_literal, + STATE(2077), 1, aux_sym__sign_place_list, - STATE(2142), 1, + STATE(2231), 1, sym__sign_place_list_argument, - ACTIONS(5883), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [71375] = 6, + STATE(2656), 1, + sym__sign_place_place, + [72811] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5541), 1, + ACTIONS(5595), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5597), 1, anon_sym_BSLASH, - ACTIONS(5547), 1, - aux_sym_filename_token3, - ACTIONS(5609), 1, - aux_sym__map_rhs_token4, - STATE(2625), 1, - sym_filename, - ACTIONS(5545), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [71396] = 7, + ACTIONS(5603), 1, + sym_string_literal, + ACTIONS(5841), 2, + sym__newline_or_pipe, + sym_comment, + STATE(2001), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [72832] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5894), 1, + ACTIONS(6042), 1, anon_sym_buffer, - ACTIONS(5896), 1, + ACTIONS(6044), 1, anon_sym_group, - ACTIONS(5898), 1, + ACTIONS(6046), 1, anon_sym_file, - STATE(1975), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2160), 1, - sym__sign_unplace_id_argument, - ACTIONS(5900), 2, - sym__newline_or_pipe, - sym_comment, - [71419] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5599), 1, + STATE(2046), 1, + aux_sym__sign_jump_repeat1, + STATE(2259), 1, + sym__sign_jump_argument, + ACTIONS(5988), 2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5902), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5904), 1, - anon_sym_BSLASH, - ACTIONS(5906), 1, - sym_bang, - ACTIONS(5908), 1, - sym_string_literal, - STATE(2087), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [71442] = 6, + [72855] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5397), 1, - aux_sym_filename_token3, - ACTIONS(5910), 1, + ACTIONS(4606), 1, anon_sym_BSLASH, - ACTIONS(5912), 1, - anon_sym_AT, - STATE(2652), 1, + ACTIONS(4610), 1, + aux_sym_filename_token3, + STATE(1807), 1, + aux_sym_runtime_statement_repeat1, + STATE(2029), 1, sym_filename, - ACTIONS(5395), 3, + ACTIONS(4612), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [71463] = 4, - ACTIONS(3), 1, - sym__line_continuation, - STATE(1960), 1, - aux_sym_function_definition_repeat1, - ACTIONS(5917), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(5914), 4, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [71480] = 5, + [72876] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(1961), 1, - aux_sym__syn_cluster_repeat1, - STATE(2134), 1, - sym__syn_arguments_cluster, - ACTIONS(5867), 2, + ACTIONS(6054), 2, + anon_sym_BSLASH, + aux_sym_filename_token3, + ACTIONS(6056), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5919), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [71499] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5894), 1, - anon_sym_buffer, - ACTIONS(5896), 1, - anon_sym_group, - ACTIONS(5898), 1, - anon_sym_file, - STATE(1973), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2160), 1, - sym__sign_unplace_id_argument, - ACTIONS(5738), 2, - sym__newline_or_pipe, - sym_comment, - [71522] = 7, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [72891] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5922), 1, - anon_sym_buffer, - ACTIONS(5925), 1, - anon_sym_group, - ACTIONS(5928), 1, - anon_sym_file, - STATE(1963), 1, - aux_sym__sign_place_list, - STATE(2155), 1, - sym__sign_place_list_argument, - ACTIONS(5883), 2, + ACTIONS(6058), 1, + aux_sym_command_argument_token1, + ACTIONS(6060), 1, + sym_bang, + ACTIONS(6064), 1, + sym_string_literal, + STATE(2142), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2315), 1, + sym_command_argument, + ACTIONS(6062), 2, sym__newline_or_pipe, sym_comment, - [71545] = 5, + [72914] = 7, ACTIONS(3), 1, sym__line_continuation, - STATE(1939), 1, - aux_sym__syn_cluster_repeat1, - STATE(2148), 1, - sym__syn_arguments_cluster, - ACTIONS(5931), 2, + ACTIONS(6058), 1, + aux_sym_command_argument_token1, + ACTIONS(6064), 1, + sym_string_literal, + ACTIONS(6066), 1, + sym_bang, + STATE(2144), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2315), 1, + sym_command_argument, + ACTIONS(6068), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(5832), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [71564] = 7, + [72937] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5740), 1, + ACTIONS(6070), 1, anon_sym_buffer, - ACTIONS(5742), 1, + ACTIONS(6073), 1, anon_sym_group, - ACTIONS(5744), 1, + ACTIONS(6076), 1, anon_sym_file, - STATE(1936), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2135), 1, - sym__sign_unplace_id_argument, - ACTIONS(5933), 2, + STATE(2018), 1, + aux_sym__sign_place_list, + STATE(2231), 1, + sym__sign_place_list_argument, + ACTIONS(5871), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [71587] = 7, + [72960] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5935), 1, + ACTIONS(6001), 1, anon_sym_buffer, - ACTIONS(5938), 1, + ACTIONS(6003), 1, anon_sym_group, - ACTIONS(5941), 1, + ACTIONS(6005), 1, anon_sym_file, - STATE(1966), 1, + STATE(1987), 1, aux_sym__sign_unplace_id_repeat1, - STATE(2160), 1, + STATE(2267), 1, sym__sign_unplace_id_argument, - ACTIONS(5812), 2, + ACTIONS(6079), 2, sym__newline_or_pipe, sym_comment, - [71610] = 7, + [72983] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5740), 1, - anon_sym_buffer, - ACTIONS(5742), 1, - anon_sym_group, - ACTIONS(5744), 1, - anon_sym_file, - STATE(1936), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2135), 1, - sym__sign_unplace_id_argument, - ACTIONS(5944), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [71633] = 7, + ACTIONS(4545), 1, + anon_sym_BSLASH, + ACTIONS(4549), 1, + aux_sym_filename_token3, + STATE(1825), 1, + aux_sym_runtime_statement_repeat1, + STATE(2015), 1, + sym_filename, + ACTIONS(4551), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73004] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5948), 1, - anon_sym_buffer, - ACTIONS(5950), 1, - anon_sym_group, - ACTIONS(5952), 1, - anon_sym_file, - STATE(1955), 1, - aux_sym__sign_place_list, - STATE(2142), 1, - sym__sign_place_list_argument, - ACTIONS(5946), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(5653), 1, aux_sym__map_rhs_token4, - [71656] = 8, + ACTIONS(5761), 1, + anon_sym_BSLASH, + ACTIONS(5767), 1, + aux_sym_filename_token3, + STATE(2891), 1, + sym_filename, + ACTIONS(5765), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73025] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5948), 1, + ACTIONS(5437), 1, + aux_sym_filename_token3, + ACTIONS(6081), 1, + anon_sym_BSLASH, + ACTIONS(6083), 1, + anon_sym_AT, + STATE(2607), 1, + sym_filename, + ACTIONS(5435), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73046] = 8, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6032), 1, anon_sym_buffer, - ACTIONS(5950), 1, + ACTIONS(6034), 1, anon_sym_group, - ACTIONS(5952), 1, + ACTIONS(6036), 1, anon_sym_file, - ACTIONS(5954), 1, + ACTIONS(6085), 1, sym_integer_literal, - STATE(1968), 1, + STATE(2005), 1, aux_sym__sign_place_list, - STATE(2142), 1, + STATE(2241), 1, sym__sign_place_list_argument, - STATE(2606), 1, + STATE(2864), 1, sym__sign_place_place, - [71681] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(795), 1, - sym_au_event, - ACTIONS(5956), 1, - anon_sym_LBRACE2, - ACTIONS(5959), 1, - aux_sym_identifier_token2, - ACTIONS(793), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1970), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - [71702] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5740), 1, - anon_sym_buffer, - ACTIONS(5742), 1, - anon_sym_group, - ACTIONS(5744), 1, - anon_sym_file, - STATE(1967), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2135), 1, - sym__sign_unplace_id_argument, - ACTIONS(5900), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [71725] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5964), 1, - anon_sym_buffer, - ACTIONS(5966), 1, - anon_sym_group, - ACTIONS(5968), 1, - anon_sym_file, - STATE(1934), 1, - aux_sym__sign_jump_repeat1, - STATE(2136), 1, - sym__sign_jump_argument, - ACTIONS(5962), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [71748] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5894), 1, - anon_sym_buffer, - ACTIONS(5896), 1, - anon_sym_group, - ACTIONS(5898), 1, - anon_sym_file, - STATE(1966), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2160), 1, - sym__sign_unplace_id_argument, - ACTIONS(5933), 2, - sym__newline_or_pipe, - sym_comment, - [71771] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4243), 1, - aux_sym__map_rhs_token4, - ACTIONS(5973), 1, - aux_sym_filename_token7, - STATE(1974), 1, - aux_sym_filename_repeat1, - ACTIONS(5970), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [71790] = 7, + [73071] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5894), 1, + ACTIONS(5886), 1, anon_sym_buffer, - ACTIONS(5896), 1, + ACTIONS(5888), 1, anon_sym_group, - ACTIONS(5898), 1, - anon_sym_file, - STATE(1966), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2160), 1, - sym__sign_unplace_id_argument, - ACTIONS(5944), 2, - sym__newline_or_pipe, - sym_comment, - [71813] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5976), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5577), 5, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, - aux_sym__map_rhs_token4, - [71828] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5978), 1, - anon_sym_LT, - ACTIONS(5981), 1, - anon_sym_BSLASH2, - ACTIONS(5984), 1, - aux_sym__map_rhs_token2, - STATE(1977), 1, - aux_sym__map_rhs_repeat1, - STATE(2144), 1, - sym__immediate_keycode, - ACTIONS(5987), 2, + ACTIONS(5890), 1, + anon_sym_file, + STATE(1971), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2257), 1, + sym__sign_unplace_id_argument, + ACTIONS(6087), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [71851] = 6, + [73094] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5541), 1, - anon_sym_BSLASH, - ACTIONS(5547), 1, - aux_sym_filename_token3, - ACTIONS(5553), 1, + ACTIONS(5886), 1, + anon_sym_buffer, + ACTIONS(5888), 1, + anon_sym_group, + ACTIONS(5890), 1, + anon_sym_file, + STATE(1971), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2257), 1, + sym__sign_unplace_id_argument, + ACTIONS(6079), 2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - STATE(2629), 1, - sym_filename, - ACTIONS(5545), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [71872] = 5, + [73117] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6089), 1, + anon_sym_BSLASH_AMP, + STATE(2026), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3612), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_BSLASH_PIPE, + anon_sym_minlines, + anon_sym_maxlines, + [73134] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4229), 1, + ACTIONS(4307), 1, aux_sym__map_rhs_token4, - ACTIONS(5991), 1, + ACTIONS(6094), 1, aux_sym_filename_token7, - STATE(1974), 1, + STATE(1989), 1, aux_sym_filename_repeat1, - ACTIONS(5989), 4, + ACTIONS(6092), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [71891] = 7, + [73153] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5993), 1, + ACTIONS(6096), 1, anon_sym_LT, - ACTIONS(5996), 1, + ACTIONS(6099), 1, anon_sym_BSLASH2, - ACTIONS(5999), 1, + ACTIONS(6102), 1, aux_sym__map_rhs_token2, - STATE(1980), 1, + STATE(2028), 1, aux_sym__map_rhs_repeat1, - STATE(2165), 1, + STATE(2242), 1, sym__immediate_keycode, - ACTIONS(6002), 2, + ACTIONS(6105), 2, sym__newline_or_pipe, sym_comment, - [71914] = 7, + [73176] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5964), 1, - anon_sym_buffer, - ACTIONS(5966), 1, - anon_sym_group, - ACTIONS(5968), 1, - anon_sym_file, - STATE(1934), 1, - aux_sym__sign_jump_repeat1, - STATE(2136), 1, - sym__sign_jump_argument, - ACTIONS(6004), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(6054), 1, + aux_sym_filename_token3, + ACTIONS(6056), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73191] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4606), 1, + anon_sym_BSLASH, + ACTIONS(4610), 1, + aux_sym_filename_token3, + STATE(1836), 1, + aux_sym_runtime_statement_repeat1, + STATE(2029), 1, + sym_filename, + ACTIONS(4612), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73212] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5605), 1, aux_sym__map_rhs_token4, - [71937] = 7, + ACTIONS(5761), 1, + anon_sym_BSLASH, + ACTIONS(5767), 1, + aux_sym_filename_token3, + STATE(2639), 1, + sym_filename, + ACTIONS(5765), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73233] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1063), 1, - anon_sym_LT, - ACTIONS(1065), 1, - anon_sym_BSLASH2, - ACTIONS(6006), 1, - aux_sym__map_rhs_token2, - STATE(1980), 1, - aux_sym__map_rhs_repeat1, - STATE(2165), 1, - sym__immediate_keycode, - ACTIONS(6008), 2, + STATE(2032), 1, + aux_sym_function_definition_repeat1, + ACTIONS(6110), 2, sym__newline_or_pipe, sym_comment, - [71960] = 7, + ACTIONS(6107), 4, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [73250] = 7, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1075), 1, anon_sym_LT, ACTIONS(1077), 1, anon_sym_BSLASH2, - ACTIONS(5777), 1, + ACTIONS(5963), 1, aux_sym__map_rhs_token2, - STATE(1977), 1, + STATE(2028), 1, aux_sym__map_rhs_repeat1, - STATE(2144), 1, + STATE(2242), 1, sym__immediate_keycode, - ACTIONS(6010), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [71983] = 7, + ACTIONS(6112), 2, + sym__newline_or_pipe, + sym_comment, + [73273] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6012), 1, - anon_sym_buffer, - ACTIONS(6015), 1, - anon_sym_group, - ACTIONS(6018), 1, - anon_sym_file, - STATE(1984), 1, - aux_sym__sign_jump_repeat1, - STATE(2164), 1, - sym__sign_jump_argument, - ACTIONS(5799), 2, + ACTIONS(6114), 1, + anon_sym_COLON, + ACTIONS(6116), 1, + sym_bang, + ACTIONS(6120), 1, + sym__normal, + ACTIONS(6122), 1, + sym__source, + STATE(1981), 1, + sym__bang_filter_bangs, + ACTIONS(6118), 2, + sym__newline_or_pipe, + sym_comment, + [73296] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4618), 1, + anon_sym_BSLASH, + ACTIONS(4622), 1, + aux_sym_filename_token3, + STATE(1857), 1, + aux_sym_runtime_statement_repeat1, + STATE(2109), 1, + sym_filename, + ACTIONS(4624), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73317] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(2036), 1, + aux_sym__syn_cluster_repeat1, + STATE(2265), 1, + sym__syn_arguments_cluster, + ACTIONS(5925), 2, sym__newline_or_pipe, sym_comment, - [72006] = 7, + ACTIONS(6124), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [73336] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5964), 1, + ACTIONS(5909), 1, anon_sym_buffer, - ACTIONS(5966), 1, + ACTIONS(5911), 1, anon_sym_group, - ACTIONS(5968), 1, + ACTIONS(5913), 1, anon_sym_file, - STATE(1972), 1, - aux_sym__sign_jump_repeat1, - STATE(2136), 1, - sym__sign_jump_argument, - ACTIONS(5862), 2, + STATE(2018), 1, + aux_sym__sign_place_list, + STATE(2231), 1, + sym__sign_place_list_argument, + ACTIONS(6038), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [72029] = 7, + [73359] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6129), 1, + anon_sym_BSLASH, + ACTIONS(6131), 1, + anon_sym_LT2, + ACTIONS(6133), 1, + aux_sym__map_rhs_token1, + STATE(2132), 1, + sym_keycode, + STATE(2740), 1, + sym__map_rhs, + ACTIONS(6127), 2, + anon_sym_COLON, + aux_sym__map_rhs_token3, + [73382] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5686), 1, + aux_sym__map_rhs_token4, + ACTIONS(5761), 1, + anon_sym_BSLASH, + ACTIONS(5767), 1, + aux_sym_filename_token3, + STATE(2833), 1, + sym_filename, + ACTIONS(5765), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73403] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5964), 1, + ACTIONS(6042), 1, anon_sym_buffer, - ACTIONS(5966), 1, + ACTIONS(6044), 1, anon_sym_group, - ACTIONS(5968), 1, + ACTIONS(6046), 1, anon_sym_file, - STATE(1981), 1, + STATE(1969), 1, aux_sym__sign_jump_repeat1, - STATE(2136), 1, + STATE(2259), 1, sym__sign_jump_argument, - ACTIONS(5844), 2, + ACTIONS(5849), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [72052] = 7, + [73426] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6021), 1, - anon_sym_buffer, - ACTIONS(6023), 1, - anon_sym_group, - ACTIONS(6025), 1, - anon_sym_file, - STATE(1963), 1, - aux_sym__sign_place_list, - STATE(2155), 1, - sym__sign_place_list_argument, - ACTIONS(5946), 2, - sym__newline_or_pipe, - sym_comment, - [72075] = 7, + ACTIONS(5761), 1, + anon_sym_BSLASH, + ACTIONS(5767), 1, + aux_sym_filename_token3, + ACTIONS(6135), 1, + anon_sym_AT, + STATE(2607), 1, + sym_filename, + ACTIONS(5765), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73447] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6027), 1, + ACTIONS(6137), 1, anon_sym_BSLASH, - ACTIONS(6029), 1, + ACTIONS(6139), 1, anon_sym_LT2, - ACTIONS(6031), 1, + ACTIONS(6141), 1, aux_sym__map_rhs_token1, - STATE(2118), 1, + STATE(1992), 1, sym_keycode, - STATE(2771), 1, + STATE(2740), 1, sym__map_rhs, - ACTIONS(5791), 2, + ACTIONS(6127), 2, anon_sym_COLON, aux_sym__map_rhs_token3, - [72098] = 7, + [73470] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5838), 1, - anon_sym_buffer, - ACTIONS(5840), 1, - anon_sym_group, - ACTIONS(5842), 1, - anon_sym_file, - STATE(1984), 1, - aux_sym__sign_jump_repeat1, - STATE(2164), 1, - sym__sign_jump_argument, - ACTIONS(5962), 2, - sym__newline_or_pipe, - sym_comment, - [72121] = 7, + ACTIONS(6143), 1, + anon_sym_BSLASH, + ACTIONS(6147), 1, + aux_sym_filename_token3, + STATE(1876), 1, + sym_filename, + STATE(2678), 1, + sym__bang_filter_command, + ACTIONS(6145), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73491] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5838), 1, - anon_sym_buffer, - ACTIONS(5840), 1, - anon_sym_group, - ACTIONS(5842), 1, - anon_sym_file, - STATE(1984), 1, - aux_sym__sign_jump_repeat1, - STATE(2164), 1, - sym__sign_jump_argument, - ACTIONS(6004), 2, + ACTIONS(6149), 1, + sym_hl_group, + STATE(2084), 1, + aux_sym__syn_sync_repeat1, + STATE(2275), 1, + sym__syn_sync_lines, + ACTIONS(5942), 2, sym__newline_or_pipe, sym_comment, - [72144] = 6, + ACTIONS(6151), 2, + anon_sym_minlines, + anon_sym_maxlines, + [73512] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6033), 1, + ACTIONS(6153), 1, aux_sym__bang_filter_command_argument_token3, - ACTIONS(6036), 1, + ACTIONS(6155), 1, aux_sym__bang_filter_command_argument_token4, - STATE(1991), 1, + STATE(2008), 1, aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5490), 2, + ACTIONS(5697), 2, aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - ACTIONS(5498), 2, + ACTIONS(5701), 2, sym_string_literal, aux_sym__map_rhs_token4, - [72165] = 6, + [73533] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5846), 1, - aux_sym__bang_filter_command_argument_token3, - ACTIONS(5848), 1, - aux_sym__bang_filter_command_argument_token4, - STATE(1991), 1, - aux_sym__bang_filter_command_argument_repeat1, - ACTIONS(5482), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5488), 2, + ACTIONS(6042), 1, + anon_sym_buffer, + ACTIONS(6044), 1, + anon_sym_group, + ACTIONS(6046), 1, + anon_sym_file, + STATE(1969), 1, + aux_sym__sign_jump_repeat1, + STATE(2259), 1, + sym__sign_jump_argument, + ACTIONS(6157), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [73556] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6159), 1, + aux_sym_command_argument_token1, + ACTIONS(6161), 1, + sym_bang, + ACTIONS(6165), 1, sym_string_literal, + STATE(2155), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2370), 1, + sym_command_argument, + ACTIONS(6163), 2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [72186] = 6, + [73579] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5683), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5685), 1, + ACTIONS(5526), 1, + aux_sym__map_rhs_token4, + ACTIONS(5761), 1, anon_sym_BSLASH, - ACTIONS(5689), 1, - sym_string_literal, - ACTIONS(5779), 2, - sym__newline_or_pipe, - sym_comment, - STATE(1937), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [72207] = 7, + ACTIONS(5767), 1, + aux_sym_filename_token3, + STATE(2768), 1, + sym_filename, + ACTIONS(5765), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73600] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1063), 1, - anon_sym_LT, - ACTIONS(1065), 1, - anon_sym_BSLASH2, - ACTIONS(6006), 1, - aux_sym__map_rhs_token2, - STATE(1980), 1, - aux_sym__map_rhs_repeat1, - STATE(2165), 1, - sym__immediate_keycode, - ACTIONS(6039), 2, + ACTIONS(6116), 1, + sym_bang, + ACTIONS(6167), 1, + anon_sym_COLON, + ACTIONS(6169), 1, + sym__normal, + ACTIONS(6171), 1, + sym__source, + STATE(2043), 1, + sym__bang_filter_bangs, + ACTIONS(6118), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [73623] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6001), 1, + anon_sym_buffer, + ACTIONS(6003), 1, + anon_sym_group, + ACTIONS(6005), 1, + anon_sym_file, + STATE(1987), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2267), 1, + sym__sign_unplace_id_argument, + ACTIONS(6087), 2, sym__newline_or_pipe, sym_comment, - [72230] = 7, + [73646] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1063), 1, - anon_sym_LT, - ACTIONS(1065), 1, - anon_sym_BSLASH2, - ACTIONS(6041), 1, - aux_sym__map_rhs_token2, - STATE(1982), 1, - aux_sym__map_rhs_repeat1, - STATE(2165), 1, - sym__immediate_keycode, - ACTIONS(6039), 2, + ACTIONS(6159), 1, + aux_sym_command_argument_token1, + ACTIONS(6165), 1, + sym_string_literal, + ACTIONS(6173), 1, + sym_bang, + STATE(2136), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2370), 1, + sym_command_argument, + ACTIONS(6175), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [73669] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(2064), 1, + aux_sym__syn_cluster_repeat1, + STATE(2265), 1, + sym__syn_arguments_cluster, + ACTIONS(6007), 2, sym__newline_or_pipe, sym_comment, - [72253] = 8, + ACTIONS(6177), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [73688] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5948), 1, - anon_sym_buffer, - ACTIONS(5950), 1, - anon_sym_group, - ACTIONS(6043), 1, - anon_sym_file, - ACTIONS(6045), 1, - sym_integer_literal, - STATE(2062), 1, - aux_sym__sign_place_list, - STATE(2142), 1, - sym__sign_place_list_argument, - STATE(2606), 1, - sym__sign_place_place, - [72278] = 5, + ACTIONS(6179), 1, + anon_sym_BSLASH, + ACTIONS(6183), 1, + aux_sym_filename_token3, + STATE(2056), 1, + sym_filename, + STATE(2678), 1, + sym__bang_filter_command, + ACTIONS(6181), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73709] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4211), 1, + ACTIONS(5457), 1, + anon_sym_BSLASH, + ACTIONS(5463), 1, + aux_sym_filename_token3, + ACTIONS(6185), 1, + anon_sym_AT, + STATE(2796), 1, + sym_filename, + ACTIONS(5461), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [73730] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4291), 1, aux_sym__map_rhs_token4, - ACTIONS(5991), 1, + ACTIONS(6094), 1, aux_sym_filename_token7, - STATE(1974), 1, + STATE(1989), 1, aux_sym_filename_repeat1, - ACTIONS(5989), 4, + ACTIONS(6092), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [72297] = 7, + [73749] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6047), 1, - anon_sym_COLON, - ACTIONS(6049), 1, + ACTIONS(5601), 1, + aux_sym__map_rhs_token4, + ACTIONS(6187), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(6189), 1, + anon_sym_BSLASH, + ACTIONS(6191), 1, sym_bang, - ACTIONS(6053), 1, - sym__normal, - ACTIONS(6055), 1, - sym__source, - STATE(2009), 1, - sym__bang_filter_bangs, - ACTIONS(6051), 2, - sym__newline_or_pipe, - sym_comment, - [72320] = 4, + ACTIONS(6193), 1, + sym_string_literal, + STATE(2090), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [73772] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6057), 1, - anon_sym_BSLASH_AMP, - STATE(2017), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 5, + ACTIONS(5843), 1, + anon_sym_buffer, + ACTIONS(5845), 1, + anon_sym_group, + ACTIONS(5847), 1, + anon_sym_file, + STATE(1975), 1, + aux_sym__sign_jump_repeat1, + STATE(2262), 1, + sym__sign_jump_argument, + ACTIONS(6157), 2, sym__newline_or_pipe, sym_comment, + [73795] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5641), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5643), 1, + anon_sym_BSLASH, + ACTIONS(5647), 1, + sym_string_literal, + ACTIONS(5841), 2, anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - [72337] = 3, + aux_sym__map_rhs_token4, + STATE(1994), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [73816] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5748), 2, + ACTIONS(5641), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5643), 1, anon_sym_BSLASH, - aux_sym_filename_token3, - ACTIONS(5746), 5, + ACTIONS(5647), 1, + sym_string_literal, + ACTIONS(5841), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [72352] = 5, + STATE(1986), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [73837] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4211), 1, + ACTIONS(6195), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5573), 5, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, + aux_sym__map_rhs_token4, + [73852] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4291), 1, aux_sym__map_rhs_token4, - ACTIONS(6061), 1, + ACTIONS(6199), 1, aux_sym_filename_token7, - STATE(1979), 1, + STATE(2027), 1, aux_sym_filename_repeat1, - ACTIONS(6059), 4, + ACTIONS(6197), 4, aux_sym__bang_filter_command_argument_token4, aux_sym_filename_token5, aux_sym_filename_token6, aux_sym_filename_token8, - [72371] = 6, + [73871] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6063), 1, + ACTIONS(4618), 1, anon_sym_BSLASH, - ACTIONS(6067), 1, + ACTIONS(4622), 1, aux_sym_filename_token3, - STATE(1855), 1, + STATE(1924), 1, + aux_sym_runtime_statement_repeat1, + STATE(2109), 1, sym_filename, - STATE(2562), 1, - sym__bang_filter_command, - ACTIONS(6065), 3, + ACTIONS(4624), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [72392] = 8, + [73892] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5639), 1, + ACTIONS(4273), 1, aux_sym__map_rhs_token4, - ACTIONS(5703), 1, - anon_sym_group, - ACTIONS(6069), 1, - anon_sym_STAR2, - ACTIONS(6071), 1, - sym_integer_literal, - STATE(2600), 1, - sym__sign_unplace_id, - STATE(2601), 1, - sym__sign_unplace_cursor, - STATE(2603), 1, - sym__sign_unplace_cursor_argument, - [72417] = 6, + ACTIONS(6203), 1, + aux_sym_filename_token7, + STATE(2055), 1, + aux_sym_filename_repeat1, + ACTIONS(6201), 4, + aux_sym__bang_filter_command_argument_token4, + aux_sym_filename_token5, + aux_sym_filename_token6, + aux_sym_filename_token8, + [73911] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5593), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5595), 1, - anon_sym_BSLASH, - ACTIONS(5601), 1, - sym_string_literal, - ACTIONS(6073), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1930), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [72438] = 6, + STATE(2036), 1, + aux_sym__syn_cluster_repeat1, + STATE(2265), 1, + sym__syn_arguments_cluster, + ACTIONS(5973), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(6177), 3, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [73930] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5593), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5595), 1, + ACTIONS(6207), 1, anon_sym_BSLASH, - ACTIONS(5601), 1, - sym_string_literal, - ACTIONS(6073), 2, + ACTIONS(6209), 1, + anon_sym_LT2, + ACTIONS(6211), 1, + aux_sym__map_rhs_token1, + STATE(1985), 1, + sym_keycode, + STATE(2773), 1, + sym__map_rhs, + ACTIONS(6205), 2, + anon_sym_COLON, + aux_sym__map_rhs_token3, + [73953] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6213), 1, + anon_sym_BSLASH_AMP, + STATE(2026), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(4815), 5, + sym__newline_or_pipe, + sym_comment, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - STATE(1928), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [72459] = 7, + anon_sym_minlines, + anon_sym_maxlines, + [73970] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1075), 1, - anon_sym_LT, - ACTIONS(1077), 1, - anon_sym_BSLASH2, - ACTIONS(1079), 1, - aux_sym__map_rhs_token2, - STATE(1929), 1, - aux_sym__map_rhs_repeat1, - STATE(2144), 1, - sym__immediate_keycode, - ACTIONS(1081), 2, + ACTIONS(6215), 6, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [72482] = 8, + [73982] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5372), 1, - sym_au_event, - ACTIONS(5374), 1, + ACTIONS(6217), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, + [73994] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6219), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(6221), 1, aux_sym_identifier_token1, - ACTIONS(5559), 1, - aux_sym__map_rhs_token4, - STATE(1534), 1, + ACTIONS(6223), 1, + sym_integer_literal, + STATE(1494), 1, sym__curly_braces_name_expression, - STATE(2400), 1, + STATE(1966), 2, sym_identifier, - STATE(3165), 1, - sym_au_event_list, - [72507] = 7, + sym__sign_name, + [74014] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6049), 1, - sym_bang, - ACTIONS(6075), 1, - anon_sym_COLON, - ACTIONS(6077), 1, - sym__normal, - ACTIONS(6079), 1, - sym__source, - STATE(2002), 1, - sym__bang_filter_bangs, - ACTIONS(6051), 2, + ACTIONS(6159), 1, + aux_sym_command_argument_token1, + ACTIONS(6165), 1, + sym_string_literal, + STATE(2135), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2370), 1, + sym_command_argument, + ACTIONS(6225), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [72530] = 6, + [74034] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6081), 1, - anon_sym_BSLASH, - ACTIONS(6085), 1, - aux_sym_filename_token3, - STATE(1895), 1, - sym_filename, - STATE(2650), 1, - sym__bang_filter_command, - ACTIONS(6083), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [72551] = 7, + STATE(2137), 1, + aux_sym__syn_sync_repeat1, + STATE(2367), 1, + sym__syn_sync_lines, + ACTIONS(6227), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(6229), 2, + anon_sym_minlines, + anon_sym_maxlines, + [74052] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1063), 1, - anon_sym_LT, - ACTIONS(1065), 1, - anon_sym_BSLASH2, - ACTIONS(1067), 1, - aux_sym__map_rhs_token2, - STATE(1994), 1, - aux_sym__map_rhs_repeat1, - STATE(2165), 1, - sym__immediate_keycode, - ACTIONS(1069), 2, + STATE(2101), 1, + aux_sym__syn_sync_repeat1, + STATE(2275), 1, + sym__syn_sync_lines, + ACTIONS(6231), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(6233), 2, + sym__newline_or_pipe, + sym_comment, + [74070] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6235), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [74082] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6237), 1, + anon_sym_BSLASH_PIPE, + STATE(2117), 1, + aux_sym_pattern_repeat1, + ACTIONS(5050), 4, sym__newline_or_pipe, sym_comment, - [72574] = 5, + anon_sym_minlines, + anon_sym_maxlines, + [74098] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(1940), 1, - aux_sym__syn_cluster_repeat1, - STATE(2134), 1, - sym__syn_arguments_cluster, - ACTIONS(5931), 2, + ACTIONS(1289), 6, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(5836), 3, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [72593] = 8, + [74110] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6021), 1, + STATE(2097), 1, + aux_sym__syn_sync_repeat1, + STATE(2275), 1, + sym__syn_sync_lines, + ACTIONS(6227), 2, + sym__newline_or_pipe, + sym_comment, + ACTIONS(6231), 2, + anon_sym_minlines, + anon_sym_maxlines, + [74128] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5909), 1, anon_sym_buffer, - ACTIONS(6023), 1, + ACTIONS(5911), 1, anon_sym_group, - ACTIONS(6025), 1, + ACTIONS(6038), 1, + aux_sym__map_rhs_token4, + ACTIONS(6050), 1, anon_sym_file, - ACTIONS(6087), 1, - sym_integer_literal, - STATE(1987), 1, + STATE(2105), 1, aux_sym__sign_place_list, - STATE(2155), 1, + STATE(2231), 1, sym__sign_place_list_argument, - STATE(2624), 1, - sym__sign_place_place, - [72618] = 5, + [74150] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4330), 1, + ACTIONS(5884), 1, aux_sym__map_rhs_token4, - ACTIONS(6091), 1, - aux_sym_filename_token7, - STATE(1997), 1, - aux_sym_filename_repeat1, - ACTIONS(6089), 4, - aux_sym__bang_filter_command_argument_token4, - aux_sym_filename_token5, - aux_sym_filename_token6, - aux_sym_filename_token8, - [72637] = 6, + ACTIONS(5886), 1, + anon_sym_buffer, + ACTIONS(5888), 1, + anon_sym_group, + ACTIONS(6239), 1, + anon_sym_file, + STATE(2106), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2257), 1, + sym__sign_unplace_id_argument, + [74172] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5683), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5685), 1, - anon_sym_BSLASH, - ACTIONS(5689), 1, - sym_string_literal, - ACTIONS(6073), 2, + ACTIONS(207), 1, + sym__elseif, + ACTIONS(209), 1, + sym__else, + ACTIONS(6241), 1, + sym__endif, + STATE(3057), 1, + sym_else_statement, + STATE(2243), 2, + sym_elseif_statement, + aux_sym_if_statement_repeat1, + [74192] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5886), 1, + anon_sym_buffer, + ACTIONS(5888), 1, + anon_sym_group, + ACTIONS(5950), 1, + aux_sym__map_rhs_token4, + ACTIONS(6239), 1, + anon_sym_file, + STATE(2107), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2257), 1, + sym__sign_unplace_id_argument, + [74214] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5999), 1, + aux_sym__map_rhs_token4, + ACTIONS(6042), 1, + anon_sym_buffer, + ACTIONS(6044), 1, + anon_sym_group, + ACTIONS(6243), 1, + anon_sym_file, + STATE(2125), 1, + aux_sym__sign_jump_repeat1, + STATE(2259), 1, + sym__sign_jump_argument, + [74236] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(821), 1, + aux_sym_identifier_token1, + ACTIONS(819), 5, sym__newline_or_pipe, + sym__scope_dict, sym_comment, - STATE(1993), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [72658] = 6, + anon_sym_a_COLON, + anon_sym_LBRACE, + [74250] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5683), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5685), 1, - anon_sym_BSLASH, - ACTIONS(5689), 1, - sym_string_literal, - ACTIONS(6073), 2, + ACTIONS(6237), 1, + anon_sym_BSLASH_PIPE, + STATE(2074), 1, + aux_sym_pattern_repeat1, + ACTIONS(5147), 4, sym__newline_or_pipe, sym_comment, - STATE(1937), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [72679] = 6, + anon_sym_minlines, + anon_sym_maxlines, + [74266] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(2097), 1, + aux_sym__syn_sync_repeat1, + STATE(2275), 1, + sym__syn_sync_lines, + ACTIONS(6231), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(6245), 2, + sym__newline_or_pipe, + sym_comment, + [74284] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4566), 1, + ACTIONS(6247), 1, anon_sym_BSLASH, - ACTIONS(4570), 1, + ACTIONS(6251), 1, aux_sym_filename_token3, - STATE(1801), 1, - aux_sym_runtime_statement_repeat1, - STATE(2000), 1, + STATE(1966), 1, sym_filename, - ACTIONS(4572), 3, + ACTIONS(6249), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [72700] = 4, + [74302] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6093), 1, - anon_sym_BSLASH_AMP, - STATE(2017), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 5, + ACTIONS(6253), 6, sym__newline_or_pipe, sym_comment, - anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - [72717] = 7, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [74314] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6096), 1, - aux_sym_command_argument_token1, - ACTIONS(6098), 1, - sym_bang, - ACTIONS(6102), 1, - sym_string_literal, - STATE(2026), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2291), 1, - sym_command_argument, - ACTIONS(6100), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [72740] = 6, + ACTIONS(207), 1, + sym__elseif, + ACTIONS(209), 1, + sym__else, + ACTIONS(6255), 1, + sym__endif, + STATE(3237), 1, + sym_else_statement, + STATE(2243), 2, + sym_elseif_statement, + aux_sym_if_statement_repeat1, + [74334] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6104), 1, - sym_hl_group, - STATE(2104), 1, - aux_sym__syn_sync_repeat1, - STATE(2308), 1, - sym__syn_sync_lines, - ACTIONS(5854), 2, + ACTIONS(6257), 1, + anon_sym_BSLASH_AMP, + STATE(2088), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3612), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(6106), 2, anon_sym_minlines, anon_sym_maxlines, - [72761] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6096), 1, - aux_sym_command_argument_token1, - ACTIONS(6102), 1, - sym_string_literal, - ACTIONS(6108), 1, - sym_bang, - STATE(2034), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2291), 1, - sym_command_argument, - ACTIONS(6110), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [72784] = 5, + [74350] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6112), 1, + ACTIONS(6260), 1, anon_sym_BSLASH, - ACTIONS(6116), 1, + ACTIONS(6264), 1, aux_sym_filename_token3, - STATE(2154), 1, + STATE(2219), 1, sym_filename, - ACTIONS(6114), 3, + ACTIONS(6262), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [72802] = 7, + [74368] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6100), 1, + ACTIONS(5841), 1, aux_sym__map_rhs_token4, - ACTIONS(6118), 1, - aux_sym_command_argument_token1, - ACTIONS(6120), 1, - sym_bang, - ACTIONS(6122), 1, + ACTIONS(6187), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(6189), 1, + anon_sym_BSLASH, + ACTIONS(6193), 1, sym_string_literal, - STATE(2169), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2433), 1, - sym_command_argument, - [72824] = 2, + STATE(2150), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [74388] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(217), 1, + sym__catch, + ACTIONS(219), 1, + sym__finally, + ACTIONS(6266), 1, + sym__endtry, + STATE(3229), 1, + sym_finally_statement, + STATE(2218), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [74408] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5841), 1, + aux_sym__map_rhs_token4, + ACTIONS(6187), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(6189), 1, + anon_sym_BSLASH, + ACTIONS(6193), 1, + sym_string_literal, + STATE(2148), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [74428] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(207), 1, + sym__elseif, + ACTIONS(209), 1, + sym__else, + ACTIONS(6268), 1, + sym__endif, + STATE(3214), 1, + sym_else_statement, + STATE(2243), 2, + sym_elseif_statement, + aux_sym_if_statement_repeat1, + [74448] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1259), 6, + ACTIONS(6217), 6, sym__normal, sym__source, anon_sym_COLON, sym_bang, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [72836] = 7, + [74460] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(217), 1, + sym__catch, + ACTIONS(219), 1, + sym__finally, + ACTIONS(6270), 1, + sym__endtry, + STATE(3184), 1, + sym_finally_statement, + STATE(2218), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [74480] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5557), 1, + anon_sym_LBRACE, + ACTIONS(5621), 1, + aux_sym_identifier_token1, + ACTIONS(6272), 1, + sym_spread, + STATE(1623), 1, + sym__curly_braces_name_expression, + STATE(2616), 1, + sym_default_parameter, + STATE(3163), 1, + sym_identifier, + [74502] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(2097), 1, + aux_sym__syn_sync_repeat1, + STATE(2275), 1, + sym__syn_sync_lines, + ACTIONS(6274), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(6277), 2, + sym__newline_or_pipe, + sym_comment, + [74520] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5964), 1, + ACTIONS(5988), 1, + aux_sym__map_rhs_token4, + ACTIONS(6042), 1, anon_sym_buffer, - ACTIONS(5966), 1, + ACTIONS(6044), 1, anon_sym_group, - ACTIONS(6004), 1, - aux_sym__map_rhs_token4, - ACTIONS(6124), 1, + ACTIONS(6243), 1, anon_sym_file, - STATE(2032), 1, + STATE(2126), 1, aux_sym__sign_jump_repeat1, - STATE(2136), 1, + STATE(2259), 1, sym__sign_jump_argument, - [72858] = 7, + [74542] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5740), 1, - anon_sym_buffer, - ACTIONS(5742), 1, - anon_sym_group, - ACTIONS(5944), 1, + ACTIONS(1087), 1, + anon_sym_LT, + ACTIONS(1089), 1, + anon_sym_BSLASH2, + ACTIONS(6040), 1, aux_sym__map_rhs_token4, - ACTIONS(6126), 1, - anon_sym_file, - STATE(2031), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2135), 1, - sym__sign_unplace_id_argument, - [72880] = 6, + ACTIONS(6279), 1, + aux_sym__map_rhs_token2, + STATE(2100), 1, + aux_sym__map_rhs_repeat1, + STATE(2363), 1, + sym__immediate_keycode, + [74564] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6096), 1, - aux_sym_command_argument_token1, - ACTIONS(6102), 1, - sym_string_literal, - STATE(2049), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2291), 1, - sym_command_argument, - ACTIONS(6128), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(6030), 1, aux_sym__map_rhs_token4, - [72900] = 5, + ACTIONS(6281), 1, + anon_sym_LT, + ACTIONS(6284), 1, + anon_sym_BSLASH2, + ACTIONS(6287), 1, + aux_sym__map_rhs_token2, + STATE(2100), 1, + aux_sym__map_rhs_repeat1, + STATE(2363), 1, + sym__immediate_keycode, + [74586] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(2110), 1, + STATE(2097), 1, aux_sym__syn_sync_repeat1, - STATE(2308), 1, + STATE(2275), 1, sym__syn_sync_lines, - ACTIONS(6130), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - ACTIONS(6132), 2, + ACTIONS(6231), 2, anon_sym_minlines, anon_sym_maxlines, - [72918] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6134), 6, + ACTIONS(6290), 2, sym__newline_or_pipe, sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [72930] = 7, + [74604] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5504), 1, - aux_sym_identifier_token1, - ACTIONS(5645), 1, - sym_spread, - STATE(1534), 1, - sym__curly_braces_name_expression, - STATE(2888), 1, - sym_default_parameter, - STATE(2977), 1, - sym_identifier, - [72952] = 4, + ACTIONS(6175), 1, + aux_sym__map_rhs_token4, + ACTIONS(6292), 1, + aux_sym_command_argument_token1, + ACTIONS(6294), 1, + sym_bang, + ACTIONS(6296), 1, + sym_string_literal, + STATE(2212), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2433), 1, + sym_command_argument, + [74626] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6215), 6, + sym__newline_or_pipe, + sym_comment, + sym__normal, + sym__source, + anon_sym_COLON, + sym_bang, + [74638] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6136), 1, + ACTIONS(6298), 1, anon_sym_BSLASH_AMP, - STATE(2030), 1, + STATE(2088), 1, aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 4, + ACTIONS(4815), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_minlines, anon_sym_maxlines, - [72968] = 7, + [74654] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5812), 1, + ACTIONS(5871), 1, aux_sym__map_rhs_token4, - ACTIONS(5814), 1, + ACTIONS(6070), 1, anon_sym_buffer, - ACTIONS(5817), 1, + ACTIONS(6073), 1, anon_sym_group, - ACTIONS(6139), 1, + ACTIONS(6300), 1, + anon_sym_file, + STATE(2105), 1, + aux_sym__sign_place_list, + STATE(2231), 1, + sym__sign_place_list_argument, + [74676] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5886), 1, + anon_sym_buffer, + ACTIONS(5888), 1, + anon_sym_group, + ACTIONS(6087), 1, + aux_sym__map_rhs_token4, + ACTIONS(6239), 1, anon_sym_file, - STATE(2031), 1, + STATE(2133), 1, aux_sym__sign_unplace_id_repeat1, - STATE(2135), 1, + STATE(2257), 1, sym__sign_unplace_id_argument, - [72990] = 7, + [74698] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5799), 1, - aux_sym__map_rhs_token4, - ACTIONS(5801), 1, + ACTIONS(5886), 1, anon_sym_buffer, - ACTIONS(5804), 1, + ACTIONS(5888), 1, anon_sym_group, - ACTIONS(6142), 1, + ACTIONS(6079), 1, + aux_sym__map_rhs_token4, + ACTIONS(6239), 1, anon_sym_file, - STATE(2032), 1, - aux_sym__sign_jump_repeat1, - STATE(2136), 1, - sym__sign_jump_argument, - [73012] = 6, + STATE(2133), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2257), 1, + sym__sign_unplace_id_argument, + [74720] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(217), 1, - sym__elseif, - ACTIONS(219), 1, - sym__else, - ACTIONS(6145), 1, - sym__endif, - STATE(2964), 1, - sym_else_statement, - STATE(2206), 2, - sym_elseif_statement, - aux_sym_if_statement_repeat1, - [73032] = 6, + ACTIONS(6303), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [74732] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6096), 1, + ACTIONS(6054), 1, + aux_sym_filename_token3, + ACTIONS(6056), 5, + anon_sym_BSLASH, + aux_sym__map_rhs_token4, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [74746] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6163), 1, + aux_sym__map_rhs_token4, + ACTIONS(6292), 1, aux_sym_command_argument_token1, - ACTIONS(6102), 1, + ACTIONS(6296), 1, sym_string_literal, - STATE(2049), 1, + ACTIONS(6305), 1, + sym_bang, + STATE(2214), 1, aux_sym_unknown_builtin_statement_repeat1, - STATE(2291), 1, + STATE(2433), 1, sym_command_argument, - ACTIONS(6147), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [73052] = 5, + [74768] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6149), 1, + ACTIONS(6307), 1, anon_sym_BSLASH, - ACTIONS(6153), 1, + ACTIONS(6311), 1, aux_sym_filename_token3, - STATE(1873), 1, + STATE(2219), 1, sym_filename, - ACTIONS(6151), 3, + ACTIONS(6309), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [73070] = 7, + [74786] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5374), 1, + ACTIONS(6313), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(6315), 1, aux_sym_identifier_token1, - ACTIONS(5671), 1, - sym_spread, - STATE(1534), 1, + ACTIONS(6317), 1, + sym_integer_literal, + STATE(1606), 1, sym__curly_braces_name_expression, - STATE(2888), 1, - sym_default_parameter, - STATE(2977), 1, + STATE(1773), 2, sym_identifier, - [73092] = 7, + sym__sign_name, + [74806] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5740), 1, - anon_sym_buffer, - ACTIONS(5742), 1, - anon_sym_group, - ACTIONS(5933), 1, - aux_sym__map_rhs_token4, - ACTIONS(6126), 1, - anon_sym_file, - STATE(2031), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2135), 1, - sym__sign_unplace_id_argument, - [73114] = 7, + ACTIONS(6319), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [74818] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5883), 1, - aux_sym__map_rhs_token4, - ACTIONS(5885), 1, - anon_sym_buffer, - ACTIONS(5888), 1, - anon_sym_group, - ACTIONS(6155), 1, - anon_sym_file, - STATE(2038), 1, - aux_sym__sign_place_list, - STATE(2142), 1, - sym__sign_place_list_argument, - [73136] = 4, + ACTIONS(6321), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [74830] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(5751), 1, + aux_sym_identifier_token1, + ACTIONS(6323), 1, + sym_integer_literal, + STATE(1999), 1, + sym__curly_braces_name_expression, + STATE(2848), 2, + sym_identifier, + sym__sign_name, + [74850] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(207), 1, + sym__elseif, + ACTIONS(209), 1, + sym__else, + ACTIONS(6325), 1, + sym__endif, + STATE(3231), 1, + sym_else_statement, + STATE(2243), 2, + sym_elseif_statement, + aux_sym_if_statement_repeat1, + [74870] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6158), 1, + ACTIONS(6327), 1, anon_sym_BSLASH_PIPE, - STATE(2039), 1, + STATE(2117), 1, aux_sym_pattern_repeat1, - ACTIONS(5005), 4, + ACTIONS(5112), 4, sym__newline_or_pipe, sym_comment, anon_sym_minlines, anon_sym_maxlines, - [73152] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6163), 1, - sym_bang, - ACTIONS(6165), 1, - aux_sym_filename_token3, - ACTIONS(6161), 4, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [73168] = 6, + [74886] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5426), 1, + ACTIONS(6330), 1, anon_sym_LBRACE, - ACTIONS(5581), 1, + ACTIONS(6332), 1, aux_sym_identifier_token1, - ACTIONS(6167), 1, + ACTIONS(6334), 1, sym_integer_literal, - STATE(1931), 1, + STATE(1497), 1, sym__curly_braces_name_expression, - STATE(2613), 2, + STATE(1812), 2, sym_identifier, sym__sign_name, - [73188] = 2, + [74906] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6336), 1, + anon_sym_BSLASH, + ACTIONS(6340), 1, + aux_sym_filename_token3, + STATE(1887), 1, + sym_filename, + ACTIONS(6338), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [74924] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6342), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [74936] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6169), 6, + ACTIONS(1289), 6, sym__newline_or_pipe, sym_comment, sym__normal, sym__source, anon_sym_COLON, sym_bang, - [73200] = 6, + [74948] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(217), 1, - sym__elseif, - ACTIONS(219), 1, - sym__else, - ACTIONS(6171), 1, - sym__endif, - STATE(2894), 1, - sym_else_statement, - STATE(2206), 2, - sym_elseif_statement, - aux_sym_if_statement_repeat1, - [73220] = 7, + ACTIONS(5457), 1, + anon_sym_BSLASH, + ACTIONS(5463), 1, + aux_sym_filename_token3, + STATE(2653), 1, + sym_filename, + ACTIONS(5461), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [74966] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5987), 1, + ACTIONS(6116), 1, + sym_bang, + ACTIONS(6118), 1, aux_sym__map_rhs_token4, - ACTIONS(6173), 1, - anon_sym_LT, - ACTIONS(6176), 1, - anon_sym_BSLASH2, - ACTIONS(6179), 1, - aux_sym__map_rhs_token2, - STATE(2044), 1, - aux_sym__map_rhs_repeat1, - STATE(2307), 1, - sym__immediate_keycode, - [73242] = 4, + ACTIONS(6169), 1, + sym__normal, + ACTIONS(6344), 1, + anon_sym_COLON, + ACTIONS(6346), 1, + sym__source, + STATE(2053), 1, + sym__bang_filter_bangs, + [74988] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5557), 1, + anon_sym_LBRACE, + ACTIONS(5621), 1, + aux_sym_identifier_token1, + ACTIONS(5726), 1, + sym_spread, + STATE(1623), 1, + sym__curly_braces_name_expression, + STATE(2616), 1, + sym_default_parameter, + STATE(3163), 1, + sym_identifier, + [75010] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5849), 1, + aux_sym__map_rhs_token4, + ACTIONS(6042), 1, + anon_sym_buffer, + ACTIONS(6044), 1, + anon_sym_group, + ACTIONS(6243), 1, + anon_sym_file, + STATE(2134), 1, + aux_sym__sign_jump_repeat1, + STATE(2259), 1, + sym__sign_jump_argument, + [75032] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6042), 1, + anon_sym_buffer, + ACTIONS(6044), 1, + anon_sym_group, + ACTIONS(6157), 1, + aux_sym__map_rhs_token4, + ACTIONS(6243), 1, + anon_sym_file, + STATE(2134), 1, + aux_sym__sign_jump_repeat1, + STATE(2259), 1, + sym__sign_jump_argument, + [75054] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5557), 1, + anon_sym_LBRACE, + ACTIONS(5621), 1, + aux_sym_identifier_token1, + ACTIONS(6348), 1, + sym_spread, + STATE(1623), 1, + sym__curly_braces_name_expression, + STATE(2616), 1, + sym_default_parameter, + STATE(3163), 1, + sym_identifier, + [75076] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6182), 1, - anon_sym_BSLASH_PIPE, - STATE(2039), 1, - aux_sym_pattern_repeat1, - ACTIONS(4995), 4, + ACTIONS(6350), 6, sym__newline_or_pipe, sym_comment, - anon_sym_minlines, - anon_sym_maxlines, - [73258] = 6, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [75088] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6096), 1, + ACTIONS(6159), 1, aux_sym_command_argument_token1, - ACTIONS(6102), 1, + ACTIONS(6165), 1, sym_string_literal, - STATE(2049), 1, + STATE(2130), 1, aux_sym_unknown_builtin_statement_repeat1, - STATE(2291), 1, + STATE(2370), 1, sym_command_argument, - ACTIONS(6184), 2, + ACTIONS(6352), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [73278] = 2, + [75108] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6186), 6, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, + ACTIONS(6354), 1, + aux_sym_command_argument_token1, + ACTIONS(6359), 1, + sym_string_literal, + STATE(2130), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2370), 1, + sym_command_argument, + ACTIONS(6357), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [73290] = 7, + [75128] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5862), 1, + ACTIONS(6362), 6, + sym__newline_or_pipe, + sym_comment, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [75140] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1069), 1, + aux_sym__map_rhs_token4, + ACTIONS(1087), 1, + anon_sym_LT, + ACTIONS(1089), 1, + anon_sym_BSLASH2, + ACTIONS(1091), 1, + aux_sym__map_rhs_token2, + STATE(2138), 1, + aux_sym__map_rhs_repeat1, + STATE(2363), 1, + sym__immediate_keycode, + [75162] = 7, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5873), 1, aux_sym__map_rhs_token4, - ACTIONS(5964), 1, + ACTIONS(5875), 1, anon_sym_buffer, - ACTIONS(5966), 1, + ACTIONS(5878), 1, anon_sym_group, - ACTIONS(6124), 1, + ACTIONS(6364), 1, anon_sym_file, - STATE(2076), 1, - aux_sym__sign_jump_repeat1, - STATE(2136), 1, - sym__sign_jump_argument, - [73312] = 6, + STATE(2133), 1, + aux_sym__sign_unplace_id_repeat1, + STATE(2257), 1, + sym__sign_unplace_id_argument, + [75184] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6188), 1, - aux_sym_command_argument_token1, - ACTIONS(6193), 1, - sym_string_literal, - STATE(2049), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2291), 1, - sym_command_argument, - ACTIONS(6191), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(5851), 1, aux_sym__map_rhs_token4, - [73332] = 6, + ACTIONS(5853), 1, + anon_sym_buffer, + ACTIONS(5856), 1, + anon_sym_group, + ACTIONS(6367), 1, + anon_sym_file, + STATE(2134), 1, + aux_sym__sign_jump_repeat1, + STATE(2259), 1, + sym__sign_jump_argument, + [75206] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6096), 1, + ACTIONS(6159), 1, aux_sym_command_argument_token1, - ACTIONS(6102), 1, + ACTIONS(6165), 1, sym_string_literal, - STATE(2049), 1, + STATE(2130), 1, aux_sym_unknown_builtin_statement_repeat1, - STATE(2291), 1, + STATE(2370), 1, sym_command_argument, - ACTIONS(6196), 2, + ACTIONS(6370), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [73352] = 6, + [75226] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6096), 1, + ACTIONS(6159), 1, aux_sym_command_argument_token1, - ACTIONS(6102), 1, + ACTIONS(6165), 1, sym_string_literal, - STATE(2046), 1, + STATE(2130), 1, aux_sym_unknown_builtin_statement_repeat1, - STATE(2291), 1, + STATE(2370), 1, sym_command_argument, - ACTIONS(6198), 2, + ACTIONS(6372), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [73372] = 4, + [75246] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6182), 1, + STATE(2137), 1, + aux_sym__syn_sync_repeat1, + STATE(2367), 1, + sym__syn_sync_lines, + ACTIONS(6277), 2, anon_sym_BSLASH_PIPE, - STATE(2045), 1, - aux_sym_pattern_repeat1, - ACTIONS(5042), 4, - sym__newline_or_pipe, - sym_comment, + aux_sym__map_rhs_token4, + ACTIONS(6374), 2, anon_sym_minlines, anon_sym_maxlines, - [73388] = 7, + [75264] = 7, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1087), 1, anon_sym_LT, ACTIONS(1089), 1, anon_sym_BSLASH2, - ACTIONS(5752), 1, + ACTIONS(5919), 1, aux_sym__map_rhs_token4, - ACTIONS(6200), 1, + ACTIONS(6279), 1, aux_sym__map_rhs_token2, - STATE(2130), 1, + STATE(2100), 1, aux_sym__map_rhs_repeat1, - STATE(2307), 1, + STATE(2363), 1, sym__immediate_keycode, - [73410] = 6, + [75286] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6096), 1, - aux_sym_command_argument_token1, - ACTIONS(6102), 1, - sym_string_literal, - STATE(2050), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2291), 1, - sym_command_argument, - ACTIONS(6202), 2, + STATE(2137), 1, + aux_sym__syn_sync_repeat1, + STATE(2367), 1, + sym__syn_sync_lines, + ACTIONS(6229), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(6290), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [73430] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6204), 1, - anon_sym_LBRACE, - ACTIONS(6206), 1, - aux_sym_identifier_token1, - ACTIONS(6208), 1, - sym_integer_literal, - STATE(1533), 1, - sym__curly_braces_name_expression, - STATE(1766), 2, - sym_identifier, - sym__sign_name, - [73450] = 2, + [75304] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6210), 6, + STATE(2076), 1, + aux_sym__syn_sync_repeat1, + STATE(2275), 1, + sym__syn_sync_lines, + ACTIONS(6231), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(6377), 2, sym__newline_or_pipe, sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [73462] = 7, + [75322] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5740), 1, - anon_sym_buffer, - ACTIONS(5742), 1, - anon_sym_group, - ACTIONS(5900), 1, - aux_sym__map_rhs_token4, - ACTIONS(6126), 1, - anon_sym_file, - STATE(2025), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2135), 1, - sym__sign_unplace_id_argument, - [73484] = 2, + STATE(2151), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2315), 1, + sym_command_argument, + ACTIONS(6064), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6379), 2, + sym__newline_or_pipe, + sym_comment, + [75340] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6186), 6, + STATE(2175), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2315), 1, + sym_command_argument, + ACTIONS(6064), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6381), 2, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, - [73496] = 6, + [75358] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(209), 1, - sym__catch, - ACTIONS(211), 1, - sym__finally, - ACTIONS(6212), 1, - sym__endtry, - STATE(3206), 1, - sym_finally_statement, - STATE(2131), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [73516] = 7, + STATE(2176), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2315), 1, + sym_command_argument, + ACTIONS(6064), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6383), 2, + sym__newline_or_pipe, + sym_comment, + [75376] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5738), 1, - aux_sym__map_rhs_token4, - ACTIONS(5740), 1, - anon_sym_buffer, - ACTIONS(5742), 1, - anon_sym_group, - ACTIONS(6126), 1, - anon_sym_file, - STATE(2037), 1, - aux_sym__sign_unplace_id_repeat1, - STATE(2135), 1, - sym__sign_unplace_id_argument, - [73538] = 7, + STATE(2175), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2315), 1, + sym_command_argument, + ACTIONS(6064), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6385), 2, + sym__newline_or_pipe, + sym_comment, + [75394] = 7, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1087), 1, anon_sym_LT, ACTIONS(1089), 1, anon_sym_BSLASH2, - ACTIONS(5752), 1, + ACTIONS(5919), 1, aux_sym__map_rhs_token4, - ACTIONS(6214), 1, + ACTIONS(6387), 1, aux_sym__map_rhs_token2, - STATE(2044), 1, + STATE(2099), 1, aux_sym__map_rhs_repeat1, - STATE(2307), 1, + STATE(2363), 1, sym__immediate_keycode, - [73560] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5946), 1, - aux_sym__map_rhs_token4, - ACTIONS(5948), 1, - anon_sym_buffer, - ACTIONS(5950), 1, - anon_sym_group, - ACTIONS(6043), 1, - anon_sym_file, - STATE(2038), 1, - aux_sym__sign_place_list, - STATE(2142), 1, - sym__sign_place_list_argument, - [73582] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6216), 1, - anon_sym_BSLASH_AMP, - STATE(2030), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 4, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - [73598] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6112), 1, - anon_sym_BSLASH, - ACTIONS(6116), 1, - aux_sym_filename_token3, - STATE(2167), 1, - sym_filename, - ACTIONS(6114), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [73616] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6218), 1, - anon_sym_LBRACE, - ACTIONS(6220), 1, - aux_sym_identifier_token1, - ACTIONS(6222), 1, - sym_integer_literal, - STATE(1568), 1, - sym__curly_braces_name_expression, - STATE(1661), 2, - sym_identifier, - sym__sign_name, - [73636] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5504), 1, - aux_sym_identifier_token1, - ACTIONS(6224), 1, - sym_integer_literal, - STATE(1534), 1, - sym__curly_braces_name_expression, - STATE(2618), 2, - sym_identifier, - sym__sign_name, - [73656] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(209), 1, - sym__catch, - ACTIONS(211), 1, - sym__finally, - ACTIONS(6226), 1, - sym__endtry, - STATE(3238), 1, - sym_finally_statement, - STATE(2131), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [73676] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(217), 1, - sym__elseif, - ACTIONS(219), 1, - sym__else, - ACTIONS(6228), 1, - sym__endif, - STATE(3239), 1, - sym_else_statement, - STATE(2206), 2, - sym_elseif_statement, - aux_sym_if_statement_repeat1, - [73696] = 5, + [75416] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6230), 1, + ACTIONS(6389), 1, anon_sym_BSLASH, - ACTIONS(6234), 1, + ACTIONS(6393), 1, aux_sym_filename_token3, - STATE(2202), 1, + STATE(2205), 1, sym_filename, - ACTIONS(6232), 3, + ACTIONS(6391), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [73714] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6049), 1, - sym_bang, - ACTIONS(6051), 1, - aux_sym__map_rhs_token4, - ACTIONS(6077), 1, - sym__normal, - ACTIONS(6236), 1, - anon_sym_COLON, - ACTIONS(6238), 1, - sym__source, - STATE(1932), 1, - sym__bang_filter_bangs, - [73736] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6240), 6, - sym__newline_or_pipe, - sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [73748] = 2, + [75434] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6242), 6, + STATE(13), 1, + sym__cmd_separator, + STATE(2444), 1, + sym__au_pattern, + ACTIONS(6395), 2, + aux_sym__au_pattern_token1, + aux_sym__au_pattern_token2, + ACTIONS(6397), 2, sym__newline_or_pipe, sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [73760] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6112), 1, - anon_sym_BSLASH, - ACTIONS(6116), 1, - aux_sym_filename_token3, - STATE(2153), 1, - sym_filename, - ACTIONS(6114), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [73778] = 5, + [75452] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6230), 1, + ACTIONS(5952), 1, + aux_sym__map_rhs_token4, + ACTIONS(6187), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(6189), 1, anon_sym_BSLASH, - ACTIONS(6234), 1, - aux_sym_filename_token3, - STATE(2203), 1, - sym_filename, - ACTIONS(6232), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [73796] = 2, + ACTIONS(6193), 1, + sym_string_literal, + STATE(2150), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [75472] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6169), 6, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, + STATE(2137), 1, + aux_sym__syn_sync_repeat1, + STATE(2367), 1, + sym__syn_sync_lines, + ACTIONS(6229), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(6245), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [73808] = 7, + [75490] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5962), 1, + ACTIONS(5983), 1, aux_sym__map_rhs_token4, - ACTIONS(5964), 1, - anon_sym_buffer, - ACTIONS(5966), 1, - anon_sym_group, - ACTIONS(6124), 1, - anon_sym_file, - STATE(2032), 1, - aux_sym__sign_jump_repeat1, - STATE(2136), 1, - sym__sign_jump_argument, - [73830] = 5, + ACTIONS(6399), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(6402), 1, + anon_sym_BSLASH, + ACTIONS(6405), 1, + sym_string_literal, + STATE(2150), 2, + sym__bang_filter_command_argument, + aux_sym__bang_filter_command_repeat1, + [75510] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(2121), 1, + STATE(2175), 1, aux_sym_unknown_builtin_statement_repeat1, - STATE(2236), 1, + STATE(2315), 1, sym_command_argument, - ACTIONS(5760), 2, + ACTIONS(6064), 2, sym_string_literal, aux_sym_command_argument_token1, - ACTIONS(6244), 2, + ACTIONS(6408), 2, sym__newline_or_pipe, sym_comment, - [73848] = 5, + [75528] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(2110), 1, - aux_sym__syn_sync_repeat1, - STATE(2308), 1, - sym__syn_sync_lines, - ACTIONS(6132), 2, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(6246), 2, + ACTIONS(821), 1, + aux_sym_identifier_token1, + ACTIONS(819), 5, + sym__scope_dict, + anon_sym_a_COLON, + anon_sym_LBRACE, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [73866] = 5, + [75542] = 6, ACTIONS(3), 1, sym__line_continuation, - STATE(2027), 1, + ACTIONS(6159), 1, + aux_sym_command_argument_token1, + ACTIONS(6165), 1, + sym_string_literal, + STATE(2129), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2370), 1, + sym_command_argument, + ACTIONS(6410), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [75562] = 5, + ACTIONS(3), 1, + sym__line_continuation, + STATE(2139), 1, aux_sym__syn_sync_repeat1, - STATE(2308), 1, + STATE(2367), 1, sym__syn_sync_lines, - ACTIONS(6132), 2, + ACTIONS(6229), 2, anon_sym_minlines, anon_sym_maxlines, - ACTIONS(6248), 2, + ACTIONS(6233), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [73884] = 5, + [75580] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5541), 1, - anon_sym_BSLASH, - ACTIONS(5547), 1, + ACTIONS(6159), 1, + aux_sym_command_argument_token1, + ACTIONS(6165), 1, + sym_string_literal, + STATE(2130), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2370), 1, + sym_command_argument, + ACTIONS(6412), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [75600] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5437), 1, aux_sym_filename_token3, - STATE(2609), 1, + ACTIONS(6081), 1, + anon_sym_BSLASH, + STATE(2824), 1, sym_filename, - ACTIONS(5545), 3, + ACTIONS(5435), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [73902] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5844), 1, - aux_sym__map_rhs_token4, - ACTIONS(5964), 1, - anon_sym_buffer, - ACTIONS(5966), 1, - anon_sym_group, - ACTIONS(6124), 1, - anon_sym_file, - STATE(2024), 1, - aux_sym__sign_jump_repeat1, - STATE(2136), 1, - sym__sign_jump_argument, - [73924] = 5, + [75618] = 7, ACTIONS(3), 1, sym__line_continuation, - STATE(2121), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2236), 1, - sym_command_argument, - ACTIONS(5760), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(6250), 2, - sym__newline_or_pipe, - sym_comment, - [73942] = 2, + ACTIONS(5557), 1, + anon_sym_LBRACE, + ACTIONS(5621), 1, + aux_sym_identifier_token1, + ACTIONS(6414), 1, + sym_spread, + STATE(1623), 1, + sym__curly_braces_name_expression, + STATE(2616), 1, + sym_default_parameter, + STATE(3163), 1, + sym_identifier, + [75640] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6252), 6, - sym__newline_or_pipe, - sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [73954] = 6, + ACTIONS(6330), 1, + anon_sym_LBRACE, + ACTIONS(6332), 1, + aux_sym_identifier_token1, + ACTIONS(6416), 1, + sym_integer_literal, + STATE(1497), 1, + sym__curly_braces_name_expression, + STATE(1752), 2, + sym_identifier, + sym__sign_name, + [75660] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5902), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5904), 1, - anon_sym_BSLASH, - ACTIONS(5908), 1, - sym_string_literal, - ACTIONS(6073), 1, + STATE(2071), 1, + aux_sym__syn_sync_repeat1, + STATE(2367), 1, + sym__syn_sync_lines, + ACTIONS(6229), 2, + anon_sym_minlines, + anon_sym_maxlines, + ACTIONS(6377), 2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - STATE(2093), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [73974] = 5, + [75678] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6230), 1, + ACTIONS(6260), 1, anon_sym_BSLASH, - ACTIONS(6234), 1, + ACTIONS(6264), 1, aux_sym_filename_token3, - STATE(2219), 1, + STATE(2246), 1, sym_filename, - ACTIONS(6232), 3, + ACTIONS(6262), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [73992] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(209), 1, - sym__catch, - ACTIONS(211), 1, - sym__finally, - ACTIONS(6254), 1, - sym__endtry, - STATE(2959), 1, - sym_finally_statement, - STATE(2131), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [74012] = 6, + [75696] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5902), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5904), 1, + ACTIONS(6307), 1, anon_sym_BSLASH, - ACTIONS(5908), 1, - sym_string_literal, - ACTIONS(6073), 1, - aux_sym__map_rhs_token4, - STATE(2090), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [74032] = 7, + ACTIONS(6311), 1, + aux_sym_filename_token3, + STATE(2245), 1, + sym_filename, + ACTIONS(6309), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [75714] = 7, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5374), 1, + ACTIONS(5557), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5621), 1, aux_sym_identifier_token1, - ACTIONS(6256), 1, + ACTIONS(5829), 1, sym_spread, - STATE(1534), 1, + STATE(1623), 1, sym__curly_braces_name_expression, - STATE(2888), 1, + STATE(2616), 1, sym_default_parameter, - STATE(2977), 1, + STATE(3163), 1, sym_identifier, - [74054] = 3, + [75736] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5748), 1, - aux_sym_filename_token3, - ACTIONS(5746), 5, + ACTIONS(6389), 1, anon_sym_BSLASH, - aux_sym__map_rhs_token4, + ACTIONS(6393), 1, + aux_sym_filename_token3, + STATE(2229), 1, + sym_filename, + ACTIONS(6391), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [74068] = 6, + [75754] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5772), 1, - aux_sym__map_rhs_token4, - ACTIONS(6258), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(6261), 1, + ACTIONS(6260), 1, anon_sym_BSLASH, ACTIONS(6264), 1, - sym_string_literal, - STATE(2090), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [74088] = 5, + aux_sym_filename_token3, + STATE(2245), 1, + sym_filename, + ACTIONS(6262), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [75772] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(2101), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2236), 1, - sym_command_argument, - ACTIONS(5760), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(6267), 2, - sym__newline_or_pipe, - sym_comment, - [74106] = 5, + ACTIONS(6418), 1, + anon_sym_BSLASH, + ACTIONS(6422), 1, + aux_sym_filename_token3, + STATE(1887), 1, + sym_filename, + ACTIONS(6420), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [75790] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(2121), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2236), 1, - sym_command_argument, - ACTIONS(5760), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(6269), 2, + ACTIONS(6424), 6, sym__newline_or_pipe, sym_comment, - [74124] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5779), 1, - aux_sym__map_rhs_token4, - ACTIONS(5902), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5904), 1, - anon_sym_BSLASH, - ACTIONS(5908), 1, - sym_string_literal, - STATE(2090), 2, - sym__bang_filter_command_argument, - aux_sym__bang_filter_command_repeat1, - [74144] = 5, + anon_sym_dict, + anon_sym_range, + anon_sym_abort, + anon_sym_closure, + [75802] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6271), 1, - anon_sym_BSLASH, - ACTIONS(6275), 1, + ACTIONS(6428), 1, + sym_bang, + ACTIONS(6430), 1, aux_sym_filename_token3, - STATE(2154), 1, - sym_filename, - ACTIONS(6273), 3, + ACTIONS(6426), 4, + anon_sym_BSLASH, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [74162] = 6, + [75818] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6277), 1, + ACTIONS(6432), 1, anon_sym_LBRACE, - ACTIONS(6279), 1, + ACTIONS(6434), 1, aux_sym_identifier_token1, - ACTIONS(6281), 1, + ACTIONS(6436), 1, sym_integer_literal, - STATE(1512), 1, + STATE(1524), 1, sym__curly_braces_name_expression, - STATE(1873), 2, + STATE(1887), 2, sym_identifier, sym__sign_name, - [74182] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(13), 1, - sym__cmd_separator, - STATE(2496), 1, - sym__au_pattern, - ACTIONS(6283), 2, - aux_sym__au_pattern_token1, - aux_sym__au_pattern_token2, - ACTIONS(6285), 2, - sym__newline_or_pipe, - sym_comment, - [74200] = 2, + [75838] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6287), 6, - sym__newline_or_pipe, - sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [74212] = 7, + ACTIONS(6389), 1, + anon_sym_BSLASH, + ACTIONS(6393), 1, + aux_sym_filename_token3, + STATE(2188), 1, + sym_filename, + ACTIONS(6391), 3, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [75856] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5374), 1, + ACTIONS(5557), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5621), 1, aux_sym_identifier_token1, - ACTIONS(6289), 1, - sym_spread, - STATE(1534), 1, + ACTIONS(6438), 1, + sym_integer_literal, + STATE(1623), 1, sym__curly_braces_name_expression, - STATE(2888), 1, - sym_default_parameter, - STATE(2977), 1, + STATE(2654), 2, sym_identifier, - [74234] = 5, + sym__sign_name, + [75876] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(217), 1, + sym__catch, + ACTIONS(219), 1, + sym__finally, + ACTIONS(6440), 1, + sym__endtry, + STATE(3266), 1, + sym_finally_statement, + STATE(2218), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [75896] = 6, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(217), 1, + sym__catch, + ACTIONS(219), 1, + sym__finally, + ACTIONS(6442), 1, + sym__endtry, + STATE(2974), 1, + sym_finally_statement, + STATE(2218), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [75916] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6271), 1, + ACTIONS(6307), 1, anon_sym_BSLASH, - ACTIONS(6275), 1, + ACTIONS(6311), 1, aux_sym_filename_token3, - STATE(2153), 1, + STATE(2246), 1, sym_filename, - ACTIONS(6273), 3, + ACTIONS(6309), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [74252] = 5, + [75934] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6291), 1, + ACTIONS(5761), 1, anon_sym_BSLASH, - ACTIONS(6295), 1, + ACTIONS(5767), 1, aux_sym_filename_token3, - STATE(1873), 1, + STATE(2824), 1, sym_filename, - ACTIONS(6293), 3, + ACTIONS(5765), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [74270] = 5, + [75952] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(2121), 1, + STATE(2175), 1, aux_sym_unknown_builtin_statement_repeat1, - STATE(2236), 1, + STATE(2315), 1, sym_command_argument, - ACTIONS(5760), 2, + ACTIONS(6444), 2, sym_string_literal, aux_sym_command_argument_token1, - ACTIONS(6297), 2, + ACTIONS(6447), 2, sym__newline_or_pipe, sym_comment, - [74288] = 7, + [75970] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6110), 1, - aux_sym__map_rhs_token4, - ACTIONS(6118), 1, - aux_sym_command_argument_token1, - ACTIONS(6122), 1, - sym_string_literal, - ACTIONS(6299), 1, - sym_bang, - STATE(2171), 1, + STATE(2175), 1, aux_sym_unknown_builtin_statement_repeat1, - STATE(2433), 1, + STATE(2315), 1, sym_command_argument, - [74310] = 5, - ACTIONS(3), 1, - sym__line_continuation, - STATE(2114), 1, - aux_sym__syn_sync_repeat1, - STATE(2247), 1, - sym__syn_sync_lines, - ACTIONS(6246), 2, + ACTIONS(6064), 2, + sym_string_literal, + aux_sym_command_argument_token1, + ACTIONS(6449), 2, sym__newline_or_pipe, sym_comment, - ACTIONS(6301), 2, - anon_sym_minlines, - anon_sym_maxlines, - [74328] = 5, + [75988] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(2110), 1, - aux_sym__syn_sync_repeat1, - STATE(2308), 1, - sym__syn_sync_lines, - ACTIONS(6132), 2, + ACTIONS(5112), 5, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, anon_sym_minlines, anon_sym_maxlines, - ACTIONS(6303), 2, + anon_sym_BSLASH_RPAREN, + [75999] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6030), 5, + anon_sym_LT, + anon_sym_BSLASH2, + aux_sym__map_rhs_token2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [74346] = 5, + [76010] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(2114), 1, - aux_sym__syn_sync_repeat1, - STATE(2247), 1, - sym__syn_sync_lines, - ACTIONS(6130), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(6301), 2, - anon_sym_minlines, - anon_sym_maxlines, - [74364] = 5, + ACTIONS(6453), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + ACTIONS(6451), 3, + anon_sym_default, + anon_sym_toplevel, + anon_sym_notoplevel, + [76023] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(2077), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2236), 1, - sym_command_argument, - ACTIONS(5760), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(6305), 2, - sym__newline_or_pipe, - sym_comment, - [74382] = 5, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(6457), 1, + sym_hl_group, + STATE(3277), 1, + sym_at, + ACTIONS(6455), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [76040] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(2078), 1, - aux_sym__syn_sync_repeat1, - STATE(2308), 1, - sym__syn_sync_lines, - ACTIONS(6132), 2, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(6307), 2, + ACTIONS(3820), 5, + anon_sym_LT, + anon_sym_BSLASH2, + aux_sym__map_rhs_token2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [74400] = 5, + [76051] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(2114), 1, - aux_sym__syn_sync_repeat1, - STATE(2247), 1, - sym__syn_sync_lines, - ACTIONS(6301), 2, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(6303), 2, + ACTIONS(815), 1, + sym_au_event, + ACTIONS(813), 4, sym__newline_or_pipe, sym_comment, - [74418] = 6, + anon_sym_LBRACE2, + aux_sym_identifier_token2, + [76064] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6204), 1, - anon_sym_LBRACE, - ACTIONS(6206), 1, - aux_sym_identifier_token1, - ACTIONS(6309), 1, - sym_integer_literal, - STATE(1533), 1, - sym__curly_braces_name_expression, - STATE(1741), 2, - sym_identifier, - sym__sign_name, - [74438] = 5, + ACTIONS(835), 1, + sym_au_event, + ACTIONS(833), 4, + sym__newline_or_pipe, + sym_comment, + anon_sym_LBRACE2, + aux_sym_identifier_token2, + [76077] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(2110), 1, - aux_sym__syn_sync_repeat1, - STATE(2308), 1, - sym__syn_sync_lines, - ACTIONS(6311), 2, + STATE(2260), 1, + aux_sym_pattern_repeat1, + ACTIONS(5147), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(6313), 2, anon_sym_minlines, anon_sym_maxlines, - [74456] = 5, + [76090] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5397), 1, + ACTIONS(6461), 1, aux_sym_filename_token3, - ACTIONS(5910), 1, + ACTIONS(6459), 4, anon_sym_BSLASH, - STATE(2609), 1, - sym_filename, - ACTIONS(5395), 3, aux_sym_filename_token1, aux_sym_filename_token2, aux_sym_filename_token4, - [74474] = 5, + [76103] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(2103), 1, - aux_sym__syn_sync_repeat1, - STATE(2247), 1, - sym__syn_sync_lines, - ACTIONS(6301), 2, - anon_sym_minlines, - anon_sym_maxlines, - ACTIONS(6307), 2, - sym__newline_or_pipe, - sym_comment, - [74492] = 6, + ACTIONS(3781), 5, + anon_sym_LT, + anon_sym_BSLASH2, + aux_sym__map_rhs_token2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [76114] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(209), 1, - sym__catch, - ACTIONS(211), 1, - sym__finally, - ACTIONS(6316), 1, - sym__endtry, - STATE(3097), 1, - sym_finally_statement, - STATE(2131), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [74512] = 5, + ACTIONS(5557), 1, + anon_sym_LBRACE, + ACTIONS(5621), 1, + aux_sym_identifier_token1, + ACTIONS(6463), 1, + sym_bang, + STATE(1623), 1, + sym__curly_braces_name_expression, + STATE(2928), 1, + sym_identifier, + [76133] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(2114), 1, - aux_sym__syn_sync_repeat1, - STATE(2247), 1, - sym__syn_sync_lines, - ACTIONS(6311), 2, + ACTIONS(6465), 5, sym__newline_or_pipe, sym_comment, - ACTIONS(6318), 2, - anon_sym_minlines, - anon_sym_maxlines, - [74530] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6271), 1, - anon_sym_BSLASH, - ACTIONS(6275), 1, - aux_sym_filename_token3, - STATE(2167), 1, - sym_filename, - ACTIONS(6273), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74548] = 5, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [76144] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5318), 1, - anon_sym_BSLASH, - ACTIONS(5324), 1, - aux_sym_filename_token3, - STATE(2849), 1, - sym_filename, - ACTIONS(5322), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74566] = 5, + ACTIONS(787), 1, + anon_sym_in, + ACTIONS(6467), 1, + anon_sym_LBRACE2, + ACTIONS(6469), 1, + aux_sym_identifier_token2, + STATE(2201), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + [76161] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(2105), 1, - aux_sym__syn_sync_repeat1, - STATE(2247), 1, - sym__syn_sync_lines, - ACTIONS(6248), 2, + ACTIONS(5112), 5, sym__newline_or_pipe, sym_comment, - ACTIONS(6301), 2, + anon_sym_BSLASH_PIPE, anon_sym_minlines, anon_sym_maxlines, - [74584] = 7, + [76172] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1081), 1, - aux_sym__map_rhs_token4, - ACTIONS(1087), 1, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(5751), 1, + aux_sym_identifier_token1, + ACTIONS(6471), 1, + sym_bang, + STATE(1999), 1, + sym__curly_braces_name_expression, + STATE(2684), 1, + sym_identifier, + [76191] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3820), 1, + aux_sym__map_rhs_token2, + ACTIONS(3818), 4, + sym__newline_or_pipe, + sym_comment, anon_sym_LT, - ACTIONS(1089), 1, anon_sym_BSLASH2, - ACTIONS(1091), 1, - aux_sym__map_rhs_token2, - STATE(2061), 1, - aux_sym__map_rhs_repeat1, - STATE(2307), 1, - sym__immediate_keycode, - [74606] = 3, + [76204] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(831), 1, - aux_sym_identifier_token1, - ACTIONS(829), 5, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(2215), 1, + aux_sym__syn_region_repeat2, + ACTIONS(6473), 2, sym__newline_or_pipe, - sym__scope_dict, sym_comment, - anon_sym_a_COLON, - anon_sym_LBRACE, - [74620] = 2, + [76221] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6321), 6, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(2215), 1, + aux_sym__syn_region_repeat2, + ACTIONS(6475), 2, sym__newline_or_pipe, sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [74632] = 5, + [76238] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(2121), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2236), 1, - sym_command_argument, - ACTIONS(6323), 2, - sym_string_literal, - aux_sym_command_argument_token1, - ACTIONS(6326), 2, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(2215), 1, + aux_sym__syn_region_repeat2, + ACTIONS(6477), 2, sym__newline_or_pipe, sym_comment, - [74650] = 6, + [76255] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(217), 1, - sym__elseif, - ACTIONS(219), 1, - sym__else, - ACTIONS(6328), 1, - sym__endif, - STATE(3219), 1, - sym_else_statement, - STATE(2206), 2, - sym_elseif_statement, - aux_sym_if_statement_repeat1, - [74670] = 3, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(2215), 1, + aux_sym__syn_region_repeat2, + ACTIONS(6479), 2, + sym__newline_or_pipe, + sym_comment, + [76272] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(831), 1, - aux_sym_identifier_token1, - ACTIONS(829), 5, - sym__scope_dict, - anon_sym_a_COLON, - anon_sym_LBRACE, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [74684] = 2, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(2215), 1, + aux_sym__syn_region_repeat2, + ACTIONS(6481), 2, + sym__newline_or_pipe, + sym_comment, + [76289] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6330), 6, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(2215), 1, + aux_sym__syn_region_repeat2, + ACTIONS(6483), 2, sym__newline_or_pipe, sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [74696] = 2, + [76306] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6332), 6, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(2215), 1, + aux_sym__syn_region_repeat2, + ACTIONS(6485), 2, sym__newline_or_pipe, sym_comment, - anon_sym_dict, - anon_sym_range, - anon_sym_abort, - anon_sym_closure, - [74708] = 6, + [76323] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6334), 1, - anon_sym_LBRACE, - ACTIONS(6336), 1, - aux_sym_identifier_token1, - ACTIONS(6338), 1, - sym_integer_literal, - STATE(1510), 1, - sym__curly_braces_name_expression, - STATE(1818), 2, - sym_identifier, - sym__sign_name, - [74728] = 7, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(2215), 1, + aux_sym__syn_region_repeat2, + ACTIONS(6487), 2, + sym__newline_or_pipe, + sym_comment, + [76340] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(795), 1, + anon_sym_in, + ACTIONS(6467), 1, + anon_sym_LBRACE2, + ACTIONS(6489), 1, + aux_sym_identifier_token2, + STATE(2240), 2, + sym__immediate_curly_braces_name_expression, + aux_sym_identifier_repeat1, + [76357] = 6, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5374), 1, + ACTIONS(5557), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5621), 1, aux_sym_identifier_token1, - ACTIONS(6340), 1, - sym_spread, - STATE(1534), 1, + STATE(1623), 1, sym__curly_braces_name_expression, - STATE(2888), 1, + STATE(2616), 1, sym_default_parameter, - STATE(2977), 1, + STATE(3163), 1, sym_identifier, - [74750] = 5, + [76376] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6342), 1, - anon_sym_BSLASH, - ACTIONS(6346), 1, - aux_sym_filename_token3, - STATE(1818), 1, - sym_filename, - ACTIONS(6344), 3, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [74768] = 2, + ACTIONS(6493), 1, + sym__let_heredoc_marker, + ACTIONS(6491), 2, + anon_sym_trim, + anon_sym_eval, + STATE(2239), 2, + sym__let_heredoc_parameter, + aux_sym__let_heredoc_repeat1, + [76391] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1259), 6, + ACTIONS(3781), 1, + aux_sym__map_rhs_token2, + ACTIONS(3779), 4, sym__newline_or_pipe, sym_comment, - sym__normal, - sym__source, - anon_sym_COLON, - sym_bang, - [74780] = 7, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1087), 1, anon_sym_LT, - ACTIONS(1089), 1, anon_sym_BSLASH2, - ACTIONS(6010), 1, - aux_sym__map_rhs_token4, - ACTIONS(6214), 1, - aux_sym__map_rhs_token2, - STATE(2044), 1, - aux_sym__map_rhs_repeat1, - STATE(2307), 1, - sym__immediate_keycode, - [74802] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6348), 1, - sym__catch, - ACTIONS(6351), 2, - sym__finally, - sym__endtry, - STATE(2131), 2, - sym_catch_statement, - aux_sym_try_statement_repeat1, - [74817] = 4, + [76404] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6353), 1, - anon_sym_BSLASH_AMP, - STATE(2132), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 3, + ACTIONS(6495), 5, sym__newline_or_pipe, sym_comment, - anon_sym_BSLASH_PIPE, - [74832] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(795), 1, - anon_sym_in, - ACTIONS(6356), 1, - anon_sym_LBRACE2, - ACTIONS(6359), 1, - aux_sym_identifier_token2, - STATE(2133), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - [74849] = 2, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [76415] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6362), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(6497), 5, + sym__newline_or_pipe, + sym_comment, anon_sym_contains, anon_sym_add, anon_sym_remove, - [74860] = 2, + [76426] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6364), 5, - anon_sym_BSLASH_PIPE, + ACTIONS(6352), 1, aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [74871] = 2, + STATE(2208), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2433), 1, + sym_command_argument, + ACTIONS(6296), 2, + sym_string_literal, + aux_sym_command_argument_token1, + [76443] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6366), 5, - anon_sym_BSLASH_PIPE, + ACTIONS(6357), 1, aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [74882] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5611), 2, - aux_sym__bang_filter_command_argument_token1, - anon_sym_BSLASH, - ACTIONS(5615), 3, + STATE(2208), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2433), 1, + sym_command_argument, + ACTIONS(6499), 2, sym_string_literal, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [74895] = 6, + aux_sym_command_argument_token1, + [76460] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5426), 1, - anon_sym_LBRACE, - ACTIONS(5581), 1, - aux_sym_identifier_token1, - ACTIONS(6368), 1, - sym_bang, - STATE(1931), 1, - sym__curly_braces_name_expression, - STATE(2717), 1, - sym_identifier, - [74914] = 2, + ACTIONS(6370), 1, + aux_sym__map_rhs_token4, + STATE(2208), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2433), 1, + sym_command_argument, + ACTIONS(6296), 2, + sym_string_literal, + aux_sym_command_argument_token1, + [76477] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5987), 5, - anon_sym_LT, - anon_sym_BSLASH2, - aux_sym__map_rhs_token2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [74925] = 4, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(2215), 1, + aux_sym__syn_region_repeat2, + ACTIONS(6502), 2, + sym__newline_or_pipe, + sym_comment, + [76494] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6372), 1, + ACTIONS(6504), 1, sym__let_heredoc_marker, - ACTIONS(6370), 2, + ACTIONS(6491), 2, anon_sym_trim, anon_sym_eval, - STATE(2211), 2, + STATE(2203), 2, sym__let_heredoc_parameter, aux_sym__let_heredoc_repeat1, - [74940] = 4, + [76509] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6374), 1, - sym__let_heredoc_marker, - ACTIONS(6370), 2, - anon_sym_trim, - anon_sym_eval, - STATE(2140), 2, - sym__let_heredoc_parameter, - aux_sym__let_heredoc_repeat1, - [74955] = 2, + ACTIONS(6372), 1, + aux_sym__map_rhs_token4, + STATE(2208), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2433), 1, + sym_command_argument, + ACTIONS(6296), 2, + sym_string_literal, + aux_sym_command_argument_token1, + [76526] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6376), 5, - anon_sym_BSLASH_PIPE, + ACTIONS(6410), 1, aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [74966] = 5, + STATE(2207), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2433), 1, + sym_command_argument, + ACTIONS(6296), 2, + sym_string_literal, + aux_sym_command_argument_token1, + [76543] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2919), 1, + ACTIONS(6412), 1, + aux_sym__map_rhs_token4, + STATE(2208), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2433), 1, + sym_command_argument, + ACTIONS(6296), 2, + sym_string_literal, + aux_sym_command_argument_token1, + [76560] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6506), 1, anon_sym_end, - STATE(930), 1, + STATE(905), 1, sym__syn_region_end, - STATE(2150), 1, + STATE(2215), 1, aux_sym__syn_region_repeat2, - ACTIONS(6378), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [74983] = 2, + ACTIONS(6509), 2, + sym__newline_or_pipe, + sym_comment, + [76577] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6380), 5, - anon_sym_LT, - anon_sym_BSLASH2, - aux_sym__map_rhs_token2, - anon_sym_BSLASH_PIPE, + ACTIONS(6225), 1, aux_sym__map_rhs_token4, - [74994] = 4, + STATE(2209), 1, + aux_sym_unknown_builtin_statement_repeat1, + STATE(2433), 1, + sym_command_argument, + ACTIONS(6296), 2, + sym_string_literal, + aux_sym_command_argument_token1, + [76594] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(2215), 1, + aux_sym__syn_region_repeat2, + ACTIONS(6511), 2, + sym__newline_or_pipe, + sym_comment, + [76611] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6513), 1, + sym__catch, + ACTIONS(6516), 2, + sym__finally, + sym__endtry, + STATE(2218), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [76626] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6382), 1, + ACTIONS(6518), 5, anon_sym_BSLASH_PIPE, - STATE(2200), 1, - aux_sym_pattern_repeat1, - ACTIONS(5042), 3, aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - [75009] = 5, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [76637] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2919), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(930), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2150), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6384), 2, + ACTIONS(6473), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [75026] = 4, + [76654] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2931), 1, + anon_sym_end, + STATE(905), 1, + sym__syn_region_end, + STATE(2215), 1, + aux_sym__syn_region_repeat2, + ACTIONS(6520), 2, + sym__newline_or_pipe, + sym_comment, + [76671] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6386), 1, + ACTIONS(6522), 1, sym__let_heredoc_marker, - ACTIONS(6370), 2, + ACTIONS(6491), 2, anon_sym_trim, anon_sym_eval, - STATE(2204), 2, + STATE(2239), 2, sym__let_heredoc_parameter, aux_sym__let_heredoc_repeat1, - [75041] = 2, + [76686] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6362), 5, + ACTIONS(6453), 2, sym__newline_or_pipe, sym_comment, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [75052] = 5, + ACTIONS(6524), 3, + anon_sym_default, + anon_sym_toplevel, + anon_sym_notoplevel, + [76699] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2919), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(930), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2150), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6388), 2, + ACTIONS(6475), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [75069] = 5, + [76716] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6392), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(930), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2150), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6390), 2, + ACTIONS(6477), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [75086] = 5, + [76733] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2919), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(930), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2150), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6395), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [75103] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6397), 5, + ACTIONS(6479), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_contains, - anon_sym_add, - anon_sym_remove, - [75114] = 2, + [76750] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6399), 5, + ACTIONS(6526), 1, anon_sym_BSLASH_PIPE, + STATE(2261), 1, + aux_sym_pattern_repeat1, + ACTIONS(5050), 3, aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [75125] = 2, + anon_sym_minlines, + anon_sym_maxlines, + [76765] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6401), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [75136] = 2, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(6528), 1, + sym_hl_group, + STATE(3061), 1, + sym_at, + ACTIONS(6455), 2, + sym__newline_or_pipe, + sym_comment, + [76782] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6376), 5, + ACTIONS(6518), 5, sym__newline_or_pipe, sym_comment, anon_sym_buffer, anon_sym_group, anon_sym_file, - [75147] = 5, + [76793] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2919), 1, + ACTIONS(2931), 1, anon_sym_end, - STATE(930), 1, + STATE(905), 1, sym__syn_region_end, - STATE(2150), 1, + STATE(2215), 1, aux_sym__syn_region_repeat2, - ACTIONS(6403), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [75164] = 5, + ACTIONS(6530), 2, + sym__newline_or_pipe, + sym_comment, + [76810] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2919), 1, - anon_sym_end, - STATE(930), 1, - sym__syn_region_end, - STATE(2150), 1, - aux_sym__syn_region_repeat2, - ACTIONS(6405), 2, + ACTIONS(6532), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [75181] = 5, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [76821] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2919), 1, - anon_sym_end, - STATE(930), 1, - sym__syn_region_end, - STATE(2150), 1, - aux_sym__syn_region_repeat2, - ACTIONS(6407), 2, + ACTIONS(6526), 1, anon_sym_BSLASH_PIPE, + STATE(2227), 1, + aux_sym_pattern_repeat1, + ACTIONS(5147), 3, aux_sym__map_rhs_token4, - [75198] = 5, + anon_sym_minlines, + anon_sym_maxlines, + [76836] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2919), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(930), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2150), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6409), 2, + ACTIONS(6481), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [75215] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6364), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [75226] = 5, + [76853] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2919), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(930), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2150), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6411), 2, + ACTIONS(6483), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [75243] = 5, + [76870] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2919), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(930), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2150), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6413), 2, + ACTIONS(6485), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [75260] = 5, + [76887] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2919), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(930), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2150), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6415), 2, + ACTIONS(6487), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [75277] = 2, + [76904] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6366), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [75288] = 3, + ACTIONS(6536), 1, + aux_sym_filename_token3, + ACTIONS(6534), 4, + anon_sym_BSLASH, + aux_sym_filename_token1, + aux_sym_filename_token2, + aux_sym_filename_token4, + [76917] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6380), 1, + ACTIONS(6030), 1, aux_sym__map_rhs_token2, - ACTIONS(6417), 4, + ACTIONS(6105), 4, sym__newline_or_pipe, sym_comment, anon_sym_LT, anon_sym_BSLASH2, - [75301] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2919), 1, - anon_sym_end, - STATE(930), 1, - sym__syn_region_end, - STATE(2150), 1, - aux_sym__syn_region_repeat2, - ACTIONS(6419), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [75318] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6421), 5, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [75329] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6202), 1, - aux_sym__map_rhs_token4, - STATE(2173), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2433), 1, - sym_command_argument, - ACTIONS(6122), 2, - sym_string_literal, - aux_sym_command_argument_token1, - [75346] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6128), 1, - aux_sym__map_rhs_token4, - STATE(2182), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2433), 1, - sym_command_argument, - ACTIONS(6122), 2, - sym_string_literal, - aux_sym_command_argument_token1, - [75363] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6198), 1, - aux_sym__map_rhs_token4, - STATE(2174), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2433), 1, - sym_command_argument, - ACTIONS(6122), 2, - sym_string_literal, - aux_sym_command_argument_token1, - [75380] = 5, + [76930] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6147), 1, - aux_sym__map_rhs_token4, - STATE(2182), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2433), 1, - sym_command_argument, - ACTIONS(6122), 2, - sym_string_literal, - aux_sym_command_argument_token1, - [75397] = 5, + ACTIONS(6541), 1, + sym__let_heredoc_marker, + ACTIONS(6538), 2, + anon_sym_trim, + anon_sym_eval, + STATE(2239), 2, + sym__let_heredoc_parameter, + aux_sym__let_heredoc_repeat1, + [76945] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(787), 1, + ACTIONS(801), 1, anon_sym_in, - ACTIONS(6423), 1, + ACTIONS(6543), 1, anon_sym_LBRACE2, - ACTIONS(6425), 1, + ACTIONS(6546), 1, aux_sym_identifier_token2, - STATE(2133), 2, + STATE(2240), 2, sym__immediate_curly_braces_name_expression, aux_sym_identifier_repeat1, - [75414] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6196), 1, - aux_sym__map_rhs_token4, - STATE(2182), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2433), 1, - sym_command_argument, - ACTIONS(6122), 2, - sym_string_literal, - aux_sym_command_argument_token1, - [75431] = 5, + [76962] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6184), 1, - aux_sym__map_rhs_token4, - STATE(2182), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2433), 1, - sym_command_argument, - ACTIONS(6122), 2, - sym_string_literal, - aux_sym_command_argument_token1, - [75448] = 3, + ACTIONS(6532), 5, + sym__newline_or_pipe, + sym_comment, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [76973] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3795), 1, + ACTIONS(6551), 1, aux_sym__map_rhs_token2, - ACTIONS(3793), 4, + ACTIONS(6549), 4, sym__newline_or_pipe, sym_comment, anon_sym_LT, anon_sym_BSLASH2, - [75461] = 5, + [76986] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, + ACTIONS(6553), 1, + sym__elseif, + ACTIONS(6556), 2, + sym__else, + sym__endif, + STATE(2243), 2, + sym_elseif_statement, + aux_sym_if_statement_repeat1, + [77001] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3094), 1, anon_sym_AT, - ACTIONS(6427), 1, + ACTIONS(6558), 1, sym_hl_group, - STATE(3207), 1, + STATE(3079), 1, sym_at, - ACTIONS(6429), 2, - sym__newline_or_pipe, - sym_comment, - [75478] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5504), 1, - aux_sym_identifier_token1, - ACTIONS(6431), 1, - sym_bang, - STATE(1534), 1, - sym__curly_braces_name_expression, - STATE(2777), 1, - sym_identifier, - [75497] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5611), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5615), 4, + ACTIONS(6560), 2, sym__newline_or_pipe, - sym_string_literal, sym_comment, - anon_sym_BSLASH, - [75510] = 2, + [77018] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5005), 5, + ACTIONS(6465), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - anon_sym_BSLASH_RPAREN, - [75521] = 3, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [77029] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6435), 2, - sym__newline_or_pipe, - sym_comment, - ACTIONS(6433), 3, - anon_sym_default, - anon_sym_toplevel, - anon_sym_notoplevel, - [75534] = 3, + ACTIONS(6495), 5, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [77040] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3879), 1, - aux_sym__map_rhs_token2, - ACTIONS(3877), 4, - sym__newline_or_pipe, - sym_comment, + ACTIONS(6551), 5, anon_sym_LT, anon_sym_BSLASH2, - [75547] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6191), 1, - aux_sym__map_rhs_token4, - STATE(2182), 1, - aux_sym_unknown_builtin_statement_repeat1, - STATE(2433), 1, - sym_command_argument, - ACTIONS(6437), 2, - sym_string_literal, - aux_sym_command_argument_token1, - [75564] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6435), 2, + aux_sym__map_rhs_token2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(6440), 3, - anon_sym_default, - anon_sym_toplevel, - anon_sym_notoplevel, - [75577] = 5, + [77051] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(6442), 1, - sym_hl_group, - STATE(3189), 1, - sym_at, - ACTIONS(6429), 2, + ACTIONS(6497), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [75594] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6444), 1, - anon_sym_COMMA, - STATE(2185), 1, - aux_sym_list_repeat1, - ACTIONS(2954), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [75609] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(6447), 1, - sym_hl_group, - STATE(3241), 1, - sym_at, - ACTIONS(6449), 2, - sym__newline_or_pipe, - sym_comment, - [75626] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(805), 1, - anon_sym_in, - ACTIONS(6423), 1, - anon_sym_LBRACE2, - ACTIONS(6451), 1, - aux_sym_identifier_token2, - STATE(2172), 2, - sym__immediate_curly_braces_name_expression, - aux_sym_identifier_repeat1, - [75643] = 5, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [77062] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(828), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2209), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6419), 2, - sym__newline_or_pipe, - sym_comment, - [75660] = 5, + ACTIONS(6502), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [77079] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, + ACTIONS(6562), 1, anon_sym_end, - STATE(828), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2209), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6415), 2, - sym__newline_or_pipe, - sym_comment, - [75677] = 5, + ACTIONS(6509), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [77096] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(828), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2209), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6413), 2, - sym__newline_or_pipe, - sym_comment, - [75694] = 5, + ACTIONS(6511), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [77113] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(828), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2209), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6411), 2, - sym__newline_or_pipe, - sym_comment, - [75711] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6455), 1, - aux_sym_filename_token3, - ACTIONS(6453), 4, - anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [75724] = 2, + ACTIONS(6520), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [77130] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3795), 5, - anon_sym_LT, - anon_sym_BSLASH2, - aux_sym__map_rhs_token2, + ACTIONS(6565), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [75735] = 5, + anon_sym_contains, + anon_sym_add, + anon_sym_remove, + [77141] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, - anon_sym_end, - STATE(828), 1, - sym__syn_region_end, - STATE(2209), 1, - aux_sym__syn_region_repeat2, - ACTIONS(6409), 2, - sym__newline_or_pipe, - sym_comment, - [75752] = 5, + ACTIONS(6567), 1, + sym__let_heredoc_marker, + ACTIONS(6491), 2, + anon_sym_trim, + anon_sym_eval, + STATE(2222), 2, + sym__let_heredoc_parameter, + aux_sym__let_heredoc_repeat1, + [77156] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, - anon_sym_end, - STATE(828), 1, - sym__syn_region_end, - STATE(2209), 1, - aux_sym__syn_region_repeat2, - ACTIONS(6407), 2, - sym__newline_or_pipe, - sym_comment, - [75769] = 2, + ACTIONS(6569), 1, + anon_sym_COMMA, + STATE(2255), 1, + aux_sym_list_repeat1, + ACTIONS(2964), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK2, + [77171] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5005), 5, + ACTIONS(5697), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5701), 4, sym__newline_or_pipe, + sym_string_literal, sym_comment, - anon_sym_BSLASH_PIPE, - anon_sym_minlines, - anon_sym_maxlines, - [75780] = 5, + anon_sym_BSLASH, + [77184] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, - anon_sym_end, - STATE(828), 1, - sym__syn_region_end, - STATE(2209), 1, - aux_sym__syn_region_repeat2, - ACTIONS(6405), 2, - sym__newline_or_pipe, - sym_comment, - [75797] = 5, + ACTIONS(6572), 5, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [77195] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, - anon_sym_end, - STATE(828), 1, - sym__syn_region_end, - STATE(2209), 1, - aux_sym__syn_region_repeat2, - ACTIONS(6403), 2, + ACTIONS(6574), 1, + anon_sym_BSLASH_AMP, + STATE(2268), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(4815), 3, sym__newline_or_pipe, sym_comment, - [75814] = 5, + anon_sym_BSLASH_PIPE, + [77210] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(6457), 1, - sym_hl_group, - STATE(3193), 1, - sym_at, - ACTIONS(6449), 2, + ACTIONS(6576), 5, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [75831] = 4, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [77221] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6382), 1, - anon_sym_BSLASH_PIPE, - STATE(2222), 1, + STATE(2261), 1, aux_sym_pattern_repeat1, - ACTIONS(4995), 3, + ACTIONS(5050), 4, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, anon_sym_minlines, anon_sym_maxlines, - [75846] = 6, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5504), 1, - aux_sym_identifier_token1, - STATE(1534), 1, - sym__curly_braces_name_expression, - STATE(2888), 1, - sym_default_parameter, - STATE(2977), 1, - sym_identifier, - [75865] = 2, + [77234] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6401), 5, - sym__newline_or_pipe, - sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [75876] = 2, + ACTIONS(6578), 1, + anon_sym_BSLASH_PIPE, + STATE(2261), 1, + aux_sym_pattern_repeat1, + ACTIONS(5112), 3, + aux_sym__map_rhs_token4, + anon_sym_minlines, + anon_sym_maxlines, + [77249] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6399), 5, + ACTIONS(6576), 5, sym__newline_or_pipe, sym_comment, anon_sym_buffer, anon_sym_group, anon_sym_file, - [75887] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6459), 1, - sym__let_heredoc_marker, - ACTIONS(6370), 2, - anon_sym_trim, - anon_sym_eval, - STATE(2211), 2, - sym__let_heredoc_parameter, - aux_sym__let_heredoc_repeat1, - [75902] = 3, + [77260] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6463), 1, - aux_sym_filename_token3, - ACTIONS(6461), 4, + ACTIONS(5697), 2, + aux_sym__bang_filter_command_argument_token1, anon_sym_BSLASH, - aux_sym_filename_token1, - aux_sym_filename_token2, - aux_sym_filename_token4, - [75915] = 4, + ACTIONS(5701), 3, + sym_string_literal, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [77273] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6465), 1, - sym__elseif, - ACTIONS(6468), 2, - sym__else, - sym__endif, - STATE(2206), 2, - sym_elseif_statement, - aux_sym_if_statement_repeat1, - [75930] = 2, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(6581), 1, + sym_hl_group, + STATE(3279), 1, + sym_at, + ACTIONS(6560), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [77290] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6397), 5, + ACTIONS(6565), 5, sym__newline_or_pipe, sym_comment, anon_sym_contains, anon_sym_add, anon_sym_remove, - [75941] = 5, + [77301] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, + ACTIONS(2929), 1, anon_sym_end, - STATE(828), 1, + STATE(921), 1, sym__syn_region_end, - STATE(2209), 1, + STATE(2250), 1, aux_sym__syn_region_repeat2, - ACTIONS(6395), 2, - sym__newline_or_pipe, - sym_comment, - [75958] = 5, + ACTIONS(6530), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [77318] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6470), 1, - anon_sym_end, - STATE(828), 1, - sym__syn_region_end, - STATE(2209), 1, - aux_sym__syn_region_repeat2, - ACTIONS(6390), 2, + ACTIONS(6572), 5, sym__newline_or_pipe, sym_comment, - [75975] = 3, + anon_sym_buffer, + anon_sym_group, + anon_sym_file, + [77329] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(825), 1, - sym_au_event, - ACTIONS(823), 4, + ACTIONS(6583), 1, + anon_sym_BSLASH_AMP, + STATE(2268), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3612), 3, sym__newline_or_pipe, sym_comment, - anon_sym_LBRACE2, - aux_sym_identifier_token2, - [75988] = 4, + anon_sym_BSLASH_PIPE, + [77344] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6476), 1, - sym__let_heredoc_marker, - ACTIONS(6473), 2, - anon_sym_trim, - anon_sym_eval, - STATE(2211), 2, - sym__let_heredoc_parameter, - aux_sym__let_heredoc_repeat1, - [76003] = 5, + ACTIONS(6586), 1, + anon_sym_COMMA, + ACTIONS(6588), 1, + anon_sym_RBRACE, + ACTIONS(6590), 1, + sym_literal_key, + STATE(2512), 1, + sym__literal_dictionary_entry, + [77360] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, - anon_sym_end, - STATE(828), 1, - sym__syn_region_end, - STATE(2209), 1, - aux_sym__syn_region_repeat2, - ACTIONS(6388), 2, + ACTIONS(6592), 1, + anon_sym_, + STATE(2281), 1, + aux_sym_set_statement_repeat1, + ACTIONS(6594), 2, sym__newline_or_pipe, sym_comment, - [76020] = 4, + [77374] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6478), 1, - anon_sym_BSLASH_AMP, - STATE(2132), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 3, + ACTIONS(6596), 1, + anon_sym_LBRACE, + ACTIONS(6598), 1, + aux_sym_identifier_token1, + STATE(310), 1, + sym__curly_braces_name_expression, + STATE(643), 1, + sym_identifier, + [77390] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6600), 1, + anon_sym_BSLASH_PIPE, + STATE(2272), 1, + aux_sym_pattern_repeat1, + ACTIONS(5112), 2, sym__newline_or_pipe, sym_comment, - anon_sym_BSLASH_PIPE, - [76035] = 5, + [77404] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, - anon_sym_end, - STATE(828), 1, - sym__syn_region_end, - STATE(2209), 1, - aux_sym__syn_region_repeat2, - ACTIONS(6384), 2, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6603), 1, + anon_sym_RBRACK2, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77420] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6607), 1, + anon_sym_DOT, + STATE(2282), 1, + aux_sym_filetypes_repeat1, + ACTIONS(6609), 2, sym__newline_or_pipe, sym_comment, - [76052] = 3, + [77434] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(2222), 1, - aux_sym_pattern_repeat1, - ACTIONS(4995), 4, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, + ACTIONS(6611), 4, + sym__newline_or_pipe, + sym_comment, anon_sym_minlines, anon_sym_maxlines, - [76065] = 3, + [77444] = 5, ACTIONS(3), 1, sym__line_continuation, - STATE(2215), 1, - aux_sym_pattern_repeat1, - ACTIONS(5042), 4, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - [76078] = 5, + ACTIONS(6613), 1, + anon_sym_LBRACE, + ACTIONS(6615), 1, + aux_sym_identifier_token1, + STATE(148), 1, + sym__curly_braces_name_expression, + STATE(242), 1, + sym_identifier, + [77460] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2917), 1, - anon_sym_end, - STATE(828), 1, - sym__syn_region_end, - STATE(2209), 1, - aux_sym__syn_region_repeat2, - ACTIONS(6378), 2, + ACTIONS(6613), 1, + anon_sym_LBRACE, + ACTIONS(6615), 1, + aux_sym_identifier_token1, + STATE(148), 1, + sym__curly_braces_name_expression, + STATE(218), 1, + sym_identifier, + [77476] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6617), 1, + anon_sym_RBRACK2, + ACTIONS(6619), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2280), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77492] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6621), 1, + anon_sym_, + STATE(2279), 1, + aux_sym_set_statement_repeat1, + ACTIONS(6624), 2, sym__newline_or_pipe, sym_comment, - [76095] = 3, + [77506] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5987), 1, - aux_sym__map_rhs_token2, - ACTIONS(6002), 4, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6626), 1, + anon_sym_RBRACK2, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77522] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6592), 1, + anon_sym_, + STATE(2279), 1, + aux_sym_set_statement_repeat1, + ACTIONS(6628), 2, sym__newline_or_pipe, sym_comment, - anon_sym_LT, - anon_sym_BSLASH2, - [76108] = 2, + [77536] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6421), 5, + ACTIONS(6630), 1, + anon_sym_DOT, + STATE(2282), 1, + aux_sym_filetypes_repeat1, + ACTIONS(6633), 2, sym__newline_or_pipe, sym_comment, - anon_sym_buffer, - anon_sym_group, - anon_sym_file, - [76119] = 2, + [77550] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3879), 5, - anon_sym_LT, - anon_sym_BSLASH2, - aux_sym__map_rhs_token2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [76130] = 3, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6635), 1, + anon_sym_RBRACK2, + ACTIONS(6637), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2285), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77566] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(815), 1, - sym_au_event, - ACTIONS(813), 4, + ACTIONS(6592), 1, + anon_sym_, + STATE(2279), 1, + aux_sym_set_statement_repeat1, + ACTIONS(6639), 2, sym__newline_or_pipe, sym_comment, - anon_sym_LBRACE2, - aux_sym_identifier_token2, - [76143] = 4, + [77580] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6480), 1, - anon_sym_BSLASH_PIPE, - STATE(2222), 1, - aux_sym_pattern_repeat1, - ACTIONS(5005), 3, - aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - [76158] = 5, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6641), 1, + anon_sym_RBRACK2, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77596] = 5, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1303), 1, anon_sym_BSLASH, - ACTIONS(6483), 1, - anon_sym_RBRACK, - ACTIONS(6485), 1, + ACTIONS(6643), 1, + anon_sym_RBRACK2, + ACTIONS(6645), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2341), 1, + STATE(2287), 1, aux_sym__pattern_ordinary_atom_repeat1, - [76174] = 5, + [77612] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6487), 1, - anon_sym_LBRACE, - ACTIONS(6489), 1, - aux_sym_identifier_token1, - STATE(683), 1, - sym__curly_braces_name_expression, - STATE(726), 1, - sym_identifier, - [76190] = 5, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6647), 1, + anon_sym_RBRACK2, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77628] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6649), 1, + anon_sym_RBRACK2, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77644] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5504), 1, - aux_sym_identifier_token1, - STATE(697), 1, - sym_identifier, - STATE(1534), 1, - sym__curly_braces_name_expression, - [76206] = 5, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6651), 1, + anon_sym_RBRACK2, + ACTIONS(6653), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2288), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77660] = 5, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1303), 1, anon_sym_BSLASH, - ACTIONS(6491), 1, - anon_sym_RBRACK, - ACTIONS(6493), 1, + ACTIONS(6605), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2300), 1, + ACTIONS(6655), 1, + anon_sym_RBRACK2, + STATE(2296), 1, aux_sym__pattern_ordinary_atom_repeat1, - [76222] = 5, + [77676] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6495), 1, + ACTIONS(6657), 1, aux_sym_option_name_token1, - ACTIONS(6497), 1, + ACTIONS(6659), 1, anon_sym_t_, - ACTIONS(6499), 1, + ACTIONS(6661), 1, sym_scope, - STATE(172), 1, + STATE(707), 1, sym_option_name, - [76238] = 5, + [77692] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6501), 1, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(6663), 1, anon_sym_COMMA, - ACTIONS(6503), 1, + ACTIONS(6665), 1, anon_sym_RBRACE, - ACTIONS(6505), 1, - sym_literal_key, - STATE(2526), 1, + STATE(2483), 1, sym__literal_dictionary_entry, - [76254] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6507), 1, - anon_sym_BSLASH_PIPE, - STATE(2229), 1, - aux_sym_pattern_repeat1, - ACTIONS(5005), 2, - sym__newline_or_pipe, - sym_comment, - [76268] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6510), 1, - sym_set_value, - ACTIONS(6512), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_, - [76280] = 5, + [77708] = 5, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1303), 1, anon_sym_BSLASH, - ACTIONS(6514), 1, - anon_sym_RBRACK, - ACTIONS(6516), 1, + ACTIONS(6667), 1, + anon_sym_RBRACK2, + ACTIONS(6669), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2237), 1, + STATE(2273), 1, aux_sym__pattern_ordinary_atom_repeat1, - [76296] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6518), 1, - anon_sym_, - STATE(2245), 1, - aux_sym_set_statement_repeat1, - ACTIONS(6520), 2, - sym__newline_or_pipe, - sym_comment, - [76310] = 5, + [77724] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6522), 1, + ACTIONS(5557), 1, anon_sym_LBRACE, - ACTIONS(6524), 1, + ACTIONS(5621), 1, aux_sym_identifier_token1, - STATE(148), 1, - sym__curly_braces_name_expression, - STATE(219), 1, + STATE(697), 1, sym_identifier, - [76326] = 4, + STATE(1623), 1, + sym__curly_braces_name_expression, + [77740] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6526), 1, - anon_sym_, - STATE(2234), 1, - aux_sym_set_statement_repeat1, - ACTIONS(6529), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [76340] = 4, + ACTIONS(6671), 1, + anon_sym_COMMA, + ACTIONS(6673), 1, + anon_sym_SEMI, + ACTIONS(6675), 1, + anon_sym_RBRACK2, + STATE(2255), 1, + aux_sym_list_repeat1, + [77756] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6531), 1, - anon_sym_DOT, - STATE(2235), 1, - aux_sym_filetypes_repeat1, - ACTIONS(6534), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [76354] = 2, + ACTIONS(6677), 1, + anon_sym_BSLASH, + ACTIONS(6680), 1, + anon_sym_RBRACK2, + ACTIONS(6682), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77772] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6536), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - aux_sym_command_argument_token1, - [76364] = 5, + ACTIONS(6685), 1, + anon_sym_LBRACE, + ACTIONS(6687), 1, + aux_sym_identifier_token1, + STATE(681), 1, + sym__curly_braces_name_expression, + STATE(701), 1, + sym_identifier, + [77788] = 5, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1303), 1, anon_sym_BSLASH, - ACTIONS(6538), 1, - anon_sym_RBRACK, - ACTIONS(6540), 1, + ACTIONS(6689), 1, + anon_sym_RBRACK2, + ACTIONS(6691), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2276), 1, + STATE(2312), 1, aux_sym__pattern_ordinary_atom_repeat1, - [76380] = 5, + [77804] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6487), 1, + ACTIONS(6685), 1, anon_sym_LBRACE, - ACTIONS(6489), 1, + ACTIONS(6687), 1, aux_sym_identifier_token1, - STATE(683), 1, + STATE(681), 1, sym__curly_braces_name_expression, - STATE(741), 1, + STATE(708), 1, sym_identifier, - [76396] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6518), 1, - anon_sym_, - STATE(2245), 1, - aux_sym_set_statement_repeat1, - ACTIONS(6542), 2, - sym__newline_or_pipe, - sym_comment, - [76410] = 4, + [77820] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6544), 1, - anon_sym_DOT, - STATE(2240), 1, - aux_sym_filetypes_repeat1, - ACTIONS(6534), 2, - sym__newline_or_pipe, - sym_comment, - [76424] = 4, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6693), 1, + anon_sym_RBRACK2, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77836] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4112), 1, - anon_sym_LT, - ACTIONS(6547), 1, - aux_sym__hl_term_list_token1, - STATE(1303), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - [76438] = 3, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6695), 1, + anon_sym_RBRACK2, + ACTIONS(6697), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2300), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77852] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3877), 1, - anon_sym_BSLASH2, - ACTIONS(3879), 3, - anon_sym_LT, - aux_sym__map_rhs_token2, + ACTIONS(6699), 1, + anon_sym_DOT, + STATE(2302), 1, + aux_sym_filetypes_repeat1, + ACTIONS(6633), 2, + anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [76450] = 4, + [77866] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6549), 1, - anon_sym_DOT, - STATE(2240), 1, - aux_sym_filetypes_repeat1, - ACTIONS(6551), 2, + ACTIONS(6702), 1, + sym_au_event, + STATE(2987), 1, + sym_au_event_list, + ACTIONS(6704), 2, sym__newline_or_pipe, sym_comment, - [76464] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6553), 1, - anon_sym_indent, - STATE(2648), 1, - sym__filetype_state, - ACTIONS(5721), 2, - anon_sym_on, - anon_sym_off, - [76478] = 4, + [77880] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6555), 1, + ACTIONS(6706), 1, anon_sym_, - STATE(2245), 1, + STATE(2304), 1, aux_sym_set_statement_repeat1, - ACTIONS(6558), 2, - sym__newline_or_pipe, - sym_comment, - [76492] = 5, + ACTIONS(6709), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [77894] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6560), 1, + ACTIONS(6711), 1, anon_sym_LBRACE, - ACTIONS(6562), 1, + ACTIONS(6713), 1, aux_sym_identifier_token1, - STATE(301), 1, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(483), 1, + STATE(586), 1, sym_identifier, - [76508] = 2, + [77910] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6564), 4, - sym__newline_or_pipe, - sym_comment, - anon_sym_minlines, - anon_sym_maxlines, - [76518] = 4, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6715), 1, + anon_sym_RBRACK2, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77926] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6566), 1, - anon_sym_DOT, - STATE(2235), 1, - aux_sym_filetypes_repeat1, - ACTIONS(6551), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [76532] = 5, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6717), 1, + anon_sym_RBRACK2, + ACTIONS(6719), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2306), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [77942] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4249), 1, + anon_sym_LT, + ACTIONS(6721), 1, + aux_sym__hl_term_list_token1, + STATE(1347), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + [77956] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6568), 1, + ACTIONS(6723), 1, anon_sym_LBRACE, - ACTIONS(6570), 1, + ACTIONS(6725), 1, aux_sym_identifier_token1, - STATE(718), 1, + STATE(717), 1, sym__curly_braces_name_expression, - STATE(958), 1, + STATE(871), 1, sym_identifier, - [76548] = 5, + [77972] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6568), 1, + ACTIONS(6727), 1, anon_sym_LBRACE, - ACTIONS(6570), 1, + ACTIONS(6729), 1, aux_sym_identifier_token1, - STATE(718), 1, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(946), 1, + STATE(740), 1, sym_identifier, - [76564] = 3, + [77988] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3793), 1, - anon_sym_BSLASH2, - ACTIONS(3795), 3, - anon_sym_LT, - aux_sym__map_rhs_token2, - aux_sym__map_rhs_token4, - [76576] = 4, + ACTIONS(6731), 1, + anon_sym_indent, + STATE(2899), 1, + sym__filetype_state, + ACTIONS(5585), 2, + anon_sym_on, + anon_sym_off, + [78002] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6572), 1, - anon_sym_, - STATE(2234), 1, - aux_sym_set_statement_repeat1, - ACTIONS(6574), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [76590] = 4, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6733), 1, + anon_sym_RBRACK2, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [78018] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6572), 1, - anon_sym_, - STATE(2234), 1, - aux_sym_set_statement_repeat1, - ACTIONS(6576), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [76604] = 5, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6735), 1, + anon_sym_RBRACK2, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [78034] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6522), 1, - anon_sym_LBRACE, - ACTIONS(6524), 1, - aux_sym_identifier_token1, - STATE(148), 1, - sym__curly_braces_name_expression, - STATE(228), 1, - sym_identifier, - [76620] = 5, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6737), 1, + anon_sym_RBRACK2, + ACTIONS(6739), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2354), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [78050] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6560), 1, - anon_sym_LBRACE, - ACTIONS(6562), 1, - aux_sym_identifier_token1, - STATE(301), 1, - sym__curly_braces_name_expression, - STATE(504), 1, - sym_identifier, - [76636] = 5, + ACTIONS(6741), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + aux_sym_command_argument_token1, + [78060] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6578), 1, - anon_sym_LBRACE, - ACTIONS(6580), 1, - aux_sym_identifier_token1, - STATE(681), 1, - sym__curly_braces_name_expression, - STATE(700), 1, - sym_identifier, - [76652] = 5, + ACTIONS(6743), 4, + sym__newline_or_pipe, + sym_string_literal, + sym_comment, + aux_sym_command_argument_token1, + [78070] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6578), 1, - anon_sym_LBRACE, - ACTIONS(6580), 1, - aux_sym_identifier_token1, - STATE(681), 1, - sym__curly_braces_name_expression, - STATE(713), 1, - sym_identifier, - [76668] = 4, + ACTIONS(6745), 1, + sym_set_value, + ACTIONS(6747), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_, + [78082] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6512), 1, - anon_sym_, - ACTIONS(6582), 1, - sym_set_value, - ACTIONS(6584), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [76682] = 5, + ACTIONS(4126), 1, + anon_sym_LT, + ACTIONS(6749), 1, + aux_sym__hl_term_list_token1, + STATE(1310), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + [78096] = 5, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1303), 1, anon_sym_BSLASH, - ACTIONS(6540), 1, + ACTIONS(6751), 1, + anon_sym_RBRACK2, + ACTIONS(6753), 1, aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6586), 1, - anon_sym_RBRACK, - STATE(2276), 1, + STATE(2313), 1, aux_sym__pattern_ordinary_atom_repeat1, - [76698] = 4, + [78112] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6588), 1, - anon_sym_BSLASH_PIPE, - STATE(2345), 1, - aux_sym_pattern_repeat1, - ACTIONS(5042), 2, - sym__newline_or_pipe, - sym_comment, - [76712] = 5, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6755), 1, + anon_sym_RBRACK2, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [78128] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2946), 1, - anon_sym_COMMA, - ACTIONS(3345), 1, - anon_sym_RBRACK, - ACTIONS(6590), 1, - anon_sym_SEMI, - STATE(2185), 1, - aux_sym_list_repeat1, - [76728] = 5, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6757), 1, + anon_sym_RBRACK2, + ACTIONS(6759), 1, + aux_sym__pattern_ordinary_atom_token1, + STATE(2320), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [78144] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6487), 1, - anon_sym_LBRACE, - ACTIONS(6489), 1, - aux_sym_identifier_token1, - STATE(683), 1, - sym__curly_braces_name_expression, - STATE(697), 1, - sym_identifier, - [76744] = 5, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(6761), 1, + anon_sym_COMMA, + ACTIONS(6763), 1, + anon_sym_RBRACE, + STATE(2565), 1, + sym__literal_dictionary_entry, + [78160] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6592), 1, + ACTIONS(6765), 1, aux_sym_option_name_token1, - ACTIONS(6594), 1, + ACTIONS(6767), 1, anon_sym_t_, - ACTIONS(6596), 1, + ACTIONS(6769), 1, sym_scope, - STATE(955), 1, + STATE(638), 1, sym_option_name, - [76760] = 5, + [78176] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(6598), 1, + ACTIONS(6771), 1, anon_sym_COMMA, - ACTIONS(6600), 1, - anon_sym_RBRACE, - STATE(2449), 1, - sym__literal_dictionary_entry, - [76776] = 5, + STATE(2324), 1, + aux_sym_parameters_repeat2, + ACTIONS(6774), 2, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [78190] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6602), 1, - anon_sym_RBRACK, - ACTIONS(6604), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2271), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [76792] = 5, + ACTIONS(6776), 1, + anon_sym_LBRACE, + ACTIONS(6778), 1, + aux_sym_identifier_token1, + STATE(757), 1, + sym__curly_braces_name_expression, + STATE(883), 1, + sym_identifier, + [78206] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6606), 1, + ACTIONS(6780), 1, aux_sym_option_name_token1, - ACTIONS(6608), 1, + ACTIONS(6782), 1, anon_sym_t_, - ACTIONS(6610), 1, + ACTIONS(6784), 1, sym_scope, - STATE(720), 1, + STATE(560), 1, sym_option_name, - [76808] = 5, + [78222] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6578), 1, + ACTIONS(6786), 1, anon_sym_LBRACE, - ACTIONS(6580), 1, + ACTIONS(6788), 1, aux_sym_identifier_token1, - STATE(681), 1, + STATE(145), 1, sym__curly_braces_name_expression, - STATE(712), 1, + STATE(196), 1, sym_identifier, - [76824] = 5, + [78238] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(6612), 1, - anon_sym_COMMA, - ACTIONS(6614), 1, - anon_sym_RBRACE, - STATE(2428), 1, - sym__literal_dictionary_entry, - [76840] = 5, + ACTIONS(6790), 1, + anon_sym_BSLASH_PIPE, + STATE(2353), 1, + aux_sym_pattern_repeat1, + ACTIONS(5147), 2, + sym__newline_or_pipe, + sym_comment, + [78252] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6616), 1, + ACTIONS(6711), 1, anon_sym_LBRACE, - ACTIONS(6618), 1, + ACTIONS(6713), 1, aux_sym_identifier_token1, - STATE(739), 1, + STATE(309), 1, sym__curly_braces_name_expression, - STATE(900), 1, + STATE(544), 1, sym_identifier, - [76856] = 5, + [78268] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6620), 1, - aux_sym_option_name_token1, - ACTIONS(6622), 1, - anon_sym_t_, - ACTIONS(6624), 1, - sym_scope, - STATE(481), 1, - sym_option_name, - [76872] = 5, + ACTIONS(6596), 1, + anon_sym_LBRACE, + ACTIONS(6598), 1, + aux_sym_identifier_token1, + STATE(310), 1, + sym__curly_braces_name_expression, + STATE(607), 1, + sym_identifier, + [78284] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6626), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [76888] = 5, + ACTIONS(6596), 1, + anon_sym_LBRACE, + ACTIONS(6598), 1, + aux_sym_identifier_token1, + STATE(310), 1, + sym__curly_braces_name_expression, + STATE(636), 1, + sym_identifier, + [78300] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(6628), 1, - anon_sym_COMMA, - ACTIONS(6630), 1, - anon_sym_RBRACE, - STATE(2429), 1, - sym__literal_dictionary_entry, - [76904] = 5, + ACTIONS(6711), 1, + anon_sym_LBRACE, + ACTIONS(6713), 1, + aux_sym_identifier_token1, + STATE(309), 1, + sym__curly_braces_name_expression, + STATE(478), 1, + sym_identifier, + [78316] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6632), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [76920] = 4, + ACTIONS(6786), 1, + anon_sym_LBRACE, + ACTIONS(6788), 1, + aux_sym_identifier_token1, + STATE(145), 1, + sym__curly_braces_name_expression, + STATE(157), 1, + sym_identifier, + [78332] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4118), 1, - anon_sym_LT, - ACTIONS(6634), 1, - aux_sym__hl_term_list_token1, - STATE(1304), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - [76934] = 5, + ACTIONS(6786), 1, + anon_sym_LBRACE, + ACTIONS(6788), 1, + aux_sym_identifier_token1, + STATE(145), 1, + sym__curly_braces_name_expression, + STATE(190), 1, + sym_identifier, + [78348] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5506), 1, - anon_sym_RPAREN, - ACTIONS(6636), 1, - anon_sym_COMMA, - ACTIONS(6638), 1, - anon_sym_EQ, - STATE(2395), 1, - aux_sym_parameters_repeat2, - [76950] = 5, + ACTIONS(6607), 1, + anon_sym_DOT, + STATE(2274), 1, + aux_sym_filetypes_repeat1, + ACTIONS(6792), 2, + sym__newline_or_pipe, + sym_comment, + [78362] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6640), 1, - anon_sym_BSLASH, - ACTIONS(6643), 1, - anon_sym_RBRACK, - ACTIONS(6645), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [76966] = 5, + ACTIONS(6794), 1, + aux_sym_option_name_token1, + ACTIONS(6796), 1, + anon_sym_t_, + ACTIONS(6798), 1, + sym_scope, + STATE(201), 1, + sym_option_name, + [78378] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6648), 1, - anon_sym_LBRACE, - ACTIONS(6650), 1, - aux_sym_identifier_token1, - STATE(147), 1, - sym__curly_braces_name_expression, - STATE(171), 1, - sym_identifier, - [76982] = 5, + ACTIONS(6592), 1, + anon_sym_, + STATE(2284), 1, + aux_sym_set_statement_repeat1, + ACTIONS(6800), 2, + sym__newline_or_pipe, + sym_comment, + [78392] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6802), 1, + anon_sym_DOT, + STATE(2302), 1, + aux_sym_filetypes_repeat1, + ACTIONS(6609), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [78406] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6804), 1, + anon_sym_, + STATE(2304), 1, + aux_sym_set_statement_repeat1, + ACTIONS(6806), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [78420] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6804), 1, + anon_sym_, + STATE(2304), 1, + aux_sym_set_statement_repeat1, + ACTIONS(6808), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [78434] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6648), 1, + ACTIONS(6685), 1, anon_sym_LBRACE, - ACTIONS(6650), 1, + ACTIONS(6687), 1, aux_sym_identifier_token1, - STATE(147), 1, + STATE(681), 1, sym__curly_braces_name_expression, - STATE(189), 1, + STATE(703), 1, sym_identifier, - [76998] = 5, + [78450] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6652), 1, + ACTIONS(6810), 1, aux_sym_option_name_token1, - ACTIONS(6654), 1, + ACTIONS(6812), 1, anon_sym_t_, - ACTIONS(6656), 1, + ACTIONS(6814), 1, sym_scope, - STATE(223), 1, + STATE(165), 1, sym_option_name, - [77014] = 4, + [78466] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6658), 1, - sym_au_event, - STATE(3084), 1, - sym_au_event_list, - ACTIONS(6660), 2, + ACTIONS(6747), 1, + anon_sym_, + ACTIONS(6816), 1, + sym_set_value, + ACTIONS(6818), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [78480] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6820), 2, + anon_sym_on, + anon_sym_off, + ACTIONS(6822), 2, sym__newline_or_pipe, sym_comment, - [77028] = 2, + [78492] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6662), 4, + ACTIONS(6824), 2, + anon_sym_clear, + aux_sym__syn_iskeyword_token1, + ACTIONS(6826), 2, sym__newline_or_pipe, sym_comment, - anon_sym_minlines, - anon_sym_maxlines, - [77038] = 4, + [78504] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6658), 1, - sym_au_event, - STATE(3018), 1, - sym_au_event_list, - ACTIONS(6664), 2, + ACTIONS(6828), 2, + anon_sym_start, + anon_sym_minimum, + ACTIONS(6830), 2, sym__newline_or_pipe, sym_comment, - [77052] = 5, + [78516] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, + ACTIONS(6590), 1, sym_literal_key, - ACTIONS(6666), 1, + ACTIONS(6832), 1, anon_sym_COMMA, - ACTIONS(6668), 1, + ACTIONS(6834), 1, anon_sym_RBRACE, - STATE(2390), 1, + STATE(2450), 1, sym__literal_dictionary_entry, - [77068] = 5, + [78532] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6670), 1, - anon_sym_RBRACK, - ACTIONS(6672), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2297), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [77084] = 5, + ACTIONS(6836), 2, + anon_sym_match, + anon_sym_ignore, + ACTIONS(6838), 2, + sym__newline_or_pipe, + sym_comment, + [78544] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5447), 1, + anon_sym_LBRACE, + ACTIONS(5751), 1, + aux_sym_identifier_token1, + STATE(1999), 1, + sym__curly_braces_name_expression, + STATE(2775), 1, + sym_identifier, + [78560] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6702), 1, + sym_au_event, + STATE(3120), 1, + sym_au_event_list, + ACTIONS(6840), 2, + sym__newline_or_pipe, + sym_comment, + [78574] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4148), 1, + anon_sym_LT, + ACTIONS(6842), 1, + aux_sym__hl_term_list_token1, + STATE(1320), 2, + sym__immediate_keycode, + aux_sym__hl_term_list, + [78588] = 5, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1303), 1, anon_sym_BSLASH, - ACTIONS(6674), 1, - anon_sym_RBRACK, - ACTIONS(6676), 1, + ACTIONS(6844), 1, + anon_sym_RBRACK2, + ACTIONS(6846), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2310), 1, + STATE(2355), 1, aux_sym__pattern_ordinary_atom_repeat1, - [77100] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6678), 1, - anon_sym_indent, - STATE(2594), 1, - sym__filetype_state, - ACTIONS(5673), 2, - anon_sym_on, - anon_sym_off, - [77114] = 5, + [78604] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6590), 1, - anon_sym_SEMI, - ACTIONS(6680), 1, - anon_sym_COMMA, - ACTIONS(6682), 1, - anon_sym_RBRACK, - STATE(2185), 1, - aux_sym_list_repeat1, - [77130] = 5, + ACTIONS(6790), 1, + anon_sym_BSLASH_PIPE, + STATE(2272), 1, + aux_sym_pattern_repeat1, + ACTIONS(5050), 2, + sym__newline_or_pipe, + sym_comment, + [78618] = 5, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1303), 1, anon_sym_BSLASH, - ACTIONS(6684), 1, - anon_sym_RBRACK, - ACTIONS(6686), 1, + ACTIONS(6605), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2259), 1, + ACTIONS(6848), 1, + anon_sym_RBRACK2, + STATE(2296), 1, aux_sym__pattern_ordinary_atom_repeat1, - [77146] = 5, + [78634] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5426), 1, - anon_sym_LBRACE, - ACTIONS(5581), 1, - aux_sym_identifier_token1, - STATE(1931), 1, - sym__curly_braces_name_expression, - STATE(2688), 1, - sym_identifier, - [77162] = 5, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6850), 1, + anon_sym_RBRACK2, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [78650] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6616), 1, - anon_sym_LBRACE, - ACTIONS(6618), 1, - aux_sym_identifier_token1, - STATE(739), 1, - sym__curly_braces_name_expression, - STATE(874), 1, - sym_identifier, - [77178] = 3, + ACTIONS(2948), 1, + anon_sym_COMMA, + ACTIONS(3290), 1, + anon_sym_RBRACK2, + ACTIONS(6673), 1, + anon_sym_SEMI, + STATE(2255), 1, + aux_sym_list_repeat1, + [78666] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6536), 1, - sym_string_literal, - ACTIONS(6688), 3, - aux_sym_command_argument_token1, + ACTIONS(5623), 1, + anon_sym_RPAREN, + ACTIONS(6852), 1, + anon_sym_COMMA, + ACTIONS(6854), 1, + anon_sym_EQ, + STATE(2555), 1, + aux_sym_parameters_repeat2, + [78682] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6856), 1, + anon_sym_BSLASH_AMP, + STATE(2374), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(4815), 2, + sym__separator, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [77190] = 3, + [78696] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6692), 1, - sym_string_literal, - ACTIONS(6690), 3, - aux_sym_command_argument_token1, + ACTIONS(6858), 4, + sym__newline_or_pipe, + sym_comment, + anon_sym_minlines, + anon_sym_maxlines, + [78706] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6860), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [77202] = 4, + ACTIONS(6862), 2, + anon_sym_clear, + aux_sym__syn_iskeyword_token1, + [78718] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6658), 1, + ACTIONS(6702), 1, sym_au_event, - STATE(3208), 1, + STATE(3262), 1, sym_au_event_list, - ACTIONS(6664), 2, + ACTIONS(6704), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [77216] = 5, + [78732] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5374), 1, + ACTIONS(6723), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(6725), 1, aux_sym_identifier_token1, - STATE(1534), 1, + STATE(717), 1, sym__curly_braces_name_expression, - STATE(2701), 1, + STATE(902), 1, sym_identifier, - [77232] = 5, + [78748] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6522), 1, + ACTIONS(6549), 1, + anon_sym_BSLASH2, + ACTIONS(6551), 3, + anon_sym_LT, + aux_sym__map_rhs_token2, + aux_sym__map_rhs_token4, + [78760] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1303), 1, + anon_sym_BSLASH, + ACTIONS(6605), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6864), 1, + anon_sym_RBRACK2, + STATE(2296), 1, + aux_sym__pattern_ordinary_atom_repeat1, + [78776] = 5, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6776), 1, anon_sym_LBRACE, - ACTIONS(6524), 1, + ACTIONS(6778), 1, aux_sym_identifier_token1, - STATE(148), 1, + STATE(757), 1, sym__curly_braces_name_expression, - STATE(208), 1, + STATE(827), 1, sym_identifier, - [77248] = 4, + [78792] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6694), 1, + ACTIONS(6866), 1, anon_sym_BSLASH_AMP, - STATE(2312), 1, + STATE(2376), 1, aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 2, - sym__separator, + ACTIONS(4815), 2, anon_sym_BSLASH_PIPE, - [77262] = 5, + aux_sym__map_rhs_token4, + [78806] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6696), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [77278] = 5, + ACTIONS(6611), 4, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + anon_sym_minlines, + anon_sym_maxlines, + [78816] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, + ACTIONS(6590), 1, sym_literal_key, - ACTIONS(6698), 1, + ACTIONS(6868), 1, anon_sym_COMMA, - ACTIONS(6700), 1, + ACTIONS(6870), 1, anon_sym_RBRACE, - STATE(2448), 1, + STATE(2550), 1, sym__literal_dictionary_entry, - [77294] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6702), 1, - aux_sym_option_name_token1, - ACTIONS(6704), 1, - anon_sym_t_, - ACTIONS(6706), 1, - sym_scope, - STATE(910), 1, - sym_option_name, - [77310] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6708), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [77326] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5026), 1, - anon_sym_LBRACE, - ACTIONS(6710), 1, - aux_sym_identifier_token1, - STATE(697), 1, - sym_identifier, - STATE(2187), 1, - sym__curly_braces_name_expression, - [77342] = 5, + [78832] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5374), 1, + ACTIONS(6727), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(6729), 1, aux_sym_identifier_token1, - STATE(1534), 1, + STATE(683), 1, sym__curly_braces_name_expression, - STATE(2538), 1, + STATE(754), 1, sym_identifier, - [77358] = 5, + [78848] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6712), 1, - anon_sym_LBRACE, - ACTIONS(6714), 1, - aux_sym_identifier_token1, - STATE(296), 1, - sym__curly_braces_name_expression, - STATE(547), 1, - sym_identifier, - [77374] = 4, + ACTIONS(6741), 1, + sym_string_literal, + ACTIONS(6872), 3, + aux_sym_command_argument_token1, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [78860] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4150), 1, - anon_sym_LT, - ACTIONS(6716), 1, - aux_sym__hl_term_list_token1, - STATE(1327), 2, - sym__immediate_keycode, - aux_sym__hl_term_list, - [77388] = 5, + ACTIONS(6743), 1, + sym_string_literal, + ACTIONS(6874), 3, + aux_sym_command_argument_token1, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [78872] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6718), 1, + ACTIONS(6876), 1, aux_sym_option_name_token1, - ACTIONS(6720), 1, + ACTIONS(6878), 1, anon_sym_t_, - ACTIONS(6722), 1, + ACTIONS(6880), 1, sym_scope, - STATE(709), 1, + STATE(756), 1, sym_option_name, - [77404] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6692), 4, - sym__newline_or_pipe, - sym_string_literal, - sym_comment, - aux_sym_command_argument_token1, - [77414] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6417), 1, - anon_sym_BSLASH2, - ACTIONS(6380), 3, - anon_sym_LT, - aux_sym__map_rhs_token2, - aux_sym__map_rhs_token4, - [77426] = 2, + [78888] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6564), 4, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - [77436] = 4, + ACTIONS(6727), 1, + anon_sym_LBRACE, + ACTIONS(6729), 1, + aux_sym_identifier_token1, + STATE(683), 1, + sym__curly_braces_name_expression, + STATE(697), 1, + sym_identifier, + [78904] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6724), 1, + ACTIONS(6882), 1, anon_sym_BSLASH_AMP, - STATE(2309), 1, + STATE(2374), 1, aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 2, + ACTIONS(3612), 2, + sym__separator, anon_sym_BSLASH_PIPE, - anon_sym_BSLASH_RPAREN, - [77450] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6727), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [77466] = 4, + [78918] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6566), 1, - anon_sym_DOT, - STATE(2248), 1, - aux_sym_filetypes_repeat1, - ACTIONS(6729), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [77480] = 4, + ACTIONS(6885), 1, + anon_sym_indent, + STATE(2668), 1, + sym__filetype_state, + ACTIONS(5655), 2, + anon_sym_on, + anon_sym_off, + [78932] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6731), 1, + ACTIONS(6887), 1, anon_sym_BSLASH_AMP, - STATE(2312), 1, + STATE(2376), 1, aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 2, - sym__separator, + ACTIONS(3612), 2, anon_sym_BSLASH_PIPE, - [77494] = 5, + aux_sym__map_rhs_token4, + [78946] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6712), 1, + ACTIONS(6723), 1, anon_sym_LBRACE, - ACTIONS(6714), 1, + ACTIONS(6725), 1, aux_sym_identifier_token1, - STATE(296), 1, + STATE(717), 1, sym__curly_braces_name_expression, - STATE(540), 1, + STATE(892), 1, sym_identifier, - [77510] = 5, + [78962] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5697), 1, + aux_sym__bang_filter_command_argument_token1, + ACTIONS(5701), 3, + sym_string_literal, + anon_sym_BSLASH, + aux_sym__map_rhs_token4, + [78974] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6648), 1, + ACTIONS(6613), 1, anon_sym_LBRACE, - ACTIONS(6650), 1, + ACTIONS(6615), 1, aux_sym_identifier_token1, - STATE(147), 1, + STATE(148), 1, sym__curly_braces_name_expression, - STATE(159), 1, + STATE(239), 1, sym_identifier, - [77526] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6734), 1, - anon_sym_COMMA, - STATE(2315), 1, - aux_sym_parameters_repeat2, - ACTIONS(6737), 2, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [77540] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6739), 1, - aux_sym_option_name_token1, - ACTIONS(6741), 1, - anon_sym_t_, - ACTIONS(6743), 1, - sym_scope, - STATE(548), 1, - sym_option_name, - [77556] = 5, + [78990] = 5, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1303), 1, anon_sym_BSLASH, - ACTIONS(6745), 1, - anon_sym_RBRACK, - ACTIONS(6747), 1, + ACTIONS(6890), 1, + anon_sym_RBRACK2, + ACTIONS(6892), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2321), 1, + STATE(2364), 1, aux_sym__pattern_ordinary_atom_repeat1, - [77572] = 3, + [79006] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5611), 1, - aux_sym__bang_filter_command_argument_token1, - ACTIONS(5615), 3, - sym_string_literal, - anon_sym_BSLASH, - aux_sym__map_rhs_token4, - [77584] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6749), 1, - anon_sym_BSLASH_AMP, - STATE(2329), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 2, - anon_sym_BSLASH_PIPE, + ACTIONS(6105), 1, + anon_sym_BSLASH2, + ACTIONS(6030), 3, + anon_sym_LT, + aux_sym__map_rhs_token2, aux_sym__map_rhs_token4, - [77598] = 4, + [79018] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6572), 1, - anon_sym_, - STATE(2252), 1, - aux_sym_set_statement_repeat1, - ACTIONS(6751), 2, + ACTIONS(6858), 4, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [77612] = 5, + anon_sym_minlines, + anon_sym_maxlines, + [79028] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6753), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [77628] = 4, + ACTIONS(6894), 1, + aux_sym_option_name_token1, + ACTIONS(6896), 1, + anon_sym_t_, + ACTIONS(6898), 1, + sym_scope, + STATE(922), 1, + sym_option_name, + [79044] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6549), 1, - anon_sym_DOT, - STATE(2243), 1, - aux_sym_filetypes_repeat1, - ACTIONS(6729), 2, - sym__newline_or_pipe, - sym_comment, - [77642] = 4, + ACTIONS(6900), 1, + anon_sym_BSLASH_AMP, + STATE(2390), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(4815), 2, + anon_sym_BSLASH_PIPE, + anon_sym_BSLASH_RPAREN, + [79058] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6572), 1, - anon_sym_, - STATE(2253), 1, - aux_sym_set_statement_repeat1, - ACTIONS(6755), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [77656] = 5, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(6902), 1, + anon_sym_COMMA, + ACTIONS(6904), 1, + anon_sym_RBRACE, + STATE(2408), 1, + sym__literal_dictionary_entry, + [79074] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6568), 1, + ACTIONS(5557), 1, anon_sym_LBRACE, - ACTIONS(6570), 1, + ACTIONS(5621), 1, aux_sym_identifier_token1, - STATE(718), 1, + STATE(1623), 1, sym__curly_braces_name_expression, - STATE(947), 1, + STATE(2734), 1, sym_identifier, - [77672] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6757), 2, - anon_sym_match, - anon_sym_ignore, - ACTIONS(6759), 2, - sym__newline_or_pipe, - sym_comment, - [77684] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6761), 1, - anon_sym_BSLASH_AMP, - STATE(2309), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(4738), 2, - anon_sym_BSLASH_PIPE, - anon_sym_BSLASH_RPAREN, - [77698] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6763), 2, - anon_sym_start, - anon_sym_minimum, - ACTIONS(6765), 2, - sym__newline_or_pipe, - sym_comment, - [77710] = 5, + [79090] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, + ACTIONS(6590), 1, sym_literal_key, - ACTIONS(6767), 1, + ACTIONS(6906), 1, anon_sym_COMMA, - ACTIONS(6769), 1, + ACTIONS(6908), 1, anon_sym_RBRACE, - STATE(2447), 1, + STATE(2495), 1, sym__literal_dictionary_entry, - [77726] = 4, + [79106] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6771), 1, - anon_sym_BSLASH_AMP, - STATE(2329), 1, - aux_sym__pattern_branch_repeat1, - ACTIONS(3645), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [77740] = 3, + ACTIONS(6910), 1, + aux_sym_option_name_token1, + ACTIONS(6912), 1, + anon_sym_t_, + ACTIONS(6914), 1, + sym_scope, + STATE(878), 1, + sym_option_name, + [79122] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6774), 2, - anon_sym_clear, - aux_sym__syn_iskeyword_token1, - ACTIONS(6776), 2, - sym__newline_or_pipe, - sym_comment, - [77752] = 5, + ACTIONS(5066), 1, + anon_sym_LBRACE, + ACTIONS(6916), 1, + aux_sym_identifier_token1, + STATE(697), 1, + sym_identifier, + STATE(2189), 1, + sym__curly_braces_name_expression, + [79138] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6778), 1, - anon_sym_RBRACK, - ACTIONS(6780), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2273), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [77768] = 5, + ACTIONS(6918), 1, + anon_sym_BSLASH_AMP, + STATE(2390), 1, + aux_sym__pattern_branch_repeat1, + ACTIONS(3612), 2, + anon_sym_BSLASH_PIPE, + anon_sym_BSLASH_RPAREN, + [79152] = 5, ACTIONS(3), 1, sym__line_continuation, ACTIONS(1303), 1, anon_sym_BSLASH, - ACTIONS(6782), 1, - anon_sym_RBRACK, - ACTIONS(6784), 1, + ACTIONS(6921), 1, + anon_sym_RBRACK2, + ACTIONS(6923), 1, aux_sym__pattern_ordinary_atom_token1, - STATE(2336), 1, + STATE(2290), 1, aux_sym__pattern_ordinary_atom_repeat1, - [77784] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6518), 1, - anon_sym_, - STATE(2239), 1, - aux_sym_set_statement_repeat1, - ACTIONS(6786), 2, - sym__newline_or_pipe, - sym_comment, - [77798] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6518), 1, - anon_sym_, - STATE(2232), 1, - aux_sym_set_statement_repeat1, - ACTIONS(6788), 2, - sym__newline_or_pipe, - sym_comment, - [77812] = 3, + [79168] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6790), 2, - anon_sym_on, - anon_sym_off, - ACTIONS(6792), 2, - sym__newline_or_pipe, - sym_comment, - [77824] = 5, + ACTIONS(5557), 1, + anon_sym_LBRACE, + ACTIONS(5621), 1, + aux_sym_identifier_token1, + STATE(1623), 1, + sym__curly_braces_name_expression, + STATE(2528), 1, + sym_identifier, + [79184] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6794), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [77840] = 3, + ACTIONS(6702), 1, + sym_au_event, + STATE(3285), 1, + sym_au_event_list, + ACTIONS(6840), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [79198] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6002), 1, + ACTIONS(3779), 1, anon_sym_BSLASH2, - ACTIONS(5987), 3, + ACTIONS(3781), 3, anon_sym_LT, aux_sym__map_rhs_token2, aux_sym__map_rhs_token4, - [77852] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6712), 1, - anon_sym_LBRACE, - ACTIONS(6714), 1, - aux_sym_identifier_token1, - STATE(296), 1, - sym__curly_braces_name_expression, - STATE(551), 1, - sym_identifier, - [77868] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6560), 1, - anon_sym_LBRACE, - ACTIONS(6562), 1, - aux_sym_identifier_token1, - STATE(301), 1, - sym__curly_braces_name_expression, - STATE(475), 1, - sym_identifier, - [77884] = 3, + [79210] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6792), 2, + ACTIONS(6822), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(6796), 2, + ACTIONS(6925), 2, anon_sym_on, anon_sym_off, - [77896] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6798), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [77912] = 5, + [79222] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6800), 1, - anon_sym_RBRACK, ACTIONS(6802), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2349), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [77928] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6804), 2, + anon_sym_DOT, + STATE(2338), 1, + aux_sym_filetypes_repeat1, + ACTIONS(6792), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(6806), 2, - anon_sym_clear, - aux_sym__syn_iskeyword_token1, - [77940] = 3, + [79236] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6765), 2, + ACTIONS(6804), 1, + anon_sym_, + STATE(2339), 1, + aux_sym_set_statement_repeat1, + ACTIONS(6927), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(6808), 2, - anon_sym_start, - anon_sym_minimum, - [77952] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6588), 1, - anon_sym_BSLASH_PIPE, - STATE(2229), 1, - aux_sym_pattern_repeat1, - ACTIONS(4995), 2, - sym__newline_or_pipe, - sym_comment, - [77966] = 3, + [79250] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6759), 2, + ACTIONS(6804), 1, + anon_sym_, + STATE(2340), 1, + aux_sym_set_statement_repeat1, + ACTIONS(6929), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - ACTIONS(6810), 2, - anon_sym_match, - anon_sym_ignore, - [77978] = 5, + [79264] = 5, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6616), 1, + ACTIONS(6776), 1, anon_sym_LBRACE, - ACTIONS(6618), 1, + ACTIONS(6778), 1, aux_sym_identifier_token1, - STATE(739), 1, + STATE(757), 1, sym__curly_braces_name_expression, - STATE(916), 1, + STATE(876), 1, sym_identifier, - [77994] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6812), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [78010] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6814), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [78026] = 2, + [79280] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6662), 4, + ACTIONS(6830), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - anon_sym_minlines, - anon_sym_maxlines, - [78036] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6816), 1, - anon_sym_RBRACK, - ACTIONS(6818), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2348), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [78052] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6820), 1, - anon_sym_RBRACK, - ACTIONS(6822), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2354), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [78068] = 5, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6824), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [78084] = 5, + ACTIONS(6931), 2, + anon_sym_start, + anon_sym_minimum, + [79292] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6540), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6826), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [78100] = 4, + ACTIONS(3818), 1, + anon_sym_BSLASH2, + ACTIONS(3820), 3, + anon_sym_LT, + aux_sym__map_rhs_token2, + aux_sym__map_rhs_token4, + [79304] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6658), 1, - sym_au_event, - STATE(3182), 1, - sym_au_event_list, - ACTIONS(6660), 2, + ACTIONS(6838), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [78114] = 5, + ACTIONS(6933), 2, + anon_sym_match, + anon_sym_ignore, + [79316] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1303), 1, - anon_sym_BSLASH, - ACTIONS(6828), 1, - anon_sym_RBRACK, - ACTIONS(6830), 1, - aux_sym__pattern_ordinary_atom_token1, - STATE(2353), 1, - aux_sym__pattern_ordinary_atom_repeat1, - [78130] = 4, + ACTIONS(5141), 1, + anon_sym_SQUOTE, + ACTIONS(6935), 1, + aux_sym__hl_key_font_token1, + STATE(1559), 1, + sym__hl_quoted_name, + [79329] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6832), 1, + ACTIONS(5724), 1, + anon_sym_RPAREN, + ACTIONS(6937), 1, anon_sym_COMMA, - ACTIONS(6834), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_literal_dictionary_repeat1, - [78143] = 3, + STATE(2534), 1, + aux_sym_parameters_repeat1, + [79342] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6836), 1, - sym_bang, - ACTIONS(6838), 2, + STATE(251), 1, + sym__cmd_separator, + ACTIONS(6939), 2, sym__newline_or_pipe, sym_comment, - [78154] = 4, + [79353] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4995), 1, + ACTIONS(5050), 1, aux_sym__map_rhs_token4, - ACTIONS(6840), 1, + ACTIONS(6941), 1, anon_sym_BSLASH_PIPE, - STATE(2373), 1, + STATE(2503), 1, aux_sym_pattern_repeat1, - [78167] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6844), 1, - sym_hl_group, - ACTIONS(6842), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [78178] = 3, + [79366] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(10), 1, + STATE(245), 1, sym__cmd_separator, - ACTIONS(6846), 2, + ACTIONS(6943), 2, sym__newline_or_pipe, sym_comment, - [78189] = 4, + [79377] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6945), 1, + anon_sym_COMMA, + ACTIONS(6947), 1, + anon_sym_RBRACE, + STATE(2446), 1, + aux_sym_literal_dictionary_repeat1, + [79390] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1807), 1, - anon_sym_RBRACE, - ACTIONS(6848), 1, + ACTIONS(5112), 1, + anon_sym_BSLASH_RPAREN, + ACTIONS(6949), 1, + anon_sym_BSLASH_PIPE, + STATE(2409), 1, + aux_sym_pattern_repeat1, + [79403] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2849), 1, anon_sym_COMMA, - STATE(2371), 1, - aux_sym_dictionnary_repeat1, - [78202] = 3, + ACTIONS(6952), 1, + anon_sym_DASH_GT, + STATE(2324), 1, + aux_sym_parameters_repeat2, + [79416] = 4, ACTIONS(3), 1, sym__line_continuation, - STATE(259), 1, - sym__cmd_separator, - ACTIONS(6850), 2, - sym__newline_or_pipe, - sym_comment, - [78213] = 4, + ACTIONS(6894), 1, + aux_sym_option_name_token1, + ACTIONS(6896), 1, + anon_sym_t_, + STATE(858), 1, + sym_option_name, + [79429] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(6852), 1, + ACTIONS(6954), 1, + anon_sym_COMMA, + ACTIONS(6956), 1, anon_sym_RBRACE, - STATE(2807), 1, - sym__literal_dictionary_entry, - [78226] = 4, + STATE(2434), 1, + aux_sym_dictionnary_repeat1, + [79442] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(6854), 1, + ACTIONS(1753), 1, anon_sym_RBRACE, - STATE(2807), 1, - sym__literal_dictionary_entry, - [78239] = 3, + ACTIONS(6958), 1, + anon_sym_COMMA, + STATE(2539), 1, + aux_sym_dictionnary_repeat1, + [79455] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5050), 1, + anon_sym_BSLASH_RPAREN, + ACTIONS(6960), 1, + anon_sym_BSLASH_PIPE, + STATE(2409), 1, + aux_sym_pattern_repeat1, + [79468] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(246), 1, + STATE(262), 1, sym__cmd_separator, - ACTIONS(6856), 2, + ACTIONS(6962), 2, sym__newline_or_pipe, sym_comment, - [78250] = 4, + [79479] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2946), 1, + ACTIONS(2001), 1, + anon_sym_RBRACK2, + ACTIONS(6671), 1, anon_sym_COMMA, - ACTIONS(6858), 1, - anon_sym_RPAREN, - STATE(2185), 1, + STATE(2255), 1, aux_sym_list_repeat1, - [78263] = 3, + [79492] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(252), 1, + STATE(250), 1, sym__cmd_separator, - ACTIONS(6860), 2, + ACTIONS(6964), 2, sym__newline_or_pipe, sym_comment, - [78274] = 4, + [79503] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6862), 1, - anon_sym_COMMA, - ACTIONS(6864), 1, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(6966), 1, anon_sym_RBRACE, - STATE(2402), 1, - aux_sym_dictionnary_repeat1, - [78287] = 3, + STATE(2736), 1, + sym__literal_dictionary_entry, + [79516] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6866), 1, - sym_bang, - ACTIONS(6838), 2, + ACTIONS(5112), 1, + sym__separator, + ACTIONS(6968), 1, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [78298] = 4, + STATE(2419), 1, + aux_sym_pattern_repeat1, + [79529] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6868), 1, - anon_sym_COMMA, - ACTIONS(6871), 1, - anon_sym_RBRACE, - STATE(2371), 1, - aux_sym_dictionnary_repeat1, - [78311] = 4, + ACTIONS(5050), 1, + sym__separator, + ACTIONS(6971), 1, + anon_sym_BSLASH_PIPE, + STATE(2419), 1, + aux_sym_pattern_repeat1, + [79542] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6873), 1, - anon_sym_COMMA, - ACTIONS(6876), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_literal_dictionary_repeat1, - [78324] = 4, + ACTIONS(6747), 1, + anon_sym_, + ACTIONS(6818), 1, + aux_sym__map_rhs_token4, + ACTIONS(6973), 1, + sym_set_value, + [79555] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5005), 1, - aux_sym__map_rhs_token4, - ACTIONS(6878), 1, - anon_sym_BSLASH_PIPE, - STATE(2373), 1, - aux_sym_pattern_repeat1, - [78337] = 4, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(6975), 1, + sym_hl_group, + STATE(2960), 1, + sym_at, + [79568] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1963), 1, - anon_sym_RBRACK, - ACTIONS(6881), 1, + ACTIONS(6977), 1, anon_sym_COMMA, - STATE(2185), 1, - aux_sym_list_repeat1, - [78350] = 4, + ACTIONS(6979), 1, + anon_sym_RBRACE, + STATE(2547), 1, + aux_sym_literal_dictionary_repeat1, + [79581] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6606), 1, - aux_sym_option_name_token1, - ACTIONS(6608), 1, - anon_sym_t_, - STATE(730), 1, - sym_option_name, - [78363] = 4, + ACTIONS(6983), 1, + sym_hl_group, + ACTIONS(6981), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [79592] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4995), 1, + ACTIONS(5147), 1, anon_sym_BSLASH_RPAREN, - ACTIONS(6883), 1, + ACTIONS(6960), 1, anon_sym_BSLASH_PIPE, - STATE(2392), 1, + STATE(2414), 1, aux_sym_pattern_repeat1, - [78376] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6652), 1, - aux_sym_option_name_token1, - ACTIONS(6654), 1, - anon_sym_t_, - STATE(216), 1, - sym_option_name, - [78389] = 4, + [79605] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6739), 1, - aux_sym_option_name_token1, - ACTIONS(6741), 1, - anon_sym_t_, - STATE(541), 1, - sym_option_name, - [78402] = 4, + ACTIONS(2948), 1, + anon_sym_COMMA, + ACTIONS(6985), 1, + anon_sym_RPAREN, + STATE(2255), 1, + aux_sym_list_repeat1, + [79618] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, - sym__heredoc_line, - ACTIONS(6887), 1, - sym__heredoc_end, - STATE(2454), 1, - aux_sym_script_repeat1, - [78415] = 4, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(6987), 1, + anon_sym_RBRACE, + STATE(2736), 1, + sym__literal_dictionary_entry, + [79631] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6889), 1, + ACTIONS(6989), 1, sym_chunk, - ACTIONS(6891), 1, + ACTIONS(6991), 1, anon_sym_LT_LT, - STATE(2725), 1, + STATE(2913), 1, sym_script, - [78428] = 4, + [79644] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6891), 1, + ACTIONS(6991), 1, anon_sym_LT_LT, - ACTIONS(6893), 1, + ACTIONS(6993), 1, sym_chunk, - STATE(2805), 1, + STATE(2914), 1, sym_script, - [78441] = 4, + [79657] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6891), 1, + ACTIONS(6991), 1, anon_sym_LT_LT, - ACTIONS(6895), 1, + ACTIONS(6995), 1, sym_chunk, - STATE(2802), 1, + STATE(2916), 1, sym_script, - [78454] = 4, + [79670] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6891), 1, + ACTIONS(6991), 1, anon_sym_LT_LT, - ACTIONS(6897), 1, + ACTIONS(6997), 1, sym_chunk, - STATE(2843), 1, + STATE(2919), 1, sym_script, - [78467] = 4, + [79683] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5005), 1, - sym__separator, - ACTIONS(6899), 1, - anon_sym_BSLASH_PIPE, - STATE(2384), 1, - aux_sym_pattern_repeat1, - [78480] = 4, + ACTIONS(2785), 1, + anon_sym_EQ, + ACTIONS(2787), 2, + anon_sym_in, + anon_sym_EQ_LT_LT, + [79694] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6902), 1, - anon_sym_COMMA, - ACTIONS(6904), 1, - anon_sym_RPAREN, - STATE(2474), 1, - aux_sym_parameters_repeat1, - [78493] = 4, + ACTIONS(6872), 1, + aux_sym__map_rhs_token4, + ACTIONS(6741), 2, + sym_string_literal, + aux_sym_command_argument_token1, + [79705] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6906), 1, - anon_sym_COMMA, - ACTIONS(6908), 1, + ACTIONS(1817), 1, anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_literal_dictionary_repeat1, - [78506] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6910), 3, - sym__let_heredoc_marker, - anon_sym_trim, - anon_sym_eval, - [78515] = 4, + ACTIONS(6999), 1, + anon_sym_COMMA, + STATE(2539), 1, + aux_sym_dictionnary_repeat1, + [79718] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6912), 1, - aux_sym_autocmd_statement_token1, - ACTIONS(6914), 1, + ACTIONS(2007), 1, + anon_sym_RBRACK2, + ACTIONS(7001), 1, anon_sym_COMMA, - STATE(2388), 1, - aux_sym_au_event_list_repeat1, - [78528] = 4, + STATE(2255), 1, + aux_sym_list_repeat1, + [79731] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5669), 1, - anon_sym_RPAREN, - ACTIONS(6917), 1, - anon_sym_COMMA, - STATE(2491), 1, - aux_sym_parameters_repeat1, - [78541] = 4, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(7003), 1, + anon_sym_RBRACE, + STATE(2736), 1, + sym__literal_dictionary_entry, + [79744] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6919), 1, + ACTIONS(7005), 1, anon_sym_COMMA, - ACTIONS(6921), 1, + ACTIONS(7007), 1, anon_sym_RBRACE, - STATE(2386), 1, + STATE(2547), 1, aux_sym_literal_dictionary_repeat1, - [78554] = 4, + [79757] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6923), 1, + ACTIONS(7009), 1, sym_filetype, - ACTIONS(6925), 1, + ACTIONS(7011), 1, anon_sym_FALLBACK, - STATE(2747), 1, + STATE(2741), 1, sym_filetypes, - [78567] = 4, + [79770] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5005), 1, - anon_sym_BSLASH_RPAREN, - ACTIONS(6927), 1, - anon_sym_BSLASH_PIPE, - STATE(2392), 1, - aux_sym_pattern_repeat1, - [78580] = 4, + ACTIONS(7013), 1, + sym_chunk, + ACTIONS(7015), 1, + anon_sym_LT_LT, + STATE(2691), 1, + sym_script, + [79783] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, - sym__heredoc_line, - ACTIONS(6930), 1, - sym__heredoc_end, - STATE(2454), 1, - aux_sym_script_repeat1, - [78593] = 3, + ACTIONS(7015), 1, + anon_sym_LT_LT, + ACTIONS(7017), 1, + sym_chunk, + STATE(2726), 1, + sym_script, + [79796] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6932), 1, - sym_hl_group, - ACTIONS(6842), 2, - sym__newline_or_pipe, - sym_comment, - [78604] = 4, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(7019), 1, + anon_sym_RBRACE, + STATE(2736), 1, + sym__literal_dictionary_entry, + [79809] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5669), 1, - anon_sym_RPAREN, - ACTIONS(6934), 1, + ACTIONS(7015), 1, + anon_sym_LT_LT, + ACTIONS(7021), 1, + sym_chunk, + STATE(2721), 1, + sym_script, + [79822] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2009), 1, + anon_sym_RBRACK2, + ACTIONS(7023), 1, anon_sym_COMMA, - STATE(2315), 1, - aux_sym_parameters_repeat2, - [78617] = 4, + STATE(2255), 1, + aux_sym_list_repeat1, + [79835] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6658), 1, - sym_au_event, - ACTIONS(6660), 1, - aux_sym__map_rhs_token4, - STATE(3164), 1, - sym_au_event_list, - [78630] = 4, + STATE(15), 1, + sym__cmd_separator, + ACTIONS(7025), 2, + sym__newline_or_pipe, + sym_comment, + [79846] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6755), 1, - aux_sym__map_rhs_token4, - ACTIONS(6936), 1, - anon_sym_, - STATE(2482), 1, - aux_sym_set_statement_repeat1, - [78643] = 4, + ACTIONS(1835), 1, + anon_sym_RBRACE, + ACTIONS(7027), 1, + anon_sym_COMMA, + STATE(2539), 1, + aux_sym_dictionnary_repeat1, + [79859] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6938), 1, + ACTIONS(7029), 1, anon_sym_COMMA, - ACTIONS(6940), 1, + ACTIONS(7031), 1, anon_sym_RBRACE, - STATE(2372), 1, + STATE(2547), 1, aux_sym_literal_dictionary_repeat1, - [78656] = 4, + [79872] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6751), 1, + ACTIONS(6874), 1, aux_sym__map_rhs_token4, - ACTIONS(6936), 1, - anon_sym_, - STATE(2481), 1, - aux_sym_set_statement_repeat1, - [78669] = 4, + ACTIONS(6743), 2, + sym_string_literal, + aux_sym_command_argument_token1, + [79883] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6658), 1, - sym_au_event, - ACTIONS(6664), 1, + ACTIONS(6860), 1, aux_sym__map_rhs_token4, - STATE(3140), 1, - sym_au_event_list, - [78682] = 4, + ACTIONS(6862), 2, + anon_sym_clear, + aux_sym__syn_iskeyword_token1, + [79894] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, - anon_sym_COMMA, - ACTIONS(6942), 1, - anon_sym_DASH_GT, - STATE(2315), 1, - aux_sym_parameters_repeat2, - [78695] = 4, + STATE(247), 1, + sym__cmd_separator, + ACTIONS(7033), 2, + sym__newline_or_pipe, + sym_comment, + [79905] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1781), 1, - anon_sym_RBRACE, - ACTIONS(6944), 1, + ACTIONS(7035), 1, anon_sym_COMMA, - STATE(2371), 1, - aux_sym_dictionnary_repeat1, - [78708] = 4, + ACTIONS(7037), 1, + anon_sym_RBRACE, + STATE(2437), 1, + aux_sym_literal_dictionary_repeat1, + [79918] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(6946), 1, - sym_hl_group, - STATE(2935), 1, - sym_at, - [78721] = 4, + ACTIONS(7039), 3, + sym__let_heredoc_marker, + anon_sym_trim, + anon_sym_eval, + [79927] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(6948), 1, - anon_sym_RBRACE, - STATE(2807), 1, - sym__literal_dictionary_entry, - [78734] = 4, + ACTIONS(6810), 1, + aux_sym_option_name_token1, + ACTIONS(6812), 1, + anon_sym_t_, + STATE(155), 1, + sym_option_name, + [79940] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2946), 1, + ACTIONS(7041), 1, anon_sym_COMMA, - ACTIONS(6950), 1, - anon_sym_RPAREN, - STATE(2185), 1, - aux_sym_list_repeat1, - [78747] = 3, - ACTIONS(3), 1, - sym__line_continuation, - STATE(2470), 1, - aux_sym_pattern_repeat1, - ACTIONS(5042), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [78758] = 4, + ACTIONS(7043), 1, + anon_sym_RBRACE, + STATE(2445), 1, + aux_sym_dictionnary_repeat1, + [79953] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4995), 1, - sym__separator, - ACTIONS(6952), 1, - anon_sym_BSLASH_PIPE, - STATE(2384), 1, - aux_sym_pattern_repeat1, - [78771] = 4, + STATE(2767), 1, + sym__filetype_state, + ACTIONS(5585), 2, + anon_sym_on, + anon_sym_off, + [79964] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2689), 1, + ACTIONS(2697), 1, anon_sym_EQ_LT_LT, - ACTIONS(6954), 1, + ACTIONS(7045), 1, anon_sym_EQ, - STATE(2709), 1, + STATE(2744), 1, sym__let_heredoc, - [78784] = 4, + [79977] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2039), 1, - anon_sym_RBRACK, - ACTIONS(6956), 1, + ACTIONS(2849), 1, anon_sym_COMMA, - STATE(2185), 1, - aux_sym_list_repeat1, - [78797] = 4, + ACTIONS(7047), 1, + anon_sym_DASH_GT, + STATE(2324), 1, + aux_sym_parameters_repeat2, + [79990] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1727), 1, - anon_sym_RBRACE, - ACTIONS(6958), 1, + ACTIONS(7015), 1, + anon_sym_LT_LT, + ACTIONS(7049), 1, + sym_chunk, + STATE(2718), 1, + sym_script, + [80003] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2849), 1, anon_sym_COMMA, - STATE(2371), 1, - aux_sym_dictionnary_repeat1, - [78810] = 4, + ACTIONS(7051), 1, + anon_sym_DASH_GT, + STATE(2324), 1, + aux_sym_parameters_repeat2, + [80016] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, + ACTIONS(6590), 1, sym_literal_key, - ACTIONS(6960), 1, + ACTIONS(7053), 1, anon_sym_RBRACE, - STATE(2807), 1, + STATE(2736), 1, sym__literal_dictionary_entry, - [78823] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6885), 1, - sym__heredoc_line, - ACTIONS(6962), 1, - sym__heredoc_end, - STATE(2379), 1, - aux_sym_script_repeat1, - [78836] = 4, + [80029] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5669), 1, - anon_sym_RPAREN, - ACTIONS(6917), 1, + ACTIONS(2948), 1, anon_sym_COMMA, - STATE(2474), 1, - aux_sym_parameters_repeat1, - [78849] = 4, + ACTIONS(7055), 1, + anon_sym_RPAREN, + STATE(2255), 1, + aux_sym_list_repeat1, + [80042] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, + ACTIONS(7057), 1, sym__heredoc_line, - ACTIONS(6964), 1, + ACTIONS(7059), 1, sym__heredoc_end, - STATE(2454), 1, + STATE(2570), 1, aux_sym_script_repeat1, - [78862] = 4, + [80055] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2946), 1, - anon_sym_COMMA, - ACTIONS(6966), 1, - anon_sym_RPAREN, - STATE(2185), 1, - aux_sym_list_repeat1, - [78875] = 4, + ACTIONS(7061), 1, + sym_bang, + ACTIONS(7063), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [80066] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6968), 1, + ACTIONS(2849), 1, anon_sym_COMMA, - ACTIONS(6970), 1, - anon_sym_RBRACE, - STATE(2362), 1, - aux_sym_dictionnary_repeat1, - [78888] = 4, + ACTIONS(7065), 1, + anon_sym_DASH_GT, + STATE(2324), 1, + aux_sym_parameters_repeat2, + [80079] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6512), 1, - anon_sym_, - ACTIONS(6584), 1, - aux_sym__map_rhs_token4, - ACTIONS(6972), 1, - sym_set_value, - [78901] = 3, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(7067), 1, + sym_hl_group, + STATE(2982), 1, + sym_at, + [80092] = 4, ACTIONS(3), 1, sym__line_continuation, - STATE(2594), 1, - sym__filetype_state, - ACTIONS(5673), 2, - anon_sym_on, - anon_sym_off, - [78912] = 4, + ACTIONS(7069), 1, + aux_sym_autocmd_statement_token1, + ACTIONS(7071), 1, + anon_sym_COMMA, + STATE(2465), 1, + aux_sym_au_event_list_repeat1, + [80105] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4672), 1, + ACTIONS(4803), 1, aux_sym_option_name_token1, - ACTIONS(4674), 1, + ACTIONS(4805), 1, anon_sym_t_, - STATE(1805), 1, + STATE(1961), 1, sym_option_name, - [78925] = 4, + [80118] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4672), 1, + ACTIONS(4803), 1, aux_sym_option_name_token1, - ACTIONS(4674), 1, + ACTIONS(4805), 1, anon_sym_t_, - STATE(1854), 1, + STATE(1962), 1, sym_option_name, - [78938] = 4, + [80131] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6974), 1, + ACTIONS(2849), 1, anon_sym_COMMA, - ACTIONS(6976), 1, + ACTIONS(7074), 1, + anon_sym_DASH_GT, + STATE(2324), 1, + aux_sym_parameters_repeat2, + [80144] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7076), 1, + sym_filetype, + ACTIONS(7078), 1, + anon_sym_FALLBACK, + STATE(2644), 1, + sym_filetypes, + [80157] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(7080), 1, + sym_hl_group, + STATE(2986), 1, + sym_at, + [80170] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5623), 1, anon_sym_RPAREN, - STATE(2385), 1, + ACTIONS(7082), 1, + anon_sym_COMMA, + STATE(2560), 1, aux_sym_parameters_repeat1, - [78951] = 4, + [80183] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2948), 1, + anon_sym_COMMA, + ACTIONS(7084), 1, + anon_sym_RPAREN, + STATE(2255), 1, + aux_sym_list_repeat1, + [80196] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2849), 1, + anon_sym_COMMA, + ACTIONS(7086), 1, + anon_sym_DASH_GT, + STATE(2324), 1, + aux_sym_parameters_repeat2, + [80209] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(7088), 1, + anon_sym_RBRACE, + STATE(2736), 1, + sym__literal_dictionary_entry, + [80222] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6780), 1, + aux_sym_option_name_token1, + ACTIONS(6782), 1, + anon_sym_t_, + STATE(646), 1, + sym_option_name, + [80235] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6978), 1, + ACTIONS(7090), 1, anon_sym_COMMA, - ACTIONS(6980), 1, + ACTIONS(7092), 1, anon_sym_RBRACE, - STATE(2372), 1, + STATE(2547), 1, aux_sym_literal_dictionary_repeat1, - [78964] = 4, + [80248] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5042), 1, - sym__separator, - ACTIONS(6952), 1, - anon_sym_BSLASH_PIPE, - STATE(2407), 1, - aux_sym_pattern_repeat1, - [78977] = 4, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(7094), 1, + anon_sym_RBRACE, + STATE(2736), 1, + sym__literal_dictionary_entry, + [80261] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6982), 1, + ACTIONS(1969), 1, + anon_sym_RBRACK2, + ACTIONS(7096), 1, anon_sym_COMMA, - ACTIONS(6984), 1, + STATE(2255), 1, + aux_sym_list_repeat1, + [80274] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5191), 1, + anon_sym_SQUOTE, + ACTIONS(7098), 1, + aux_sym__hl_key_font_token1, + STATE(1538), 1, + sym__hl_quoted_name, + [80287] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1775), 1, anon_sym_RBRACE, - STATE(2469), 1, + ACTIONS(7100), 1, + anon_sym_COMMA, + STATE(2539), 1, aux_sym_dictionnary_repeat1, - [78990] = 4, + [80300] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6974), 1, - anon_sym_COMMA, - ACTIONS(6976), 1, - anon_sym_RPAREN, - STATE(2474), 1, - aux_sym_parameters_repeat1, - [79003] = 4, + ACTIONS(4390), 1, + anon_sym_RBRACK, + ACTIONS(7102), 1, + aux_sym__syn_keyword_identifier_token2, + STATE(2481), 1, + aux_sym__syn_keyword_identifier_repeat1, + [80313] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, + ACTIONS(3094), 1, anon_sym_AT, - ACTIONS(6986), 1, + ACTIONS(7105), 1, sym_hl_group, - STATE(2957), 1, + STATE(3007), 1, sym_at, - [79016] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(5042), 1, - anon_sym_BSLASH_RPAREN, - ACTIONS(6883), 1, - anon_sym_BSLASH_PIPE, - STATE(2376), 1, - aux_sym_pattern_repeat1, - [79029] = 4, + [80326] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6988), 1, + ACTIONS(7107), 1, anon_sym_COMMA, - ACTIONS(6990), 1, + ACTIONS(7109), 1, anon_sym_RBRACE, - STATE(2357), 1, + STATE(2476), 1, aux_sym_literal_dictionary_repeat1, - [79042] = 4, + [80339] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(7111), 1, + sym_hl_group, + STATE(3022), 1, + sym_at, + [80352] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6794), 1, + aux_sym_option_name_token1, + ACTIONS(6796), 1, + anon_sym_t_, + STATE(219), 1, + sym_option_name, + [80365] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6992), 1, + ACTIONS(7113), 1, anon_sym_COMMA, - ACTIONS(6994), 1, + ACTIONS(7115), 1, anon_sym_RBRACE, - STATE(2398), 1, - aux_sym_literal_dictionary_repeat1, - [79055] = 4, + STATE(2480), 1, + aux_sym_dictionnary_repeat1, + [80378] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1819), 1, - anon_sym_RBRACE, - ACTIONS(6996), 1, + ACTIONS(7117), 1, + sym_bang, + ACTIONS(7063), 2, + sym__newline_or_pipe, + sym_comment, + [80389] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7057), 1, + sym__heredoc_line, + ACTIONS(7119), 1, + sym__heredoc_end, + STATE(2570), 1, + aux_sym_script_repeat1, + [80402] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7121), 1, anon_sym_COMMA, - STATE(2371), 1, + ACTIONS(7123), 1, + anon_sym_RBRACE, + STATE(2531), 1, aux_sym_dictionnary_repeat1, - [79068] = 4, + [80415] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6910), 1, + aux_sym_option_name_token1, + ACTIONS(6912), 1, + anon_sym_t_, + STATE(850), 1, + sym_option_name, + [80428] = 3, + ACTIONS(3), 1, + sym__line_continuation, + STATE(256), 1, + sym__cmd_separator, + ACTIONS(7125), 2, + sym__newline_or_pipe, + sym_comment, + [80439] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(7127), 1, + sym_hl_group, + STATE(3044), 1, + sym_at, + [80452] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7129), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_, + [80461] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6624), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_, + [80470] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6718), 1, - aux_sym_option_name_token1, - ACTIONS(6720), 1, - anon_sym_t_, - STATE(701), 1, - sym_option_name, - [79081] = 3, + ACTIONS(7131), 1, + anon_sym_COMMA, + ACTIONS(7133), 1, + anon_sym_RBRACE, + STATE(2537), 1, + aux_sym_literal_dictionary_repeat1, + [80483] = 4, ACTIONS(3), 1, sym__line_continuation, - STATE(2789), 1, - sym__filetype_state, - ACTIONS(5721), 2, - anon_sym_on, - anon_sym_off, - [79092] = 3, + ACTIONS(7135), 1, + anon_sym_COMMA, + ACTIONS(7137), 1, + anon_sym_RPAREN, + STATE(2596), 1, + aux_sym_parameters_repeat1, + [80496] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6688), 1, - aux_sym__map_rhs_token4, - ACTIONS(6536), 2, - sym_string_literal, - aux_sym_command_argument_token1, - [79103] = 4, + ACTIONS(6633), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_DOT, + [80505] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1847), 1, - anon_sym_RBRACK, - ACTIONS(6680), 1, + ACTIONS(2948), 1, anon_sym_COMMA, - STATE(2185), 1, + ACTIONS(7139), 1, + anon_sym_RPAREN, + STATE(2255), 1, aux_sym_list_repeat1, - [79116] = 3, + [80518] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6998), 1, - aux_sym__pattern_ordinary_atom_token1, - ACTIONS(6643), 2, - anon_sym_BSLASH, - anon_sym_RBRACK, - [79127] = 4, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(7141), 1, + anon_sym_RBRACE, + STATE(2736), 1, + sym__literal_dictionary_entry, + [80531] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6620), 1, - aux_sym_option_name_token1, - ACTIONS(6622), 1, - anon_sym_t_, - STATE(499), 1, - sym_option_name, - [79140] = 4, + ACTIONS(7143), 3, + sym__newline_or_pipe, + sym_comment, + anon_sym_, + [80540] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7145), 1, + sym_hl_group, + ACTIONS(5942), 2, + sym__newline_or_pipe, + sym_comment, + [80551] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7000), 1, + ACTIONS(7147), 1, anon_sym_COMMA, - ACTIONS(7002), 1, + ACTIONS(7149), 1, anon_sym_RBRACE, - STATE(2410), 1, - aux_sym_dictionnary_repeat1, - [79153] = 3, + STATE(2547), 1, + aux_sym_literal_dictionary_repeat1, + [80564] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6690), 1, + ACTIONS(5112), 1, aux_sym__map_rhs_token4, - ACTIONS(6692), 2, - sym_string_literal, - aux_sym_command_argument_token1, - [79164] = 3, + ACTIONS(7151), 1, + anon_sym_BSLASH_PIPE, + STATE(2503), 1, + aux_sym_pattern_repeat1, + [80577] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6804), 1, - aux_sym__map_rhs_token4, - ACTIONS(6806), 2, - anon_sym_clear, - aux_sym__syn_iskeyword_token1, - [79175] = 4, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(7154), 1, + sym_hl_group, + STATE(3298), 1, + sym_at, + [80590] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7057), 1, + sym__heredoc_line, + ACTIONS(7156), 1, + sym__heredoc_end, + STATE(2551), 1, + aux_sym_script_repeat1, + [80603] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, + ACTIONS(6590), 1, sym_literal_key, - ACTIONS(7004), 1, + ACTIONS(7158), 1, anon_sym_RBRACE, - STATE(2807), 1, + STATE(2736), 1, sym__literal_dictionary_entry, - [79188] = 4, + [80616] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1919), 1, - anon_sym_RBRACK, - ACTIONS(7006), 1, + ACTIONS(1921), 1, + anon_sym_RBRACK2, + ACTIONS(7160), 1, anon_sym_COMMA, - STATE(2185), 1, + STATE(2255), 1, aux_sym_list_repeat1, - [79201] = 4, + [80629] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7008), 1, - anon_sym_COMMA, - ACTIONS(7010), 1, + ACTIONS(1747), 1, anon_sym_RBRACE, - STATE(2484), 1, + ACTIONS(7162), 1, + anon_sym_COMMA, + STATE(2539), 1, aux_sym_dictionnary_repeat1, - [79214] = 4, + [80642] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6702), 1, - aux_sym_option_name_token1, - ACTIONS(6704), 1, - anon_sym_t_, - STATE(888), 1, - sym_option_name, - [79227] = 3, + STATE(8), 1, + sym__cmd_separator, + ACTIONS(7164), 2, + sym__newline_or_pipe, + sym_comment, + [80653] = 3, ACTIONS(3), 1, sym__line_continuation, STATE(261), 1, sym__cmd_separator, - ACTIONS(7012), 2, + ACTIONS(7166), 2, sym__newline_or_pipe, sym_comment, - [79238] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(7014), 1, - anon_sym_RBRACE, - STATE(2807), 1, - sym__literal_dictionary_entry, - [79251] = 4, + [80664] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2946), 1, - anon_sym_COMMA, - ACTIONS(7016), 1, - anon_sym_RPAREN, - STATE(2185), 1, - aux_sym_list_repeat1, - [79264] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7018), 1, - anon_sym_COMMA, - ACTIONS(7020), 1, - anon_sym_RBRACE, - STATE(2476), 1, - aux_sym_literal_dictionary_repeat1, - [79277] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7022), 1, - anon_sym_COMMA, - ACTIONS(7024), 1, - anon_sym_RBRACE, - STATE(2490), 1, - aux_sym_literal_dictionary_repeat1, - [79290] = 4, + STATE(2668), 1, + sym__filetype_state, + ACTIONS(5655), 2, + anon_sym_on, + anon_sym_off, + [80675] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7026), 1, + ACTIONS(7168), 1, anon_sym_COMMA, - ACTIONS(7028), 1, + ACTIONS(7170), 1, anon_sym_RBRACE, - STATE(2422), 1, + STATE(2502), 1, aux_sym_literal_dictionary_repeat1, - [79303] = 4, + [80688] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4835), 1, + ACTIONS(6657), 1, aux_sym_option_name_token1, - ACTIONS(4837), 1, + ACTIONS(6659), 1, anon_sym_t_, - STATE(1813), 1, + STATE(715), 1, sym_option_name, - [79316] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(7030), 1, - anon_sym_RBRACE, - STATE(2807), 1, - sym__literal_dictionary_entry, - [79329] = 4, + [80701] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7032), 1, - aux_sym_autocmd_statement_token1, - ACTIONS(7034), 1, + ACTIONS(7172), 1, anon_sym_COMMA, - STATE(2468), 1, - aux_sym_au_event_list_repeat1, - [79342] = 3, - ACTIONS(3), 1, - sym__line_continuation, - STATE(247), 1, - sym__cmd_separator, - ACTIONS(7036), 2, - sym__newline_or_pipe, - sym_comment, - [79353] = 4, + ACTIONS(7174), 1, + anon_sym_RBRACE, + STATE(2508), 1, + aux_sym_dictionnary_repeat1, + [80714] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7038), 1, - sym__heredoc_line, - ACTIONS(7041), 1, - sym__heredoc_end, - STATE(2454), 1, - aux_sym_script_repeat1, - [79366] = 4, + ACTIONS(813), 1, + anon_sym_LBRACE2, + ACTIONS(815), 2, + anon_sym_in, + aux_sym_identifier_token2, + [80725] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5506), 1, - anon_sym_RPAREN, - ACTIONS(7043), 1, - anon_sym_COMMA, - STATE(2413), 1, - aux_sym_parameters_repeat1, - [79379] = 4, + ACTIONS(7176), 1, + aux_sym__pattern_ordinary_atom_token1, + ACTIONS(6680), 2, + anon_sym_BSLASH, + anon_sym_RBRACK2, + [80736] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4976), 1, - anon_sym_SQUOTE, - ACTIONS(7045), 1, - aux_sym__hl_key_font_token1, - STATE(1466), 1, - sym__hl_quoted_name, - [79392] = 4, + ACTIONS(5147), 1, + sym__separator, + ACTIONS(6971), 1, + anon_sym_BSLASH_PIPE, + STATE(2420), 1, + aux_sym_pattern_repeat1, + [80749] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, + ACTIONS(7057), 1, sym__heredoc_line, - ACTIONS(7047), 1, + ACTIONS(7178), 1, sym__heredoc_end, - STATE(2463), 1, + STATE(2488), 1, aux_sym_script_repeat1, - [79405] = 4, + [80762] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, - sym__heredoc_line, - ACTIONS(7049), 1, - sym__heredoc_end, - STATE(2504), 1, - aux_sym_script_repeat1, - [79418] = 4, + ACTIONS(5147), 1, + aux_sym__map_rhs_token4, + ACTIONS(6941), 1, + anon_sym_BSLASH_PIPE, + STATE(2406), 1, + aux_sym_pattern_repeat1, + [80775] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1745), 1, - anon_sym_RBRACE, - ACTIONS(7051), 1, - anon_sym_COMMA, - STATE(2371), 1, - aux_sym_dictionnary_repeat1, - [79431] = 4, + ACTIONS(6633), 3, + anon_sym_DOT, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [80784] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2755), 1, + ACTIONS(2689), 1, anon_sym_EQ_LT_LT, - ACTIONS(7053), 1, + ACTIONS(7180), 1, anon_sym_EQ, - STATE(2751), 1, + STATE(2732), 1, sym__let_heredoc, - [79444] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4835), 1, - aux_sym_option_name_token1, - ACTIONS(4837), 1, - anon_sym_t_, - STATE(1812), 1, - sym_option_name, - [79457] = 4, + [80797] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6592), 1, - aux_sym_option_name_token1, - ACTIONS(6594), 1, - anon_sym_t_, - STATE(948), 1, - sym_option_name, - [79470] = 4, + ACTIONS(3094), 1, + anon_sym_AT, + ACTIONS(7182), 1, + sym_hl_group, + STATE(3131), 1, + sym_at, + [80810] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, + ACTIONS(7057), 1, sym__heredoc_line, - ACTIONS(7055), 1, + ACTIONS(7184), 1, sym__heredoc_end, - STATE(2454), 1, + STATE(2570), 1, aux_sym_script_repeat1, - [79483] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7057), 1, - anon_sym_COMMA, - ACTIONS(7059), 1, - anon_sym_RBRACE, - STATE(2459), 1, - aux_sym_dictionnary_repeat1, - [79496] = 4, + [80823] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, - sym__heredoc_line, - ACTIONS(7061), 1, - sym__heredoc_end, - STATE(2414), 1, - aux_sym_script_repeat1, - [79509] = 3, + ACTIONS(7186), 1, + aux_sym__syn_keyword_identifier_token2, + ACTIONS(7188), 1, + anon_sym_RBRACK, + STATE(2481), 1, + aux_sym__syn_keyword_identifier_repeat1, + [80836] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2771), 1, - anon_sym_EQ, - ACTIONS(2773), 2, - anon_sym_in, - anon_sym_EQ_LT_LT, - [79520] = 3, + ACTIONS(6624), 1, + anon_sym_, + ACTIONS(6709), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [80847] = 3, ACTIONS(3), 1, sym__line_continuation, - STATE(253), 1, - sym__cmd_separator, - ACTIONS(7063), 2, - sym__newline_or_pipe, - sym_comment, - [79531] = 4, + ACTIONS(7129), 1, + anon_sym_, + ACTIONS(7190), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [80858] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7034), 1, - anon_sym_COMMA, - ACTIONS(7065), 1, + ACTIONS(7192), 1, aux_sym_autocmd_statement_token1, - STATE(2388), 1, + ACTIONS(7194), 1, + anon_sym_COMMA, + STATE(2465), 1, aux_sym_au_event_list_repeat1, - [79544] = 4, + [80871] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1755), 1, - anon_sym_RBRACE, - ACTIONS(7067), 1, + ACTIONS(6774), 3, anon_sym_COMMA, - STATE(2371), 1, - aux_sym_dictionnary_repeat1, - [79557] = 3, - ACTIONS(3), 1, - sym__line_continuation, - STATE(2373), 1, - aux_sym_pattern_repeat1, - ACTIONS(4995), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [79568] = 4, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [80880] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, + ACTIONS(7057), 1, sym__heredoc_line, - ACTIONS(7069), 1, + ACTIONS(7196), 1, sym__heredoc_end, - STATE(2393), 1, + STATE(2461), 1, aux_sym_script_repeat1, - [79581] = 4, + [80893] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2011), 1, + ACTIONS(7198), 1, + aux_sym__syn_keyword_identifier_token2, + ACTIONS(7200), 1, anon_sym_RBRACK, - ACTIONS(7071), 1, + STATE(2524), 1, + aux_sym__syn_keyword_identifier_repeat1, + [80906] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1765), 1, + anon_sym_RBRACE, + ACTIONS(7202), 1, anon_sym_COMMA, - STATE(2185), 1, - aux_sym_list_repeat1, - [79594] = 3, + STATE(2539), 1, + aux_sym_dictionnary_repeat1, + [80919] = 4, ACTIONS(3), 1, sym__line_continuation, - STATE(254), 1, - sym__cmd_separator, - ACTIONS(7073), 2, - sym__newline_or_pipe, - sym_comment, - [79605] = 4, + ACTIONS(7204), 1, + anon_sym_COMMA, + ACTIONS(7206), 1, + anon_sym_RPAREN, + STATE(2496), 1, + aux_sym_parameters_repeat1, + [80932] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6702), 1, + sym_au_event, + ACTIONS(6840), 1, + aux_sym__map_rhs_token4, + STATE(3180), 1, + sym_au_event_list, + [80945] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7075), 1, + ACTIONS(7204), 1, anon_sym_COMMA, - ACTIONS(7078), 1, + ACTIONS(7206), 1, anon_sym_RPAREN, - STATE(2474), 1, + STATE(2596), 1, aux_sym_parameters_repeat1, - [79618] = 4, + [80958] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(1999), 1, + anon_sym_RBRACK2, + ACTIONS(7208), 1, + anon_sym_COMMA, + STATE(2255), 1, + aux_sym_list_repeat1, + [80971] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, + ACTIONS(6590), 1, sym_literal_key, - ACTIONS(7080), 1, + ACTIONS(7210), 1, anon_sym_RBRACE, - STATE(2807), 1, + STATE(2736), 1, sym__literal_dictionary_entry, - [79631] = 4, + [80984] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7082), 1, + ACTIONS(7212), 1, anon_sym_COMMA, - ACTIONS(7084), 1, + ACTIONS(7214), 1, anon_sym_RBRACE, - STATE(2372), 1, + STATE(2547), 1, aux_sym_literal_dictionary_repeat1, - [79644] = 4, + [80997] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(7086), 1, + STATE(257), 1, + sym__cmd_separator, + ACTIONS(7216), 2, + sym__newline_or_pipe, + sym_comment, + [81008] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7218), 1, + anon_sym_COMMA, + ACTIONS(7221), 1, anon_sym_RBRACE, - STATE(2807), 1, - sym__literal_dictionary_entry, - [79657] = 4, + STATE(2539), 1, + aux_sym_dictionnary_repeat1, + [81021] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5643), 1, - anon_sym_RPAREN, - ACTIONS(7088), 1, + ACTIONS(2948), 1, anon_sym_COMMA, - STATE(2425), 1, - aux_sym_parameters_repeat1, - [79670] = 4, + ACTIONS(7223), 1, + anon_sym_RPAREN, + STATE(2255), 1, + aux_sym_list_repeat1, + [81034] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(7225), 1, + anon_sym_RBRACE, + STATE(2736), 1, + sym__literal_dictionary_entry, + [81047] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6529), 1, + ACTIONS(6929), 1, aux_sym__map_rhs_token4, - ACTIONS(7090), 1, + ACTIONS(7227), 1, anon_sym_, - STATE(2479), 1, + STATE(2579), 1, aux_sym_set_statement_repeat1, - [79683] = 3, + [81060] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7093), 1, - sym_hl_group, - ACTIONS(5854), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [79694] = 4, + ACTIONS(2849), 1, + anon_sym_COMMA, + ACTIONS(7229), 1, + anon_sym_DASH_GT, + STATE(2324), 1, + aux_sym_parameters_repeat2, + [81073] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6574), 1, - aux_sym__map_rhs_token4, - ACTIONS(6936), 1, - anon_sym_, - STATE(2479), 1, - aux_sym_set_statement_repeat1, - [79707] = 4, + ACTIONS(6590), 1, + sym_literal_key, + ACTIONS(7231), 1, + anon_sym_RBRACE, + STATE(2736), 1, + sym__literal_dictionary_entry, + [81086] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6576), 1, + ACTIONS(6927), 1, aux_sym__map_rhs_token4, - ACTIONS(6936), 1, + ACTIONS(7227), 1, anon_sym_, - STATE(2479), 1, + STATE(2582), 1, aux_sym_set_statement_repeat1, - [79720] = 4, + [81099] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(7095), 1, - sym_hl_group, - STATE(3100), 1, - sym_at, - [79733] = 4, + ACTIONS(6702), 1, + sym_au_event, + ACTIONS(6704), 1, + aux_sym__map_rhs_token4, + STATE(3159), 1, + sym_au_event_list, + [81112] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1741), 1, - anon_sym_RBRACE, - ACTIONS(7097), 1, + ACTIONS(7233), 1, anon_sym_COMMA, - STATE(2371), 1, - aux_sym_dictionnary_repeat1, - [79746] = 3, + ACTIONS(7236), 1, + anon_sym_RBRACE, + STATE(2547), 1, + aux_sym_literal_dictionary_repeat1, + [81125] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7099), 1, - anon_sym_, - ACTIONS(7101), 2, + ACTIONS(2781), 1, + anon_sym_EQ, + ACTIONS(2783), 2, + anon_sym_in, + anon_sym_EQ_LT_LT, + [81136] = 3, + ACTIONS(3), 1, + sym__line_continuation, + STATE(2573), 1, + aux_sym_pattern_repeat1, + ACTIONS(5147), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [79757] = 3, + [81147] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6638), 1, - anon_sym_EQ, - ACTIONS(6737), 2, + ACTIONS(7238), 1, + anon_sym_COMMA, + ACTIONS(7240), 1, + anon_sym_RBRACE, + STATE(2423), 1, + aux_sym_literal_dictionary_repeat1, + [81160] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7057), 1, + sym__heredoc_line, + ACTIONS(7242), 1, + sym__heredoc_end, + STATE(2570), 1, + aux_sym_script_repeat1, + [81173] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(6876), 1, + aux_sym_option_name_token1, + ACTIONS(6878), 1, + anon_sym_t_, + STATE(730), 1, + sym_option_name, + [81186] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7244), 1, + anon_sym_COMMA, + ACTIONS(7246), 1, + anon_sym_RBRACE, + STATE(2413), 1, + aux_sym_dictionnary_repeat1, + [81199] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5827), 1, + anon_sym_RPAREN, + ACTIONS(7248), 1, anon_sym_COMMA, + STATE(2584), 1, + aux_sym_parameters_repeat1, + [81212] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(5827), 1, anon_sym_RPAREN, - [79768] = 4, + ACTIONS(7250), 1, + anon_sym_COMMA, + STATE(2324), 1, + aux_sym_parameters_repeat2, + [81225] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5042), 1, - aux_sym__map_rhs_token4, - ACTIONS(6840), 1, - anon_sym_BSLASH_PIPE, - STATE(2359), 1, - aux_sym_pattern_repeat1, - [79781] = 4, + ACTIONS(7252), 1, + anon_sym_COMMA, + ACTIONS(7254), 1, + anon_sym_RBRACE, + STATE(2547), 1, + aux_sym_literal_dictionary_repeat1, + [81238] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1849), 1, - anon_sym_RBRACK, - ACTIONS(7103), 1, + ACTIONS(7194), 1, anon_sym_COMMA, - STATE(2185), 1, - aux_sym_list_repeat1, - [79794] = 4, + ACTIONS(7256), 1, + aux_sym_autocmd_statement_token1, + STATE(2527), 1, + aux_sym_au_event_list_repeat1, + [81251] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, + ACTIONS(6590), 1, sym_literal_key, - ACTIONS(7105), 1, + ACTIONS(7258), 1, anon_sym_RBRACE, - STATE(2807), 1, + STATE(2736), 1, sym__literal_dictionary_entry, - [79807] = 4, + [81264] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7107), 1, + ACTIONS(1883), 1, + anon_sym_RBRACK2, + ACTIONS(7260), 1, anon_sym_COMMA, - ACTIONS(7109), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_literal_dictionary_repeat1, - [79820] = 4, + STATE(2255), 1, + aux_sym_list_repeat1, + [81277] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5643), 1, + ACTIONS(5827), 1, anon_sym_RPAREN, - ACTIONS(7088), 1, + ACTIONS(7248), 1, anon_sym_COMMA, - STATE(2474), 1, + STATE(2596), 1, aux_sym_parameters_repeat1, - [79833] = 4, + [81290] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(7111), 1, - sym_hl_group, - STATE(2903), 1, - sym_at, - [79846] = 4, + ACTIONS(7186), 1, + aux_sym__syn_keyword_identifier_token2, + ACTIONS(7262), 1, + anon_sym_RBRACK, + STATE(2481), 1, + aux_sym__syn_keyword_identifier_repeat1, + [81303] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2946), 1, + ACTIONS(1763), 1, + anon_sym_RBRACE, + ACTIONS(7264), 1, anon_sym_COMMA, - ACTIONS(7113), 1, + STATE(2539), 1, + aux_sym_dictionnary_repeat1, + [81316] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2948), 1, + anon_sym_COMMA, + ACTIONS(7266), 1, anon_sym_RPAREN, - STATE(2185), 1, + STATE(2255), 1, aux_sym_list_repeat1, - [79859] = 4, + [81329] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(7115), 1, - sym_hl_group, - STATE(2950), 1, - sym_at, - [79872] = 4, + STATE(2899), 1, + sym__filetype_state, + ACTIONS(5585), 2, + anon_sym_on, + anon_sym_off, + [81340] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7117), 1, - sym_filetype, - ACTIONS(7119), 1, - anon_sym_FALLBACK, - STATE(2838), 1, - sym_filetypes, - [79885] = 3, + ACTIONS(7268), 1, + anon_sym_COMMA, + ACTIONS(7270), 1, + anon_sym_RBRACE, + STATE(2556), 1, + aux_sym_literal_dictionary_repeat1, + [81353] = 4, ACTIONS(3), 1, sym__line_continuation, - STATE(18), 1, - sym__cmd_separator, - ACTIONS(7121), 2, - sym__newline_or_pipe, - sym_comment, - [79896] = 4, + ACTIONS(6765), 1, + aux_sym_option_name_token1, + ACTIONS(6767), 1, + anon_sym_t_, + STATE(615), 1, + sym_option_name, + [81366] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2946), 1, + ACTIONS(7272), 1, anon_sym_COMMA, - ACTIONS(7123), 1, - anon_sym_RPAREN, - STATE(2185), 1, - aux_sym_list_repeat1, - [79909] = 2, + ACTIONS(7274), 1, + anon_sym_RBRACE, + STATE(2562), 1, + aux_sym_dictionnary_repeat1, + [81379] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7125), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_, - [79918] = 2, + ACTIONS(833), 1, + anon_sym_LBRACE2, + ACTIONS(835), 2, + anon_sym_in, + aux_sym_identifier_token2, + [81390] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7057), 1, + sym__heredoc_line, + ACTIONS(7276), 1, + sym__heredoc_end, + STATE(2586), 1, + aux_sym_script_repeat1, + [81403] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6558), 3, + ACTIONS(7278), 1, + sym__heredoc_line, + ACTIONS(7281), 1, + sym__heredoc_end, + STATE(2570), 1, + aux_sym_script_repeat1, + [81416] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7283), 1, + sym_hl_group, + ACTIONS(6981), 2, sym__newline_or_pipe, sym_comment, - anon_sym_, - [79927] = 4, + [81427] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, - anon_sym_COMMA, - ACTIONS(7127), 1, - anon_sym_DASH_GT, - STATE(2315), 1, - aux_sym_parameters_repeat2, - [79940] = 4, + STATE(2762), 1, + sym__filetype_state, + ACTIONS(5655), 2, + anon_sym_on, + anon_sym_off, + [81438] = 3, + ACTIONS(3), 1, + sym__line_continuation, + STATE(2503), 1, + aux_sym_pattern_repeat1, + ACTIONS(5050), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [81449] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7057), 1, + sym__heredoc_line, + ACTIONS(7285), 1, + sym__heredoc_end, + STATE(2595), 1, + aux_sym_script_repeat1, + [81462] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7186), 1, + aux_sym__syn_keyword_identifier_token2, + ACTIONS(7287), 1, + anon_sym_RBRACK, + STATE(2481), 1, + aux_sym__syn_keyword_identifier_repeat1, + [81475] = 3, + ACTIONS(3), 1, + sym__line_continuation, + STATE(9), 1, + sym__cmd_separator, + ACTIONS(7289), 2, + sym__newline_or_pipe, + sym_comment, + [81486] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, + ACTIONS(7057), 1, sym__heredoc_line, - ACTIONS(7129), 1, + ACTIONS(7291), 1, sym__heredoc_end, - STATE(2454), 1, + STATE(2592), 1, aux_sym_script_repeat1, - [79953] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(7131), 1, - anon_sym_RBRACE, - STATE(2807), 1, - sym__literal_dictionary_entry, - [79966] = 4, + [81499] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, + ACTIONS(3094), 1, anon_sym_AT, - ACTIONS(7133), 1, + ACTIONS(7293), 1, sym_hl_group, - STATE(3205), 1, + STATE(3204), 1, sym_at, - [79979] = 4, + [81512] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, - sym__heredoc_line, - ACTIONS(7135), 1, - sym__heredoc_end, - STATE(2454), 1, - aux_sym_script_repeat1, - [79992] = 4, + ACTIONS(6808), 1, + aux_sym__map_rhs_token4, + ACTIONS(7227), 1, + anon_sym_, + STATE(2597), 1, + aux_sym_set_statement_repeat1, + [81525] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, - sym__heredoc_line, - ACTIONS(7137), 1, - sym__heredoc_end, - STATE(2501), 1, - aux_sym_script_repeat1, - [80005] = 4, + ACTIONS(7295), 1, + aux_sym__syn_keyword_identifier_token2, + ACTIONS(7297), 1, + anon_sym_RBRACK, + STATE(2575), 1, + aux_sym__syn_keyword_identifier_repeat1, + [81538] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, - sym__heredoc_line, - ACTIONS(7139), 1, - sym__heredoc_end, - STATE(2454), 1, - aux_sym_script_repeat1, - [80018] = 3, + ACTIONS(6854), 1, + anon_sym_EQ, + ACTIONS(6774), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [81549] = 4, ACTIONS(3), 1, sym__line_continuation, - STATE(2648), 1, - sym__filetype_state, - ACTIONS(5721), 2, - anon_sym_on, - anon_sym_off, - [80029] = 2, + ACTIONS(6806), 1, + aux_sym__map_rhs_token4, + ACTIONS(7227), 1, + anon_sym_, + STATE(2597), 1, + aux_sym_set_statement_repeat1, + [81562] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6534), 3, - sym__newline_or_pipe, - sym_comment, - anon_sym_DOT, - [80038] = 4, + ACTIONS(7299), 1, + sym_hl_group, + ACTIONS(5942), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [81573] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7141), 1, + ACTIONS(5724), 1, + anon_sym_RPAREN, + ACTIONS(6937), 1, anon_sym_COMMA, - ACTIONS(7143), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_literal_dictionary_repeat1, - [80051] = 3, + STATE(2596), 1, + aux_sym_parameters_repeat1, + [81586] = 4, ACTIONS(3), 1, sym__line_continuation, - STATE(2561), 1, - sym__filetype_state, - ACTIONS(5673), 2, - anon_sym_on, - anon_sym_off, - [80062] = 3, + ACTIONS(4753), 1, + aux_sym_option_name_token1, + ACTIONS(4755), 1, + anon_sym_t_, + STATE(1875), 1, + sym_option_name, + [81599] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(823), 1, - anon_sym_LBRACE2, - ACTIONS(825), 2, - anon_sym_in, - aux_sym_identifier_token2, - [80073] = 4, + ACTIONS(7057), 1, + sym__heredoc_line, + ACTIONS(7301), 1, + sym__heredoc_end, + STATE(2570), 1, + aux_sym_script_repeat1, + [81612] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(4753), 1, + aux_sym_option_name_token1, + ACTIONS(4755), 1, + anon_sym_t_, + STATE(1874), 1, + sym_option_name, + [81625] = 4, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7057), 1, + sym__heredoc_line, + ACTIONS(7303), 1, + sym__heredoc_end, + STATE(2523), 1, + aux_sym_script_repeat1, + [81638] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, + ACTIONS(6590), 1, sym_literal_key, - ACTIONS(7145), 1, + ACTIONS(7305), 1, anon_sym_RBRACE, - STATE(2807), 1, + STATE(2736), 1, sym__literal_dictionary_entry, - [80086] = 4, + [81651] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(1941), 1, - anon_sym_RBRACK, - ACTIONS(7147), 1, + ACTIONS(2948), 1, anon_sym_COMMA, - STATE(2185), 1, + ACTIONS(7307), 1, + anon_sym_RPAREN, + STATE(2255), 1, aux_sym_list_repeat1, - [80099] = 4, + [81664] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7149), 1, - sym_chunk, - ACTIONS(7151), 1, - anon_sym_LT_LT, - STATE(2683), 1, - sym_script, - [80112] = 4, + ACTIONS(7057), 1, + sym__heredoc_line, + ACTIONS(7309), 1, + sym__heredoc_end, + STATE(2598), 1, + aux_sym_script_repeat1, + [81677] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7151), 1, - anon_sym_LT_LT, - ACTIONS(7153), 1, - sym_chunk, - STATE(2681), 1, - sym_script, - [80125] = 4, + ACTIONS(7057), 1, + sym__heredoc_line, + ACTIONS(7311), 1, + sym__heredoc_end, + STATE(2570), 1, + aux_sym_script_repeat1, + [81690] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4947), 1, - anon_sym_SQUOTE, - ACTIONS(7155), 1, - aux_sym__hl_key_font_token1, - STATE(1470), 1, - sym__hl_quoted_name, - [80138] = 4, + ACTIONS(7143), 1, + anon_sym_, + ACTIONS(7313), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [81701] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, - anon_sym_COMMA, - ACTIONS(7157), 1, - anon_sym_DASH_GT, - STATE(2315), 1, - aux_sym_parameters_repeat2, - [80151] = 4, + ACTIONS(7315), 1, + aux_sym__syn_keyword_identifier_token2, + ACTIONS(7317), 1, + anon_sym_RBRACK, + STATE(2561), 1, + aux_sym__syn_keyword_identifier_repeat1, + [81714] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, + ACTIONS(7057), 1, sym__heredoc_line, - ACTIONS(7159), 1, + ACTIONS(7319), 1, sym__heredoc_end, - STATE(2454), 1, + STATE(2570), 1, aux_sym_script_repeat1, - [80164] = 4, + [81727] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, - sym__heredoc_line, - ACTIONS(7161), 1, - sym__heredoc_end, - STATE(2506), 1, - aux_sym_script_repeat1, - [80177] = 4, + ACTIONS(7321), 1, + anon_sym_COMMA, + ACTIONS(7324), 1, + anon_sym_RPAREN, + STATE(2596), 1, + aux_sym_parameters_repeat1, + [81740] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7151), 1, - anon_sym_LT_LT, - ACTIONS(7163), 1, - sym_chunk, - STATE(2679), 1, - sym_script, - [80190] = 3, + ACTIONS(6709), 1, + aux_sym__map_rhs_token4, + ACTIONS(7326), 1, + anon_sym_, + STATE(2597), 1, + aux_sym_set_statement_repeat1, + [81753] = 4, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2775), 1, - anon_sym_EQ, - ACTIONS(2777), 2, - anon_sym_in, - anon_sym_EQ_LT_LT, - [80201] = 4, + ACTIONS(7057), 1, + sym__heredoc_line, + ACTIONS(7329), 1, + sym__heredoc_end, + STATE(2570), 1, + aux_sym_script_repeat1, + [81766] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(7165), 1, - anon_sym_RBRACE, - STATE(2807), 1, - sym__literal_dictionary_entry, - [80214] = 3, + ACTIONS(7331), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [81774] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7167), 1, - sym_hl_group, - ACTIONS(5854), 2, + ACTIONS(7333), 2, sym__newline_or_pipe, sym_comment, - [80225] = 3, + [81782] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(256), 1, - sym__cmd_separator, - ACTIONS(7169), 2, + ACTIONS(7335), 2, sym__newline_or_pipe, sym_comment, - [80236] = 3, + [81790] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(813), 1, - anon_sym_LBRACE2, - ACTIONS(815), 2, - anon_sym_in, - aux_sym_identifier_token2, - [80247] = 4, + ACTIONS(7337), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [81798] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7171), 1, - anon_sym_COMMA, - ACTIONS(7173), 1, - anon_sym_RBRACE, - STATE(2509), 1, - aux_sym_literal_dictionary_repeat1, - [80260] = 2, + ACTIONS(7339), 2, + sym_hl_group, + anon_sym_STAR, + [81806] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6534), 3, - anon_sym_DOT, + ACTIONS(7341), 2, + sym__newline_or_pipe, + sym_comment, + [81814] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7343), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80269] = 4, + [81822] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6495), 1, - aux_sym_option_name_token1, - ACTIONS(6497), 1, - anon_sym_t_, - STATE(194), 1, - sym_option_name, - [80282] = 3, + ACTIONS(7345), 2, + sym_hl_group, + anon_sym_STAR, + [81830] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6558), 1, - anon_sym_, - ACTIONS(6529), 2, + ACTIONS(7347), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80293] = 4, + [81838] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6885), 1, - sym__heredoc_line, - ACTIONS(7175), 1, - sym__heredoc_end, - STATE(2518), 1, - aux_sym_script_repeat1, - [80306] = 3, + ACTIONS(7349), 2, + sym__newline_or_pipe, + sym_comment, + [81846] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7125), 1, - anon_sym_, - ACTIONS(7177), 2, + ACTIONS(5942), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80317] = 4, + [81854] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, - anon_sym_COMMA, - ACTIONS(7179), 1, - anon_sym_DASH_GT, - STATE(2315), 1, - aux_sym_parameters_repeat2, - [80330] = 4, + ACTIONS(7351), 2, + sym__newline_or_pipe, + sym_comment, + [81862] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7151), 1, - anon_sym_LT_LT, - ACTIONS(7181), 1, - sym_chunk, - STATE(2676), 1, - sym_script, - [80343] = 4, + ACTIONS(7353), 2, + sym__newline_or_pipe, + sym_comment, + [81870] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3110), 1, - anon_sym_AT, - ACTIONS(7183), 1, - sym_hl_group, - STATE(3017), 1, - sym_at, - [80356] = 4, + ACTIONS(7355), 2, + sym__newline_or_pipe, + sym_comment, + [81878] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7185), 1, - anon_sym_COMMA, - ACTIONS(7187), 1, - anon_sym_RBRACE, - STATE(2430), 1, - aux_sym_dictionnary_repeat1, - [80369] = 4, + ACTIONS(7357), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [81886] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, - anon_sym_COMMA, - ACTIONS(7189), 1, - anon_sym_DASH_GT, - STATE(2315), 1, - aux_sym_parameters_repeat2, - [80382] = 4, + ACTIONS(7359), 2, + sym__newline_or_pipe, + sym_comment, + [81894] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2867), 1, - anon_sym_COMMA, - ACTIONS(7191), 1, - anon_sym_DASH_GT, - STATE(2315), 1, - aux_sym_parameters_repeat2, - [80395] = 2, + ACTIONS(7361), 2, + sym__newline_or_pipe, + sym_comment, + [81902] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6737), 3, + ACTIONS(7324), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH_GT, - [80404] = 3, + [81910] = 2, ACTIONS(3), 1, sym__line_continuation, - STATE(5), 1, - sym__cmd_separator, - ACTIONS(7193), 2, + ACTIONS(7363), 2, sym__newline_or_pipe, sym_comment, - [80415] = 2, + [81918] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7099), 3, + ACTIONS(7363), 2, sym__newline_or_pipe, sym_comment, - anon_sym_, - [80424] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2946), 1, - anon_sym_COMMA, - ACTIONS(7195), 1, - anon_sym_RPAREN, - STATE(2185), 1, - aux_sym_list_repeat1, - [80437] = 4, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(2867), 1, - anon_sym_COMMA, - ACTIONS(7197), 1, - anon_sym_DASH_GT, - STATE(2315), 1, - aux_sym_parameters_repeat2, - [80450] = 4, + [81926] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - ACTIONS(7199), 1, - anon_sym_RBRACE, - STATE(2807), 1, - sym__literal_dictionary_entry, - [80463] = 2, + ACTIONS(7363), 2, + sym__newline_or_pipe, + sym_comment, + [81934] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7201), 2, + ACTIONS(7363), 2, sym__newline_or_pipe, sym_comment, - [80471] = 2, + [81942] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7203), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80479] = 2, + ACTIONS(7363), 2, + sym__newline_or_pipe, + sym_comment, + [81950] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7205), 2, - sym_hl_group, - anon_sym_STAR, - [80487] = 2, + ACTIONS(7363), 2, + sym__newline_or_pipe, + sym_comment, + [81958] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7207), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80495] = 2, + ACTIONS(7363), 2, + sym__newline_or_pipe, + sym_comment, + [81966] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7209), 2, - sym_hl_group, - anon_sym_STAR, - [80503] = 2, + ACTIONS(7363), 2, + sym__newline_or_pipe, + sym_comment, + [81974] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7211), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80511] = 2, + ACTIONS(7363), 2, + sym__newline_or_pipe, + sym_comment, + [81982] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7213), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80519] = 2, + ACTIONS(7363), 2, + sym__newline_or_pipe, + sym_comment, + [81990] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7215), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80527] = 2, + ACTIONS(6590), 1, + sym_literal_key, + STATE(2736), 1, + sym__literal_dictionary_entry, + [82000] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7217), 2, + ACTIONS(7365), 2, sym__newline_or_pipe, sym_comment, - [80535] = 2, + [82008] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7219), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80543] = 2, + ACTIONS(7367), 2, + sym_hl_group, + anon_sym_STAR, + [82016] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7221), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80551] = 2, + ACTIONS(7369), 2, + sym__newline_or_pipe, + sym_comment, + [82024] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7223), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80559] = 2, + ACTIONS(7371), 2, + sym__newline_or_pipe, + sym_comment, + [82032] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7225), 2, + ACTIONS(7363), 2, sym__newline_or_pipe, sym_comment, - [80567] = 3, + [82040] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7227), 1, - aux_sym_normal_statement_token1, - ACTIONS(7229), 1, - sym_bang, - [80577] = 2, + ACTIONS(7373), 2, + sym__newline_or_pipe, + sym_comment, + [82048] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6307), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80585] = 2, + ACTIONS(7375), 2, + sym__newline_or_pipe, + sym_comment, + [82056] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7231), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80593] = 2, + ACTIONS(7377), 2, + sym__newline_or_pipe, + sym_comment, + [82064] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5854), 2, + ACTIONS(7363), 2, sym__newline_or_pipe, sym_comment, - [80601] = 2, + [82072] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7379), 2, + sym_hl_group, + anon_sym_STAR, + [82080] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7233), 2, + ACTIONS(7381), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80609] = 2, + [82088] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7235), 2, + ACTIONS(7383), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80617] = 2, + [82096] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5005), 2, - sym__separator, - anon_sym_BSLASH_PIPE, - [80625] = 2, + ACTIONS(7385), 2, + aux_sym__syn_pattern_offset_token1, + aux_sym__syn_pattern_offset_token2, + [82104] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7237), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80633] = 3, + ACTIONS(7387), 1, + sym_filetype, + STATE(2835), 1, + sym_filetypes, + [82114] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7239), 1, - sym_bang, - ACTIONS(7241), 1, + ACTIONS(7389), 1, sym__separator_first, - [80643] = 3, + STATE(748), 1, + sym__syn_hl_pattern, + [82124] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7243), 1, - sym_hl_group, - ACTIONS(7245), 1, - anon_sym_link, - [80653] = 2, + ACTIONS(7391), 2, + sym__newline_or_pipe, + sym_comment, + [82132] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7247), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80661] = 2, + ACTIONS(7393), 2, + sym__newline_or_pipe, + sym_comment, + [82140] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7249), 2, - sym_hl_group, - anon_sym_STAR, - [80669] = 2, + ACTIONS(7395), 2, + sym__newline_or_pipe, + sym_comment, + [82148] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7237), 2, + ACTIONS(7397), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80677] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7251), 1, - anon_sym_STAR2, - ACTIONS(7253), 1, - sym_integer_literal, - [80687] = 2, + [82156] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7247), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80695] = 2, + ACTIONS(7399), 2, + sym__newline_or_pipe, + sym_comment, + [82164] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7255), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80703] = 2, + ACTIONS(7401), 2, + sym__newline_or_pipe, + sym_comment, + [82172] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7257), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80711] = 2, + ACTIONS(7403), 2, + sym__newline_or_pipe, + sym_comment, + [82180] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7259), 2, + ACTIONS(7405), 2, sym__newline_or_pipe, sym_comment, - [80719] = 2, + [82188] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7261), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80727] = 2, + ACTIONS(7407), 2, + sym__newline_or_pipe, + sym_comment, + [82196] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7263), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80735] = 2, + ACTIONS(7409), 2, + sym__newline_or_pipe, + sym_comment, + [82204] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7265), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80743] = 2, + ACTIONS(7411), 2, + sym__newline_or_pipe, + sym_comment, + [82212] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7267), 2, + ACTIONS(7413), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80751] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7269), 1, - aux_sym__filetype_immediate_token1, - STATE(2508), 1, - sym__filetype_immediate, - [80761] = 2, + [82220] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7271), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80769] = 2, + ACTIONS(7415), 2, + sym__newline_or_pipe, + sym_comment, + [82228] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7273), 2, + ACTIONS(7417), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80777] = 2, + [82236] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7275), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80785] = 2, + ACTIONS(7419), 2, + sym__newline_or_pipe, + sym_comment, + [82244] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7277), 2, + ACTIONS(7421), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80793] = 2, + [82252] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7279), 2, - aux_sym__syn_pattern_offset_token1, - aux_sym__syn_pattern_offset_token2, - [80801] = 2, + ACTIONS(7389), 1, + sym__separator_first, + STATE(778), 1, + sym__syn_hl_pattern, + [82262] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7281), 2, + ACTIONS(7423), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80809] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7283), 1, - sym__separator_first, - STATE(735), 1, - sym__syn_hl_pattern, - [80819] = 2, + [82270] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7285), 2, + ACTIONS(7425), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80827] = 2, + [82278] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7287), 2, + ACTIONS(7427), 2, sym__newline_or_pipe, sym_comment, - [80835] = 2, + [82286] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7289), 2, + ACTIONS(7429), 2, sym__newline_or_pipe, sym_comment, - [80843] = 2, + [82294] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7291), 2, + ACTIONS(7431), 2, sym__newline_or_pipe, sym_comment, - [80851] = 2, + [82302] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7293), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80859] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7295), 1, - anon_sym_BSLASH_PIPE, - ACTIONS(7297), 1, - aux_sym__map_rhs_token4, - [80869] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7299), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80877] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7301), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80885] = 2, + ACTIONS(7433), 2, + sym__newline_or_pipe, + sym_comment, + [82310] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7303), 2, + ACTIONS(7435), 2, sym__newline_or_pipe, sym_comment, - [80893] = 2, + [82318] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7305), 2, + ACTIONS(7437), 2, sym__newline_or_pipe, sym_comment, - [80901] = 2, + [82326] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7307), 2, + ACTIONS(7439), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80909] = 2, + [82334] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6008), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80917] = 2, + ACTIONS(6112), 2, + sym__newline_or_pipe, + sym_comment, + [82342] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7309), 2, + ACTIONS(7441), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80925] = 2, + [82350] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7311), 2, + ACTIONS(7443), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80933] = 2, + [82358] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7313), 2, + ACTIONS(7445), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80941] = 2, + [82366] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7315), 2, + ACTIONS(7447), 2, sym__newline_or_pipe, sym_comment, - [80949] = 2, + [82374] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7317), 2, + ACTIONS(7449), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [80957] = 2, + [82382] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7319), 2, - sym__newline_or_pipe, - sym_comment, - [80965] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7321), 1, + ACTIONS(7451), 1, anon_sym_STAR2, - ACTIONS(7323), 1, + ACTIONS(7453), 1, sym_integer_literal, - [80975] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7325), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [80983] = 2, + [82392] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7327), 2, + ACTIONS(7455), 2, sym__newline_or_pipe, sym_comment, - [80991] = 2, + [82400] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7329), 2, + ACTIONS(7457), 2, sym__newline_or_pipe, sym_comment, - [80999] = 2, + [82408] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7331), 2, + ACTIONS(7459), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81007] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7333), 1, - aux_sym_normal_statement_token1, - ACTIONS(7335), 1, - sym_bang, - [81017] = 2, + [82416] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7337), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81025] = 3, + ACTIONS(7461), 2, + sym__newline_or_pipe, + sym_comment, + [82424] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7339), 1, - sym_bang, - ACTIONS(7341), 1, - sym__separator_first, - [81035] = 2, + ACTIONS(7461), 2, + sym__newline_or_pipe, + sym_comment, + [82432] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7343), 2, - sym__newline_or_pipe, + ACTIONS(7463), 1, + anon_sym_LF, + ACTIONS(7465), 1, sym_comment, - [81043] = 2, + [82442] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7345), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81051] = 3, + ACTIONS(7467), 1, + sym_hl_group, + ACTIONS(7469), 1, + anon_sym_link, + [82452] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7347), 1, - aux_sym__filetype_immediate_token1, - STATE(2527), 1, - sym__filetype_immediate, - [81061] = 2, + ACTIONS(7461), 2, + sym__newline_or_pipe, + sym_comment, + [82460] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7349), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81069] = 2, + ACTIONS(7471), 2, + sym__newline_or_pipe, + sym_comment, + [82468] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7351), 2, + ACTIONS(7473), 2, sym__newline_or_pipe, sym_comment, - [81077] = 2, + [82476] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7343), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81085] = 2, + ACTIONS(7475), 1, + sym__normal, + ACTIONS(7477), 1, + sym__source, + [82486] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7353), 2, + ACTIONS(7479), 2, sym__newline_or_pipe, sym_comment, - [81093] = 2, + [82494] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7355), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81101] = 3, + ACTIONS(7473), 2, + sym__newline_or_pipe, + sym_comment, + [82502] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7357), 1, - sym_bang, - ACTIONS(7359), 1, - sym__separator_first, - [81111] = 2, + ACTIONS(7473), 2, + sym__newline_or_pipe, + sym_comment, + [82510] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7361), 2, + ACTIONS(7481), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81119] = 2, + [82518] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7363), 2, + ACTIONS(7483), 2, sym__newline_or_pipe, sym_comment, - [81127] = 2, + [82526] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7325), 2, + ACTIONS(7485), 2, sym__newline_or_pipe, sym_comment, - [81135] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7365), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81143] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7327), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81151] = 2, + [82534] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7367), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81159] = 2, + ACTIONS(7487), 2, + sym__newline_or_pipe, + sym_comment, + [82542] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7369), 2, + ACTIONS(7489), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81167] = 2, + [82550] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7225), 2, + ACTIONS(7491), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81175] = 2, + [82558] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7371), 2, + ACTIONS(7493), 2, sym__newline_or_pipe, sym_comment, - [81183] = 2, + [82566] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7319), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81191] = 2, + ACTIONS(7495), 2, + sym__newline_or_pipe, + sym_comment, + [82574] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7373), 2, + ACTIONS(7497), 2, sym__newline_or_pipe, sym_comment, - [81199] = 2, + [82582] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7317), 2, + ACTIONS(7499), 2, sym__newline_or_pipe, sym_comment, - [81207] = 2, + [82590] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7313), 2, + ACTIONS(5145), 2, sym__newline_or_pipe, sym_comment, - [81215] = 2, + [82598] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7375), 2, + ACTIONS(7501), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81223] = 2, + [82606] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7377), 2, + ACTIONS(7503), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81231] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7311), 2, - sym__newline_or_pipe, - sym_comment, - [81239] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7379), 1, - sym__normal, - ACTIONS(7381), 1, - sym__source, - [81249] = 2, + [82614] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7383), 2, + ACTIONS(7505), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81257] = 2, + [82622] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7385), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81265] = 2, + ACTIONS(7507), 1, + aux_sym_normal_statement_token1, + ACTIONS(7509), 1, + sym_bang, + [82632] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7387), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81273] = 3, + ACTIONS(7511), 2, + sym__newline_or_pipe, + sym_comment, + [82640] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7379), 1, + ACTIONS(7513), 1, sym__normal, - ACTIONS(7389), 1, + ACTIONS(7515), 1, sym__source, - [81283] = 3, + [82650] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7391), 1, - aux_sym_normal_statement_token1, - ACTIONS(7393), 1, - sym_bang, - [81293] = 2, + ACTIONS(7517), 2, + sym__newline_or_pipe, + sym_comment, + [82658] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7395), 2, + ACTIONS(7519), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81301] = 2, + [82666] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7397), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81309] = 2, + ACTIONS(7521), 2, + sym__newline_or_pipe, + sym_comment, + [82674] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7399), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81317] = 2, + ACTIONS(7523), 2, + sym__newline_or_pipe, + sym_comment, + [82682] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7217), 2, + ACTIONS(7525), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81325] = 2, + [82690] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7301), 2, + ACTIONS(7449), 2, sym__newline_or_pipe, sym_comment, - [81333] = 2, + [82698] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7299), 2, + ACTIONS(7527), 2, sym__newline_or_pipe, sym_comment, - [81341] = 2, + [82706] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7235), 2, - sym__newline_or_pipe, - sym_comment, - [81349] = 2, + ACTIONS(7529), 2, + aux_sym__syn_pattern_offset_token1, + aux_sym__syn_pattern_offset_token2, + [82714] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5854), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81357] = 2, + ACTIONS(7389), 1, + sym__separator_first, + STATE(792), 1, + sym__syn_hl_pattern, + [82724] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7259), 2, + ACTIONS(7531), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81365] = 2, + [82732] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7401), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81373] = 2, + ACTIONS(7533), 1, + sym__separator_first, + STATE(733), 1, + sym__syn_hl_pattern, + [82742] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7403), 2, + ACTIONS(7535), 2, + sym__newline_or_pipe, + sym_comment, + [82750] = 3, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7537), 1, anon_sym_BSLASH_PIPE, + ACTIONS(7539), 1, aux_sym__map_rhs_token4, - [81381] = 2, + [82760] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7287), 2, + ACTIONS(7541), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81389] = 2, + [82768] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7405), 2, + ACTIONS(7543), 2, sym__newline_or_pipe, sym_comment, - [81397] = 2, + [82776] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7289), 2, + ACTIONS(7545), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81405] = 2, + [82784] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7407), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81413] = 2, + ACTIONS(7547), 1, + sym_bang, + ACTIONS(7549), 1, + sym__separator_first, + [82794] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7409), 2, + ACTIONS(7551), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81421] = 2, + [82802] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7411), 2, + ACTIONS(7553), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81429] = 2, + [82810] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7413), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81437] = 2, + ACTIONS(7555), 2, + sym__newline_or_pipe, + sym_comment, + [82818] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7291), 2, + ACTIONS(7557), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81445] = 2, + [82826] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7303), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81453] = 2, + ACTIONS(7559), 2, + sym__newline_or_pipe, + sym_comment, + [82834] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7415), 2, + ACTIONS(6233), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81461] = 2, + [82842] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7305), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81469] = 2, + ACTIONS(7561), 2, + sym__script_heredoc_marker, + anon_sym_LF, + [82850] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7417), 2, + ACTIONS(7563), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81477] = 3, + [82858] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(2785), 1, - aux_sym_argument_token2, - ACTIONS(7419), 1, - aux_sym_argument_token1, - [81487] = 2, + ACTIONS(7565), 2, + sym__newline_or_pipe, + sym_comment, + [82866] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7329), 2, + ACTIONS(7567), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81495] = 2, + [82874] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7421), 2, + ACTIONS(7569), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81503] = 2, + [82882] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7315), 2, + ACTIONS(7333), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81511] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7423), 2, - sym__newline_or_pipe, - sym_comment, - [81519] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7425), 2, - sym__newline_or_pipe, - sym_comment, - [81527] = 2, + [82890] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4982), 2, - sym__newline_or_pipe, - sym_comment, - [81535] = 2, + ACTIONS(7571), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [82898] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7427), 2, + ACTIONS(7437), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81543] = 2, + [82906] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7429), 2, + ACTIONS(7573), 2, sym__newline_or_pipe, sym_comment, - [81551] = 2, + [82914] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7431), 2, + ACTIONS(7575), 2, sym__newline_or_pipe, sym_comment, - [81559] = 2, + [82922] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7433), 2, + ACTIONS(7577), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81567] = 2, + [82930] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7435), 2, - sym__script_heredoc_marker, - anon_sym_LF, - [81575] = 2, + ACTIONS(7393), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [82938] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7437), 2, + ACTIONS(7221), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [82946] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7579), 2, sym__newline_or_pipe, sym_comment, - [81583] = 2, + [82954] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7439), 2, + ACTIONS(7565), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81591] = 2, + [82962] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7441), 2, + ACTIONS(7581), 2, + sym__newline_or_pipe, + sym_comment, + [82970] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7331), 2, sym__newline_or_pipe, sym_comment, - [81599] = 2, + [82978] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7201), 2, + ACTIONS(7559), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81607] = 2, + [82986] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7443), 2, + ACTIONS(7583), 2, sym__newline_or_pipe, sym_comment, - [81615] = 2, + [82994] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7445), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81623] = 2, + ACTIONS(7585), 1, + aux_sym_normal_statement_token1, + ACTIONS(7587), 1, + sym_bang, + [83004] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7423), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81631] = 2, + ACTIONS(7589), 2, + sym__newline_or_pipe, + sym_comment, + [83012] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7447), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81639] = 2, + ACTIONS(7591), 2, + sym__newline_or_pipe, + sym_comment, + [83020] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7425), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81647] = 2, + ACTIONS(7593), 1, + anon_sym_LF, + ACTIONS(7595), 1, + sym_comment, + [83030] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7449), 2, + ACTIONS(7597), 2, sym__newline_or_pipe, sym_comment, - [81655] = 2, + [83038] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7451), 2, + ACTIONS(5123), 2, sym__newline_or_pipe, sym_comment, - [81663] = 3, + [83046] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7453), 1, - aux_sym_normal_statement_token1, - ACTIONS(7455), 1, - sym_bang, - [81673] = 2, + ACTIONS(7599), 2, + aux_sym__syn_pattern_offset_token1, + aux_sym__syn_pattern_offset_token2, + [83054] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7457), 2, + ACTIONS(7591), 2, + sym__newline_or_pipe, + sym_comment, + [83062] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7521), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81681] = 2, + [83070] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7459), 2, + ACTIONS(7597), 2, sym__newline_or_pipe, sym_comment, - [81689] = 2, + [83078] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7461), 2, + ACTIONS(7601), 2, sym__newline_or_pipe, sym_comment, - [81697] = 2, + [83086] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7463), 2, + ACTIONS(7551), 2, sym__newline_or_pipe, sym_comment, - [81705] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7465), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81713] = 2, + [83094] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7263), 2, + ACTIONS(7603), 2, sym__newline_or_pipe, sym_comment, - [81721] = 2, + [83102] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7467), 2, + ACTIONS(7605), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81729] = 2, + [83110] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7261), 2, - sym__newline_or_pipe, - sym_comment, - [81737] = 2, + ACTIONS(7607), 1, + aux_sym__filetype_immediate_token1, + STATE(2520), 1, + sym__filetype_immediate, + [83120] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7459), 2, + ACTIONS(5112), 2, + sym__separator, anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81745] = 2, + [83128] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7255), 2, - sym__newline_or_pipe, - sym_comment, - [81753] = 2, + ACTIONS(2779), 1, + aux_sym_argument_token2, + ACTIONS(7609), 1, + aux_sym_argument_token1, + [83138] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7449), 2, + ACTIONS(7597), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81761] = 2, + [83146] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7469), 2, + ACTIONS(7605), 2, sym__newline_or_pipe, sym_comment, - [81769] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7471), 1, - aux_sym_normal_statement_token1, - ACTIONS(7473), 1, - sym_bang, - [81779] = 2, + [83154] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7475), 2, + ACTIONS(7591), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81787] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7477), 2, - aux_sym__syn_pattern_offset_token1, - aux_sym__syn_pattern_offset_token2, - [81795] = 3, + [83162] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7479), 1, + ACTIONS(7597), 2, anon_sym_BSLASH_PIPE, - ACTIONS(7481), 1, aux_sym__map_rhs_token4, - [81805] = 2, + [83170] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7483), 2, + ACTIONS(7591), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81813] = 2, + [83178] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7223), 2, - sym__newline_or_pipe, + ACTIONS(7611), 1, + anon_sym_LF, + ACTIONS(7613), 1, sym_comment, - [81821] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7485), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81829] = 2, + [83188] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7221), 2, + ACTIONS(7615), 2, sym__newline_or_pipe, sym_comment, - [81837] = 2, + [83196] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7219), 2, + ACTIONS(7577), 2, sym__newline_or_pipe, sym_comment, - [81845] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7487), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81853] = 2, + [83204] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7489), 2, + ACTIONS(7617), 2, sym__newline_or_pipe, sym_comment, - [81861] = 2, + [83212] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7491), 2, + ACTIONS(7569), 2, sym__newline_or_pipe, sym_comment, - [81869] = 2, + [83220] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7493), 2, + ACTIONS(7573), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81877] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7355), 2, - sym__newline_or_pipe, - sym_comment, - [81885] = 2, + [83228] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7495), 2, + ACTIONS(7567), 2, sym__newline_or_pipe, sym_comment, - [81893] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7497), 1, - anon_sym_LF, - ACTIONS(7499), 1, - sym_comment, - [81903] = 2, + [83236] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7207), 2, + ACTIONS(7563), 2, sym__newline_or_pipe, sym_comment, - [81911] = 2, + [83244] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7501), 2, - sym__heredoc_end, - sym__heredoc_line, - [81919] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6912), 2, - aux_sym_autocmd_statement_token1, - anon_sym_COMMA, - [81927] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7503), 1, + ACTIONS(7619), 1, sym_hl_group, - ACTIONS(7505), 1, + ACTIONS(7621), 1, anon_sym_link, - [81937] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(4978), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81945] = 2, + [83254] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7507), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81953] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7431), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81961] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7211), 2, + ACTIONS(7623), 2, sym__newline_or_pipe, sym_comment, - [81969] = 2, + [83262] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7509), 2, + ACTIONS(5145), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81977] = 2, + [83270] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7511), 2, + ACTIONS(7527), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [81985] = 2, + [83278] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7511), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [81993] = 2, + ACTIONS(7557), 2, + sym__newline_or_pipe, + sym_comment, + [83286] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7511), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82001] = 2, + ACTIONS(7625), 2, + sym__script_heredoc_marker, + anon_sym_LF, + [83294] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7513), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82009] = 2, + ACTIONS(7541), 2, + sym__newline_or_pipe, + sym_comment, + [83302] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7513), 2, + ACTIONS(7499), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82017] = 2, + [83310] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7475), 2, + ACTIONS(7531), 2, sym__newline_or_pipe, sym_comment, - [82025] = 2, + [83318] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7513), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82033] = 2, + ACTIONS(7627), 2, + sym__newline_or_pipe, + sym_comment, + [83326] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7515), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82041] = 2, + ACTIONS(7481), 2, + sym__newline_or_pipe, + sym_comment, + [83334] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7517), 2, + ACTIONS(7523), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82049] = 2, + [83342] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7519), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82057] = 2, + ACTIONS(7337), 2, + sym__newline_or_pipe, + sym_comment, + [83350] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7521), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82065] = 2, + ACTIONS(7629), 2, + sym_hl_group, + anon_sym_STAR, + [83358] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7523), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82073] = 2, + ACTIONS(7631), 2, + sym__newline_or_pipe, + sym_comment, + [83366] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7525), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82081] = 2, + ACTIONS(7633), 2, + sym__newline_or_pipe, + sym_comment, + [83374] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7527), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82089] = 2, + ACTIONS(7343), 2, + sym__newline_or_pipe, + sym_comment, + [83382] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7213), 2, + ACTIONS(7347), 2, sym__newline_or_pipe, sym_comment, - [82097] = 2, + [83390] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7215), 2, + ACTIONS(7635), 2, sym__newline_or_pipe, sym_comment, - [82105] = 3, + [83398] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7529), 1, - anon_sym_LF, - ACTIONS(7531), 1, + ACTIONS(7637), 2, + sym__newline_or_pipe, sym_comment, - [82115] = 2, + [83406] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7533), 2, + ACTIONS(7639), 2, sym__newline_or_pipe, sym_comment, - [82123] = 2, + [83414] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7535), 2, + ACTIONS(7545), 2, sym__newline_or_pipe, sym_comment, - [82131] = 2, + [83422] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7537), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82139] = 3, + ACTIONS(7641), 2, + sym_hl_group, + anon_sym_STAR, + [83430] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7539), 1, - anon_sym_LF, - ACTIONS(7541), 1, + ACTIONS(7643), 2, + sym__newline_or_pipe, sym_comment, - [82149] = 2, + [83438] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7483), 2, + ACTIONS(5942), 2, sym__newline_or_pipe, sym_comment, - [82157] = 3, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7543), 1, - sym_filetype, - STATE(2631), 1, - sym_filetypes, - [82167] = 2, + [83446] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7485), 2, + ACTIONS(7357), 2, sym__newline_or_pipe, sym_comment, - [82175] = 2, + [83454] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7645), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82183] = 2, + [83462] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7511), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82191] = 2, + [83470] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7547), 2, + ACTIONS(7487), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82199] = 2, + [83478] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7549), 2, + ACTIONS(7497), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82207] = 2, + [83486] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7485), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82215] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6307), 2, - sym__newline_or_pipe, - sym_comment, - [82223] = 2, + [83494] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7479), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82231] = 2, + [83502] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7487), 2, - sym__newline_or_pipe, - sym_comment, - [82239] = 2, + ACTIONS(7473), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83510] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7473), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82247] = 2, + [83518] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7457), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82255] = 2, + [83526] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7231), 2, + ACTIONS(7647), 2, sym__newline_or_pipe, sym_comment, - [82263] = 2, + [83534] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82271] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7447), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82279] = 2, + [83542] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7409), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82287] = 2, + [83550] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(6112), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82295] = 3, + [83558] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7245), 1, - anon_sym_link, - ACTIONS(7551), 1, - sym_hl_group, - [82305] = 2, + ACTIONS(7649), 1, + sym_bang, + ACTIONS(7651), 1, + sym__separator_first, + [83568] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82313] = 2, + ACTIONS(7653), 1, + aux_sym__filetype_immediate_token1, + STATE(2497), 1, + sym__filetype_immediate, + [83578] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7553), 2, + ACTIONS(7655), 2, aux_sym__syn_pattern_offset_token1, aux_sym__syn_pattern_offset_token2, - [82321] = 2, + [83586] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7555), 2, - sym__script_heredoc_marker, - anon_sym_LF, - [82329] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7461), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82337] = 2, + ACTIONS(7657), 1, + sym_filetype, + STATE(2638), 1, + sym_filetypes, + [83596] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7535), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82345] = 2, + ACTIONS(7659), 2, + sym__newline_or_pipe, + sym_comment, + [83604] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7557), 2, - sym_hl_group, - anon_sym_STAR, - [82353] = 2, + ACTIONS(7661), 1, + anon_sym_STAR2, + ACTIONS(7663), 1, + sym_integer_literal, + [83614] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7533), 2, + ACTIONS(7411), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82361] = 2, + [83622] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7559), 2, + ACTIONS(7405), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82369] = 2, + [83630] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7489), 2, sym__newline_or_pipe, sym_comment, - [82377] = 2, + [83638] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7495), 2, + ACTIONS(7403), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82385] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7561), 2, - sym_hl_group, - anon_sym_STAR, - [82393] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7545), 2, - sym__newline_or_pipe, - sym_comment, - [82401] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7545), 2, - sym__newline_or_pipe, - sym_comment, - [82409] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7545), 2, - sym__newline_or_pipe, - sym_comment, - [82417] = 2, + [83646] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, - sym__newline_or_pipe, - sym_comment, - [82425] = 2, + ACTIONS(7399), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83654] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, - sym__newline_or_pipe, - sym_comment, - [82433] = 2, + ACTIONS(7517), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83662] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, - sym__newline_or_pipe, - sym_comment, - [82441] = 2, + ACTIONS(7391), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83670] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(6233), 2, sym__newline_or_pipe, sym_comment, - [82449] = 2, + [83678] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, - sym__newline_or_pipe, - sym_comment, - [82457] = 2, + ACTIONS(7377), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83686] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, - sym__newline_or_pipe, - sym_comment, - [82465] = 2, + ACTIONS(7375), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83694] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7469), 2, + ACTIONS(7373), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82473] = 2, + [83702] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7233), 2, + ACTIONS(7381), 2, sym__newline_or_pipe, sym_comment, - [82481] = 2, + [83710] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7237), 2, - sym__newline_or_pipe, - sym_comment, - [82489] = 2, + ACTIONS(7369), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83718] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7247), 2, + ACTIONS(7383), 2, sym__newline_or_pipe, sym_comment, - [82497] = 2, + [83726] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7549), 2, - sym__newline_or_pipe, - sym_comment, - [82505] = 2, + ACTIONS(7361), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83734] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7463), 2, + ACTIONS(7359), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82513] = 2, + [83742] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7237), 2, - sym__newline_or_pipe, - sym_comment, - [82521] = 2, + ACTIONS(7355), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83750] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7547), 2, + ACTIONS(7665), 2, sym__newline_or_pipe, sym_comment, - [82529] = 2, + [83758] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7457), 2, + ACTIONS(7667), 2, sym__newline_or_pipe, sym_comment, - [82537] = 2, + [83766] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7451), 2, + ACTIONS(7353), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82545] = 2, + [83774] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7247), 2, - sym__newline_or_pipe, - sym_comment, - [82553] = 2, + ACTIONS(7475), 1, + sym__normal, + ACTIONS(7669), 1, + sym__source, + [83784] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7397), 2, sym__newline_or_pipe, sym_comment, - [82561] = 2, + [83792] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7351), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82569] = 2, + [83800] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7559), 2, + ACTIONS(7671), 1, + aux_sym_normal_statement_token1, + ACTIONS(7673), 1, + sym_bang, + [83810] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7413), 2, sym__newline_or_pipe, sym_comment, - [82577] = 2, + [83818] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7441), 2, + ACTIONS(7349), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82585] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(6871), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [82593] = 2, + [83826] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7257), 2, - sym__newline_or_pipe, - sym_comment, - [82601] = 2, + ACTIONS(7341), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83834] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7437), 2, + ACTIONS(7455), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82609] = 2, + [83842] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7493), 2, + ACTIONS(7675), 2, sym__newline_or_pipe, sym_comment, - [82617] = 2, + [83850] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7563), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [82625] = 2, + ACTIONS(7677), 2, + sym__newline_or_pipe, + sym_comment, + [83858] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7429), 2, - anon_sym_BSLASH_PIPE, - aux_sym__map_rhs_token4, - [82633] = 2, + ACTIONS(7553), 2, + sym__newline_or_pipe, + sym_comment, + [83866] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4982), 2, + ACTIONS(7473), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82641] = 2, + [83874] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7403), 2, + ACTIONS(7645), 2, sym__newline_or_pipe, sym_comment, - [82649] = 2, + [83882] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7265), 2, - sym__newline_or_pipe, - sym_comment, - [82657] = 2, + ACTIONS(7621), 1, + anon_sym_link, + ACTIONS(7679), 1, + sym_hl_group, + [83892] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7267), 2, + ACTIONS(7681), 2, sym__newline_or_pipe, sym_comment, - [82665] = 3, + [83900] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7565), 1, - sym__normal, - ACTIONS(7567), 1, - sym__source, - [82675] = 2, + ACTIONS(7683), 1, + sym_bang, + ACTIONS(7685), 1, + sym__separator_first, + [83910] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7405), 2, + ACTIONS(7461), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82683] = 2, + [83918] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7373), 2, + ACTIONS(7575), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82691] = 2, + [83926] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7371), 2, + ACTIONS(7579), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83934] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7583), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82699] = 2, + [83942] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7271), 2, + ACTIONS(7417), 2, sym__newline_or_pipe, sym_comment, - [82707] = 3, + [83950] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7569), 1, - aux_sym_normal_statement_token1, - ACTIONS(7571), 1, - sym_bang, - [82717] = 2, + ACTIONS(7461), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83958] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7363), 2, + ACTIONS(7601), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82725] = 2, + [83966] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7273), 2, - sym__newline_or_pipe, - sym_comment, - [82733] = 2, + ACTIONS(7603), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83974] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7353), 2, + ACTIONS(7687), 1, anon_sym_BSLASH_PIPE, + ACTIONS(7689), 1, aux_sym__map_rhs_token4, - [82741] = 2, + [83984] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7275), 2, - sym__newline_or_pipe, - sym_comment, - [82749] = 2, + ACTIONS(7615), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [83992] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7351), 2, + ACTIONS(7623), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82757] = 2, + [84000] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7467), 2, - sym__newline_or_pipe, - sym_comment, - [82765] = 2, + ACTIONS(7691), 1, + anon_sym_STAR2, + ACTIONS(7693), 1, + sym_integer_literal, + [84010] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7277), 2, - sym__newline_or_pipe, - sym_comment, - [82773] = 2, + ACTIONS(7461), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84018] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7465), 2, + ACTIONS(7695), 2, sym__newline_or_pipe, sym_comment, - [82781] = 2, + [84026] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7447), 2, - sym__newline_or_pipe, - sym_comment, - [82789] = 2, + ACTIONS(7631), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84034] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7281), 2, - sym__newline_or_pipe, - sym_comment, - [82797] = 2, + ACTIONS(7633), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84042] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7445), 2, + ACTIONS(7697), 2, sym__newline_or_pipe, sym_comment, - [82805] = 3, + [84050] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7573), 1, - sym_filetype, - STATE(2604), 1, - sym_filetypes, - [82815] = 3, + ACTIONS(7435), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84058] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7575), 1, - anon_sym_LF, - ACTIONS(7577), 1, + ACTIONS(7421), 2, + sym__newline_or_pipe, sym_comment, - [82825] = 2, + [84066] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7285), 2, - sym__newline_or_pipe, - sym_comment, - [82833] = 2, + ACTIONS(7429), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84074] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7293), 2, + ACTIONS(7423), 2, sym__newline_or_pipe, sym_comment, - [82841] = 2, + [84082] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7307), 2, - sym__newline_or_pipe, - sym_comment, - [82849] = 2, + ACTIONS(7647), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84090] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6008), 2, - sym__newline_or_pipe, - sym_comment, - [82857] = 2, + ACTIONS(7659), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84098] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7309), 2, - sym__newline_or_pipe, - sym_comment, - [82865] = 2, + ACTIONS(7069), 2, + aux_sym_autocmd_statement_token1, + anon_sym_COMMA, + [84106] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7491), 2, + ACTIONS(7675), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82873] = 2, + [84114] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7537), 2, - sym__newline_or_pipe, - sym_comment, - [82881] = 2, + ACTIONS(7665), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84122] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7439), 2, - sym__newline_or_pipe, - sym_comment, - [82889] = 2, + ACTIONS(7699), 2, + sym__heredoc_end, + sym__heredoc_line, + [84130] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7667), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84138] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7203), 2, + ACTIONS(7519), 2, sym__newline_or_pipe, sym_comment, - [82897] = 2, + [84146] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7433), 2, + ACTIONS(7677), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84154] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7425), 2, sym__newline_or_pipe, sym_comment, - [82905] = 2, + [84162] = 2, ACTIONS(3), 1, sym__line_continuation, ACTIONS(7427), 2, - sym__newline_or_pipe, - sym_comment, - [82913] = 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84170] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7443), 2, + ACTIONS(7581), 2, anon_sym_BSLASH_PIPE, aux_sym__map_rhs_token4, - [82921] = 2, + [84178] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7417), 2, - sym__newline_or_pipe, - sym_comment, - [82929] = 3, + ACTIONS(7681), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84186] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7283), 1, - sym__separator_first, - STATE(770), 1, - sym__syn_hl_pattern, - [82939] = 2, + ACTIONS(7643), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84194] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7415), 2, - sym__newline_or_pipe, - sym_comment, - [82947] = 2, + ACTIONS(7695), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84202] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7527), 2, - sym__newline_or_pipe, - sym_comment, - [82955] = 2, + ACTIONS(7639), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84210] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7525), 2, - sym__newline_or_pipe, - sym_comment, - [82963] = 2, + ACTIONS(7637), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84218] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7331), 2, - sym__newline_or_pipe, - sym_comment, - [82971] = 2, + ACTIONS(7419), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84226] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7523), 2, + ACTIONS(7439), 2, sym__newline_or_pipe, sym_comment, - [82979] = 2, + [84234] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7413), 2, - sym__newline_or_pipe, + ACTIONS(7701), 1, + anon_sym_LF, + ACTIONS(7703), 1, sym_comment, - [82987] = 2, + [84244] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7411), 2, + ACTIONS(7441), 2, sym__newline_or_pipe, sym_comment, - [82995] = 2, + [84252] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7345), 2, - sym__newline_or_pipe, - sym_comment, - [83003] = 2, + ACTIONS(7635), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84260] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7409), 2, - sym__newline_or_pipe, - sym_comment, - [83011] = 2, + ACTIONS(7697), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84268] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7415), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84276] = 2, ACTIONS(3), 1, sym__line_continuation, ACTIONS(7407), 2, - sym__newline_or_pipe, - sym_comment, - [83019] = 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84284] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7545), 2, + ACTIONS(7443), 2, sym__newline_or_pipe, sym_comment, - [83027] = 2, + [84292] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7349), 2, + ACTIONS(7505), 2, sym__newline_or_pipe, sym_comment, - [83035] = 2, + [84300] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7521), 2, - sym__newline_or_pipe, - sym_comment, - [83043] = 2, + ACTIONS(7401), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84308] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7519), 2, - sym__newline_or_pipe, - sym_comment, - [83051] = 2, + ACTIONS(7395), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84316] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(4978), 2, + ACTIONS(7503), 2, sym__newline_or_pipe, sym_comment, - [83059] = 2, + [84324] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7421), 2, - sym__newline_or_pipe, - sym_comment, - [83067] = 2, + ACTIONS(5123), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84332] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7517), 2, - sym__newline_or_pipe, - sym_comment, - [83075] = 2, + ACTIONS(7589), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84340] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7579), 2, - sym_hl_group, - anon_sym_STAR, - [83083] = 2, + ACTIONS(7483), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84348] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7555), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84356] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7507), 2, + ACTIONS(7705), 2, sym__newline_or_pipe, sym_comment, - [83091] = 3, + [84364] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7283), 1, - sym__separator_first, - STATE(802), 1, - sym__syn_hl_pattern, - [83101] = 2, + ACTIONS(7543), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84372] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7401), 2, + ACTIONS(7501), 2, sym__newline_or_pipe, sym_comment, - [83109] = 2, + [84380] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7509), 2, + ACTIONS(7491), 2, sym__newline_or_pipe, sym_comment, - [83117] = 3, + [84388] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7581), 1, - sym__separator_first, - STATE(722), 1, - sym__syn_hl_pattern, - [83127] = 2, + ACTIONS(7535), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84396] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7337), 2, + ACTIONS(7445), 2, sym__newline_or_pipe, sym_comment, - [83135] = 2, + [84404] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7583), 2, - aux_sym__syn_pattern_offset_token1, - aux_sym__syn_pattern_offset_token2, - [83143] = 2, + ACTIONS(7627), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84412] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7511), 2, - sym__newline_or_pipe, - sym_comment, - [83151] = 2, + ACTIONS(7707), 1, + aux_sym_normal_statement_token1, + ACTIONS(7709), 1, + sym_bang, + [84422] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7511), 2, - sym__newline_or_pipe, - sym_comment, - [83159] = 2, + ACTIONS(7495), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84430] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7511), 2, + ACTIONS(7525), 2, sym__newline_or_pipe, sym_comment, - [83167] = 2, + [84438] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7361), 2, - sym__newline_or_pipe, - sym_comment, - [83175] = 2, + ACTIONS(7493), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84446] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7365), 2, - sym__newline_or_pipe, - sym_comment, - [83183] = 2, + ACTIONS(7711), 1, + aux_sym_normal_statement_token1, + ACTIONS(7713), 1, + sym_bang, + [84456] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7513), 2, - sym__newline_or_pipe, - sym_comment, - [83191] = 2, + ACTIONS(7431), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84464] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7513), 2, - sym__newline_or_pipe, - sym_comment, - [83199] = 2, + ACTIONS(7471), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84472] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7399), 2, - sym__newline_or_pipe, - sym_comment, - [83207] = 2, + ACTIONS(7433), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84480] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7513), 2, - sym__newline_or_pipe, - sym_comment, - [83215] = 3, + ACTIONS(7617), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84488] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7585), 1, - anon_sym_STAR2, - ACTIONS(7587), 1, - sym_integer_literal, - [83225] = 2, + ACTIONS(7335), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84496] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7515), 2, - sym__newline_or_pipe, - sym_comment, - [83233] = 2, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84504] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7367), 2, - sym__newline_or_pipe, - sym_comment, - [83241] = 2, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84512] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7397), 2, - sym__newline_or_pipe, - sym_comment, - [83249] = 2, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84520] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7369), 2, - sym__newline_or_pipe, - sym_comment, - [83257] = 3, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84528] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6505), 1, - sym_literal_key, - STATE(2807), 1, - sym__literal_dictionary_entry, - [83267] = 2, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84536] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7395), 2, - sym__newline_or_pipe, - sym_comment, - [83275] = 2, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84544] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7387), 2, - sym__newline_or_pipe, - sym_comment, - [83283] = 2, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84552] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7078), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [83291] = 2, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84560] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7375), 2, - sym__newline_or_pipe, - sym_comment, - [83299] = 2, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84568] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7377), 2, - sym__newline_or_pipe, - sym_comment, - [83307] = 2, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84576] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7385), 2, - sym__newline_or_pipe, - sym_comment, - [83315] = 2, + ACTIONS(7365), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84584] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7383), 2, - sym__newline_or_pipe, - sym_comment, - [83323] = 2, + ACTIONS(7371), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84592] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7589), 1, - aux_sym__bang_filter_command_argument_token2, - [83330] = 2, + ACTIONS(7459), 2, + sym__newline_or_pipe, + sym_comment, + [84600] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7591), 1, - sym__endif, - [83337] = 2, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84608] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7059), 1, - anon_sym_RBRACE, - [83344] = 2, + ACTIONS(7363), 2, + anon_sym_BSLASH_PIPE, + aux_sym__map_rhs_token4, + [84616] = 3, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7593), 1, - aux_sym__bang_filter_command_argument_token2, - [83351] = 2, + ACTIONS(7715), 1, + aux_sym_normal_statement_token1, + ACTIONS(7717), 1, + sym_bang, + [84626] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7595), 1, - aux_sym_option_name_token2, - [83358] = 2, + ACTIONS(7719), 1, + sym__separator, + [84633] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5645), 1, - sym_spread, - [83365] = 2, + ACTIONS(5623), 1, + anon_sym_RPAREN, + [84640] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7597), 1, - anon_sym_LF, - [83372] = 2, + ACTIONS(7721), 1, + anon_sym_EQ2, + [84647] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3026), 1, - anon_sym_RBRACK, - [83379] = 2, + ACTIONS(3016), 1, + anon_sym_RBRACK2, + [84654] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5643), 1, - anon_sym_RPAREN, - [83386] = 2, + ACTIONS(7723), 1, + aux_sym_option_name_token2, + [84661] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7599), 1, + ACTIONS(7725), 1, anon_sym_RBRACE, - [83393] = 2, + [84668] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7601), 1, - sym_hl_group, - [83400] = 2, + ACTIONS(7727), 1, + aux_sym__bang_filter_command_argument_token2, + [84675] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7603), 1, - sym_hl_group, - [83407] = 2, + ACTIONS(7729), 1, + aux_sym__bang_filter_command_argument_token2, + [84682] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7605), 1, - sym__printable, - [83414] = 2, + ACTIONS(7731), 1, + sym_hl_group, + [84689] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7607), 1, - aux_sym__map_rhs_token4, - [83421] = 2, + ACTIONS(6956), 1, + anon_sym_RBRACE, + [84696] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7609), 1, + ACTIONS(7733), 1, anon_sym_BSLASH_RPAREN, - [83428] = 2, + [84703] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7611), 1, - anon_sym_SQUOTE2, - [83435] = 2, + ACTIONS(7735), 1, + sym__printable, + [84710] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7613), 1, + ACTIONS(7737), 1, sym_hl_group, - [83442] = 2, + [84717] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7615), 1, - anon_sym_EQ2, - [83449] = 2, + ACTIONS(7739), 1, + sym_hl_group, + [84724] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7617), 1, - anon_sym_EQ2, - [83456] = 2, + ACTIONS(7741), 1, + aux_sym_normal_statement_token1, + [84731] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7619), 1, - anon_sym_GT, - [83463] = 2, + ACTIONS(7743), 1, + anon_sym_EQ2, + [84738] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7621), 1, - sym_hl_group, - [83470] = 2, + ACTIONS(7745), 1, + anon_sym_EQ2, + [84745] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7621), 1, - sym_integer_literal, - [83477] = 2, + ACTIONS(7747), 1, + anon_sym_GT, + [84752] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6976), 1, - anon_sym_RPAREN, - [83484] = 2, + ACTIONS(6241), 1, + sym__endif, + [84759] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7579), 1, - sym_integer_literal, - [83491] = 2, + ACTIONS(6270), 1, + sym__endtry, + [84766] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6338), 1, - sym_hl_group, - [83498] = 2, + ACTIONS(7749), 1, + anon_sym_BSLASH_RPAREN, + [84773] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7623), 1, - sym__separator_first, - [83505] = 2, + ACTIONS(7751), 1, + anon_sym_BSLASH_RPAREN, + [84780] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6340), 1, - sym_spread, - [83512] = 2, + ACTIONS(7753), 1, + aux_sym__bang_filter_command_argument_token2, + [84787] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7625), 1, + ACTIONS(7755), 1, anon_sym_GT, - [83519] = 2, + [84794] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7627), 1, + ACTIONS(7757), 1, anon_sym_EQ2, - [83526] = 2, + [84801] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7629), 1, + ACTIONS(7759), 1, anon_sym_EQ2, - [83533] = 2, + [84808] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6338), 1, - sym_integer_literal, - [83540] = 2, + ACTIONS(7761), 1, + sym__endtry, + [84815] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7631), 1, - anon_sym_BSLASH_RPAREN, - [83547] = 2, + ACTIONS(7763), 1, + anon_sym_RBRACE, + [84822] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7633), 1, - aux_sym__syn_sync_lines_token1, - [83554] = 2, + ACTIONS(3032), 1, + anon_sym_RBRACK2, + [84829] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7635), 1, - anon_sym_EQ2, - [83561] = 2, + ACTIONS(7043), 1, + anon_sym_RBRACE, + [84836] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7637), 1, - sym_hl_group, - [83568] = 2, + ACTIONS(7765), 1, + aux_sym__bang_filter_command_argument_token2, + [84843] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7639), 1, + ACTIONS(7767), 1, aux_sym__bang_filter_command_argument_token2, - [83575] = 2, + [84850] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7641), 1, - anon_sym_RBRACE, - [83582] = 2, + ACTIONS(7769), 1, + aux_sym_option_name_token2, + [84857] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7643), 1, + ACTIONS(7771), 1, sym__printable, - [83589] = 2, + [84864] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3014), 1, - anon_sym_RBRACK, - [83596] = 2, + ACTIONS(7773), 1, + sym_hl_group, + [84871] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7645), 1, + ACTIONS(7775), 1, anon_sym_EQ2, - [83603] = 2, + [84878] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7647), 1, + ACTIONS(7777), 1, sym_hl_group, - [83610] = 2, + [84885] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7649), 1, - anon_sym_EQ2, - [83617] = 2, + ACTIONS(7779), 1, + sym_hl_group, + [84892] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7651), 1, + ACTIONS(7781), 1, sym_hl_group, - [83624] = 2, + [84899] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7653), 1, - sym__printable, - [83631] = 2, + ACTIONS(7783), 1, + aux_sym_autocmd_statement_token1, + [84906] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7187), 1, - anon_sym_RBRACE, - [83638] = 2, + ACTIONS(7785), 1, + sym__printable, + [84913] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7655), 1, - sym__separator, - [83645] = 2, + ACTIONS(7787), 1, + aux_sym_autocmd_statement_token1, + [84920] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6904), 1, - anon_sym_RPAREN, - [83652] = 2, + ACTIONS(7789), 1, + anon_sym_GT, + [84927] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7657), 1, + ACTIONS(7791), 1, aux_sym_option_name_token2, - [83659] = 2, + [84934] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7659), 1, + ACTIONS(7793), 1, aux_sym__bang_filter_command_argument_token2, - [83666] = 2, + [84941] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7661), 1, + ACTIONS(7795), 1, aux_sym__bang_filter_command_argument_token2, - [83673] = 2, + [84948] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7663), 1, - aux_sym__bang_filter_command_argument_token2, - [83680] = 2, + ACTIONS(7797), 1, + anon_sym_GT, + [84955] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7665), 1, - aux_sym__bang_filter_command_argument_token2, - [83687] = 2, + ACTIONS(7799), 1, + anon_sym_EQ2, + [84962] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7667), 1, - aux_sym_option_name_token2, - [83694] = 2, + ACTIONS(7801), 1, + anon_sym_EQ2, + [84969] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7669), 1, - aux_sym__hl_quoted_name_token1, - [83701] = 2, + ACTIONS(7803), 1, + anon_sym_GT, + [84976] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7671), 1, - aux_sym__bang_filter_command_argument_token2, - [83708] = 2, + ACTIONS(7805), 1, + aux_sym__map_lhs_token1, + [84983] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7673), 1, + ACTIONS(7807), 1, anon_sym_BSLASH_RPAREN, - [83715] = 2, + [84990] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7575), 1, - anon_sym_LF, - [83722] = 2, + ACTIONS(7809), 1, + sym_hl_group, + [84997] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7675), 1, - sym_hl_group, - [83729] = 2, + ACTIONS(7811), 1, + anon_sym_EQ2, + [85004] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7677), 1, + ACTIONS(7813), 1, anon_sym_GT, - [83736] = 2, + [85011] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7679), 1, + ACTIONS(7815), 1, anon_sym_EQ2, - [83743] = 2, + [85018] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7681), 1, + ACTIONS(7817), 1, + sym__printable, + [85025] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7819), 1, sym_hl_group, - [83750] = 2, + [85032] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7683), 1, + ACTIONS(7821), 1, + anon_sym_EQ2, + [85039] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7823), 1, + sym_hl_group, + [85046] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7825), 1, + anon_sym_BSLASH_RPAREN, + [85053] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7827), 1, aux_sym_option_name_token2, - [83757] = 2, + [85060] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7685), 1, + ACTIONS(7829), 1, aux_sym__bang_filter_command_argument_token2, - [83764] = 2, + [85067] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7687), 1, + ACTIONS(7831), 1, aux_sym__bang_filter_command_argument_token2, - [83771] = 2, + [85074] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7689), 1, - sym_hl_group, - [83778] = 2, + ACTIONS(7833), 1, + anon_sym_GT, + [85081] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7691), 1, - anon_sym_RPAREN, - [83785] = 2, + ACTIONS(7835), 1, + anon_sym_EQ2, + [85088] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7693), 1, - sym__endtry, - [83792] = 2, + ACTIONS(7837), 1, + anon_sym_EQ2, + [85095] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7695), 1, - sym__printable, - [83799] = 2, + ACTIONS(7839), 1, + anon_sym_EQ2, + [85102] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7697), 1, + ACTIONS(7841), 1, anon_sym_BSLASH_RPAREN, - [83806] = 2, + [85109] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7699), 1, - anon_sym_RPAREN, - [83813] = 2, + ACTIONS(7843), 1, + anon_sym_RBRACE, + [85116] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7701), 1, + ACTIONS(7845), 1, anon_sym_EQ2, - [83820] = 2, + [85123] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7703), 1, - sym__endif, - [83827] = 2, + ACTIONS(7847), 1, + sym__printable, + [85130] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7849), 1, + sym_hl_group, + [85137] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7851), 1, + anon_sym_EQ2, + [85144] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7853), 1, + sym_hl_group, + [85151] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(2972), 1, + anon_sym_RBRACK2, + [85158] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7705), 1, + ACTIONS(7855), 1, aux_sym_option_name_token2, - [83834] = 2, + [85165] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7707), 1, + ACTIONS(7857), 1, aux_sym__bang_filter_command_argument_token2, - [83841] = 2, + [85172] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7709), 1, + ACTIONS(7859), 1, aux_sym__bang_filter_command_argument_token2, - [83848] = 2, + [85179] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6171), 1, - sym__endif, - [83855] = 2, + ACTIONS(7861), 1, + anon_sym_EQ2, + [85186] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7711), 1, - aux_sym_wincmd_statement_token1, - [83862] = 2, + ACTIONS(7863), 1, + sym__separator, + [85193] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7713), 1, + ACTIONS(7865), 1, anon_sym_EQ2, - [83869] = 2, + [85200] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7715), 1, + ACTIONS(7867), 1, anon_sym_BSLASH_RPAREN, - [83876] = 2, + [85207] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7717), 1, - aux_sym_option_name_token2, - [83883] = 2, + ACTIONS(7115), 1, + anon_sym_RBRACE, + [85214] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7719), 1, + ACTIONS(7869), 1, + anon_sym_EQ2, + [85221] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7871), 1, aux_sym__bang_filter_command_argument_token2, - [83890] = 2, + [85228] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7721), 1, + ACTIONS(7873), 1, aux_sym__bang_filter_command_argument_token2, - [83897] = 2, + [85235] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7723), 1, - anon_sym_EQ2, - [83904] = 2, + ACTIONS(7875), 1, + aux_sym__bang_filter_command_argument_token2, + [85242] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7725), 1, - anon_sym_GT, - [83911] = 2, + ACTIONS(7877), 1, + aux_sym__bang_filter_command_argument_token2, + [85249] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6638), 1, - anon_sym_EQ, - [83918] = 2, + ACTIONS(7879), 1, + aux_sym_option_name_token2, + [85256] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7727), 1, + ACTIONS(7881), 1, anon_sym_BSLASH_RPAREN, - [83925] = 2, + [85263] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5669), 1, - anon_sym_RPAREN, - [83932] = 2, + ACTIONS(7883), 1, + aux_sym_argument_token2, + [85270] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7729), 1, + ACTIONS(7885), 1, + anon_sym_EQ2, + [85277] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7887), 1, aux_sym__bang_filter_command_argument_token2, - [83939] = 2, + [85284] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7731), 1, + ACTIONS(7889), 1, aux_sym__bang_filter_command_argument_token2, - [83946] = 2, + [85291] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5671), 1, - sym_spread, - [83953] = 2, + ACTIONS(7891), 1, + anon_sym_EQ2, + [85298] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6864), 1, - anon_sym_RBRACE, - [83960] = 2, + ACTIONS(7893), 1, + sym_hl_group, + [85305] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7557), 1, - sym_integer_literal, - [83967] = 2, + ACTIONS(7895), 1, + anon_sym_EQ2, + [85312] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7733), 1, + ACTIONS(7897), 1, anon_sym_BSLASH_RPAREN, - [83974] = 2, + [85319] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7735), 1, - anon_sym_BSLASH_RPAREN, - [83981] = 2, + ACTIONS(7899), 1, + sym__printable, + [85326] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7737), 1, + ACTIONS(7901), 1, aux_sym__bang_filter_command_argument_token2, - [83988] = 2, + [85333] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7739), 1, + ACTIONS(7903), 1, aux_sym__bang_filter_command_argument_token2, - [83995] = 2, + [85340] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7741), 1, - aux_sym__bang_filter_command_argument_token2, - [84002] = 2, + ACTIONS(7905), 1, + sym__separator, + [85347] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7743), 1, - anon_sym_GT, - [84009] = 2, + ACTIONS(7907), 1, + sym__separator, + [85354] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3042), 1, - anon_sym_RBRACK, - [84016] = 2, + ACTIONS(7909), 1, + anon_sym_EQ2, + [85361] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7745), 1, + ACTIONS(7911), 1, anon_sym_BSLASH_RPAREN, - [84023] = 2, + [85368] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7747), 1, - anon_sym_RBRACE, - [84030] = 2, + ACTIONS(7913), 1, + anon_sym_EQ2, + [85375] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7749), 1, + ACTIONS(7915), 1, aux_sym__bang_filter_command_argument_token2, - [84037] = 2, + [85382] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7751), 1, + ACTIONS(7917), 1, aux_sym__bang_filter_command_argument_token2, - [84044] = 2, + [85389] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3010), 1, - anon_sym_RBRACK, - [84051] = 2, + ACTIONS(7919), 1, + sym__endif, + [85396] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7753), 1, + ACTIONS(7921), 1, anon_sym_COLON, - [84058] = 2, + [85403] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6970), 1, - anon_sym_RBRACE, - [84065] = 2, + ACTIONS(7923), 1, + anon_sym_EQ2, + [85410] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7755), 1, + ACTIONS(7925), 1, anon_sym_BSLASH_RPAREN, - [84072] = 2, + [85417] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7757), 1, - anon_sym_EQ2, - [84079] = 2, + ACTIONS(7927), 1, + sym_hl_group, + [85424] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7759), 1, + ACTIONS(7929), 1, aux_sym__bang_filter_command_argument_token2, - [84086] = 2, + [85431] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7761), 1, - aux_sym__bang_filter_command_argument_token2, - [84093] = 2, + ACTIONS(7931), 1, + anon_sym_EQ2, + [85438] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7763), 1, - aux_sym__bang_filter_command_argument_token2, - [84100] = 2, + ACTIONS(7933), 1, + anon_sym_GT, + [85445] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7765), 1, + ACTIONS(7935), 1, aux_sym__bang_filter_command_argument_token2, - [84107] = 2, + [85452] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7767), 1, - aux_sym_option_name_token2, - [84114] = 2, + ACTIONS(7937), 1, + anon_sym_EQ2, + [85459] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7769), 1, - anon_sym_EQ2, - [84121] = 2, + ACTIONS(7939), 1, + sym_hl_group, + [85466] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7771), 1, + ACTIONS(7941), 1, aux_sym__bang_filter_command_argument_token2, - [84128] = 2, + [85473] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7773), 1, + ACTIONS(7943), 1, anon_sym_EQ2, - [84135] = 2, + [85480] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7775), 1, - anon_sym_EQ2, - [84142] = 2, + ACTIONS(7641), 1, + sym_integer_literal, + [85487] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7777), 1, + ACTIONS(7945), 1, aux_sym__bang_filter_command_argument_token2, - [84149] = 2, + [85494] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7779), 1, - anon_sym_EQ2, - [84156] = 2, + ACTIONS(7947), 1, + sym_hl_group, + [85501] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7781), 1, + ACTIONS(7949), 1, anon_sym_EQ2, - [84163] = 2, + [85508] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7783), 1, + ACTIONS(7951), 1, anon_sym_EQ2, - [84170] = 2, + [85515] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7785), 1, + ACTIONS(7953), 1, anon_sym_EQ2, - [84177] = 2, + [85522] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7787), 1, - anon_sym_EQ2, - [84184] = 2, + ACTIONS(7955), 1, + anon_sym_BSLASH_RPAREN, + [85529] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7789), 1, + ACTIONS(7957), 1, + anon_sym_GT, + [85536] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(7959), 1, anon_sym_EQ2, - [84191] = 2, + [85543] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7791), 1, + ACTIONS(7961), 1, sym_hl_group, - [84198] = 2, + [85550] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7793), 1, - aux_sym_autocmd_statement_token1, - [84205] = 2, + ACTIONS(7963), 1, + anon_sym_EQ2, + [85557] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7795), 1, + ACTIONS(7965), 1, sym_hl_group, - [84212] = 2, + [85564] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7797), 1, - sym_hl_group, - [84219] = 2, + ACTIONS(7967), 1, + anon_sym_RBRACE, + [85571] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7799), 1, + ACTIONS(7969), 1, anon_sym_EQ2, - [84226] = 2, + [85578] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7801), 1, - sym_hl_group, - [84233] = 2, + ACTIONS(3040), 1, + anon_sym_RBRACK2, + [85585] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7803), 1, - anon_sym_EQ2, - [84240] = 2, + ACTIONS(7971), 1, + sym_hl_group, + [85592] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7805), 1, + ACTIONS(7973), 1, sym_hl_group, - [84247] = 2, + [85599] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7807), 1, + ACTIONS(7975), 1, sym_hl_group, - [84254] = 2, + [85606] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7809), 1, + ACTIONS(7977), 1, sym_hl_group, - [84261] = 2, + [85613] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7811), 1, + ACTIONS(7979), 1, anon_sym_EQ2, - [84268] = 2, + [85620] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7813), 1, - sym__printable, - [84275] = 2, + ACTIONS(7981), 1, + anon_sym_EQ2, + [85627] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7815), 1, - sym_hl_group, - [84282] = 2, + ACTIONS(7983), 1, + anon_sym_EQ2, + [85634] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7817), 1, - sym__separator, - [84289] = 2, + ACTIONS(7985), 1, + anon_sym_EQ2, + [85641] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7819), 1, - sym__separator, - [84296] = 2, + ACTIONS(7987), 1, + anon_sym_EQ2, + [85648] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7821), 1, + ACTIONS(7989), 1, anon_sym_EQ2, - [84303] = 2, + [85655] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7823), 1, - aux_sym_argument_token2, - [84310] = 2, + ACTIONS(7991), 1, + anon_sym_EQ2, + [85662] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6316), 1, - sym__endtry, - [84317] = 2, + ACTIONS(7174), 1, + anon_sym_RBRACE, + [85669] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7825), 1, - anon_sym_EQ2, - [84324] = 2, + ACTIONS(7993), 1, + sym_hl_group, + [85676] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7827), 1, + ACTIONS(7995), 1, anon_sym_EQ2, - [84331] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7829), 1, - sym_hl_group, - [84338] = 2, + [85683] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7831), 1, + ACTIONS(7997), 1, sym_hl_group, - [84345] = 2, + [85690] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7833), 1, + ACTIONS(7999), 1, anon_sym_EQ2, - [84352] = 2, + [85697] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7835), 1, + ACTIONS(8001), 1, anon_sym_EQ2, - [84359] = 2, + [85704] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7837), 1, + ACTIONS(8003), 1, anon_sym_EQ2, - [84366] = 2, + [85711] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7839), 1, + ACTIONS(8005), 1, anon_sym_EQ2, - [84373] = 2, + [85718] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7841), 1, + ACTIONS(8007), 1, anon_sym_EQ2, - [84380] = 2, + [85725] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7843), 1, + ACTIONS(8009), 1, anon_sym_EQ2, - [84387] = 2, + [85732] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7845), 1, - anon_sym_EQ2, - [84394] = 2, + ACTIONS(8011), 1, + aux_sym__bang_filter_command_argument_token2, + [85739] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7847), 1, + ACTIONS(8013), 1, sym_hl_group, - [84401] = 2, + [85746] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7849), 1, + ACTIONS(8015), 1, anon_sym_EQ2, - [84408] = 2, + [85753] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7851), 1, - anon_sym_GT, - [84415] = 2, + ACTIONS(8017), 1, + aux_sym__bang_filter_command_argument_token2, + [85760] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7853), 1, + ACTIONS(8019), 1, anon_sym_EQ2, - [84422] = 2, + [85767] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7855), 1, + ACTIONS(8021), 1, anon_sym_EQ2, - [84429] = 2, + [85774] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7857), 1, + ACTIONS(8023), 1, anon_sym_EQ2, - [84436] = 2, + [85781] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7859), 1, + ACTIONS(8025), 1, anon_sym_EQ2, - [84443] = 2, + [85788] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7861), 1, - anon_sym_EQ2, - [84450] = 2, + ACTIONS(8027), 1, + aux_sym__bang_filter_command_argument_token2, + [85795] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7863), 1, - anon_sym_EQ2, - [84457] = 2, + ACTIONS(8029), 1, + anon_sym_GT, + [85802] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7865), 1, - anon_sym_EQ2, - [84464] = 2, + ACTIONS(8031), 1, + aux_sym_option_name_token2, + [85809] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7867), 1, - anon_sym_EQ2, - [84471] = 2, + ACTIONS(8033), 1, + aux_sym__map_lhs_token1, + [85816] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7869), 1, + ACTIONS(8035), 1, anon_sym_EQ2, - [84478] = 2, + [85823] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7871), 1, + ACTIONS(8037), 1, anon_sym_EQ2, - [84485] = 2, + [85830] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7873), 1, - anon_sym_EQ2, - [84492] = 2, + ACTIONS(8039), 1, + aux_sym_autocmd_statement_token1, + [85837] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7875), 1, + ACTIONS(8041), 1, anon_sym_EQ2, - [84499] = 2, + [85844] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7877), 1, + ACTIONS(8043), 1, anon_sym_EQ2, - [84506] = 2, + [85851] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7879), 1, + ACTIONS(8045), 1, anon_sym_EQ2, - [84513] = 2, + [85858] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7881), 1, + ACTIONS(8047), 1, anon_sym_EQ2, - [84520] = 2, + [85865] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7883), 1, + ACTIONS(8049), 1, anon_sym_EQ2, - [84527] = 2, + [85872] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7885), 1, + ACTIONS(8051), 1, anon_sym_EQ2, - [84534] = 2, + [85879] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7887), 1, + ACTIONS(8053), 1, anon_sym_EQ2, - [84541] = 2, + [85886] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7889), 1, + ACTIONS(8055), 1, anon_sym_EQ2, - [84548] = 2, + [85893] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7891), 1, + ACTIONS(8057), 1, anon_sym_EQ2, - [84555] = 2, + [85900] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7893), 1, + ACTIONS(8059), 1, anon_sym_EQ2, - [84562] = 2, + [85907] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7205), 1, - sym_integer_literal, - [84569] = 2, + ACTIONS(8061), 1, + sym_hl_group, + [85914] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(8063), 1, + aux_sym_autocmd_statement_token1, + [85921] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7529), 1, + ACTIONS(7593), 1, anon_sym_LF, - [84576] = 2, + [85928] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7895), 1, + ACTIONS(8065), 1, + sym_hl_group, + [85935] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(8067), 1, + aux_sym_normal_statement_token1, + [85942] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(8069), 1, sym_au_event, - [84583] = 2, + [85949] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7897), 1, - aux_sym_autocmd_statement_token1, - [84590] = 2, + ACTIONS(8071), 1, + aux_sym__hl_quoted_name_token1, + [85956] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7899), 1, + ACTIONS(8073), 1, + anon_sym_EQ2, + [85963] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(8075), 1, + anon_sym_EQ2, + [85970] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(8077), 1, sym_hl_group, - [84597] = 2, + [85977] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7901), 1, - aux_sym__hl_quoted_name_token1, - [84604] = 2, + ACTIONS(8079), 1, + anon_sym_LF, + [85984] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(8081), 1, + aux_sym__bang_filter_command_argument_token2, + [85991] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7903), 1, - anon_sym_EQ2, - [84611] = 2, + ACTIONS(8083), 1, + aux_sym__syn_sync_lines_token1, + [85998] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7905), 1, + ACTIONS(8085), 1, anon_sym_EQ2, - [84618] = 2, + [86005] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7907), 1, - sym_hl_group, - [84625] = 2, + ACTIONS(8087), 1, + sym__printable, + [86012] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7909), 1, - anon_sym_LF, - [84632] = 2, + ACTIONS(8089), 1, + aux_sym__bang_filter_command_argument_token2, + [86019] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7911), 1, - anon_sym_BSLASH_RPAREN, - [84639] = 2, + ACTIONS(8091), 1, + anon_sym_EQ2, + [86026] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7913), 1, - sym_hl_group, - [84646] = 2, + ACTIONS(8093), 1, + anon_sym_EQ2, + [86033] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7915), 1, - anon_sym_GT, - [84653] = 2, + ACTIONS(8095), 1, + sym__separator, + [86040] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7917), 1, - aux_sym__map_lhs_token1, - [84660] = 2, + ACTIONS(6442), 1, + sym__endtry, + [86047] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7919), 1, - aux_sym_autocmd_statement_token1, - [84667] = 2, + ACTIONS(5829), 1, + sym_spread, + [86054] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7921), 1, - aux_sym_normal_statement_token1, - [84674] = 2, + ACTIONS(8097), 1, + anon_sym_EQ2, + [86061] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7923), 1, - anon_sym_RBRACE, - [84681] = 2, + ACTIONS(8099), 1, + anon_sym_EQ2, + [86068] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3000), 1, - anon_sym_RBRACK, - [84688] = 2, + ACTIONS(8101), 1, + anon_sym_EQ2, + [86075] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7925), 1, + ACTIONS(8103), 1, aux_sym__map_lhs_token1, - [84695] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7927), 1, - anon_sym_GT, - [84702] = 2, + [86082] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7929), 1, + ACTIONS(8105), 1, anon_sym_GT, - [84709] = 2, + [86089] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7931), 1, + ACTIONS(8107), 1, anon_sym_RBRACE, - [84716] = 2, + [86096] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6984), 1, - anon_sym_RBRACE, - [84723] = 2, + ACTIONS(3018), 1, + anon_sym_RBRACK2, + [86103] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7933), 1, + ACTIONS(8109), 1, aux_sym_autocmd_statement_token1, - [84730] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7935), 1, - aux_sym__bang_filter_command_argument_token2, - [84737] = 2, + [86110] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7937), 1, - aux_sym__bang_filter_command_argument_token2, - [84744] = 2, + ACTIONS(5827), 1, + anon_sym_RPAREN, + [86117] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7939), 1, - aux_sym_option_name_token2, - [84751] = 2, + ACTIONS(8111), 1, + sym_hl_group, + [86124] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7941), 1, - sym__endtry, - [84758] = 2, + ACTIONS(7246), 1, + anon_sym_RBRACE, + [86131] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6254), 1, - sym__endtry, - [84765] = 2, + ACTIONS(6854), 1, + anon_sym_EQ, + [86138] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6145), 1, - sym__endif, - [84772] = 2, + ACTIONS(8113), 1, + anon_sym_BSLASH_RPAREN, + [86145] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7943), 1, - sym_hl_group, - [84779] = 2, + ACTIONS(8115), 1, + sym__separator, + [86152] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(5506), 1, - anon_sym_RPAREN, - [84786] = 2, + ACTIONS(8117), 1, + aux_sym_wincmd_statement_token1, + [86159] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7945), 1, + ACTIONS(8119), 1, sym_hl_group, - [84793] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7947), 1, - anon_sym_GT, - [84800] = 2, + [86166] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7949), 1, - aux_sym__bang_filter_command_argument_token2, - [84807] = 2, - ACTIONS(3), 1, - sym__line_continuation, - ACTIONS(7951), 1, + ACTIONS(8121), 1, anon_sym_EQ2, - [84814] = 2, + [86173] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7953), 1, + ACTIONS(8123), 1, sym_hl_group, - [84821] = 2, + [86180] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7955), 1, - aux_sym_normal_statement_token1, - [84828] = 2, + ACTIONS(8125), 1, + aux_sym__bang_filter_command_argument_token2, + [86187] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7957), 1, + ACTIONS(8127), 1, anon_sym_EQ2, - [84835] = 2, + [86194] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7959), 1, - aux_sym__bang_filter_command_argument_token2, - [84842] = 2, + ACTIONS(6255), 1, + sym__endif, + [86201] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7961), 1, - aux_sym__syn_sync_lines_token1, - [84849] = 2, + ACTIONS(8129), 1, + aux_sym__bang_filter_command_argument_token2, + [86208] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7963), 1, + ACTIONS(8131), 1, anon_sym_EQ2, - [84856] = 2, + [86215] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7965), 1, + ACTIONS(8133), 1, + anon_sym_GT, + [86222] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(8135), 1, anon_sym_EQ2, - [84863] = 2, + [86229] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7967), 1, + ACTIONS(8137), 1, anon_sym_EQ2, - [84870] = 2, + [86236] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7969), 1, + ACTIONS(8139), 1, anon_sym_EQ2, - [84877] = 2, + [86243] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7971), 1, + ACTIONS(8141), 1, anon_sym_EQ2, - [84884] = 2, + [86250] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7973), 1, - sym__printable, - [84891] = 2, + ACTIONS(8143), 1, + aux_sym_autocmd_statement_token1, + [86257] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7975), 1, - sym__separator, - [84898] = 2, + ACTIONS(8145), 1, + aux_sym_autocmd_statement_token1, + [86264] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7977), 1, + ACTIONS(8147), 1, anon_sym_EQ2, - [84905] = 2, + [86271] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7979), 1, + ACTIONS(8149), 1, sym_hl_group, - [84912] = 2, + [86278] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7981), 1, - anon_sym_EQ2, - [84919] = 2, + ACTIONS(8151), 1, + sym__endtry, + [86285] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7983), 1, - sym_hl_group, - [84926] = 2, + ACTIONS(8153), 1, + anon_sym_RBRACE, + [86292] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7985), 1, - sym_hl_group, - [84933] = 2, + ACTIONS(2976), 1, + anon_sym_RBRACK2, + [86299] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7987), 1, - aux_sym__bang_filter_command_argument_token2, - [84940] = 2, + ACTIONS(8155), 1, + anon_sym_EQ2, + [86306] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7989), 1, - aux_sym_autocmd_statement_token1, - [84947] = 2, + ACTIONS(7274), 1, + anon_sym_RBRACE, + [86313] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7991), 1, - sym__set, - [84954] = 2, + ACTIONS(7463), 1, + anon_sym_LF, + [86320] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7993), 1, - anon_sym_EQ2, - [84961] = 2, + ACTIONS(8157), 1, + aux_sym__bang_filter_command_argument_token2, + [86327] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7995), 1, - anon_sym_EQ2, - [84968] = 2, + ACTIONS(8159), 1, + aux_sym__bang_filter_command_argument_token2, + [86334] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7997), 1, - sym__separator, - [84975] = 2, + ACTIONS(8161), 1, + aux_sym_option_name_token2, + [86341] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7999), 1, + ACTIONS(8163), 1, anon_sym_EQ2, - [84982] = 2, + [86348] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8001), 1, - sym_command_name, - [84989] = 2, + ACTIONS(8165), 1, + aux_sym_autocmd_statement_token1, + [86355] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8003), 1, + ACTIONS(8167), 1, anon_sym_EQ2, - [84996] = 2, + [86362] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8005), 1, - aux_sym_wincmd_statement_token1, - [85003] = 2, + ACTIONS(8169), 1, + aux_sym__hl_quoted_name_token1, + [86369] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8007), 1, - anon_sym_EQ2, - [85010] = 2, + ACTIONS(8171), 1, + sym__separator, + [86376] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8009), 1, - anon_sym_EQ2, - [85017] = 2, + ACTIONS(8173), 1, + sym__printable, + [86383] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8011), 1, - anon_sym_EQ2, - [85024] = 2, + ACTIONS(8175), 1, + sym__separator_first, + [86390] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8013), 1, - anon_sym_BSLASH_RPAREN, - [85031] = 2, + ACTIONS(8177), 1, + anon_sym_EQ2, + [86397] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8015), 1, - aux_sym_normal_statement_token1, - [85038] = 2, + ACTIONS(8179), 1, + aux_sym__bang_filter_command_argument_token2, + [86404] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8017), 1, - aux_sym__map_lhs_token1, - [85045] = 2, + ACTIONS(8181), 1, + anon_sym_EQ2, + [86411] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8019), 1, - anon_sym_GT, - [85052] = 2, + ACTIONS(8183), 1, + anon_sym_EQ2, + [86418] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8021), 1, - aux_sym_autocmd_statement_token1, - [85059] = 2, + ACTIONS(8185), 1, + sym_hl_group, + [86425] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8023), 1, + ACTIONS(8187), 1, anon_sym_EQ2, - [85066] = 2, + [86432] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8025), 1, - anon_sym_EQ2, - [85073] = 2, + ACTIONS(8189), 1, + aux_sym__syn_sync_lines_token1, + [86439] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8027), 1, - anon_sym_EQ2, - [85080] = 2, + ACTIONS(6223), 1, + sym_integer_literal, + [86446] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8029), 1, - anon_sym_in, - [85087] = 2, + ACTIONS(6223), 1, + sym_hl_group, + [86453] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8031), 1, - aux_sym__bang_filter_command_argument_token2, - [85094] = 2, + ACTIONS(7379), 1, + sym_integer_literal, + [86460] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8033), 1, - aux_sym_normal_statement_token1, - [85101] = 2, + ACTIONS(8191), 1, + sym_hl_group, + [86467] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8035), 1, - aux_sym_autocmd_statement_token1, - [85108] = 2, + ACTIONS(8193), 1, + anon_sym_SQUOTE2, + [86474] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8037), 1, - anon_sym_EQ2, - [85115] = 2, + ACTIONS(8195), 1, + aux_sym_option_name_token2, + [86481] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8039), 1, - anon_sym_EQ2, - [85122] = 2, + ACTIONS(8197), 1, + aux_sym__map_rhs_token4, + [86488] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8041), 1, - aux_sym__bang_filter_command_argument_token2, - [85129] = 2, + ACTIONS(8199), 1, + sym__endif, + [86495] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8043), 1, + ACTIONS(8201), 1, anon_sym_EQ2, - [85136] = 2, + [86502] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8045), 1, - anon_sym_EQ2, - [85143] = 2, + ACTIONS(8203), 1, + sym_integer_literal, + [86509] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8047), 1, - anon_sym_EQ2, - [85150] = 2, + ACTIONS(8203), 1, + sym_hl_group, + [86516] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8049), 1, - anon_sym_BSLASH_RPAREN, - [85157] = 2, + ACTIONS(8205), 1, + sym_hl_group, + [86523] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8051), 1, - sym_hl_group, - [85164] = 2, + ACTIONS(8205), 1, + sym_integer_literal, + [86530] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8053), 1, - aux_sym_option_name_token2, - [85171] = 2, + ACTIONS(7367), 1, + sym_integer_literal, + [86537] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8055), 1, - sym__separator, - [85178] = 2, + ACTIONS(6436), 1, + sym_hl_group, + [86544] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8057), 1, - ts_builtin_sym_end, - [85185] = 2, + ACTIONS(6436), 1, + sym_integer_literal, + [86551] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8059), 1, - aux_sym__bang_filter_command_argument_token2, - [85192] = 2, + ACTIONS(8207), 1, + aux_sym__syn_sync_lines_token1, + [86558] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8061), 1, + ACTIONS(8209), 1, anon_sym_EQ2, - [85199] = 2, + [86565] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8063), 1, - sym_hl_group, - [85206] = 2, + ACTIONS(5724), 1, + anon_sym_RPAREN, + [86572] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8065), 1, - aux_sym__bang_filter_command_argument_token2, - [85213] = 2, + ACTIONS(5726), 1, + sym_spread, + [86579] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8067), 1, - anon_sym_GT, - [85220] = 2, + ACTIONS(8211), 1, + sym__printable, + [86586] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8069), 1, - aux_sym_autocmd_statement_token1, - [85227] = 2, + ACTIONS(8213), 1, + sym__separator, + [86593] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8071), 1, - aux_sym_autocmd_statement_token1, - [85234] = 2, + ACTIONS(8215), 1, + sym__endtry, + [86600] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8073), 1, - anon_sym_RBRACE, - [85241] = 2, + ACTIONS(8217), 1, + anon_sym_EQ2, + [86607] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8075), 1, - aux_sym__bang_filter_command_argument_token2, - [85248] = 2, + ACTIONS(8219), 1, + sym__endif, + [86614] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3036), 1, - anon_sym_RBRACK, - [85255] = 2, + ACTIONS(6268), 1, + sym__endif, + [86621] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8077), 1, - aux_sym_wincmd_statement_token1, - [85262] = 2, + ACTIONS(8221), 1, + sym_hl_group, + [86628] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7010), 1, - anon_sym_RBRACE, - [85269] = 2, + ACTIONS(8223), 1, + anon_sym_EQ2, + [86635] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7002), 1, - anon_sym_RBRACE, - [85276] = 2, + ACTIONS(8225), 1, + sym_hl_group, + [86642] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(3018), 1, - anon_sym_RBRACK, - [85283] = 2, + ACTIONS(8227), 1, + sym_hl_group, + [86649] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8079), 1, - anon_sym_RBRACE, - [85290] = 2, + ACTIONS(8229), 1, + sym__endif, + [86656] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8081), 1, - aux_sym__bang_filter_command_argument_token2, - [85297] = 2, + ACTIONS(8231), 1, + anon_sym_LF, + [86663] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8083), 1, + ACTIONS(8233), 1, aux_sym__bang_filter_command_argument_token2, - [85304] = 2, + [86670] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8085), 1, - aux_sym_option_name_token2, - [85311] = 2, + ACTIONS(8235), 1, + aux_sym_normal_statement_token1, + [86677] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8087), 1, + ACTIONS(8237), 1, + sym_hl_group, + [86684] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(8239), 1, anon_sym_EQ2, - [85318] = 2, + [86691] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6212), 1, - sym__endtry, - [85325] = 2, + ACTIONS(7339), 1, + sym_integer_literal, + [86698] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8089), 1, - aux_sym_autocmd_statement_token1, - [85332] = 2, + ACTIONS(8241), 1, + anon_sym_EQ2, + [86705] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8091), 1, - aux_sym_autocmd_statement_token1, - [85339] = 2, + ACTIONS(8243), 1, + anon_sym_EQ2, + [86712] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8093), 1, - aux_sym_wincmd_statement_token1, - [85346] = 2, + ACTIONS(8245), 1, + anon_sym_EQ2, + [86719] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8095), 1, - aux_sym_autocmd_statement_token1, - [85353] = 2, + ACTIONS(8247), 1, + sym__separator, + [86726] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8097), 1, - aux_sym__map_lhs_token1, - [85360] = 2, + ACTIONS(8249), 1, + sym_hl_group, + [86733] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8099), 1, - sym_command_name, - [85367] = 2, + ACTIONS(8251), 1, + aux_sym_argument_token2, + [86740] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8101), 1, - sym_hl_group, - [85374] = 2, + ACTIONS(8253), 1, + aux_sym__map_rhs_token4, + [86747] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8103), 1, - anon_sym_GT, - [85381] = 2, + ACTIONS(8255), 1, + anon_sym_EQ2, + [86754] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8105), 1, + ACTIONS(8257), 1, + anon_sym_SQUOTE2, + [86761] = 2, + ACTIONS(3), 1, + sym__line_continuation, + ACTIONS(8259), 1, aux_sym__bang_filter_command_argument_token2, - [85388] = 2, + [86768] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8107), 1, - sym_hl_group, - [85395] = 2, + ACTIONS(8261), 1, + anon_sym_EQ2, + [86775] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8109), 1, + ACTIONS(8263), 1, sym_hl_group, - [85402] = 2, + [86782] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8111), 1, + ACTIONS(8265), 1, anon_sym_EQ2, - [85409] = 2, + [86789] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8113), 1, - sym_hl_group, - [85416] = 2, + ACTIONS(8267), 1, + aux_sym_autocmd_statement_token1, + [86796] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8115), 1, - sym__set, - [85423] = 2, + ACTIONS(8269), 1, + sym_hl_group, + [86803] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8117), 1, + ACTIONS(8271), 1, sym_hl_group, - [85430] = 2, + [86810] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8119), 1, - sym__separator, - [85437] = 2, + ACTIONS(8273), 1, + aux_sym__map_lhs_token1, + [86817] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8121), 1, - anon_sym_BSLASH_RPAREN, - [85444] = 2, + ACTIONS(8275), 1, + anon_sym_GT, + [86824] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8123), 1, - aux_sym_normal_statement_token1, - [85451] = 2, + ACTIONS(8277), 1, + aux_sym_autocmd_statement_token1, + [86831] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8125), 1, + ACTIONS(8279), 1, anon_sym_in, - [85458] = 2, + [86838] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8127), 1, + ACTIONS(8281), 1, sym_hl_group, - [85465] = 2, + [86845] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8129), 1, + ACTIONS(8283), 1, sym__separator_first, - [85472] = 2, + [86852] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8131), 1, - anon_sym_EQ2, - [85479] = 2, + ACTIONS(8285), 1, + sym__endtry, + [86859] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8133), 1, - sym__separator, - [85486] = 2, + ACTIONS(6266), 1, + sym__endtry, + [86866] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6228), 1, + ACTIONS(6325), 1, sym__endif, - [85493] = 2, + [86873] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8135), 1, + ACTIONS(8287), 1, sym_hl_group, - [85500] = 2, + [86880] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6226), 1, - sym__endtry, - [85507] = 2, + ACTIONS(7206), 1, + anon_sym_RPAREN, + [86887] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8137), 1, - sym_hl_group, - [85514] = 2, + ACTIONS(8289), 1, + aux_sym_normal_statement_token1, + [86894] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8139), 1, - sym__endtry, - [85521] = 2, + ACTIONS(6348), 1, + sym_spread, + [86901] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8141), 1, - sym_hl_group, - [85528] = 2, + ACTIONS(8291), 1, + aux_sym_normal_statement_token1, + [86908] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8143), 1, - aux_sym_autocmd_statement_token1, - [85535] = 2, + ACTIONS(8293), 1, + anon_sym_BSLASH_RPAREN, + [86915] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8145), 1, - anon_sym_GT, - [85542] = 2, + ACTIONS(8295), 1, + anon_sym_in, + [86922] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8147), 1, - aux_sym__map_lhs_token1, - [85549] = 2, + ACTIONS(8297), 1, + sym__separator, + [86929] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8149), 1, + ACTIONS(8299), 1, sym_hl_group, - [85556] = 2, + [86936] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8151), 1, + ACTIONS(8301), 1, sym_hl_group, - [85563] = 2, + [86943] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8153), 1, - anon_sym_EQ2, - [85570] = 2, + ACTIONS(8303), 1, + sym_hl_group, + [86950] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8155), 1, + ACTIONS(8305), 1, sym_hl_group, - [85577] = 2, + [86957] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8157), 1, - anon_sym_SQUOTE2, - [85584] = 2, + ACTIONS(8307), 1, + aux_sym__bang_filter_command_argument_token2, + [86964] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8159), 1, - anon_sym_EQ2, - [85591] = 2, + ACTIONS(8309), 1, + ts_builtin_sym_end, + [86971] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8161), 1, - aux_sym__map_rhs_token4, - [85598] = 2, + ACTIONS(8311), 1, + anon_sym_GT, + [86978] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8163), 1, - anon_sym_EQ2, - [85605] = 2, + ACTIONS(8313), 1, + aux_sym__map_lhs_token1, + [86985] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8165), 1, - sym__endif, - [85612] = 2, + ACTIONS(8315), 1, + aux_sym_autocmd_statement_token1, + [86992] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8167), 1, - anon_sym_EQ2, - [85619] = 2, + ACTIONS(8317), 1, + aux_sym_wincmd_statement_token1, + [86999] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8169), 1, - sym_hl_group, - [85626] = 2, + ACTIONS(8319), 1, + sym_command_name, + [87006] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8171), 1, - aux_sym_argument_token2, - [85633] = 2, + ACTIONS(8321), 1, + aux_sym_autocmd_statement_token1, + [87013] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8173), 1, - sym__separator, - [85640] = 2, + ACTIONS(6440), 1, + sym__endtry, + [87020] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8175), 1, - sym_hl_group, - [85647] = 2, + ACTIONS(7137), 1, + anon_sym_RPAREN, + [87027] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8175), 1, - sym_integer_literal, - [85654] = 2, + ACTIONS(8323), 1, + anon_sym_RBRACE, + [87034] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8177), 1, - anon_sym_EQ2, - [85661] = 2, + ACTIONS(3012), 1, + anon_sym_RBRACK2, + [87041] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(7249), 1, - sym_integer_literal, - [85668] = 2, + ACTIONS(7123), 1, + anon_sym_RBRACE, + [87048] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8179), 1, - anon_sym_EQ2, - [85675] = 2, + ACTIONS(8325), 1, + aux_sym_wincmd_statement_token1, + [87055] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6281), 1, - sym_hl_group, - [85682] = 2, + ACTIONS(8327), 1, + aux_sym__bang_filter_command_argument_token2, + [87062] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8181), 1, + ACTIONS(8329), 1, sym__separator_first, - [85689] = 2, + [87069] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6281), 1, - sym_integer_literal, - [85696] = 2, + ACTIONS(8331), 1, + sym__set, + [87076] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8183), 1, - aux_sym__syn_sync_lines_token1, - [85703] = 2, + ACTIONS(8333), 1, + sym_hl_group, + [87083] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8185), 1, - sym_hl_group, - [85710] = 2, + ACTIONS(8335), 1, + anon_sym_RPAREN, + [87090] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8187), 1, - anon_sym_EQ2, - [85717] = 2, + ACTIONS(8337), 1, + aux_sym__bang_filter_command_argument_token2, + [87097] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8189), 1, - anon_sym_EQ2, - [85724] = 2, + ACTIONS(8339), 1, + aux_sym_option_name_token2, + [87104] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8191), 1, - sym__printable, - [85731] = 2, + ACTIONS(8341), 1, + anon_sym_RPAREN, + [87111] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8193), 1, - sym__separator, - [85738] = 2, + ACTIONS(8343), 1, + sym_hl_group, + [87118] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8195), 1, - sym__endtry, - [85745] = 2, + ACTIONS(8345), 1, + sym_hl_group, + [87125] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8197), 1, - sym__endif, - [85752] = 2, + ACTIONS(8347), 1, + aux_sym__bang_filter_command_argument_token2, + [87132] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(6328), 1, - sym__endif, - [85759] = 2, + ACTIONS(8349), 1, + aux_sym_autocmd_statement_token1, + [87139] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8199), 1, - sym_hl_group, - [85766] = 2, + ACTIONS(8351), 1, + aux_sym_normal_statement_token1, + [87146] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8201), 1, - aux_sym__bang_filter_command_argument_token2, - [85773] = 2, + ACTIONS(8353), 1, + aux_sym_wincmd_statement_token1, + [87153] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8203), 1, - aux_sym_normal_statement_token1, - [85780] = 2, + ACTIONS(8355), 1, + sym_command_name, + [87160] = 2, ACTIONS(3), 1, sym__line_continuation, - ACTIONS(8205), 1, - anon_sym_EQ2, + ACTIONS(8357), 1, + sym__set, }; static const uint32_t ts_small_parse_table_map[] = { @@ -126984,402 +127308,402 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(273)] = 523, [SMALL_STATE(274)] = 587, [SMALL_STATE(275)] = 653, - [SMALL_STATE(276)] = 718, + [SMALL_STATE(276)] = 750, [SMALL_STATE(277)] = 815, [SMALL_STATE(278)] = 912, [SMALL_STATE(279)] = 1009, [SMALL_STATE(280)] = 1106, - [SMALL_STATE(281)] = 1164, - [SMALL_STATE(282)] = 1246, - [SMALL_STATE(283)] = 1328, - [SMALL_STATE(284)] = 1410, + [SMALL_STATE(281)] = 1188, + [SMALL_STATE(282)] = 1270, + [SMALL_STATE(283)] = 1352, + [SMALL_STATE(284)] = 1434, [SMALL_STATE(285)] = 1492, [SMALL_STATE(286)] = 1549, [SMALL_STATE(287)] = 1606, [SMALL_STATE(288)] = 1663, - [SMALL_STATE(289)] = 1743, + [SMALL_STATE(289)] = 1761, [SMALL_STATE(290)] = 1841, - [SMALL_STATE(291)] = 1939, + [SMALL_STATE(291)] = 1921, [SMALL_STATE(292)] = 2019, [SMALL_STATE(293)] = 2106, [SMALL_STATE(294)] = 2193, [SMALL_STATE(295)] = 2280, - [SMALL_STATE(296)] = 2336, - [SMALL_STATE(297)] = 2392, - [SMALL_STATE(298)] = 2446, - [SMALL_STATE(299)] = 2502, - [SMALL_STATE(300)] = 2590, - [SMALL_STATE(301)] = 2678, - [SMALL_STATE(302)] = 2734, - [SMALL_STATE(303)] = 2822, - [SMALL_STATE(304)] = 2910, - [SMALL_STATE(305)] = 2998, - [SMALL_STATE(306)] = 3086, - [SMALL_STATE(307)] = 3142, - [SMALL_STATE(308)] = 3230, - [SMALL_STATE(309)] = 3286, - [SMALL_STATE(310)] = 3374, + [SMALL_STATE(296)] = 2368, + [SMALL_STATE(297)] = 2456, + [SMALL_STATE(298)] = 2512, + [SMALL_STATE(299)] = 2600, + [SMALL_STATE(300)] = 2688, + [SMALL_STATE(301)] = 2744, + [SMALL_STATE(302)] = 2832, + [SMALL_STATE(303)] = 2888, + [SMALL_STATE(304)] = 2976, + [SMALL_STATE(305)] = 3030, + [SMALL_STATE(306)] = 3118, + [SMALL_STATE(307)] = 3174, + [SMALL_STATE(308)] = 3262, + [SMALL_STATE(309)] = 3350, + [SMALL_STATE(310)] = 3406, [SMALL_STATE(311)] = 3462, - [SMALL_STATE(312)] = 3543, - [SMALL_STATE(313)] = 3624, + [SMALL_STATE(312)] = 3517, + [SMALL_STATE(313)] = 3598, [SMALL_STATE(314)] = 3679, [SMALL_STATE(315)] = 3760, - [SMALL_STATE(316)] = 3815, - [SMALL_STATE(317)] = 3898, - [SMALL_STATE(318)] = 3953, - [SMALL_STATE(319)] = 4034, - [SMALL_STATE(320)] = 4117, - [SMALL_STATE(321)] = 4198, - [SMALL_STATE(322)] = 4279, - [SMALL_STATE(323)] = 4360, - [SMALL_STATE(324)] = 4441, - [SMALL_STATE(325)] = 4522, - [SMALL_STATE(326)] = 4605, - [SMALL_STATE(327)] = 4686, - [SMALL_STATE(328)] = 4769, - [SMALL_STATE(329)] = 4852, - [SMALL_STATE(330)] = 4933, - [SMALL_STATE(331)] = 4988, - [SMALL_STATE(332)] = 5069, - [SMALL_STATE(333)] = 5150, - [SMALL_STATE(334)] = 5233, - [SMALL_STATE(335)] = 5314, - [SMALL_STATE(336)] = 5395, - [SMALL_STATE(337)] = 5476, - [SMALL_STATE(338)] = 5559, - [SMALL_STATE(339)] = 5640, - [SMALL_STATE(340)] = 5721, - [SMALL_STATE(341)] = 5802, - [SMALL_STATE(342)] = 5883, - [SMALL_STATE(343)] = 5964, - [SMALL_STATE(344)] = 6045, - [SMALL_STATE(345)] = 6100, - [SMALL_STATE(346)] = 6181, - [SMALL_STATE(347)] = 6236, - [SMALL_STATE(348)] = 6319, + [SMALL_STATE(316)] = 3841, + [SMALL_STATE(317)] = 3922, + [SMALL_STATE(318)] = 4003, + [SMALL_STATE(319)] = 4084, + [SMALL_STATE(320)] = 4165, + [SMALL_STATE(321)] = 4246, + [SMALL_STATE(322)] = 4327, + [SMALL_STATE(323)] = 4408, + [SMALL_STATE(324)] = 4463, + [SMALL_STATE(325)] = 4544, + [SMALL_STATE(326)] = 4627, + [SMALL_STATE(327)] = 4710, + [SMALL_STATE(328)] = 4791, + [SMALL_STATE(329)] = 4874, + [SMALL_STATE(330)] = 4955, + [SMALL_STATE(331)] = 5010, + [SMALL_STATE(332)] = 5091, + [SMALL_STATE(333)] = 5172, + [SMALL_STATE(334)] = 5227, + [SMALL_STATE(335)] = 5308, + [SMALL_STATE(336)] = 5389, + [SMALL_STATE(337)] = 5472, + [SMALL_STATE(338)] = 5553, + [SMALL_STATE(339)] = 5634, + [SMALL_STATE(340)] = 5715, + [SMALL_STATE(341)] = 5796, + [SMALL_STATE(342)] = 5877, + [SMALL_STATE(343)] = 5958, + [SMALL_STATE(344)] = 6041, + [SMALL_STATE(345)] = 6124, + [SMALL_STATE(346)] = 6207, + [SMALL_STATE(347)] = 6262, + [SMALL_STATE(348)] = 6317, [SMALL_STATE(349)] = 6400, - [SMALL_STATE(350)] = 6480, + [SMALL_STATE(350)] = 6478, [SMALL_STATE(351)] = 6558, [SMALL_STATE(352)] = 6638, [SMALL_STATE(353)] = 6718, [SMALL_STATE(354)] = 6798, [SMALL_STATE(355)] = 6878, - [SMALL_STATE(356)] = 6926, - [SMALL_STATE(357)] = 7006, - [SMALL_STATE(358)] = 7054, - [SMALL_STATE(359)] = 7134, - [SMALL_STATE(360)] = 7186, - [SMALL_STATE(361)] = 7266, - [SMALL_STATE(362)] = 7346, - [SMALL_STATE(363)] = 7394, - [SMALL_STATE(364)] = 7474, - [SMALL_STATE(365)] = 7556, - [SMALL_STATE(366)] = 7634, - [SMALL_STATE(367)] = 7714, - [SMALL_STATE(368)] = 7766, - [SMALL_STATE(369)] = 7844, - [SMALL_STATE(370)] = 7924, - [SMALL_STATE(371)] = 8004, - [SMALL_STATE(372)] = 8084, - [SMALL_STATE(373)] = 8164, + [SMALL_STATE(356)] = 6956, + [SMALL_STATE(357)] = 7036, + [SMALL_STATE(358)] = 7084, + [SMALL_STATE(359)] = 7132, + [SMALL_STATE(360)] = 7184, + [SMALL_STATE(361)] = 7264, + [SMALL_STATE(362)] = 7344, + [SMALL_STATE(363)] = 7424, + [SMALL_STATE(364)] = 7504, + [SMALL_STATE(365)] = 7584, + [SMALL_STATE(366)] = 7664, + [SMALL_STATE(367)] = 7712, + [SMALL_STATE(368)] = 7792, + [SMALL_STATE(369)] = 7872, + [SMALL_STATE(370)] = 7952, + [SMALL_STATE(371)] = 8032, + [SMALL_STATE(372)] = 8112, + [SMALL_STATE(373)] = 8192, [SMALL_STATE(374)] = 8244, [SMALL_STATE(375)] = 8324, - [SMALL_STATE(376)] = 8404, - [SMALL_STATE(377)] = 8484, - [SMALL_STATE(378)] = 8564, - [SMALL_STATE(379)] = 8612, + [SMALL_STATE(376)] = 8372, + [SMALL_STATE(377)] = 8450, + [SMALL_STATE(378)] = 8528, + [SMALL_STATE(379)] = 8608, [SMALL_STATE(380)] = 8690, - [SMALL_STATE(381)] = 8770, + [SMALL_STATE(381)] = 8772, [SMALL_STATE(382)] = 8852, [SMALL_STATE(383)] = 8932, [SMALL_STATE(384)] = 9009, [SMALL_STATE(385)] = 9086, [SMALL_STATE(386)] = 9163, [SMALL_STATE(387)] = 9240, - [SMALL_STATE(388)] = 9321, - [SMALL_STATE(389)] = 9398, - [SMALL_STATE(390)] = 9475, - [SMALL_STATE(391)] = 9552, - [SMALL_STATE(392)] = 9633, - [SMALL_STATE(393)] = 9710, - [SMALL_STATE(394)] = 9787, - [SMALL_STATE(395)] = 9864, - [SMALL_STATE(396)] = 9941, - [SMALL_STATE(397)] = 10018, - [SMALL_STATE(398)] = 10095, - [SMALL_STATE(399)] = 10172, - [SMALL_STATE(400)] = 10249, - [SMALL_STATE(401)] = 10326, - [SMALL_STATE(402)] = 10403, - [SMALL_STATE(403)] = 10480, - [SMALL_STATE(404)] = 10557, - [SMALL_STATE(405)] = 10634, - [SMALL_STATE(406)] = 10711, - [SMALL_STATE(407)] = 10788, - [SMALL_STATE(408)] = 10865, - [SMALL_STATE(409)] = 10942, - [SMALL_STATE(410)] = 11019, - [SMALL_STATE(411)] = 11096, - [SMALL_STATE(412)] = 11173, - [SMALL_STATE(413)] = 11250, - [SMALL_STATE(414)] = 11327, - [SMALL_STATE(415)] = 11404, - [SMALL_STATE(416)] = 11481, - [SMALL_STATE(417)] = 11558, - [SMALL_STATE(418)] = 11635, - [SMALL_STATE(419)] = 11712, - [SMALL_STATE(420)] = 11789, + [SMALL_STATE(388)] = 9317, + [SMALL_STATE(389)] = 9394, + [SMALL_STATE(390)] = 9471, + [SMALL_STATE(391)] = 9548, + [SMALL_STATE(392)] = 9625, + [SMALL_STATE(393)] = 9702, + [SMALL_STATE(394)] = 9779, + [SMALL_STATE(395)] = 9856, + [SMALL_STATE(396)] = 9933, + [SMALL_STATE(397)] = 10010, + [SMALL_STATE(398)] = 10091, + [SMALL_STATE(399)] = 10168, + [SMALL_STATE(400)] = 10245, + [SMALL_STATE(401)] = 10322, + [SMALL_STATE(402)] = 10399, + [SMALL_STATE(403)] = 10476, + [SMALL_STATE(404)] = 10553, + [SMALL_STATE(405)] = 10630, + [SMALL_STATE(406)] = 10707, + [SMALL_STATE(407)] = 10784, + [SMALL_STATE(408)] = 10831, + [SMALL_STATE(409)] = 10908, + [SMALL_STATE(410)] = 10989, + [SMALL_STATE(411)] = 11066, + [SMALL_STATE(412)] = 11143, + [SMALL_STATE(413)] = 11220, + [SMALL_STATE(414)] = 11297, + [SMALL_STATE(415)] = 11374, + [SMALL_STATE(416)] = 11451, + [SMALL_STATE(417)] = 11528, + [SMALL_STATE(418)] = 11605, + [SMALL_STATE(419)] = 11682, + [SMALL_STATE(420)] = 11759, [SMALL_STATE(421)] = 11836, [SMALL_STATE(422)] = 11913, [SMALL_STATE(423)] = 11990, - [SMALL_STATE(424)] = 12037, - [SMALL_STATE(425)] = 12114, - [SMALL_STATE(426)] = 12191, - [SMALL_STATE(427)] = 12268, - [SMALL_STATE(428)] = 12345, - [SMALL_STATE(429)] = 12422, + [SMALL_STATE(424)] = 12067, + [SMALL_STATE(425)] = 12144, + [SMALL_STATE(426)] = 12221, + [SMALL_STATE(427)] = 12298, + [SMALL_STATE(428)] = 12375, + [SMALL_STATE(429)] = 12452, [SMALL_STATE(430)] = 12499, [SMALL_STATE(431)] = 12546, - [SMALL_STATE(432)] = 12593, - [SMALL_STATE(433)] = 12670, - [SMALL_STATE(434)] = 12747, + [SMALL_STATE(432)] = 12623, + [SMALL_STATE(433)] = 12700, + [SMALL_STATE(434)] = 12777, [SMALL_STATE(435)] = 12824, [SMALL_STATE(436)] = 12901, [SMALL_STATE(437)] = 12978, - [SMALL_STATE(438)] = 13024, - [SMALL_STATE(439)] = 13098, - [SMALL_STATE(440)] = 13172, - [SMALL_STATE(441)] = 13246, - [SMALL_STATE(442)] = 13320, - [SMALL_STATE(443)] = 13394, - [SMALL_STATE(444)] = 13468, - [SMALL_STATE(445)] = 13542, - [SMALL_STATE(446)] = 13616, - [SMALL_STATE(447)] = 13690, - [SMALL_STATE(448)] = 13764, - [SMALL_STATE(449)] = 13838, - [SMALL_STATE(450)] = 13912, - [SMALL_STATE(451)] = 13986, - [SMALL_STATE(452)] = 14060, - [SMALL_STATE(453)] = 14134, - [SMALL_STATE(454)] = 14208, - [SMALL_STATE(455)] = 14282, - [SMALL_STATE(456)] = 14356, - [SMALL_STATE(457)] = 14430, - [SMALL_STATE(458)] = 14504, - [SMALL_STATE(459)] = 14578, - [SMALL_STATE(460)] = 14652, - [SMALL_STATE(461)] = 14726, - [SMALL_STATE(462)] = 14800, - [SMALL_STATE(463)] = 14874, - [SMALL_STATE(464)] = 14950, - [SMALL_STATE(465)] = 15024, - [SMALL_STATE(466)] = 15098, - [SMALL_STATE(467)] = 15172, - [SMALL_STATE(468)] = 15246, - [SMALL_STATE(469)] = 15320, - [SMALL_STATE(470)] = 15394, - [SMALL_STATE(471)] = 15468, - [SMALL_STATE(472)] = 15542, - [SMALL_STATE(473)] = 15616, - [SMALL_STATE(474)] = 15690, - [SMALL_STATE(475)] = 15764, - [SMALL_STATE(476)] = 15810, - [SMALL_STATE(477)] = 15856, - [SMALL_STATE(478)] = 15902, - [SMALL_STATE(479)] = 15948, - [SMALL_STATE(480)] = 16022, - [SMALL_STATE(481)] = 16096, - [SMALL_STATE(482)] = 16142, - [SMALL_STATE(483)] = 16194, - [SMALL_STATE(484)] = 16240, - [SMALL_STATE(485)] = 16314, - [SMALL_STATE(486)] = 16388, - [SMALL_STATE(487)] = 16434, - [SMALL_STATE(488)] = 16480, - [SMALL_STATE(489)] = 16554, - [SMALL_STATE(490)] = 16628, - [SMALL_STATE(491)] = 16702, - [SMALL_STATE(492)] = 16776, - [SMALL_STATE(493)] = 16850, - [SMALL_STATE(494)] = 16924, - [SMALL_STATE(495)] = 16998, - [SMALL_STATE(496)] = 17072, - [SMALL_STATE(497)] = 17146, - [SMALL_STATE(498)] = 17220, - [SMALL_STATE(499)] = 17266, - [SMALL_STATE(500)] = 17312, - [SMALL_STATE(501)] = 17358, - [SMALL_STATE(502)] = 17404, - [SMALL_STATE(503)] = 17450, - [SMALL_STATE(504)] = 17496, - [SMALL_STATE(505)] = 17542, - [SMALL_STATE(506)] = 17588, - [SMALL_STATE(507)] = 17640, - [SMALL_STATE(508)] = 17694, - [SMALL_STATE(509)] = 17740, - [SMALL_STATE(510)] = 17798, - [SMALL_STATE(511)] = 17844, - [SMALL_STATE(512)] = 17918, - [SMALL_STATE(513)] = 17964, - [SMALL_STATE(514)] = 18030, - [SMALL_STATE(515)] = 18094, - [SMALL_STATE(516)] = 18168, - [SMALL_STATE(517)] = 18242, - [SMALL_STATE(518)] = 18316, - [SMALL_STATE(519)] = 18390, - [SMALL_STATE(520)] = 18464, - [SMALL_STATE(521)] = 18538, - [SMALL_STATE(522)] = 18584, - [SMALL_STATE(523)] = 18630, - [SMALL_STATE(524)] = 18704, - [SMALL_STATE(525)] = 18750, - [SMALL_STATE(526)] = 18796, - [SMALL_STATE(527)] = 18842, - [SMALL_STATE(528)] = 18916, - [SMALL_STATE(529)] = 18990, - [SMALL_STATE(530)] = 19036, - [SMALL_STATE(531)] = 19094, - [SMALL_STATE(532)] = 19140, - [SMALL_STATE(533)] = 19186, - [SMALL_STATE(534)] = 19260, - [SMALL_STATE(535)] = 19334, - [SMALL_STATE(536)] = 19380, - [SMALL_STATE(537)] = 19454, - [SMALL_STATE(538)] = 19528, - [SMALL_STATE(539)] = 19602, - [SMALL_STATE(540)] = 19648, - [SMALL_STATE(541)] = 19694, - [SMALL_STATE(542)] = 19740, - [SMALL_STATE(543)] = 19786, - [SMALL_STATE(544)] = 19832, - [SMALL_STATE(545)] = 19900, - [SMALL_STATE(546)] = 19946, - [SMALL_STATE(547)] = 19992, - [SMALL_STATE(548)] = 20038, - [SMALL_STATE(549)] = 20084, - [SMALL_STATE(550)] = 20130, - [SMALL_STATE(551)] = 20176, - [SMALL_STATE(552)] = 20222, - [SMALL_STATE(553)] = 20268, - [SMALL_STATE(554)] = 20342, - [SMALL_STATE(555)] = 20416, - [SMALL_STATE(556)] = 20490, - [SMALL_STATE(557)] = 20564, - [SMALL_STATE(558)] = 20638, - [SMALL_STATE(559)] = 20712, - [SMALL_STATE(560)] = 20782, - [SMALL_STATE(561)] = 20856, - [SMALL_STATE(562)] = 20930, - [SMALL_STATE(563)] = 20976, - [SMALL_STATE(564)] = 21022, - [SMALL_STATE(565)] = 21096, - [SMALL_STATE(566)] = 21170, - [SMALL_STATE(567)] = 21244, - [SMALL_STATE(568)] = 21318, - [SMALL_STATE(569)] = 21392, - [SMALL_STATE(570)] = 21466, - [SMALL_STATE(571)] = 21540, - [SMALL_STATE(572)] = 21586, - [SMALL_STATE(573)] = 21632, - [SMALL_STATE(574)] = 21702, - [SMALL_STATE(575)] = 21748, - [SMALL_STATE(576)] = 21794, - [SMALL_STATE(577)] = 21840, - [SMALL_STATE(578)] = 21908, - [SMALL_STATE(579)] = 21954, - [SMALL_STATE(580)] = 22000, - [SMALL_STATE(581)] = 22046, - [SMALL_STATE(582)] = 22092, - [SMALL_STATE(583)] = 22166, - [SMALL_STATE(584)] = 22212, - [SMALL_STATE(585)] = 22286, - [SMALL_STATE(586)] = 22332, - [SMALL_STATE(587)] = 22390, - [SMALL_STATE(588)] = 22436, - [SMALL_STATE(589)] = 22510, - [SMALL_STATE(590)] = 22584, - [SMALL_STATE(591)] = 22630, - [SMALL_STATE(592)] = 22676, - [SMALL_STATE(593)] = 22722, - [SMALL_STATE(594)] = 22796, - [SMALL_STATE(595)] = 22842, - [SMALL_STATE(596)] = 22888, - [SMALL_STATE(597)] = 22934, - [SMALL_STATE(598)] = 23008, - [SMALL_STATE(599)] = 23082, - [SMALL_STATE(600)] = 23146, - [SMALL_STATE(601)] = 23212, - [SMALL_STATE(602)] = 23286, - [SMALL_STATE(603)] = 23344, - [SMALL_STATE(604)] = 23398, - [SMALL_STATE(605)] = 23450, - [SMALL_STATE(606)] = 23496, - [SMALL_STATE(607)] = 23570, - [SMALL_STATE(608)] = 23616, - [SMALL_STATE(609)] = 23662, - [SMALL_STATE(610)] = 23708, - [SMALL_STATE(611)] = 23754, - [SMALL_STATE(612)] = 23828, - [SMALL_STATE(613)] = 23902, - [SMALL_STATE(614)] = 23976, - [SMALL_STATE(615)] = 24022, - [SMALL_STATE(616)] = 24096, - [SMALL_STATE(617)] = 24170, - [SMALL_STATE(618)] = 24244, - [SMALL_STATE(619)] = 24318, - [SMALL_STATE(620)] = 24392, - [SMALL_STATE(621)] = 24466, - [SMALL_STATE(622)] = 24540, - [SMALL_STATE(623)] = 24614, - [SMALL_STATE(624)] = 24688, - [SMALL_STATE(625)] = 24762, - [SMALL_STATE(626)] = 24836, - [SMALL_STATE(627)] = 24910, - [SMALL_STATE(628)] = 24956, - [SMALL_STATE(629)] = 25030, - [SMALL_STATE(630)] = 25076, - [SMALL_STATE(631)] = 25122, - [SMALL_STATE(632)] = 25196, - [SMALL_STATE(633)] = 25248, - [SMALL_STATE(634)] = 25322, - [SMALL_STATE(635)] = 25396, - [SMALL_STATE(636)] = 25442, - [SMALL_STATE(637)] = 25516, - [SMALL_STATE(638)] = 25590, - [SMALL_STATE(639)] = 25664, - [SMALL_STATE(640)] = 25738, - [SMALL_STATE(641)] = 25812, - [SMALL_STATE(642)] = 25886, - [SMALL_STATE(643)] = 25960, - [SMALL_STATE(644)] = 26034, - [SMALL_STATE(645)] = 26108, - [SMALL_STATE(646)] = 26182, - [SMALL_STATE(647)] = 26256, - [SMALL_STATE(648)] = 26330, - [SMALL_STATE(649)] = 26404, - [SMALL_STATE(650)] = 26478, - [SMALL_STATE(651)] = 26552, - [SMALL_STATE(652)] = 26626, - [SMALL_STATE(653)] = 26700, - [SMALL_STATE(654)] = 26774, - [SMALL_STATE(655)] = 26850, - [SMALL_STATE(656)] = 26924, - [SMALL_STATE(657)] = 26998, - [SMALL_STATE(658)] = 27072, - [SMALL_STATE(659)] = 27146, - [SMALL_STATE(660)] = 27220, - [SMALL_STATE(661)] = 27294, - [SMALL_STATE(662)] = 27368, - [SMALL_STATE(663)] = 27442, - [SMALL_STATE(664)] = 27516, - [SMALL_STATE(665)] = 27590, - [SMALL_STATE(666)] = 27664, - [SMALL_STATE(667)] = 27738, - [SMALL_STATE(668)] = 27812, - [SMALL_STATE(669)] = 27886, - [SMALL_STATE(670)] = 27960, - [SMALL_STATE(671)] = 28034, + [SMALL_STATE(438)] = 13046, + [SMALL_STATE(439)] = 13092, + [SMALL_STATE(440)] = 13166, + [SMALL_STATE(441)] = 13240, + [SMALL_STATE(442)] = 13314, + [SMALL_STATE(443)] = 13388, + [SMALL_STATE(444)] = 13462, + [SMALL_STATE(445)] = 13536, + [SMALL_STATE(446)] = 13582, + [SMALL_STATE(447)] = 13656, + [SMALL_STATE(448)] = 13730, + [SMALL_STATE(449)] = 13776, + [SMALL_STATE(450)] = 13850, + [SMALL_STATE(451)] = 13924, + [SMALL_STATE(452)] = 13998, + [SMALL_STATE(453)] = 14072, + [SMALL_STATE(454)] = 14146, + [SMALL_STATE(455)] = 14192, + [SMALL_STATE(456)] = 14266, + [SMALL_STATE(457)] = 14340, + [SMALL_STATE(458)] = 14414, + [SMALL_STATE(459)] = 14488, + [SMALL_STATE(460)] = 14534, + [SMALL_STATE(461)] = 14580, + [SMALL_STATE(462)] = 14626, + [SMALL_STATE(463)] = 14700, + [SMALL_STATE(464)] = 14774, + [SMALL_STATE(465)] = 14848, + [SMALL_STATE(466)] = 14924, + [SMALL_STATE(467)] = 14998, + [SMALL_STATE(468)] = 15072, + [SMALL_STATE(469)] = 15146, + [SMALL_STATE(470)] = 15192, + [SMALL_STATE(471)] = 15266, + [SMALL_STATE(472)] = 15340, + [SMALL_STATE(473)] = 15414, + [SMALL_STATE(474)] = 15460, + [SMALL_STATE(475)] = 15530, + [SMALL_STATE(476)] = 15604, + [SMALL_STATE(477)] = 15678, + [SMALL_STATE(478)] = 15746, + [SMALL_STATE(479)] = 15792, + [SMALL_STATE(480)] = 15838, + [SMALL_STATE(481)] = 15912, + [SMALL_STATE(482)] = 15958, + [SMALL_STATE(483)] = 16032, + [SMALL_STATE(484)] = 16078, + [SMALL_STATE(485)] = 16152, + [SMALL_STATE(486)] = 16198, + [SMALL_STATE(487)] = 16272, + [SMALL_STATE(488)] = 16346, + [SMALL_STATE(489)] = 16420, + [SMALL_STATE(490)] = 16494, + [SMALL_STATE(491)] = 16540, + [SMALL_STATE(492)] = 16586, + [SMALL_STATE(493)] = 16660, + [SMALL_STATE(494)] = 16718, + [SMALL_STATE(495)] = 16794, + [SMALL_STATE(496)] = 16868, + [SMALL_STATE(497)] = 16914, + [SMALL_STATE(498)] = 16988, + [SMALL_STATE(499)] = 17062, + [SMALL_STATE(500)] = 17136, + [SMALL_STATE(501)] = 17210, + [SMALL_STATE(502)] = 17284, + [SMALL_STATE(503)] = 17330, + [SMALL_STATE(504)] = 17376, + [SMALL_STATE(505)] = 17422, + [SMALL_STATE(506)] = 17468, + [SMALL_STATE(507)] = 17514, + [SMALL_STATE(508)] = 17560, + [SMALL_STATE(509)] = 17624, + [SMALL_STATE(510)] = 17698, + [SMALL_STATE(511)] = 17772, + [SMALL_STATE(512)] = 17838, + [SMALL_STATE(513)] = 17912, + [SMALL_STATE(514)] = 17986, + [SMALL_STATE(515)] = 18044, + [SMALL_STATE(516)] = 18118, + [SMALL_STATE(517)] = 18172, + [SMALL_STATE(518)] = 18224, + [SMALL_STATE(519)] = 18298, + [SMALL_STATE(520)] = 18372, + [SMALL_STATE(521)] = 18446, + [SMALL_STATE(522)] = 18520, + [SMALL_STATE(523)] = 18594, + [SMALL_STATE(524)] = 18668, + [SMALL_STATE(525)] = 18742, + [SMALL_STATE(526)] = 18788, + [SMALL_STATE(527)] = 18834, + [SMALL_STATE(528)] = 18908, + [SMALL_STATE(529)] = 18954, + [SMALL_STATE(530)] = 19028, + [SMALL_STATE(531)] = 19102, + [SMALL_STATE(532)] = 19148, + [SMALL_STATE(533)] = 19222, + [SMALL_STATE(534)] = 19296, + [SMALL_STATE(535)] = 19370, + [SMALL_STATE(536)] = 19416, + [SMALL_STATE(537)] = 19490, + [SMALL_STATE(538)] = 19564, + [SMALL_STATE(539)] = 19638, + [SMALL_STATE(540)] = 19712, + [SMALL_STATE(541)] = 19786, + [SMALL_STATE(542)] = 19860, + [SMALL_STATE(543)] = 19934, + [SMALL_STATE(544)] = 19980, + [SMALL_STATE(545)] = 20026, + [SMALL_STATE(546)] = 20100, + [SMALL_STATE(547)] = 20146, + [SMALL_STATE(548)] = 20192, + [SMALL_STATE(549)] = 20238, + [SMALL_STATE(550)] = 20312, + [SMALL_STATE(551)] = 20386, + [SMALL_STATE(552)] = 20460, + [SMALL_STATE(553)] = 20506, + [SMALL_STATE(554)] = 20580, + [SMALL_STATE(555)] = 20626, + [SMALL_STATE(556)] = 20672, + [SMALL_STATE(557)] = 20718, + [SMALL_STATE(558)] = 20792, + [SMALL_STATE(559)] = 20866, + [SMALL_STATE(560)] = 20940, + [SMALL_STATE(561)] = 20986, + [SMALL_STATE(562)] = 21032, + [SMALL_STATE(563)] = 21106, + [SMALL_STATE(564)] = 21152, + [SMALL_STATE(565)] = 21226, + [SMALL_STATE(566)] = 21300, + [SMALL_STATE(567)] = 21374, + [SMALL_STATE(568)] = 21448, + [SMALL_STATE(569)] = 21494, + [SMALL_STATE(570)] = 21540, + [SMALL_STATE(571)] = 21614, + [SMALL_STATE(572)] = 21660, + [SMALL_STATE(573)] = 21718, + [SMALL_STATE(574)] = 21764, + [SMALL_STATE(575)] = 21838, + [SMALL_STATE(576)] = 21884, + [SMALL_STATE(577)] = 21958, + [SMALL_STATE(578)] = 22004, + [SMALL_STATE(579)] = 22078, + [SMALL_STATE(580)] = 22124, + [SMALL_STATE(581)] = 22170, + [SMALL_STATE(582)] = 22244, + [SMALL_STATE(583)] = 22318, + [SMALL_STATE(584)] = 22392, + [SMALL_STATE(585)] = 22466, + [SMALL_STATE(586)] = 22540, + [SMALL_STATE(587)] = 22586, + [SMALL_STATE(588)] = 22660, + [SMALL_STATE(589)] = 22734, + [SMALL_STATE(590)] = 22808, + [SMALL_STATE(591)] = 22882, + [SMALL_STATE(592)] = 22956, + [SMALL_STATE(593)] = 23030, + [SMALL_STATE(594)] = 23104, + [SMALL_STATE(595)] = 23178, + [SMALL_STATE(596)] = 23224, + [SMALL_STATE(597)] = 23270, + [SMALL_STATE(598)] = 23334, + [SMALL_STATE(599)] = 23380, + [SMALL_STATE(600)] = 23446, + [SMALL_STATE(601)] = 23520, + [SMALL_STATE(602)] = 23594, + [SMALL_STATE(603)] = 23652, + [SMALL_STATE(604)] = 23726, + [SMALL_STATE(605)] = 23780, + [SMALL_STATE(606)] = 23832, + [SMALL_STATE(607)] = 23878, + [SMALL_STATE(608)] = 23924, + [SMALL_STATE(609)] = 23970, + [SMALL_STATE(610)] = 24044, + [SMALL_STATE(611)] = 24096, + [SMALL_STATE(612)] = 24142, + [SMALL_STATE(613)] = 24216, + [SMALL_STATE(614)] = 24262, + [SMALL_STATE(615)] = 24308, + [SMALL_STATE(616)] = 24354, + [SMALL_STATE(617)] = 24428, + [SMALL_STATE(618)] = 24502, + [SMALL_STATE(619)] = 24576, + [SMALL_STATE(620)] = 24650, + [SMALL_STATE(621)] = 24696, + [SMALL_STATE(622)] = 24770, + [SMALL_STATE(623)] = 24844, + [SMALL_STATE(624)] = 24918, + [SMALL_STATE(625)] = 24988, + [SMALL_STATE(626)] = 25062, + [SMALL_STATE(627)] = 25136, + [SMALL_STATE(628)] = 25210, + [SMALL_STATE(629)] = 25284, + [SMALL_STATE(630)] = 25358, + [SMALL_STATE(631)] = 25432, + [SMALL_STATE(632)] = 25506, + [SMALL_STATE(633)] = 25580, + [SMALL_STATE(634)] = 25626, + [SMALL_STATE(635)] = 25700, + [SMALL_STATE(636)] = 25746, + [SMALL_STATE(637)] = 25792, + [SMALL_STATE(638)] = 25844, + [SMALL_STATE(639)] = 25890, + [SMALL_STATE(640)] = 25964, + [SMALL_STATE(641)] = 26010, + [SMALL_STATE(642)] = 26056, + [SMALL_STATE(643)] = 26102, + [SMALL_STATE(644)] = 26148, + [SMALL_STATE(645)] = 26222, + [SMALL_STATE(646)] = 26296, + [SMALL_STATE(647)] = 26342, + [SMALL_STATE(648)] = 26416, + [SMALL_STATE(649)] = 26490, + [SMALL_STATE(650)] = 26564, + [SMALL_STATE(651)] = 26610, + [SMALL_STATE(652)] = 26684, + [SMALL_STATE(653)] = 26758, + [SMALL_STATE(654)] = 26832, + [SMALL_STATE(655)] = 26906, + [SMALL_STATE(656)] = 26952, + [SMALL_STATE(657)] = 27026, + [SMALL_STATE(658)] = 27100, + [SMALL_STATE(659)] = 27174, + [SMALL_STATE(660)] = 27248, + [SMALL_STATE(661)] = 27322, + [SMALL_STATE(662)] = 27396, + [SMALL_STATE(663)] = 27470, + [SMALL_STATE(664)] = 27544, + [SMALL_STATE(665)] = 27618, + [SMALL_STATE(666)] = 27692, + [SMALL_STATE(667)] = 27766, + [SMALL_STATE(668)] = 27840, + [SMALL_STATE(669)] = 27914, + [SMALL_STATE(670)] = 27988, + [SMALL_STATE(671)] = 28062, [SMALL_STATE(672)] = 28108, [SMALL_STATE(673)] = 28182, [SMALL_STATE(674)] = 28256, @@ -127395,12 +127719,12 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(684)] = 28845, [SMALL_STATE(685)] = 28893, [SMALL_STATE(686)] = 28941, - [SMALL_STATE(687)] = 28992, - [SMALL_STATE(688)] = 29033, + [SMALL_STATE(687)] = 28982, + [SMALL_STATE(688)] = 29023, [SMALL_STATE(689)] = 29074, - [SMALL_STATE(690)] = 29169, - [SMALL_STATE(691)] = 29264, - [SMALL_STATE(692)] = 29315, + [SMALL_STATE(690)] = 29125, + [SMALL_STATE(691)] = 29176, + [SMALL_STATE(692)] = 29271, [SMALL_STATE(693)] = 29366, [SMALL_STATE(694)] = 29417, [SMALL_STATE(695)] = 29511, @@ -127409,347 +127733,347 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(698)] = 29631, [SMALL_STATE(699)] = 29671, [SMALL_STATE(700)] = 29711, - [SMALL_STATE(701)] = 29750, - [SMALL_STATE(702)] = 29789, - [SMALL_STATE(703)] = 29828, - [SMALL_STATE(704)] = 29871, - [SMALL_STATE(705)] = 29910, - [SMALL_STATE(706)] = 29953, + [SMALL_STATE(701)] = 29754, + [SMALL_STATE(702)] = 29793, + [SMALL_STATE(703)] = 29836, + [SMALL_STATE(704)] = 29875, + [SMALL_STATE(705)] = 29918, + [SMALL_STATE(706)] = 29957, [SMALL_STATE(707)] = 29996, [SMALL_STATE(708)] = 30035, - [SMALL_STATE(709)] = 30078, + [SMALL_STATE(709)] = 30074, [SMALL_STATE(710)] = 30117, [SMALL_STATE(711)] = 30156, - [SMALL_STATE(712)] = 30195, - [SMALL_STATE(713)] = 30234, - [SMALL_STATE(714)] = 30273, - [SMALL_STATE(715)] = 30316, + [SMALL_STATE(712)] = 30199, + [SMALL_STATE(713)] = 30238, + [SMALL_STATE(714)] = 30277, + [SMALL_STATE(715)] = 30320, [SMALL_STATE(716)] = 30359, - [SMALL_STATE(717)] = 30416, - [SMALL_STATE(718)] = 30465, - [SMALL_STATE(719)] = 30508, - [SMALL_STATE(720)] = 30545, - [SMALL_STATE(721)] = 30582, - [SMALL_STATE(722)] = 30619, - [SMALL_STATE(723)] = 30660, - [SMALL_STATE(724)] = 30697, - [SMALL_STATE(725)] = 30734, - [SMALL_STATE(726)] = 30777, - [SMALL_STATE(727)] = 30814, - [SMALL_STATE(728)] = 30851, - [SMALL_STATE(729)] = 30900, - [SMALL_STATE(730)] = 30937, - [SMALL_STATE(731)] = 30974, - [SMALL_STATE(732)] = 31011, - [SMALL_STATE(733)] = 31048, - [SMALL_STATE(734)] = 31085, - [SMALL_STATE(735)] = 31122, - [SMALL_STATE(736)] = 31163, - [SMALL_STATE(737)] = 31200, - [SMALL_STATE(738)] = 31237, - [SMALL_STATE(739)] = 31274, - [SMALL_STATE(740)] = 31317, - [SMALL_STATE(741)] = 31354, - [SMALL_STATE(742)] = 31391, - [SMALL_STATE(743)] = 31428, - [SMALL_STATE(744)] = 31465, - [SMALL_STATE(745)] = 31502, - [SMALL_STATE(746)] = 31543, - [SMALL_STATE(747)] = 31586, - [SMALL_STATE(748)] = 31631, - [SMALL_STATE(749)] = 31668, - [SMALL_STATE(750)] = 31705, - [SMALL_STATE(751)] = 31748, - [SMALL_STATE(752)] = 31803, - [SMALL_STATE(753)] = 31844, - [SMALL_STATE(754)] = 31881, - [SMALL_STATE(755)] = 31918, - [SMALL_STATE(756)] = 31961, - [SMALL_STATE(757)] = 31998, - [SMALL_STATE(758)] = 32057, - [SMALL_STATE(759)] = 32094, - [SMALL_STATE(760)] = 32131, - [SMALL_STATE(761)] = 32168, - [SMALL_STATE(762)] = 32211, - [SMALL_STATE(763)] = 32248, - [SMALL_STATE(764)] = 32285, - [SMALL_STATE(765)] = 32328, - [SMALL_STATE(766)] = 32365, - [SMALL_STATE(767)] = 32402, - [SMALL_STATE(768)] = 32439, - [SMALL_STATE(769)] = 32476, + [SMALL_STATE(717)] = 30396, + [SMALL_STATE(718)] = 30439, + [SMALL_STATE(719)] = 30476, + [SMALL_STATE(720)] = 30513, + [SMALL_STATE(721)] = 30550, + [SMALL_STATE(722)] = 30587, + [SMALL_STATE(723)] = 30630, + [SMALL_STATE(724)] = 30671, + [SMALL_STATE(725)] = 30714, + [SMALL_STATE(726)] = 30751, + [SMALL_STATE(727)] = 30788, + [SMALL_STATE(728)] = 30825, + [SMALL_STATE(729)] = 30862, + [SMALL_STATE(730)] = 30899, + [SMALL_STATE(731)] = 30936, + [SMALL_STATE(732)] = 30973, + [SMALL_STATE(733)] = 31010, + [SMALL_STATE(734)] = 31051, + [SMALL_STATE(735)] = 31088, + [SMALL_STATE(736)] = 31137, + [SMALL_STATE(737)] = 31174, + [SMALL_STATE(738)] = 31211, + [SMALL_STATE(739)] = 31248, + [SMALL_STATE(740)] = 31285, + [SMALL_STATE(741)] = 31322, + [SMALL_STATE(742)] = 31359, + [SMALL_STATE(743)] = 31402, + [SMALL_STATE(744)] = 31447, + [SMALL_STATE(745)] = 31496, + [SMALL_STATE(746)] = 31553, + [SMALL_STATE(747)] = 31608, + [SMALL_STATE(748)] = 31645, + [SMALL_STATE(749)] = 31686, + [SMALL_STATE(750)] = 31723, + [SMALL_STATE(751)] = 31760, + [SMALL_STATE(752)] = 31797, + [SMALL_STATE(753)] = 31834, + [SMALL_STATE(754)] = 31893, + [SMALL_STATE(755)] = 31930, + [SMALL_STATE(756)] = 31973, + [SMALL_STATE(757)] = 32010, + [SMALL_STATE(758)] = 32053, + [SMALL_STATE(759)] = 32090, + [SMALL_STATE(760)] = 32127, + [SMALL_STATE(761)] = 32164, + [SMALL_STATE(762)] = 32201, + [SMALL_STATE(763)] = 32244, + [SMALL_STATE(764)] = 32281, + [SMALL_STATE(765)] = 32318, + [SMALL_STATE(766)] = 32355, + [SMALL_STATE(767)] = 32398, + [SMALL_STATE(768)] = 32435, + [SMALL_STATE(769)] = 32472, [SMALL_STATE(770)] = 32513, - [SMALL_STATE(771)] = 32553, - [SMALL_STATE(772)] = 32609, - [SMALL_STATE(773)] = 32651, - [SMALL_STATE(774)] = 32707, - [SMALL_STATE(775)] = 32763, - [SMALL_STATE(776)] = 32799, - [SMALL_STATE(777)] = 32841, - [SMALL_STATE(778)] = 32883, - [SMALL_STATE(779)] = 32939, - [SMALL_STATE(780)] = 32981, - [SMALL_STATE(781)] = 33023, - [SMALL_STATE(782)] = 33065, + [SMALL_STATE(771)] = 32555, + [SMALL_STATE(772)] = 32597, + [SMALL_STATE(773)] = 32633, + [SMALL_STATE(774)] = 32675, + [SMALL_STATE(775)] = 32717, + [SMALL_STATE(776)] = 32759, + [SMALL_STATE(777)] = 32801, + [SMALL_STATE(778)] = 32857, + [SMALL_STATE(779)] = 32897, + [SMALL_STATE(780)] = 32939, + [SMALL_STATE(781)] = 32995, + [SMALL_STATE(782)] = 33051, [SMALL_STATE(783)] = 33107, - [SMALL_STATE(784)] = 33172, - [SMALL_STATE(785)] = 33237, - [SMALL_STATE(786)] = 33302, - [SMALL_STATE(787)] = 33337, - [SMALL_STATE(788)] = 33376, - [SMALL_STATE(789)] = 33441, - [SMALL_STATE(790)] = 33480, - [SMALL_STATE(791)] = 33519, - [SMALL_STATE(792)] = 33584, - [SMALL_STATE(793)] = 33649, - [SMALL_STATE(794)] = 33684, - [SMALL_STATE(795)] = 33749, - [SMALL_STATE(796)] = 33784, - [SMALL_STATE(797)] = 33823, - [SMALL_STATE(798)] = 33882, - [SMALL_STATE(799)] = 33947, - [SMALL_STATE(800)] = 33986, - [SMALL_STATE(801)] = 34051, - [SMALL_STATE(802)] = 34116, - [SMALL_STATE(803)] = 34155, - [SMALL_STATE(804)] = 34194, - [SMALL_STATE(805)] = 34233, + [SMALL_STATE(784)] = 33146, + [SMALL_STATE(785)] = 33185, + [SMALL_STATE(786)] = 33250, + [SMALL_STATE(787)] = 33315, + [SMALL_STATE(788)] = 33350, + [SMALL_STATE(789)] = 33385, + [SMALL_STATE(790)] = 33424, + [SMALL_STATE(791)] = 33489, + [SMALL_STATE(792)] = 33528, + [SMALL_STATE(793)] = 33567, + [SMALL_STATE(794)] = 33632, + [SMALL_STATE(795)] = 33671, + [SMALL_STATE(796)] = 33736, + [SMALL_STATE(797)] = 33775, + [SMALL_STATE(798)] = 33810, + [SMALL_STATE(799)] = 33869, + [SMALL_STATE(800)] = 33934, + [SMALL_STATE(801)] = 33969, + [SMALL_STATE(802)] = 34008, + [SMALL_STATE(803)] = 34073, + [SMALL_STATE(804)] = 34138, + [SMALL_STATE(805)] = 34203, [SMALL_STATE(806)] = 34268, - [SMALL_STATE(807)] = 34328, - [SMALL_STATE(808)] = 34388, - [SMALL_STATE(809)] = 34422, - [SMALL_STATE(810)] = 34484, - [SMALL_STATE(811)] = 34544, - [SMALL_STATE(812)] = 34606, - [SMALL_STATE(813)] = 34666, - [SMALL_STATE(814)] = 34728, - [SMALL_STATE(815)] = 34790, - [SMALL_STATE(816)] = 34852, - [SMALL_STATE(817)] = 34914, - [SMALL_STATE(818)] = 34976, - [SMALL_STATE(819)] = 35038, - [SMALL_STATE(820)] = 35100, - [SMALL_STATE(821)] = 35134, - [SMALL_STATE(822)] = 35196, - [SMALL_STATE(823)] = 35258, - [SMALL_STATE(824)] = 35320, - [SMALL_STATE(825)] = 35382, + [SMALL_STATE(807)] = 34302, + [SMALL_STATE(808)] = 34364, + [SMALL_STATE(809)] = 34426, + [SMALL_STATE(810)] = 34486, + [SMALL_STATE(811)] = 34546, + [SMALL_STATE(812)] = 34608, + [SMALL_STATE(813)] = 34670, + [SMALL_STATE(814)] = 34732, + [SMALL_STATE(815)] = 34794, + [SMALL_STATE(816)] = 34856, + [SMALL_STATE(817)] = 34918, + [SMALL_STATE(818)] = 34980, + [SMALL_STATE(819)] = 35014, + [SMALL_STATE(820)] = 35076, + [SMALL_STATE(821)] = 35138, + [SMALL_STATE(822)] = 35200, + [SMALL_STATE(823)] = 35262, + [SMALL_STATE(824)] = 35324, + [SMALL_STATE(825)] = 35384, [SMALL_STATE(826)] = 35444, [SMALL_STATE(827)] = 35477, [SMALL_STATE(828)] = 35510, - [SMALL_STATE(829)] = 35565, - [SMALL_STATE(830)] = 35624, - [SMALL_STATE(831)] = 35681, - [SMALL_STATE(832)] = 35714, - [SMALL_STATE(833)] = 35747, - [SMALL_STATE(834)] = 35804, - [SMALL_STATE(835)] = 35861, - [SMALL_STATE(836)] = 35894, - [SMALL_STATE(837)] = 35927, - [SMALL_STATE(838)] = 35960, - [SMALL_STATE(839)] = 36019, - [SMALL_STATE(840)] = 36052, - [SMALL_STATE(841)] = 36111, - [SMALL_STATE(842)] = 36144, - [SMALL_STATE(843)] = 36177, - [SMALL_STATE(844)] = 36210, - [SMALL_STATE(845)] = 36267, - [SMALL_STATE(846)] = 36308, - [SMALL_STATE(847)] = 36341, - [SMALL_STATE(848)] = 36400, - [SMALL_STATE(849)] = 36433, - [SMALL_STATE(850)] = 36492, - [SMALL_STATE(851)] = 36549, - [SMALL_STATE(852)] = 36582, - [SMALL_STATE(853)] = 36623, - [SMALL_STATE(854)] = 36658, - [SMALL_STATE(855)] = 36691, - [SMALL_STATE(856)] = 36748, - [SMALL_STATE(857)] = 36781, - [SMALL_STATE(858)] = 36840, - [SMALL_STATE(859)] = 36875, - [SMALL_STATE(860)] = 36934, - [SMALL_STATE(861)] = 36991, - [SMALL_STATE(862)] = 37050, - [SMALL_STATE(863)] = 37101, - [SMALL_STATE(864)] = 37134, - [SMALL_STATE(865)] = 37193, - [SMALL_STATE(866)] = 37232, - [SMALL_STATE(867)] = 37291, - [SMALL_STATE(868)] = 37344, - [SMALL_STATE(869)] = 37389, - [SMALL_STATE(870)] = 37430, - [SMALL_STATE(871)] = 37469, - [SMALL_STATE(872)] = 37528, - [SMALL_STATE(873)] = 37587, - [SMALL_STATE(874)] = 37620, - [SMALL_STATE(875)] = 37653, - [SMALL_STATE(876)] = 37686, - [SMALL_STATE(877)] = 37719, - [SMALL_STATE(878)] = 37778, - [SMALL_STATE(879)] = 37837, - [SMALL_STATE(880)] = 37892, - [SMALL_STATE(881)] = 37951, - [SMALL_STATE(882)] = 37996, - [SMALL_STATE(883)] = 38055, - [SMALL_STATE(884)] = 38114, - [SMALL_STATE(885)] = 38147, - [SMALL_STATE(886)] = 38202, - [SMALL_STATE(887)] = 38235, - [SMALL_STATE(888)] = 38268, - [SMALL_STATE(889)] = 38301, - [SMALL_STATE(890)] = 38334, - [SMALL_STATE(891)] = 38391, - [SMALL_STATE(892)] = 38424, - [SMALL_STATE(893)] = 38457, - [SMALL_STATE(894)] = 38490, - [SMALL_STATE(895)] = 38523, - [SMALL_STATE(896)] = 38580, - [SMALL_STATE(897)] = 38639, - [SMALL_STATE(898)] = 38672, - [SMALL_STATE(899)] = 38705, - [SMALL_STATE(900)] = 38738, - [SMALL_STATE(901)] = 38771, - [SMALL_STATE(902)] = 38830, - [SMALL_STATE(903)] = 38887, - [SMALL_STATE(904)] = 38920, - [SMALL_STATE(905)] = 38953, - [SMALL_STATE(906)] = 38986, - [SMALL_STATE(907)] = 39019, - [SMALL_STATE(908)] = 39052, - [SMALL_STATE(909)] = 39085, - [SMALL_STATE(910)] = 39142, - [SMALL_STATE(911)] = 39175, - [SMALL_STATE(912)] = 39216, - [SMALL_STATE(913)] = 39255, - [SMALL_STATE(914)] = 39300, - [SMALL_STATE(915)] = 39333, - [SMALL_STATE(916)] = 39366, - [SMALL_STATE(917)] = 39399, + [SMALL_STATE(829)] = 35561, + [SMALL_STATE(830)] = 35614, + [SMALL_STATE(831)] = 35671, + [SMALL_STATE(832)] = 35704, + [SMALL_STATE(833)] = 35749, + [SMALL_STATE(834)] = 35782, + [SMALL_STATE(835)] = 35823, + [SMALL_STATE(836)] = 35862, + [SMALL_STATE(837)] = 35895, + [SMALL_STATE(838)] = 35954, + [SMALL_STATE(839)] = 36013, + [SMALL_STATE(840)] = 36070, + [SMALL_STATE(841)] = 36127, + [SMALL_STATE(842)] = 36160, + [SMALL_STATE(843)] = 36193, + [SMALL_STATE(844)] = 36226, + [SMALL_STATE(845)] = 36285, + [SMALL_STATE(846)] = 36318, + [SMALL_STATE(847)] = 36371, + [SMALL_STATE(848)] = 36404, + [SMALL_STATE(849)] = 36463, + [SMALL_STATE(850)] = 36508, + [SMALL_STATE(851)] = 36541, + [SMALL_STATE(852)] = 36574, + [SMALL_STATE(853)] = 36607, + [SMALL_STATE(854)] = 36640, + [SMALL_STATE(855)] = 36681, + [SMALL_STATE(856)] = 36720, + [SMALL_STATE(857)] = 36779, + [SMALL_STATE(858)] = 36812, + [SMALL_STATE(859)] = 36845, + [SMALL_STATE(860)] = 36904, + [SMALL_STATE(861)] = 36939, + [SMALL_STATE(862)] = 36972, + [SMALL_STATE(863)] = 37005, + [SMALL_STATE(864)] = 37038, + [SMALL_STATE(865)] = 37071, + [SMALL_STATE(866)] = 37130, + [SMALL_STATE(867)] = 37163, + [SMALL_STATE(868)] = 37196, + [SMALL_STATE(869)] = 37229, + [SMALL_STATE(870)] = 37262, + [SMALL_STATE(871)] = 37303, + [SMALL_STATE(872)] = 37336, + [SMALL_STATE(873)] = 37369, + [SMALL_STATE(874)] = 37402, + [SMALL_STATE(875)] = 37435, + [SMALL_STATE(876)] = 37468, + [SMALL_STATE(877)] = 37501, + [SMALL_STATE(878)] = 37540, + [SMALL_STATE(879)] = 37573, + [SMALL_STATE(880)] = 37606, + [SMALL_STATE(881)] = 37639, + [SMALL_STATE(882)] = 37672, + [SMALL_STATE(883)] = 37705, + [SMALL_STATE(884)] = 37738, + [SMALL_STATE(885)] = 37797, + [SMALL_STATE(886)] = 37830, + [SMALL_STATE(887)] = 37885, + [SMALL_STATE(888)] = 37944, + [SMALL_STATE(889)] = 38003, + [SMALL_STATE(890)] = 38036, + [SMALL_STATE(891)] = 38095, + [SMALL_STATE(892)] = 38152, + [SMALL_STATE(893)] = 38185, + [SMALL_STATE(894)] = 38242, + [SMALL_STATE(895)] = 38301, + [SMALL_STATE(896)] = 38360, + [SMALL_STATE(897)] = 38419, + [SMALL_STATE(898)] = 38452, + [SMALL_STATE(899)] = 38487, + [SMALL_STATE(900)] = 38546, + [SMALL_STATE(901)] = 38605, + [SMALL_STATE(902)] = 38662, + [SMALL_STATE(903)] = 38695, + [SMALL_STATE(904)] = 38740, + [SMALL_STATE(905)] = 38773, + [SMALL_STATE(906)] = 38828, + [SMALL_STATE(907)] = 38887, + [SMALL_STATE(908)] = 38946, + [SMALL_STATE(909)] = 39001, + [SMALL_STATE(910)] = 39034, + [SMALL_STATE(911)] = 39093, + [SMALL_STATE(912)] = 39126, + [SMALL_STATE(913)] = 39183, + [SMALL_STATE(914)] = 39240, + [SMALL_STATE(915)] = 39297, + [SMALL_STATE(916)] = 39348, + [SMALL_STATE(917)] = 39393, [SMALL_STATE(918)] = 39432, - [SMALL_STATE(919)] = 39465, - [SMALL_STATE(920)] = 39498, - [SMALL_STATE(921)] = 39531, - [SMALL_STATE(922)] = 39564, - [SMALL_STATE(923)] = 39597, - [SMALL_STATE(924)] = 39654, - [SMALL_STATE(925)] = 39713, - [SMALL_STATE(926)] = 39746, - [SMALL_STATE(927)] = 39787, - [SMALL_STATE(928)] = 39820, - [SMALL_STATE(929)] = 39877, - [SMALL_STATE(930)] = 39936, - [SMALL_STATE(931)] = 39991, - [SMALL_STATE(932)] = 40046, - [SMALL_STATE(933)] = 40079, - [SMALL_STATE(934)] = 40112, - [SMALL_STATE(935)] = 40145, - [SMALL_STATE(936)] = 40178, - [SMALL_STATE(937)] = 40233, - [SMALL_STATE(938)] = 40266, - [SMALL_STATE(939)] = 40299, - [SMALL_STATE(940)] = 40358, - [SMALL_STATE(941)] = 40391, - [SMALL_STATE(942)] = 40450, - [SMALL_STATE(943)] = 40483, - [SMALL_STATE(944)] = 40542, - [SMALL_STATE(945)] = 40575, - [SMALL_STATE(946)] = 40630, - [SMALL_STATE(947)] = 40663, - [SMALL_STATE(948)] = 40696, - [SMALL_STATE(949)] = 40729, - [SMALL_STATE(950)] = 40788, - [SMALL_STATE(951)] = 40821, - [SMALL_STATE(952)] = 40880, - [SMALL_STATE(953)] = 40913, - [SMALL_STATE(954)] = 40954, - [SMALL_STATE(955)] = 41013, - [SMALL_STATE(956)] = 41046, - [SMALL_STATE(957)] = 41079, - [SMALL_STATE(958)] = 41138, - [SMALL_STATE(959)] = 41171, - [SMALL_STATE(960)] = 41210, - [SMALL_STATE(961)] = 41269, - [SMALL_STATE(962)] = 41310, - [SMALL_STATE(963)] = 41361, - [SMALL_STATE(964)] = 41416, - [SMALL_STATE(965)] = 41449, - [SMALL_STATE(966)] = 41482, - [SMALL_STATE(967)] = 41539, - [SMALL_STATE(968)] = 41598, - [SMALL_STATE(969)] = 41657, - [SMALL_STATE(970)] = 41716, - [SMALL_STATE(971)] = 41749, - [SMALL_STATE(972)] = 41806, - [SMALL_STATE(973)] = 41847, - [SMALL_STATE(974)] = 41892, - [SMALL_STATE(975)] = 41951, + [SMALL_STATE(919)] = 39491, + [SMALL_STATE(920)] = 39548, + [SMALL_STATE(921)] = 39581, + [SMALL_STATE(922)] = 39636, + [SMALL_STATE(923)] = 39669, + [SMALL_STATE(924)] = 39702, + [SMALL_STATE(925)] = 39757, + [SMALL_STATE(926)] = 39816, + [SMALL_STATE(927)] = 39849, + [SMALL_STATE(928)] = 39908, + [SMALL_STATE(929)] = 39949, + [SMALL_STATE(930)] = 40008, + [SMALL_STATE(931)] = 40041, + [SMALL_STATE(932)] = 40082, + [SMALL_STATE(933)] = 40115, + [SMALL_STATE(934)] = 40148, + [SMALL_STATE(935)] = 40181, + [SMALL_STATE(936)] = 40214, + [SMALL_STATE(937)] = 40247, + [SMALL_STATE(938)] = 40280, + [SMALL_STATE(939)] = 40337, + [SMALL_STATE(940)] = 40394, + [SMALL_STATE(941)] = 40449, + [SMALL_STATE(942)] = 40504, + [SMALL_STATE(943)] = 40537, + [SMALL_STATE(944)] = 40570, + [SMALL_STATE(945)] = 40603, + [SMALL_STATE(946)] = 40636, + [SMALL_STATE(947)] = 40669, + [SMALL_STATE(948)] = 40728, + [SMALL_STATE(949)] = 40761, + [SMALL_STATE(950)] = 40820, + [SMALL_STATE(951)] = 40877, + [SMALL_STATE(952)] = 40936, + [SMALL_STATE(953)] = 40969, + [SMALL_STATE(954)] = 41028, + [SMALL_STATE(955)] = 41061, + [SMALL_STATE(956)] = 41094, + [SMALL_STATE(957)] = 41127, + [SMALL_STATE(958)] = 41184, + [SMALL_STATE(959)] = 41241, + [SMALL_STATE(960)] = 41274, + [SMALL_STATE(961)] = 41333, + [SMALL_STATE(962)] = 41374, + [SMALL_STATE(963)] = 41407, + [SMALL_STATE(964)] = 41448, + [SMALL_STATE(965)] = 41481, + [SMALL_STATE(966)] = 41514, + [SMALL_STATE(967)] = 41547, + [SMALL_STATE(968)] = 41580, + [SMALL_STATE(969)] = 41635, + [SMALL_STATE(970)] = 41694, + [SMALL_STATE(971)] = 41753, + [SMALL_STATE(972)] = 41812, + [SMALL_STATE(973)] = 41853, + [SMALL_STATE(974)] = 41912, + [SMALL_STATE(975)] = 41971, [SMALL_STATE(976)] = 42004, [SMALL_STATE(977)] = 42060, [SMALL_STATE(978)] = 42116, [SMALL_STATE(979)] = 42172, - [SMALL_STATE(980)] = 42228, - [SMALL_STATE(981)] = 42284, - [SMALL_STATE(982)] = 42340, + [SMALL_STATE(980)] = 42204, + [SMALL_STATE(981)] = 42260, + [SMALL_STATE(982)] = 42316, [SMALL_STATE(983)] = 42372, - [SMALL_STATE(984)] = 42410, - [SMALL_STATE(985)] = 42466, - [SMALL_STATE(986)] = 42522, - [SMALL_STATE(987)] = 42578, - [SMALL_STATE(988)] = 42614, - [SMALL_STATE(989)] = 42670, - [SMALL_STATE(990)] = 42726, - [SMALL_STATE(991)] = 42782, - [SMALL_STATE(992)] = 42838, - [SMALL_STATE(993)] = 42870, - [SMALL_STATE(994)] = 42926, - [SMALL_STATE(995)] = 42982, - [SMALL_STATE(996)] = 43038, - [SMALL_STATE(997)] = 43076, - [SMALL_STATE(998)] = 43132, - [SMALL_STATE(999)] = 43188, - [SMALL_STATE(1000)] = 43244, - [SMALL_STATE(1001)] = 43300, - [SMALL_STATE(1002)] = 43356, - [SMALL_STATE(1003)] = 43412, - [SMALL_STATE(1004)] = 43468, - [SMALL_STATE(1005)] = 43524, - [SMALL_STATE(1006)] = 43580, - [SMALL_STATE(1007)] = 43636, - [SMALL_STATE(1008)] = 43692, - [SMALL_STATE(1009)] = 43748, - [SMALL_STATE(1010)] = 43804, - [SMALL_STATE(1011)] = 43860, - [SMALL_STATE(1012)] = 43916, - [SMALL_STATE(1013)] = 43972, - [SMALL_STATE(1014)] = 44028, - [SMALL_STATE(1015)] = 44066, - [SMALL_STATE(1016)] = 44122, - [SMALL_STATE(1017)] = 44178, - [SMALL_STATE(1018)] = 44234, - [SMALL_STATE(1019)] = 44290, - [SMALL_STATE(1020)] = 44346, - [SMALL_STATE(1021)] = 44402, - [SMALL_STATE(1022)] = 44458, - [SMALL_STATE(1023)] = 44514, - [SMALL_STATE(1024)] = 44570, - [SMALL_STATE(1025)] = 44626, - [SMALL_STATE(1026)] = 44682, - [SMALL_STATE(1027)] = 44738, - [SMALL_STATE(1028)] = 44794, - [SMALL_STATE(1029)] = 44850, - [SMALL_STATE(1030)] = 44906, - [SMALL_STATE(1031)] = 44962, - [SMALL_STATE(1032)] = 45018, - [SMALL_STATE(1033)] = 45074, - [SMALL_STATE(1034)] = 45130, - [SMALL_STATE(1035)] = 45186, - [SMALL_STATE(1036)] = 45242, - [SMALL_STATE(1037)] = 45298, - [SMALL_STATE(1038)] = 45354, - [SMALL_STATE(1039)] = 45410, - [SMALL_STATE(1040)] = 45466, - [SMALL_STATE(1041)] = 45522, + [SMALL_STATE(984)] = 42428, + [SMALL_STATE(985)] = 42460, + [SMALL_STATE(986)] = 42516, + [SMALL_STATE(987)] = 42572, + [SMALL_STATE(988)] = 42628, + [SMALL_STATE(989)] = 42684, + [SMALL_STATE(990)] = 42740, + [SMALL_STATE(991)] = 42796, + [SMALL_STATE(992)] = 42852, + [SMALL_STATE(993)] = 42908, + [SMALL_STATE(994)] = 42964, + [SMALL_STATE(995)] = 43020, + [SMALL_STATE(996)] = 43076, + [SMALL_STATE(997)] = 43132, + [SMALL_STATE(998)] = 43188, + [SMALL_STATE(999)] = 43244, + [SMALL_STATE(1000)] = 43300, + [SMALL_STATE(1001)] = 43356, + [SMALL_STATE(1002)] = 43412, + [SMALL_STATE(1003)] = 43468, + [SMALL_STATE(1004)] = 43524, + [SMALL_STATE(1005)] = 43580, + [SMALL_STATE(1006)] = 43616, + [SMALL_STATE(1007)] = 43672, + [SMALL_STATE(1008)] = 43710, + [SMALL_STATE(1009)] = 43766, + [SMALL_STATE(1010)] = 43822, + [SMALL_STATE(1011)] = 43878, + [SMALL_STATE(1012)] = 43914, + [SMALL_STATE(1013)] = 43970, + [SMALL_STATE(1014)] = 44026, + [SMALL_STATE(1015)] = 44082, + [SMALL_STATE(1016)] = 44138, + [SMALL_STATE(1017)] = 44194, + [SMALL_STATE(1018)] = 44250, + [SMALL_STATE(1019)] = 44306, + [SMALL_STATE(1020)] = 44362, + [SMALL_STATE(1021)] = 44418, + [SMALL_STATE(1022)] = 44474, + [SMALL_STATE(1023)] = 44530, + [SMALL_STATE(1024)] = 44586, + [SMALL_STATE(1025)] = 44642, + [SMALL_STATE(1026)] = 44680, + [SMALL_STATE(1027)] = 44736, + [SMALL_STATE(1028)] = 44792, + [SMALL_STATE(1029)] = 44848, + [SMALL_STATE(1030)] = 44904, + [SMALL_STATE(1031)] = 44960, + [SMALL_STATE(1032)] = 45016, + [SMALL_STATE(1033)] = 45072, + [SMALL_STATE(1034)] = 45128, + [SMALL_STATE(1035)] = 45184, + [SMALL_STATE(1036)] = 45240, + [SMALL_STATE(1037)] = 45296, + [SMALL_STATE(1038)] = 45352, + [SMALL_STATE(1039)] = 45408, + [SMALL_STATE(1040)] = 45464, + [SMALL_STATE(1041)] = 45502, [SMALL_STATE(1042)] = 45558, [SMALL_STATE(1043)] = 45614, [SMALL_STATE(1044)] = 45670, @@ -127788,2171 +128112,2237 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1077)] = 47498, [SMALL_STATE(1078)] = 47554, [SMALL_STATE(1079)] = 47589, - [SMALL_STATE(1080)] = 47642, - [SMALL_STATE(1081)] = 47673, - [SMALL_STATE(1082)] = 47704, - [SMALL_STATE(1083)] = 47735, - [SMALL_STATE(1084)] = 47766, - [SMALL_STATE(1085)] = 47797, - [SMALL_STATE(1086)] = 47834, - [SMALL_STATE(1087)] = 47865, - [SMALL_STATE(1088)] = 47900, - [SMALL_STATE(1089)] = 47931, - [SMALL_STATE(1090)] = 47966, - [SMALL_STATE(1091)] = 47997, - [SMALL_STATE(1092)] = 48050, - [SMALL_STATE(1093)] = 48103, - [SMALL_STATE(1094)] = 48138, - [SMALL_STATE(1095)] = 48173, - [SMALL_STATE(1096)] = 48210, - [SMALL_STATE(1097)] = 48245, - [SMALL_STATE(1098)] = 48282, - [SMALL_STATE(1099)] = 48317, - [SMALL_STATE(1100)] = 48348, - [SMALL_STATE(1101)] = 48401, + [SMALL_STATE(1080)] = 47624, + [SMALL_STATE(1081)] = 47661, + [SMALL_STATE(1082)] = 47692, + [SMALL_STATE(1083)] = 47745, + [SMALL_STATE(1084)] = 47780, + [SMALL_STATE(1085)] = 47833, + [SMALL_STATE(1086)] = 47886, + [SMALL_STATE(1087)] = 47917, + [SMALL_STATE(1088)] = 47948, + [SMALL_STATE(1089)] = 47979, + [SMALL_STATE(1090)] = 48010, + [SMALL_STATE(1091)] = 48045, + [SMALL_STATE(1092)] = 48080, + [SMALL_STATE(1093)] = 48115, + [SMALL_STATE(1094)] = 48146, + [SMALL_STATE(1095)] = 48183, + [SMALL_STATE(1096)] = 48214, + [SMALL_STATE(1097)] = 48249, + [SMALL_STATE(1098)] = 48284, + [SMALL_STATE(1099)] = 48315, + [SMALL_STATE(1100)] = 48352, + [SMALL_STATE(1101)] = 48405, [SMALL_STATE(1102)] = 48436, - [SMALL_STATE(1103)] = 48471, - [SMALL_STATE(1104)] = 48524, - [SMALL_STATE(1105)] = 48555, + [SMALL_STATE(1103)] = 48467, + [SMALL_STATE(1104)] = 48498, + [SMALL_STATE(1105)] = 48551, [SMALL_STATE(1106)] = 48586, [SMALL_STATE(1107)] = 48621, - [SMALL_STATE(1108)] = 48655, - [SMALL_STATE(1109)] = 48705, - [SMALL_STATE(1110)] = 48755, - [SMALL_STATE(1111)] = 48785, - [SMALL_STATE(1112)] = 48825, - [SMALL_STATE(1113)] = 48865, - [SMALL_STATE(1114)] = 48911, - [SMALL_STATE(1115)] = 48961, - [SMALL_STATE(1116)] = 49001, - [SMALL_STATE(1117)] = 49041, - [SMALL_STATE(1118)] = 49075, - [SMALL_STATE(1119)] = 49121, - [SMALL_STATE(1120)] = 49155, - [SMALL_STATE(1121)] = 49189, - [SMALL_STATE(1122)] = 49239, - [SMALL_STATE(1123)] = 49277, - [SMALL_STATE(1124)] = 49327, - [SMALL_STATE(1125)] = 49377, - [SMALL_STATE(1126)] = 49415, - [SMALL_STATE(1127)] = 49445, - [SMALL_STATE(1128)] = 49475, - [SMALL_STATE(1129)] = 49505, + [SMALL_STATE(1108)] = 48671, + [SMALL_STATE(1109)] = 48711, + [SMALL_STATE(1110)] = 48751, + [SMALL_STATE(1111)] = 48781, + [SMALL_STATE(1112)] = 48819, + [SMALL_STATE(1113)] = 48869, + [SMALL_STATE(1114)] = 48919, + [SMALL_STATE(1115)] = 48965, + [SMALL_STATE(1116)] = 48999, + [SMALL_STATE(1117)] = 49037, + [SMALL_STATE(1118)] = 49087, + [SMALL_STATE(1119)] = 49127, + [SMALL_STATE(1120)] = 49161, + [SMALL_STATE(1121)] = 49211, + [SMALL_STATE(1122)] = 49241, + [SMALL_STATE(1123)] = 49271, + [SMALL_STATE(1124)] = 49301, + [SMALL_STATE(1125)] = 49335, + [SMALL_STATE(1126)] = 49381, + [SMALL_STATE(1127)] = 49431, + [SMALL_STATE(1128)] = 49481, + [SMALL_STATE(1129)] = 49515, [SMALL_STATE(1130)] = 49555, [SMALL_STATE(1131)] = 49605, [SMALL_STATE(1132)] = 49645, - [SMALL_STATE(1133)] = 49674, + [SMALL_STATE(1133)] = 49678, [SMALL_STATE(1134)] = 49707, - [SMALL_STATE(1135)] = 49744, - [SMALL_STATE(1136)] = 49773, + [SMALL_STATE(1135)] = 49736, + [SMALL_STATE(1136)] = 49765, [SMALL_STATE(1137)] = 49806, - [SMALL_STATE(1138)] = 49839, - [SMALL_STATE(1139)] = 49868, - [SMALL_STATE(1140)] = 49913, - [SMALL_STATE(1141)] = 49942, - [SMALL_STATE(1142)] = 49983, - [SMALL_STATE(1143)] = 50016, - [SMALL_STATE(1144)] = 50061, - [SMALL_STATE(1145)] = 50090, - [SMALL_STATE(1146)] = 50119, - [SMALL_STATE(1147)] = 50160, - [SMALL_STATE(1148)] = 50193, - [SMALL_STATE(1149)] = 50226, - [SMALL_STATE(1150)] = 50259, - [SMALL_STATE(1151)] = 50296, - [SMALL_STATE(1152)] = 50325, - [SMALL_STATE(1153)] = 50358, - [SMALL_STATE(1154)] = 50395, - [SMALL_STATE(1155)] = 50436, - [SMALL_STATE(1156)] = 50465, - [SMALL_STATE(1157)] = 50502, - [SMALL_STATE(1158)] = 50531, - [SMALL_STATE(1159)] = 50560, - [SMALL_STATE(1160)] = 50589, - [SMALL_STATE(1161)] = 50626, - [SMALL_STATE(1162)] = 50659, - [SMALL_STATE(1163)] = 50688, - [SMALL_STATE(1164)] = 50717, - [SMALL_STATE(1165)] = 50746, - [SMALL_STATE(1166)] = 50783, + [SMALL_STATE(1138)] = 49835, + [SMALL_STATE(1139)] = 49864, + [SMALL_STATE(1140)] = 49905, + [SMALL_STATE(1141)] = 49934, + [SMALL_STATE(1142)] = 49971, + [SMALL_STATE(1143)] = 50000, + [SMALL_STATE(1144)] = 50033, + [SMALL_STATE(1145)] = 50062, + [SMALL_STATE(1146)] = 50103, + [SMALL_STATE(1147)] = 50140, + [SMALL_STATE(1148)] = 50169, + [SMALL_STATE(1149)] = 50202, + [SMALL_STATE(1150)] = 50235, + [SMALL_STATE(1151)] = 50280, + [SMALL_STATE(1152)] = 50309, + [SMALL_STATE(1153)] = 50338, + [SMALL_STATE(1154)] = 50367, + [SMALL_STATE(1155)] = 50400, + [SMALL_STATE(1156)] = 50433, + [SMALL_STATE(1157)] = 50466, + [SMALL_STATE(1158)] = 50495, + [SMALL_STATE(1159)] = 50540, + [SMALL_STATE(1160)] = 50573, + [SMALL_STATE(1161)] = 50610, + [SMALL_STATE(1162)] = 50643, + [SMALL_STATE(1163)] = 50672, + [SMALL_STATE(1164)] = 50701, + [SMALL_STATE(1165)] = 50738, + [SMALL_STATE(1166)] = 50775, [SMALL_STATE(1167)] = 50812, [SMALL_STATE(1168)] = 50853, - [SMALL_STATE(1169)] = 50897, + [SMALL_STATE(1169)] = 50881, [SMALL_STATE(1170)] = 50925, - [SMALL_STATE(1171)] = 50953, - [SMALL_STATE(1172)] = 50993, - [SMALL_STATE(1173)] = 51021, - [SMALL_STATE(1174)] = 51049, - [SMALL_STATE(1175)] = 51101, - [SMALL_STATE(1176)] = 51153, - [SMALL_STATE(1177)] = 51181, - [SMALL_STATE(1178)] = 51225, - [SMALL_STATE(1179)] = 51277, - [SMALL_STATE(1180)] = 51321, - [SMALL_STATE(1181)] = 51361, - [SMALL_STATE(1182)] = 51405, - [SMALL_STATE(1183)] = 51433, - [SMALL_STATE(1184)] = 51477, - [SMALL_STATE(1185)] = 51529, - [SMALL_STATE(1186)] = 51573, - [SMALL_STATE(1187)] = 51609, - [SMALL_STATE(1188)] = 51649, - [SMALL_STATE(1189)] = 51695, - [SMALL_STATE(1190)] = 51723, - [SMALL_STATE(1191)] = 51755, - [SMALL_STATE(1192)] = 51799, - [SMALL_STATE(1193)] = 51827, - [SMALL_STATE(1194)] = 51879, - [SMALL_STATE(1195)] = 51907, - [SMALL_STATE(1196)] = 51943, - [SMALL_STATE(1197)] = 51971, - [SMALL_STATE(1198)] = 51999, - [SMALL_STATE(1199)] = 52045, - [SMALL_STATE(1200)] = 52089, - [SMALL_STATE(1201)] = 52133, - [SMALL_STATE(1202)] = 52177, - [SMALL_STATE(1203)] = 52213, - [SMALL_STATE(1204)] = 52249, - [SMALL_STATE(1205)] = 52293, - [SMALL_STATE(1206)] = 52325, - [SMALL_STATE(1207)] = 52369, - [SMALL_STATE(1208)] = 52415, - [SMALL_STATE(1209)] = 52459, - [SMALL_STATE(1210)] = 52511, - [SMALL_STATE(1211)] = 52555, - [SMALL_STATE(1212)] = 52599, - [SMALL_STATE(1213)] = 52627, - [SMALL_STATE(1214)] = 52673, - [SMALL_STATE(1215)] = 52717, + [SMALL_STATE(1171)] = 50971, + [SMALL_STATE(1172)] = 51017, + [SMALL_STATE(1173)] = 51061, + [SMALL_STATE(1174)] = 51089, + [SMALL_STATE(1175)] = 51133, + [SMALL_STATE(1176)] = 51185, + [SMALL_STATE(1177)] = 51229, + [SMALL_STATE(1178)] = 51281, + [SMALL_STATE(1179)] = 51333, + [SMALL_STATE(1180)] = 51385, + [SMALL_STATE(1181)] = 51429, + [SMALL_STATE(1182)] = 51457, + [SMALL_STATE(1183)] = 51509, + [SMALL_STATE(1184)] = 51537, + [SMALL_STATE(1185)] = 51573, + [SMALL_STATE(1186)] = 51601, + [SMALL_STATE(1187)] = 51645, + [SMALL_STATE(1188)] = 51689, + [SMALL_STATE(1189)] = 51733, + [SMALL_STATE(1190)] = 51777, + [SMALL_STATE(1191)] = 51813, + [SMALL_STATE(1192)] = 51845, + [SMALL_STATE(1193)] = 51889, + [SMALL_STATE(1194)] = 51929, + [SMALL_STATE(1195)] = 51957, + [SMALL_STATE(1196)] = 51985, + [SMALL_STATE(1197)] = 52013, + [SMALL_STATE(1198)] = 52053, + [SMALL_STATE(1199)] = 52089, + [SMALL_STATE(1200)] = 52135, + [SMALL_STATE(1201)] = 52179, + [SMALL_STATE(1202)] = 52223, + [SMALL_STATE(1203)] = 52267, + [SMALL_STATE(1204)] = 52313, + [SMALL_STATE(1205)] = 52365, + [SMALL_STATE(1206)] = 52409, + [SMALL_STATE(1207)] = 52437, + [SMALL_STATE(1208)] = 52465, + [SMALL_STATE(1209)] = 52497, + [SMALL_STATE(1210)] = 52525, + [SMALL_STATE(1211)] = 52565, + [SMALL_STATE(1212)] = 52609, + [SMALL_STATE(1213)] = 52645, + [SMALL_STATE(1214)] = 52689, + [SMALL_STATE(1215)] = 52729, [SMALL_STATE(1216)] = 52757, - [SMALL_STATE(1217)] = 52788, - [SMALL_STATE(1218)] = 52819, - [SMALL_STATE(1219)] = 52870, - [SMALL_STATE(1220)] = 52901, - [SMALL_STATE(1221)] = 52928, - [SMALL_STATE(1222)] = 52955, + [SMALL_STATE(1217)] = 52784, + [SMALL_STATE(1218)] = 52811, + [SMALL_STATE(1219)] = 52842, + [SMALL_STATE(1220)] = 52873, + [SMALL_STATE(1221)] = 52912, + [SMALL_STATE(1222)] = 52963, [SMALL_STATE(1223)] = 53006, - [SMALL_STATE(1224)] = 53049, - [SMALL_STATE(1225)] = 53100, - [SMALL_STATE(1226)] = 53131, - [SMALL_STATE(1227)] = 53170, - [SMALL_STATE(1228)] = 53209, - [SMALL_STATE(1229)] = 53252, + [SMALL_STATE(1224)] = 53041, + [SMALL_STATE(1225)] = 53092, + [SMALL_STATE(1226)] = 53143, + [SMALL_STATE(1227)] = 53194, + [SMALL_STATE(1228)] = 53221, + [SMALL_STATE(1229)] = 53272, [SMALL_STATE(1230)] = 53303, [SMALL_STATE(1231)] = 53334, - [SMALL_STATE(1232)] = 53361, - [SMALL_STATE(1233)] = 53412, - [SMALL_STATE(1234)] = 53451, - [SMALL_STATE(1235)] = 53482, - [SMALL_STATE(1236)] = 53509, - [SMALL_STATE(1237)] = 53544, - [SMALL_STATE(1238)] = 53583, - [SMALL_STATE(1239)] = 53614, - [SMALL_STATE(1240)] = 53645, - [SMALL_STATE(1241)] = 53676, - [SMALL_STATE(1242)] = 53703, - [SMALL_STATE(1243)] = 53738, - [SMALL_STATE(1244)] = 53765, - [SMALL_STATE(1245)] = 53808, + [SMALL_STATE(1232)] = 53377, + [SMALL_STATE(1233)] = 53416, + [SMALL_STATE(1234)] = 53443, + [SMALL_STATE(1235)] = 53494, + [SMALL_STATE(1236)] = 53533, + [SMALL_STATE(1237)] = 53568, + [SMALL_STATE(1238)] = 53595, + [SMALL_STATE(1239)] = 53622, + [SMALL_STATE(1240)] = 53661, + [SMALL_STATE(1241)] = 53692, + [SMALL_STATE(1242)] = 53723, + [SMALL_STATE(1243)] = 53754, + [SMALL_STATE(1244)] = 53797, + [SMALL_STATE(1245)] = 53828, [SMALL_STATE(1246)] = 53859, - [SMALL_STATE(1247)] = 53885, - [SMALL_STATE(1248)] = 53911, - [SMALL_STATE(1249)] = 53941, - [SMALL_STATE(1250)] = 53987, - [SMALL_STATE(1251)] = 54025, + [SMALL_STATE(1247)] = 53897, + [SMALL_STATE(1248)] = 53935, + [SMALL_STATE(1249)] = 53965, + [SMALL_STATE(1250)] = 53991, + [SMALL_STATE(1251)] = 54017, [SMALL_STATE(1252)] = 54055, - [SMALL_STATE(1253)] = 54103, - [SMALL_STATE(1254)] = 54133, - [SMALL_STATE(1255)] = 54159, - [SMALL_STATE(1256)] = 54185, - [SMALL_STATE(1257)] = 54223, - [SMALL_STATE(1258)] = 54249, - [SMALL_STATE(1259)] = 54275, - [SMALL_STATE(1260)] = 54301, - [SMALL_STATE(1261)] = 54331, - [SMALL_STATE(1262)] = 54357, - [SMALL_STATE(1263)] = 54383, - [SMALL_STATE(1264)] = 54429, - [SMALL_STATE(1265)] = 54467, - [SMALL_STATE(1266)] = 54493, - [SMALL_STATE(1267)] = 54531, - [SMALL_STATE(1268)] = 54561, - [SMALL_STATE(1269)] = 54587, - [SMALL_STATE(1270)] = 54635, - [SMALL_STATE(1271)] = 54683, + [SMALL_STATE(1253)] = 54081, + [SMALL_STATE(1254)] = 54111, + [SMALL_STATE(1255)] = 54141, + [SMALL_STATE(1256)] = 54167, + [SMALL_STATE(1257)] = 54193, + [SMALL_STATE(1258)] = 54219, + [SMALL_STATE(1259)] = 54249, + [SMALL_STATE(1260)] = 54279, + [SMALL_STATE(1261)] = 54317, + [SMALL_STATE(1262)] = 54365, + [SMALL_STATE(1263)] = 54413, + [SMALL_STATE(1264)] = 54459, + [SMALL_STATE(1265)] = 54485, + [SMALL_STATE(1266)] = 54511, + [SMALL_STATE(1267)] = 54559, + [SMALL_STATE(1268)] = 54585, + [SMALL_STATE(1269)] = 54611, + [SMALL_STATE(1270)] = 54637, + [SMALL_STATE(1271)] = 54663, [SMALL_STATE(1272)] = 54709, [SMALL_STATE(1273)] = 54734, [SMALL_STATE(1274)] = 54759, [SMALL_STATE(1275)] = 54784, - [SMALL_STATE(1276)] = 54813, - [SMALL_STATE(1277)] = 54854, + [SMALL_STATE(1276)] = 54809, + [SMALL_STATE(1277)] = 54838, [SMALL_STATE(1278)] = 54879, [SMALL_STATE(1279)] = 54904, - [SMALL_STATE(1280)] = 54929, - [SMALL_STATE(1281)] = 54954, - [SMALL_STATE(1282)] = 54979, - [SMALL_STATE(1283)] = 55004, - [SMALL_STATE(1284)] = 55029, - [SMALL_STATE(1285)] = 55054, - [SMALL_STATE(1286)] = 55079, - [SMALL_STATE(1287)] = 55104, - [SMALL_STATE(1288)] = 55129, - [SMALL_STATE(1289)] = 55154, - [SMALL_STATE(1290)] = 55179, + [SMALL_STATE(1280)] = 54937, + [SMALL_STATE(1281)] = 54962, + [SMALL_STATE(1282)] = 54987, + [SMALL_STATE(1283)] = 55012, + [SMALL_STATE(1284)] = 55037, + [SMALL_STATE(1285)] = 55062, + [SMALL_STATE(1286)] = 55087, + [SMALL_STATE(1287)] = 55112, + [SMALL_STATE(1288)] = 55137, + [SMALL_STATE(1289)] = 55162, + [SMALL_STATE(1290)] = 55187, [SMALL_STATE(1291)] = 55212, [SMALL_STATE(1292)] = 55237, [SMALL_STATE(1293)] = 55262, [SMALL_STATE(1294)] = 55287, - [SMALL_STATE(1295)] = 55315, - [SMALL_STATE(1296)] = 55339, - [SMALL_STATE(1297)] = 55371, - [SMALL_STATE(1298)] = 55395, - [SMALL_STATE(1299)] = 55437, - [SMALL_STATE(1300)] = 55467, - [SMALL_STATE(1301)] = 55491, - [SMALL_STATE(1302)] = 55515, - [SMALL_STATE(1303)] = 55557, - [SMALL_STATE(1304)] = 55585, - [SMALL_STATE(1305)] = 55615, - [SMALL_STATE(1306)] = 55651, - [SMALL_STATE(1307)] = 55693, - [SMALL_STATE(1308)] = 55717, - [SMALL_STATE(1309)] = 55741, - [SMALL_STATE(1310)] = 55765, - [SMALL_STATE(1311)] = 55795, - [SMALL_STATE(1312)] = 55819, - [SMALL_STATE(1313)] = 55861, - [SMALL_STATE(1314)] = 55885, - [SMALL_STATE(1315)] = 55909, - [SMALL_STATE(1316)] = 55933, - [SMALL_STATE(1317)] = 55969, - [SMALL_STATE(1318)] = 56011, - [SMALL_STATE(1319)] = 56043, - [SMALL_STATE(1320)] = 56069, + [SMALL_STATE(1295)] = 55329, + [SMALL_STATE(1296)] = 55371, + [SMALL_STATE(1297)] = 55395, + [SMALL_STATE(1298)] = 55419, + [SMALL_STATE(1299)] = 55461, + [SMALL_STATE(1300)] = 55503, + [SMALL_STATE(1301)] = 55527, + [SMALL_STATE(1302)] = 55553, + [SMALL_STATE(1303)] = 55583, + [SMALL_STATE(1304)] = 55619, + [SMALL_STATE(1305)] = 55643, + [SMALL_STATE(1306)] = 55685, + [SMALL_STATE(1307)] = 55713, + [SMALL_STATE(1308)] = 55737, + [SMALL_STATE(1309)] = 55761, + [SMALL_STATE(1310)] = 55785, + [SMALL_STATE(1311)] = 55815, + [SMALL_STATE(1312)] = 55839, + [SMALL_STATE(1313)] = 55869, + [SMALL_STATE(1314)] = 55905, + [SMALL_STATE(1315)] = 55937, + [SMALL_STATE(1316)] = 55975, + [SMALL_STATE(1317)] = 55999, + [SMALL_STATE(1318)] = 56031, + [SMALL_STATE(1319)] = 56055, + [SMALL_STATE(1320)] = 56079, [SMALL_STATE(1321)] = 56107, [SMALL_STATE(1322)] = 56131, [SMALL_STATE(1323)] = 56155, [SMALL_STATE(1324)] = 56197, - [SMALL_STATE(1325)] = 56230, - [SMALL_STATE(1326)] = 56253, - [SMALL_STATE(1327)] = 56274, - [SMALL_STATE(1328)] = 56301, - [SMALL_STATE(1329)] = 56328, - [SMALL_STATE(1330)] = 56361, - [SMALL_STATE(1331)] = 56396, - [SMALL_STATE(1332)] = 56417, - [SMALL_STATE(1333)] = 56440, - [SMALL_STATE(1334)] = 56463, - [SMALL_STATE(1335)] = 56484, - [SMALL_STATE(1336)] = 56519, - [SMALL_STATE(1337)] = 56542, - [SMALL_STATE(1338)] = 56569, - [SMALL_STATE(1339)] = 56608, - [SMALL_STATE(1340)] = 56639, - [SMALL_STATE(1341)] = 56674, - [SMALL_STATE(1342)] = 56700, - [SMALL_STATE(1343)] = 56722, - [SMALL_STATE(1344)] = 56748, - [SMALL_STATE(1345)] = 56770, - [SMALL_STATE(1346)] = 56792, - [SMALL_STATE(1347)] = 56824, - [SMALL_STATE(1348)] = 56850, - [SMALL_STATE(1349)] = 56876, - [SMALL_STATE(1350)] = 56902, - [SMALL_STATE(1351)] = 56934, - [SMALL_STATE(1352)] = 56960, - [SMALL_STATE(1353)] = 56988, - [SMALL_STATE(1354)] = 57020, - [SMALL_STATE(1355)] = 57040, - [SMALL_STATE(1356)] = 57068, - [SMALL_STATE(1357)] = 57098, - [SMALL_STATE(1358)] = 57126, - [SMALL_STATE(1359)] = 57154, - [SMALL_STATE(1360)] = 57176, - [SMALL_STATE(1361)] = 57210, - [SMALL_STATE(1362)] = 57236, - [SMALL_STATE(1363)] = 57262, - [SMALL_STATE(1364)] = 57288, - [SMALL_STATE(1365)] = 57314, - [SMALL_STATE(1366)] = 57340, - [SMALL_STATE(1367)] = 57368, - [SMALL_STATE(1368)] = 57396, - [SMALL_STATE(1369)] = 57422, - [SMALL_STATE(1370)] = 57458, - [SMALL_STATE(1371)] = 57484, - [SMALL_STATE(1372)] = 57506, - [SMALL_STATE(1373)] = 57532, - [SMALL_STATE(1374)] = 57554, - [SMALL_STATE(1375)] = 57590, - [SMALL_STATE(1376)] = 57618, - [SMALL_STATE(1377)] = 57644, - [SMALL_STATE(1378)] = 57672, - [SMALL_STATE(1379)] = 57700, - [SMALL_STATE(1380)] = 57728, - [SMALL_STATE(1381)] = 57752, - [SMALL_STATE(1382)] = 57784, - [SMALL_STATE(1383)] = 57816, - [SMALL_STATE(1384)] = 57838, - [SMALL_STATE(1385)] = 57860, - [SMALL_STATE(1386)] = 57886, - [SMALL_STATE(1387)] = 57918, - [SMALL_STATE(1388)] = 57950, - [SMALL_STATE(1389)] = 57986, - [SMALL_STATE(1390)] = 58020, - [SMALL_STATE(1391)] = 58046, - [SMALL_STATE(1392)] = 58072, - [SMALL_STATE(1393)] = 58110, - [SMALL_STATE(1394)] = 58136, - [SMALL_STATE(1395)] = 58162, - [SMALL_STATE(1396)] = 58194, - [SMALL_STATE(1397)] = 58220, - [SMALL_STATE(1398)] = 58256, - [SMALL_STATE(1399)] = 58284, - [SMALL_STATE(1400)] = 58316, - [SMALL_STATE(1401)] = 58342, - [SMALL_STATE(1402)] = 58374, - [SMALL_STATE(1403)] = 58404, - [SMALL_STATE(1404)] = 58430, - [SMALL_STATE(1405)] = 58458, - [SMALL_STATE(1406)] = 58482, - [SMALL_STATE(1407)] = 58512, - [SMALL_STATE(1408)] = 58548, - [SMALL_STATE(1409)] = 58574, - [SMALL_STATE(1410)] = 58600, - [SMALL_STATE(1411)] = 58626, - [SMALL_STATE(1412)] = 58652, - [SMALL_STATE(1413)] = 58683, - [SMALL_STATE(1414)] = 58716, - [SMALL_STATE(1415)] = 58741, - [SMALL_STATE(1416)] = 58766, - [SMALL_STATE(1417)] = 58787, - [SMALL_STATE(1418)] = 58812, - [SMALL_STATE(1419)] = 58837, - [SMALL_STATE(1420)] = 58866, - [SMALL_STATE(1421)] = 58893, - [SMALL_STATE(1422)] = 58914, - [SMALL_STATE(1423)] = 58941, - [SMALL_STATE(1424)] = 58968, - [SMALL_STATE(1425)] = 58995, - [SMALL_STATE(1426)] = 59022, - [SMALL_STATE(1427)] = 59049, - [SMALL_STATE(1428)] = 59082, - [SMALL_STATE(1429)] = 59109, - [SMALL_STATE(1430)] = 59142, - [SMALL_STATE(1431)] = 59163, - [SMALL_STATE(1432)] = 59184, - [SMALL_STATE(1433)] = 59219, - [SMALL_STATE(1434)] = 59246, - [SMALL_STATE(1435)] = 59279, - [SMALL_STATE(1436)] = 59306, - [SMALL_STATE(1437)] = 59333, - [SMALL_STATE(1438)] = 59368, - [SMALL_STATE(1439)] = 59399, - [SMALL_STATE(1440)] = 59418, - [SMALL_STATE(1441)] = 59437, - [SMALL_STATE(1442)] = 59456, - [SMALL_STATE(1443)] = 59489, - [SMALL_STATE(1444)] = 59520, - [SMALL_STATE(1445)] = 59541, - [SMALL_STATE(1446)] = 59576, - [SMALL_STATE(1447)] = 59595, - [SMALL_STATE(1448)] = 59626, - [SMALL_STATE(1449)] = 59645, - [SMALL_STATE(1450)] = 59664, - [SMALL_STATE(1451)] = 59683, - [SMALL_STATE(1452)] = 59708, - [SMALL_STATE(1453)] = 59729, - [SMALL_STATE(1454)] = 59750, - [SMALL_STATE(1455)] = 59777, - [SMALL_STATE(1456)] = 59804, - [SMALL_STATE(1457)] = 59831, - [SMALL_STATE(1458)] = 59866, - [SMALL_STATE(1459)] = 59887, - [SMALL_STATE(1460)] = 59908, - [SMALL_STATE(1461)] = 59943, - [SMALL_STATE(1462)] = 59978, - [SMALL_STATE(1463)] = 60005, - [SMALL_STATE(1464)] = 60032, - [SMALL_STATE(1465)] = 60058, - [SMALL_STATE(1466)] = 60090, - [SMALL_STATE(1467)] = 60110, - [SMALL_STATE(1468)] = 60142, - [SMALL_STATE(1469)] = 60162, - [SMALL_STATE(1470)] = 60182, - [SMALL_STATE(1471)] = 60202, - [SMALL_STATE(1472)] = 60230, - [SMALL_STATE(1473)] = 60250, - [SMALL_STATE(1474)] = 60270, - [SMALL_STATE(1475)] = 60290, - [SMALL_STATE(1476)] = 60318, - [SMALL_STATE(1477)] = 60344, - [SMALL_STATE(1478)] = 60370, - [SMALL_STATE(1479)] = 60404, - [SMALL_STATE(1480)] = 60438, - [SMALL_STATE(1481)] = 60458, - [SMALL_STATE(1482)] = 60478, - [SMALL_STATE(1483)] = 60510, - [SMALL_STATE(1484)] = 60530, - [SMALL_STATE(1485)] = 60550, - [SMALL_STATE(1486)] = 60582, - [SMALL_STATE(1487)] = 60602, - [SMALL_STATE(1488)] = 60622, - [SMALL_STATE(1489)] = 60654, - [SMALL_STATE(1490)] = 60686, - [SMALL_STATE(1491)] = 60718, - [SMALL_STATE(1492)] = 60738, - [SMALL_STATE(1493)] = 60770, - [SMALL_STATE(1494)] = 60802, - [SMALL_STATE(1495)] = 60828, - [SMALL_STATE(1496)] = 60848, - [SMALL_STATE(1497)] = 60876, - [SMALL_STATE(1498)] = 60902, - [SMALL_STATE(1499)] = 60934, - [SMALL_STATE(1500)] = 60954, - [SMALL_STATE(1501)] = 60974, - [SMALL_STATE(1502)] = 60994, - [SMALL_STATE(1503)] = 61014, - [SMALL_STATE(1504)] = 61034, - [SMALL_STATE(1505)] = 61054, - [SMALL_STATE(1506)] = 61094, - [SMALL_STATE(1507)] = 61126, - [SMALL_STATE(1508)] = 61158, - [SMALL_STATE(1509)] = 61190, - [SMALL_STATE(1510)] = 61222, - [SMALL_STATE(1511)] = 61248, - [SMALL_STATE(1512)] = 61280, - [SMALL_STATE(1513)] = 61306, - [SMALL_STATE(1514)] = 61338, - [SMALL_STATE(1515)] = 61370, - [SMALL_STATE(1516)] = 61392, - [SMALL_STATE(1517)] = 61418, - [SMALL_STATE(1518)] = 61450, - [SMALL_STATE(1519)] = 61482, - [SMALL_STATE(1520)] = 61512, - [SMALL_STATE(1521)] = 61538, - [SMALL_STATE(1522)] = 61570, - [SMALL_STATE(1523)] = 61602, - [SMALL_STATE(1524)] = 61632, - [SMALL_STATE(1525)] = 61658, - [SMALL_STATE(1526)] = 61684, - [SMALL_STATE(1527)] = 61716, - [SMALL_STATE(1528)] = 61742, - [SMALL_STATE(1529)] = 61768, - [SMALL_STATE(1530)] = 61800, - [SMALL_STATE(1531)] = 61826, - [SMALL_STATE(1532)] = 61858, - [SMALL_STATE(1533)] = 61884, - [SMALL_STATE(1534)] = 61910, - [SMALL_STATE(1535)] = 61936, - [SMALL_STATE(1536)] = 61968, - [SMALL_STATE(1537)] = 62000, - [SMALL_STATE(1538)] = 62020, - [SMALL_STATE(1539)] = 62052, - [SMALL_STATE(1540)] = 62084, - [SMALL_STATE(1541)] = 62110, - [SMALL_STATE(1542)] = 62150, - [SMALL_STATE(1543)] = 62176, - [SMALL_STATE(1544)] = 62208, - [SMALL_STATE(1545)] = 62228, - [SMALL_STATE(1546)] = 62248, - [SMALL_STATE(1547)] = 62276, - [SMALL_STATE(1548)] = 62296, - [SMALL_STATE(1549)] = 62318, - [SMALL_STATE(1550)] = 62344, - [SMALL_STATE(1551)] = 62370, - [SMALL_STATE(1552)] = 62396, - [SMALL_STATE(1553)] = 62416, - [SMALL_STATE(1554)] = 62448, - [SMALL_STATE(1555)] = 62482, - [SMALL_STATE(1556)] = 62502, - [SMALL_STATE(1557)] = 62522, - [SMALL_STATE(1558)] = 62552, - [SMALL_STATE(1559)] = 62586, - [SMALL_STATE(1560)] = 62608, - [SMALL_STATE(1561)] = 62628, - [SMALL_STATE(1562)] = 62654, - [SMALL_STATE(1563)] = 62686, - [SMALL_STATE(1564)] = 62706, - [SMALL_STATE(1565)] = 62738, - [SMALL_STATE(1566)] = 62772, - [SMALL_STATE(1567)] = 62804, - [SMALL_STATE(1568)] = 62826, - [SMALL_STATE(1569)] = 62852, - [SMALL_STATE(1570)] = 62878, - [SMALL_STATE(1571)] = 62912, - [SMALL_STATE(1572)] = 62938, - [SMALL_STATE(1573)] = 62964, - [SMALL_STATE(1574)] = 62998, - [SMALL_STATE(1575)] = 63024, - [SMALL_STATE(1576)] = 63050, - [SMALL_STATE(1577)] = 63076, - [SMALL_STATE(1578)] = 63096, - [SMALL_STATE(1579)] = 63122, - [SMALL_STATE(1580)] = 63150, - [SMALL_STATE(1581)] = 63170, - [SMALL_STATE(1582)] = 63202, - [SMALL_STATE(1583)] = 63234, - [SMALL_STATE(1584)] = 63268, - [SMALL_STATE(1585)] = 63300, - [SMALL_STATE(1586)] = 63332, - [SMALL_STATE(1587)] = 63364, - [SMALL_STATE(1588)] = 63390, - [SMALL_STATE(1589)] = 63416, - [SMALL_STATE(1590)] = 63442, - [SMALL_STATE(1591)] = 63474, - [SMALL_STATE(1592)] = 63506, - [SMALL_STATE(1593)] = 63532, - [SMALL_STATE(1594)] = 63566, - [SMALL_STATE(1595)] = 63598, - [SMALL_STATE(1596)] = 63624, - [SMALL_STATE(1597)] = 63664, - [SMALL_STATE(1598)] = 63687, - [SMALL_STATE(1599)] = 63710, - [SMALL_STATE(1600)] = 63739, - [SMALL_STATE(1601)] = 63768, - [SMALL_STATE(1602)] = 63791, - [SMALL_STATE(1603)] = 63810, - [SMALL_STATE(1604)] = 63839, - [SMALL_STATE(1605)] = 63868, - [SMALL_STATE(1606)] = 63885, - [SMALL_STATE(1607)] = 63914, - [SMALL_STATE(1608)] = 63935, - [SMALL_STATE(1609)] = 63964, - [SMALL_STATE(1610)] = 63981, - [SMALL_STATE(1611)] = 64004, - [SMALL_STATE(1612)] = 64031, - [SMALL_STATE(1613)] = 64050, - [SMALL_STATE(1614)] = 64071, - [SMALL_STATE(1615)] = 64100, - [SMALL_STATE(1616)] = 64127, - [SMALL_STATE(1617)] = 64154, - [SMALL_STATE(1618)] = 64175, - [SMALL_STATE(1619)] = 64198, - [SMALL_STATE(1620)] = 64217, - [SMALL_STATE(1621)] = 64238, - [SMALL_STATE(1622)] = 64267, - [SMALL_STATE(1623)] = 64296, - [SMALL_STATE(1624)] = 64325, - [SMALL_STATE(1625)] = 64342, - [SMALL_STATE(1626)] = 64363, - [SMALL_STATE(1627)] = 64390, - [SMALL_STATE(1628)] = 64417, - [SMALL_STATE(1629)] = 64446, - [SMALL_STATE(1630)] = 64465, - [SMALL_STATE(1631)] = 64490, - [SMALL_STATE(1632)] = 64515, - [SMALL_STATE(1633)] = 64536, - [SMALL_STATE(1634)] = 64565, - [SMALL_STATE(1635)] = 64596, - [SMALL_STATE(1636)] = 64617, - [SMALL_STATE(1637)] = 64642, - [SMALL_STATE(1638)] = 64671, - [SMALL_STATE(1639)] = 64696, - [SMALL_STATE(1640)] = 64725, - [SMALL_STATE(1641)] = 64754, - [SMALL_STATE(1642)] = 64779, - [SMALL_STATE(1643)] = 64802, - [SMALL_STATE(1644)] = 64825, - [SMALL_STATE(1645)] = 64848, - [SMALL_STATE(1646)] = 64877, - [SMALL_STATE(1647)] = 64898, - [SMALL_STATE(1648)] = 64927, - [SMALL_STATE(1649)] = 64956, - [SMALL_STATE(1650)] = 64977, - [SMALL_STATE(1651)] = 64998, - [SMALL_STATE(1652)] = 65027, - [SMALL_STATE(1653)] = 65054, - [SMALL_STATE(1654)] = 65077, - [SMALL_STATE(1655)] = 65100, - [SMALL_STATE(1656)] = 65129, - [SMALL_STATE(1657)] = 65158, - [SMALL_STATE(1658)] = 65187, - [SMALL_STATE(1659)] = 65210, - [SMALL_STATE(1660)] = 65233, - [SMALL_STATE(1661)] = 65255, - [SMALL_STATE(1662)] = 65281, - [SMALL_STATE(1663)] = 65309, - [SMALL_STATE(1664)] = 65335, - [SMALL_STATE(1665)] = 65351, - [SMALL_STATE(1666)] = 65369, - [SMALL_STATE(1667)] = 65387, - [SMALL_STATE(1668)] = 65405, - [SMALL_STATE(1669)] = 65431, - [SMALL_STATE(1670)] = 65449, - [SMALL_STATE(1671)] = 65467, - [SMALL_STATE(1672)] = 65487, - [SMALL_STATE(1673)] = 65503, - [SMALL_STATE(1674)] = 65521, - [SMALL_STATE(1675)] = 65547, - [SMALL_STATE(1676)] = 65573, - [SMALL_STATE(1677)] = 65591, - [SMALL_STATE(1678)] = 65613, - [SMALL_STATE(1679)] = 65633, - [SMALL_STATE(1680)] = 65657, - [SMALL_STATE(1681)] = 65675, - [SMALL_STATE(1682)] = 65693, - [SMALL_STATE(1683)] = 65719, - [SMALL_STATE(1684)] = 65747, - [SMALL_STATE(1685)] = 65769, - [SMALL_STATE(1686)] = 65787, - [SMALL_STATE(1687)] = 65815, - [SMALL_STATE(1688)] = 65837, - [SMALL_STATE(1689)] = 65857, - [SMALL_STATE(1690)] = 65883, - [SMALL_STATE(1691)] = 65905, - [SMALL_STATE(1692)] = 65923, - [SMALL_STATE(1693)] = 65945, - [SMALL_STATE(1694)] = 65963, - [SMALL_STATE(1695)] = 65983, - [SMALL_STATE(1696)] = 65999, - [SMALL_STATE(1697)] = 66025, - [SMALL_STATE(1698)] = 66047, - [SMALL_STATE(1699)] = 66071, - [SMALL_STATE(1700)] = 66089, - [SMALL_STATE(1701)] = 66107, - [SMALL_STATE(1702)] = 66135, - [SMALL_STATE(1703)] = 66157, - [SMALL_STATE(1704)] = 66179, - [SMALL_STATE(1705)] = 66197, - [SMALL_STATE(1706)] = 66225, - [SMALL_STATE(1707)] = 66253, - [SMALL_STATE(1708)] = 66273, - [SMALL_STATE(1709)] = 66291, - [SMALL_STATE(1710)] = 66317, - [SMALL_STATE(1711)] = 66343, - [SMALL_STATE(1712)] = 66361, - [SMALL_STATE(1713)] = 66379, - [SMALL_STATE(1714)] = 66405, - [SMALL_STATE(1715)] = 66431, - [SMALL_STATE(1716)] = 66451, - [SMALL_STATE(1717)] = 66469, - [SMALL_STATE(1718)] = 66497, - [SMALL_STATE(1719)] = 66515, - [SMALL_STATE(1720)] = 66535, - [SMALL_STATE(1721)] = 66555, - [SMALL_STATE(1722)] = 66571, - [SMALL_STATE(1723)] = 66599, - [SMALL_STATE(1724)] = 66617, - [SMALL_STATE(1725)] = 66643, - [SMALL_STATE(1726)] = 66663, - [SMALL_STATE(1727)] = 66681, - [SMALL_STATE(1728)] = 66701, - [SMALL_STATE(1729)] = 66719, - [SMALL_STATE(1730)] = 66745, - [SMALL_STATE(1731)] = 66771, - [SMALL_STATE(1732)] = 66793, - [SMALL_STATE(1733)] = 66813, - [SMALL_STATE(1734)] = 66839, - [SMALL_STATE(1735)] = 66863, - [SMALL_STATE(1736)] = 66889, - [SMALL_STATE(1737)] = 66917, - [SMALL_STATE(1738)] = 66937, - [SMALL_STATE(1739)] = 66963, - [SMALL_STATE(1740)] = 66981, - [SMALL_STATE(1741)] = 66999, - [SMALL_STATE(1742)] = 67025, - [SMALL_STATE(1743)] = 67051, - [SMALL_STATE(1744)] = 67077, - [SMALL_STATE(1745)] = 67099, - [SMALL_STATE(1746)] = 67125, - [SMALL_STATE(1747)] = 67145, - [SMALL_STATE(1748)] = 67171, - [SMALL_STATE(1749)] = 67193, - [SMALL_STATE(1750)] = 67221, - [SMALL_STATE(1751)] = 67240, - [SMALL_STATE(1752)] = 67265, - [SMALL_STATE(1753)] = 67282, - [SMALL_STATE(1754)] = 67299, - [SMALL_STATE(1755)] = 67324, - [SMALL_STATE(1756)] = 67349, - [SMALL_STATE(1757)] = 67366, - [SMALL_STATE(1758)] = 67383, - [SMALL_STATE(1759)] = 67406, - [SMALL_STATE(1760)] = 67431, - [SMALL_STATE(1761)] = 67456, - [SMALL_STATE(1762)] = 67481, - [SMALL_STATE(1763)] = 67506, - [SMALL_STATE(1764)] = 67531, - [SMALL_STATE(1765)] = 67556, - [SMALL_STATE(1766)] = 67581, - [SMALL_STATE(1767)] = 67606, - [SMALL_STATE(1768)] = 67621, - [SMALL_STATE(1769)] = 67636, - [SMALL_STATE(1770)] = 67655, - [SMALL_STATE(1771)] = 67674, - [SMALL_STATE(1772)] = 67703, - [SMALL_STATE(1773)] = 67722, - [SMALL_STATE(1774)] = 67747, - [SMALL_STATE(1775)] = 67764, - [SMALL_STATE(1776)] = 67789, - [SMALL_STATE(1777)] = 67806, - [SMALL_STATE(1778)] = 67833, - [SMALL_STATE(1779)] = 67858, - [SMALL_STATE(1780)] = 67875, - [SMALL_STATE(1781)] = 67894, - [SMALL_STATE(1782)] = 67911, - [SMALL_STATE(1783)] = 67930, - [SMALL_STATE(1784)] = 67947, - [SMALL_STATE(1785)] = 67964, - [SMALL_STATE(1786)] = 67989, - [SMALL_STATE(1787)] = 68006, - [SMALL_STATE(1788)] = 68033, - [SMALL_STATE(1789)] = 68050, - [SMALL_STATE(1790)] = 68079, - [SMALL_STATE(1791)] = 68098, - [SMALL_STATE(1792)] = 68123, - [SMALL_STATE(1793)] = 68142, - [SMALL_STATE(1794)] = 68161, - [SMALL_STATE(1795)] = 68178, - [SMALL_STATE(1796)] = 68197, - [SMALL_STATE(1797)] = 68214, - [SMALL_STATE(1798)] = 68233, - [SMALL_STATE(1799)] = 68252, - [SMALL_STATE(1800)] = 68273, - [SMALL_STATE(1801)] = 68292, - [SMALL_STATE(1802)] = 68317, - [SMALL_STATE(1803)] = 68342, - [SMALL_STATE(1804)] = 68367, - [SMALL_STATE(1805)] = 68386, - [SMALL_STATE(1806)] = 68402, - [SMALL_STATE(1807)] = 68422, - [SMALL_STATE(1808)] = 68436, - [SMALL_STATE(1809)] = 68456, - [SMALL_STATE(1810)] = 68476, - [SMALL_STATE(1811)] = 68496, - [SMALL_STATE(1812)] = 68516, - [SMALL_STATE(1813)] = 68530, - [SMALL_STATE(1814)] = 68544, - [SMALL_STATE(1815)] = 68566, - [SMALL_STATE(1816)] = 68588, - [SMALL_STATE(1817)] = 68608, - [SMALL_STATE(1818)] = 68636, - [SMALL_STATE(1819)] = 68650, - [SMALL_STATE(1820)] = 68664, - [SMALL_STATE(1821)] = 68680, - [SMALL_STATE(1822)] = 68694, - [SMALL_STATE(1823)] = 68710, - [SMALL_STATE(1824)] = 68730, - [SMALL_STATE(1825)] = 68750, - [SMALL_STATE(1826)] = 68770, - [SMALL_STATE(1827)] = 68788, - [SMALL_STATE(1828)] = 68812, - [SMALL_STATE(1829)] = 68828, - [SMALL_STATE(1830)] = 68844, - [SMALL_STATE(1831)] = 68868, - [SMALL_STATE(1832)] = 68884, - [SMALL_STATE(1833)] = 68904, - [SMALL_STATE(1834)] = 68926, - [SMALL_STATE(1835)] = 68942, - [SMALL_STATE(1836)] = 68966, - [SMALL_STATE(1837)] = 68982, - [SMALL_STATE(1838)] = 68996, - [SMALL_STATE(1839)] = 69022, - [SMALL_STATE(1840)] = 69038, - [SMALL_STATE(1841)] = 69056, - [SMALL_STATE(1842)] = 69072, - [SMALL_STATE(1843)] = 69086, - [SMALL_STATE(1844)] = 69102, - [SMALL_STATE(1845)] = 69128, - [SMALL_STATE(1846)] = 69144, - [SMALL_STATE(1847)] = 69168, - [SMALL_STATE(1848)] = 69188, - [SMALL_STATE(1849)] = 69216, - [SMALL_STATE(1850)] = 69232, - [SMALL_STATE(1851)] = 69256, - [SMALL_STATE(1852)] = 69276, - [SMALL_STATE(1853)] = 69292, - [SMALL_STATE(1854)] = 69312, - [SMALL_STATE(1855)] = 69328, - [SMALL_STATE(1856)] = 69352, - [SMALL_STATE(1857)] = 69372, - [SMALL_STATE(1858)] = 69392, - [SMALL_STATE(1859)] = 69416, - [SMALL_STATE(1860)] = 69432, - [SMALL_STATE(1861)] = 69456, - [SMALL_STATE(1862)] = 69478, - [SMALL_STATE(1863)] = 69498, - [SMALL_STATE(1864)] = 69514, - [SMALL_STATE(1865)] = 69532, - [SMALL_STATE(1866)] = 69554, - [SMALL_STATE(1867)] = 69576, - [SMALL_STATE(1868)] = 69598, - [SMALL_STATE(1869)] = 69618, - [SMALL_STATE(1870)] = 69638, - [SMALL_STATE(1871)] = 69666, - [SMALL_STATE(1872)] = 69686, - [SMALL_STATE(1873)] = 69702, - [SMALL_STATE(1874)] = 69716, - [SMALL_STATE(1875)] = 69742, - [SMALL_STATE(1876)] = 69770, - [SMALL_STATE(1877)] = 69792, - [SMALL_STATE(1878)] = 69806, - [SMALL_STATE(1879)] = 69820, - [SMALL_STATE(1880)] = 69836, - [SMALL_STATE(1881)] = 69852, - [SMALL_STATE(1882)] = 69866, - [SMALL_STATE(1883)] = 69880, - [SMALL_STATE(1884)] = 69894, - [SMALL_STATE(1885)] = 69908, - [SMALL_STATE(1886)] = 69928, - [SMALL_STATE(1887)] = 69948, - [SMALL_STATE(1888)] = 69962, - [SMALL_STATE(1889)] = 69986, - [SMALL_STATE(1890)] = 70000, - [SMALL_STATE(1891)] = 70022, - [SMALL_STATE(1892)] = 70050, - [SMALL_STATE(1893)] = 70074, - [SMALL_STATE(1894)] = 70096, - [SMALL_STATE(1895)] = 70110, - [SMALL_STATE(1896)] = 70134, - [SMALL_STATE(1897)] = 70154, - [SMALL_STATE(1898)] = 70172, - [SMALL_STATE(1899)] = 70190, - [SMALL_STATE(1900)] = 70214, - [SMALL_STATE(1901)] = 70236, - [SMALL_STATE(1902)] = 70258, - [SMALL_STATE(1903)] = 70284, - [SMALL_STATE(1904)] = 70300, - [SMALL_STATE(1905)] = 70314, - [SMALL_STATE(1906)] = 70330, - [SMALL_STATE(1907)] = 70346, - [SMALL_STATE(1908)] = 70366, - [SMALL_STATE(1909)] = 70380, - [SMALL_STATE(1910)] = 70396, - [SMALL_STATE(1911)] = 70416, - [SMALL_STATE(1912)] = 70440, - [SMALL_STATE(1913)] = 70460, - [SMALL_STATE(1914)] = 70480, - [SMALL_STATE(1915)] = 70496, - [SMALL_STATE(1916)] = 70518, - [SMALL_STATE(1917)] = 70536, - [SMALL_STATE(1918)] = 70560, - [SMALL_STATE(1919)] = 70584, - [SMALL_STATE(1920)] = 70608, - [SMALL_STATE(1921)] = 70628, - [SMALL_STATE(1922)] = 70651, - [SMALL_STATE(1923)] = 70666, - [SMALL_STATE(1924)] = 70687, - [SMALL_STATE(1925)] = 70710, - [SMALL_STATE(1926)] = 70731, - [SMALL_STATE(1927)] = 70754, - [SMALL_STATE(1928)] = 70777, - [SMALL_STATE(1929)] = 70798, - [SMALL_STATE(1930)] = 70821, - [SMALL_STATE(1931)] = 70842, - [SMALL_STATE(1932)] = 70863, - [SMALL_STATE(1933)] = 70884, - [SMALL_STATE(1934)] = 70907, - [SMALL_STATE(1935)] = 70930, - [SMALL_STATE(1936)] = 70951, - [SMALL_STATE(1937)] = 70974, - [SMALL_STATE(1938)] = 70995, - [SMALL_STATE(1939)] = 71016, - [SMALL_STATE(1940)] = 71035, - [SMALL_STATE(1941)] = 71054, - [SMALL_STATE(1942)] = 71077, - [SMALL_STATE(1943)] = 71098, - [SMALL_STATE(1944)] = 71119, - [SMALL_STATE(1945)] = 71140, - [SMALL_STATE(1946)] = 71161, - [SMALL_STATE(1947)] = 71182, - [SMALL_STATE(1948)] = 71205, - [SMALL_STATE(1949)] = 71224, - [SMALL_STATE(1950)] = 71245, - [SMALL_STATE(1951)] = 71266, - [SMALL_STATE(1952)] = 71287, - [SMALL_STATE(1953)] = 71308, - [SMALL_STATE(1954)] = 71329, - [SMALL_STATE(1955)] = 71352, - [SMALL_STATE(1956)] = 71375, - [SMALL_STATE(1957)] = 71396, - [SMALL_STATE(1958)] = 71419, - [SMALL_STATE(1959)] = 71442, - [SMALL_STATE(1960)] = 71463, - [SMALL_STATE(1961)] = 71480, - [SMALL_STATE(1962)] = 71499, - [SMALL_STATE(1963)] = 71522, - [SMALL_STATE(1964)] = 71545, - [SMALL_STATE(1965)] = 71564, - [SMALL_STATE(1966)] = 71587, - [SMALL_STATE(1967)] = 71610, - [SMALL_STATE(1968)] = 71633, - [SMALL_STATE(1969)] = 71656, - [SMALL_STATE(1970)] = 71681, - [SMALL_STATE(1971)] = 71702, - [SMALL_STATE(1972)] = 71725, - [SMALL_STATE(1973)] = 71748, - [SMALL_STATE(1974)] = 71771, - [SMALL_STATE(1975)] = 71790, - [SMALL_STATE(1976)] = 71813, - [SMALL_STATE(1977)] = 71828, - [SMALL_STATE(1978)] = 71851, - [SMALL_STATE(1979)] = 71872, - [SMALL_STATE(1980)] = 71891, - [SMALL_STATE(1981)] = 71914, - [SMALL_STATE(1982)] = 71937, - [SMALL_STATE(1983)] = 71960, - [SMALL_STATE(1984)] = 71983, - [SMALL_STATE(1985)] = 72006, - [SMALL_STATE(1986)] = 72029, - [SMALL_STATE(1987)] = 72052, - [SMALL_STATE(1988)] = 72075, - [SMALL_STATE(1989)] = 72098, - [SMALL_STATE(1990)] = 72121, - [SMALL_STATE(1991)] = 72144, - [SMALL_STATE(1992)] = 72165, - [SMALL_STATE(1993)] = 72186, - [SMALL_STATE(1994)] = 72207, - [SMALL_STATE(1995)] = 72230, - [SMALL_STATE(1996)] = 72253, - [SMALL_STATE(1997)] = 72278, - [SMALL_STATE(1998)] = 72297, - [SMALL_STATE(1999)] = 72320, - [SMALL_STATE(2000)] = 72337, - [SMALL_STATE(2001)] = 72352, - [SMALL_STATE(2002)] = 72371, - [SMALL_STATE(2003)] = 72392, - [SMALL_STATE(2004)] = 72417, - [SMALL_STATE(2005)] = 72438, - [SMALL_STATE(2006)] = 72459, - [SMALL_STATE(2007)] = 72482, - [SMALL_STATE(2008)] = 72507, - [SMALL_STATE(2009)] = 72530, - [SMALL_STATE(2010)] = 72551, - [SMALL_STATE(2011)] = 72574, - [SMALL_STATE(2012)] = 72593, - [SMALL_STATE(2013)] = 72618, - [SMALL_STATE(2014)] = 72637, - [SMALL_STATE(2015)] = 72658, - [SMALL_STATE(2016)] = 72679, - [SMALL_STATE(2017)] = 72700, - [SMALL_STATE(2018)] = 72717, - [SMALL_STATE(2019)] = 72740, - [SMALL_STATE(2020)] = 72761, - [SMALL_STATE(2021)] = 72784, - [SMALL_STATE(2022)] = 72802, - [SMALL_STATE(2023)] = 72824, - [SMALL_STATE(2024)] = 72836, - [SMALL_STATE(2025)] = 72858, - [SMALL_STATE(2026)] = 72880, - [SMALL_STATE(2027)] = 72900, - [SMALL_STATE(2028)] = 72918, - [SMALL_STATE(2029)] = 72930, - [SMALL_STATE(2030)] = 72952, - [SMALL_STATE(2031)] = 72968, - [SMALL_STATE(2032)] = 72990, - [SMALL_STATE(2033)] = 73012, - [SMALL_STATE(2034)] = 73032, - [SMALL_STATE(2035)] = 73052, - [SMALL_STATE(2036)] = 73070, - [SMALL_STATE(2037)] = 73092, - [SMALL_STATE(2038)] = 73114, - [SMALL_STATE(2039)] = 73136, - [SMALL_STATE(2040)] = 73152, - [SMALL_STATE(2041)] = 73168, - [SMALL_STATE(2042)] = 73188, - [SMALL_STATE(2043)] = 73200, - [SMALL_STATE(2044)] = 73220, - [SMALL_STATE(2045)] = 73242, - [SMALL_STATE(2046)] = 73258, - [SMALL_STATE(2047)] = 73278, - [SMALL_STATE(2048)] = 73290, - [SMALL_STATE(2049)] = 73312, - [SMALL_STATE(2050)] = 73332, - [SMALL_STATE(2051)] = 73352, - [SMALL_STATE(2052)] = 73372, - [SMALL_STATE(2053)] = 73388, - [SMALL_STATE(2054)] = 73410, - [SMALL_STATE(2055)] = 73430, - [SMALL_STATE(2056)] = 73450, - [SMALL_STATE(2057)] = 73462, - [SMALL_STATE(2058)] = 73484, - [SMALL_STATE(2059)] = 73496, - [SMALL_STATE(2060)] = 73516, - [SMALL_STATE(2061)] = 73538, - [SMALL_STATE(2062)] = 73560, - [SMALL_STATE(2063)] = 73582, - [SMALL_STATE(2064)] = 73598, - [SMALL_STATE(2065)] = 73616, - [SMALL_STATE(2066)] = 73636, - [SMALL_STATE(2067)] = 73656, - [SMALL_STATE(2068)] = 73676, - [SMALL_STATE(2069)] = 73696, - [SMALL_STATE(2070)] = 73714, - [SMALL_STATE(2071)] = 73736, - [SMALL_STATE(2072)] = 73748, - [SMALL_STATE(2073)] = 73760, - [SMALL_STATE(2074)] = 73778, - [SMALL_STATE(2075)] = 73796, - [SMALL_STATE(2076)] = 73808, - [SMALL_STATE(2077)] = 73830, - [SMALL_STATE(2078)] = 73848, - [SMALL_STATE(2079)] = 73866, - [SMALL_STATE(2080)] = 73884, - [SMALL_STATE(2081)] = 73902, - [SMALL_STATE(2082)] = 73924, - [SMALL_STATE(2083)] = 73942, - [SMALL_STATE(2084)] = 73954, - [SMALL_STATE(2085)] = 73974, - [SMALL_STATE(2086)] = 73992, - [SMALL_STATE(2087)] = 74012, - [SMALL_STATE(2088)] = 74032, - [SMALL_STATE(2089)] = 74054, - [SMALL_STATE(2090)] = 74068, - [SMALL_STATE(2091)] = 74088, - [SMALL_STATE(2092)] = 74106, - [SMALL_STATE(2093)] = 74124, - [SMALL_STATE(2094)] = 74144, - [SMALL_STATE(2095)] = 74162, - [SMALL_STATE(2096)] = 74182, - [SMALL_STATE(2097)] = 74200, - [SMALL_STATE(2098)] = 74212, - [SMALL_STATE(2099)] = 74234, - [SMALL_STATE(2100)] = 74252, - [SMALL_STATE(2101)] = 74270, - [SMALL_STATE(2102)] = 74288, - [SMALL_STATE(2103)] = 74310, - [SMALL_STATE(2104)] = 74328, - [SMALL_STATE(2105)] = 74346, - [SMALL_STATE(2106)] = 74364, - [SMALL_STATE(2107)] = 74382, - [SMALL_STATE(2108)] = 74400, - [SMALL_STATE(2109)] = 74418, - [SMALL_STATE(2110)] = 74438, - [SMALL_STATE(2111)] = 74456, - [SMALL_STATE(2112)] = 74474, - [SMALL_STATE(2113)] = 74492, - [SMALL_STATE(2114)] = 74512, - [SMALL_STATE(2115)] = 74530, - [SMALL_STATE(2116)] = 74548, - [SMALL_STATE(2117)] = 74566, - [SMALL_STATE(2118)] = 74584, - [SMALL_STATE(2119)] = 74606, - [SMALL_STATE(2120)] = 74620, - [SMALL_STATE(2121)] = 74632, - [SMALL_STATE(2122)] = 74650, - [SMALL_STATE(2123)] = 74670, - [SMALL_STATE(2124)] = 74684, - [SMALL_STATE(2125)] = 74696, - [SMALL_STATE(2126)] = 74708, - [SMALL_STATE(2127)] = 74728, - [SMALL_STATE(2128)] = 74750, - [SMALL_STATE(2129)] = 74768, - [SMALL_STATE(2130)] = 74780, - [SMALL_STATE(2131)] = 74802, - [SMALL_STATE(2132)] = 74817, - [SMALL_STATE(2133)] = 74832, - [SMALL_STATE(2134)] = 74849, - [SMALL_STATE(2135)] = 74860, - [SMALL_STATE(2136)] = 74871, - [SMALL_STATE(2137)] = 74882, - [SMALL_STATE(2138)] = 74895, - [SMALL_STATE(2139)] = 74914, - [SMALL_STATE(2140)] = 74925, - [SMALL_STATE(2141)] = 74940, - [SMALL_STATE(2142)] = 74955, - [SMALL_STATE(2143)] = 74966, - [SMALL_STATE(2144)] = 74983, - [SMALL_STATE(2145)] = 74994, - [SMALL_STATE(2146)] = 75009, - [SMALL_STATE(2147)] = 75026, - [SMALL_STATE(2148)] = 75041, - [SMALL_STATE(2149)] = 75052, - [SMALL_STATE(2150)] = 75069, - [SMALL_STATE(2151)] = 75086, - [SMALL_STATE(2152)] = 75103, - [SMALL_STATE(2153)] = 75114, - [SMALL_STATE(2154)] = 75125, - [SMALL_STATE(2155)] = 75136, - [SMALL_STATE(2156)] = 75147, - [SMALL_STATE(2157)] = 75164, - [SMALL_STATE(2158)] = 75181, - [SMALL_STATE(2159)] = 75198, - [SMALL_STATE(2160)] = 75215, - [SMALL_STATE(2161)] = 75226, - [SMALL_STATE(2162)] = 75243, - [SMALL_STATE(2163)] = 75260, - [SMALL_STATE(2164)] = 75277, - [SMALL_STATE(2165)] = 75288, - [SMALL_STATE(2166)] = 75301, - [SMALL_STATE(2167)] = 75318, - [SMALL_STATE(2168)] = 75329, - [SMALL_STATE(2169)] = 75346, - [SMALL_STATE(2170)] = 75363, - [SMALL_STATE(2171)] = 75380, - [SMALL_STATE(2172)] = 75397, - [SMALL_STATE(2173)] = 75414, - [SMALL_STATE(2174)] = 75431, - [SMALL_STATE(2175)] = 75448, - [SMALL_STATE(2176)] = 75461, - [SMALL_STATE(2177)] = 75478, - [SMALL_STATE(2178)] = 75497, - [SMALL_STATE(2179)] = 75510, - [SMALL_STATE(2180)] = 75521, - [SMALL_STATE(2181)] = 75534, - [SMALL_STATE(2182)] = 75547, - [SMALL_STATE(2183)] = 75564, - [SMALL_STATE(2184)] = 75577, - [SMALL_STATE(2185)] = 75594, - [SMALL_STATE(2186)] = 75609, - [SMALL_STATE(2187)] = 75626, - [SMALL_STATE(2188)] = 75643, - [SMALL_STATE(2189)] = 75660, - [SMALL_STATE(2190)] = 75677, - [SMALL_STATE(2191)] = 75694, - [SMALL_STATE(2192)] = 75711, - [SMALL_STATE(2193)] = 75724, - [SMALL_STATE(2194)] = 75735, - [SMALL_STATE(2195)] = 75752, - [SMALL_STATE(2196)] = 75769, - [SMALL_STATE(2197)] = 75780, - [SMALL_STATE(2198)] = 75797, - [SMALL_STATE(2199)] = 75814, - [SMALL_STATE(2200)] = 75831, - [SMALL_STATE(2201)] = 75846, - [SMALL_STATE(2202)] = 75865, - [SMALL_STATE(2203)] = 75876, - [SMALL_STATE(2204)] = 75887, - [SMALL_STATE(2205)] = 75902, - [SMALL_STATE(2206)] = 75915, - [SMALL_STATE(2207)] = 75930, - [SMALL_STATE(2208)] = 75941, - [SMALL_STATE(2209)] = 75958, - [SMALL_STATE(2210)] = 75975, - [SMALL_STATE(2211)] = 75988, - [SMALL_STATE(2212)] = 76003, - [SMALL_STATE(2213)] = 76020, - [SMALL_STATE(2214)] = 76035, - [SMALL_STATE(2215)] = 76052, - [SMALL_STATE(2216)] = 76065, - [SMALL_STATE(2217)] = 76078, - [SMALL_STATE(2218)] = 76095, - [SMALL_STATE(2219)] = 76108, - [SMALL_STATE(2220)] = 76119, - [SMALL_STATE(2221)] = 76130, - [SMALL_STATE(2222)] = 76143, - [SMALL_STATE(2223)] = 76158, - [SMALL_STATE(2224)] = 76174, - [SMALL_STATE(2225)] = 76190, - [SMALL_STATE(2226)] = 76206, - [SMALL_STATE(2227)] = 76222, - [SMALL_STATE(2228)] = 76238, - [SMALL_STATE(2229)] = 76254, - [SMALL_STATE(2230)] = 76268, - [SMALL_STATE(2231)] = 76280, - [SMALL_STATE(2232)] = 76296, - [SMALL_STATE(2233)] = 76310, - [SMALL_STATE(2234)] = 76326, - [SMALL_STATE(2235)] = 76340, - [SMALL_STATE(2236)] = 76354, - [SMALL_STATE(2237)] = 76364, - [SMALL_STATE(2238)] = 76380, - [SMALL_STATE(2239)] = 76396, - [SMALL_STATE(2240)] = 76410, - [SMALL_STATE(2241)] = 76424, - [SMALL_STATE(2242)] = 76438, - [SMALL_STATE(2243)] = 76450, - [SMALL_STATE(2244)] = 76464, - [SMALL_STATE(2245)] = 76478, - [SMALL_STATE(2246)] = 76492, - [SMALL_STATE(2247)] = 76508, - [SMALL_STATE(2248)] = 76518, - [SMALL_STATE(2249)] = 76532, - [SMALL_STATE(2250)] = 76548, - [SMALL_STATE(2251)] = 76564, - [SMALL_STATE(2252)] = 76576, - [SMALL_STATE(2253)] = 76590, - [SMALL_STATE(2254)] = 76604, - [SMALL_STATE(2255)] = 76620, - [SMALL_STATE(2256)] = 76636, - [SMALL_STATE(2257)] = 76652, - [SMALL_STATE(2258)] = 76668, - [SMALL_STATE(2259)] = 76682, - [SMALL_STATE(2260)] = 76698, - [SMALL_STATE(2261)] = 76712, - [SMALL_STATE(2262)] = 76728, - [SMALL_STATE(2263)] = 76744, - [SMALL_STATE(2264)] = 76760, - [SMALL_STATE(2265)] = 76776, - [SMALL_STATE(2266)] = 76792, - [SMALL_STATE(2267)] = 76808, - [SMALL_STATE(2268)] = 76824, - [SMALL_STATE(2269)] = 76840, - [SMALL_STATE(2270)] = 76856, - [SMALL_STATE(2271)] = 76872, - [SMALL_STATE(2272)] = 76888, - [SMALL_STATE(2273)] = 76904, - [SMALL_STATE(2274)] = 76920, - [SMALL_STATE(2275)] = 76934, - [SMALL_STATE(2276)] = 76950, - [SMALL_STATE(2277)] = 76966, - [SMALL_STATE(2278)] = 76982, - [SMALL_STATE(2279)] = 76998, - [SMALL_STATE(2280)] = 77014, - [SMALL_STATE(2281)] = 77028, - [SMALL_STATE(2282)] = 77038, - [SMALL_STATE(2283)] = 77052, - [SMALL_STATE(2284)] = 77068, - [SMALL_STATE(2285)] = 77084, - [SMALL_STATE(2286)] = 77100, - [SMALL_STATE(2287)] = 77114, - [SMALL_STATE(2288)] = 77130, - [SMALL_STATE(2289)] = 77146, - [SMALL_STATE(2290)] = 77162, - [SMALL_STATE(2291)] = 77178, - [SMALL_STATE(2292)] = 77190, - [SMALL_STATE(2293)] = 77202, - [SMALL_STATE(2294)] = 77216, - [SMALL_STATE(2295)] = 77232, - [SMALL_STATE(2296)] = 77248, - [SMALL_STATE(2297)] = 77262, - [SMALL_STATE(2298)] = 77278, - [SMALL_STATE(2299)] = 77294, - [SMALL_STATE(2300)] = 77310, - [SMALL_STATE(2301)] = 77326, - [SMALL_STATE(2302)] = 77342, - [SMALL_STATE(2303)] = 77358, - [SMALL_STATE(2304)] = 77374, - [SMALL_STATE(2305)] = 77388, - [SMALL_STATE(2306)] = 77404, - [SMALL_STATE(2307)] = 77414, - [SMALL_STATE(2308)] = 77426, - [SMALL_STATE(2309)] = 77436, - [SMALL_STATE(2310)] = 77450, - [SMALL_STATE(2311)] = 77466, - [SMALL_STATE(2312)] = 77480, - [SMALL_STATE(2313)] = 77494, - [SMALL_STATE(2314)] = 77510, - [SMALL_STATE(2315)] = 77526, - [SMALL_STATE(2316)] = 77540, - [SMALL_STATE(2317)] = 77556, - [SMALL_STATE(2318)] = 77572, - [SMALL_STATE(2319)] = 77584, - [SMALL_STATE(2320)] = 77598, - [SMALL_STATE(2321)] = 77612, - [SMALL_STATE(2322)] = 77628, - [SMALL_STATE(2323)] = 77642, - [SMALL_STATE(2324)] = 77656, - [SMALL_STATE(2325)] = 77672, - [SMALL_STATE(2326)] = 77684, - [SMALL_STATE(2327)] = 77698, - [SMALL_STATE(2328)] = 77710, - [SMALL_STATE(2329)] = 77726, - [SMALL_STATE(2330)] = 77740, - [SMALL_STATE(2331)] = 77752, - [SMALL_STATE(2332)] = 77768, - [SMALL_STATE(2333)] = 77784, - [SMALL_STATE(2334)] = 77798, - [SMALL_STATE(2335)] = 77812, - [SMALL_STATE(2336)] = 77824, - [SMALL_STATE(2337)] = 77840, - [SMALL_STATE(2338)] = 77852, - [SMALL_STATE(2339)] = 77868, - [SMALL_STATE(2340)] = 77884, - [SMALL_STATE(2341)] = 77896, - [SMALL_STATE(2342)] = 77912, - [SMALL_STATE(2343)] = 77928, - [SMALL_STATE(2344)] = 77940, - [SMALL_STATE(2345)] = 77952, - [SMALL_STATE(2346)] = 77966, - [SMALL_STATE(2347)] = 77978, - [SMALL_STATE(2348)] = 77994, - [SMALL_STATE(2349)] = 78010, - [SMALL_STATE(2350)] = 78026, - [SMALL_STATE(2351)] = 78036, - [SMALL_STATE(2352)] = 78052, - [SMALL_STATE(2353)] = 78068, - [SMALL_STATE(2354)] = 78084, - [SMALL_STATE(2355)] = 78100, - [SMALL_STATE(2356)] = 78114, - [SMALL_STATE(2357)] = 78130, - [SMALL_STATE(2358)] = 78143, - [SMALL_STATE(2359)] = 78154, - [SMALL_STATE(2360)] = 78167, - [SMALL_STATE(2361)] = 78178, - [SMALL_STATE(2362)] = 78189, - [SMALL_STATE(2363)] = 78202, - [SMALL_STATE(2364)] = 78213, - [SMALL_STATE(2365)] = 78226, - [SMALL_STATE(2366)] = 78239, - [SMALL_STATE(2367)] = 78250, - [SMALL_STATE(2368)] = 78263, - [SMALL_STATE(2369)] = 78274, - [SMALL_STATE(2370)] = 78287, - [SMALL_STATE(2371)] = 78298, - [SMALL_STATE(2372)] = 78311, - [SMALL_STATE(2373)] = 78324, - [SMALL_STATE(2374)] = 78337, - [SMALL_STATE(2375)] = 78350, - [SMALL_STATE(2376)] = 78363, - [SMALL_STATE(2377)] = 78376, - [SMALL_STATE(2378)] = 78389, - [SMALL_STATE(2379)] = 78402, - [SMALL_STATE(2380)] = 78415, - [SMALL_STATE(2381)] = 78428, - [SMALL_STATE(2382)] = 78441, - [SMALL_STATE(2383)] = 78454, - [SMALL_STATE(2384)] = 78467, - [SMALL_STATE(2385)] = 78480, - [SMALL_STATE(2386)] = 78493, - [SMALL_STATE(2387)] = 78506, - [SMALL_STATE(2388)] = 78515, - [SMALL_STATE(2389)] = 78528, - [SMALL_STATE(2390)] = 78541, - [SMALL_STATE(2391)] = 78554, - [SMALL_STATE(2392)] = 78567, - [SMALL_STATE(2393)] = 78580, - [SMALL_STATE(2394)] = 78593, - [SMALL_STATE(2395)] = 78604, - [SMALL_STATE(2396)] = 78617, - [SMALL_STATE(2397)] = 78630, - [SMALL_STATE(2398)] = 78643, - [SMALL_STATE(2399)] = 78656, - [SMALL_STATE(2400)] = 78669, - [SMALL_STATE(2401)] = 78682, - [SMALL_STATE(2402)] = 78695, - [SMALL_STATE(2403)] = 78708, - [SMALL_STATE(2404)] = 78721, - [SMALL_STATE(2405)] = 78734, - [SMALL_STATE(2406)] = 78747, - [SMALL_STATE(2407)] = 78758, - [SMALL_STATE(2408)] = 78771, - [SMALL_STATE(2409)] = 78784, - [SMALL_STATE(2410)] = 78797, - [SMALL_STATE(2411)] = 78810, - [SMALL_STATE(2412)] = 78823, - [SMALL_STATE(2413)] = 78836, - [SMALL_STATE(2414)] = 78849, - [SMALL_STATE(2415)] = 78862, - [SMALL_STATE(2416)] = 78875, - [SMALL_STATE(2417)] = 78888, - [SMALL_STATE(2418)] = 78901, - [SMALL_STATE(2419)] = 78912, - [SMALL_STATE(2420)] = 78925, - [SMALL_STATE(2421)] = 78938, - [SMALL_STATE(2422)] = 78951, - [SMALL_STATE(2423)] = 78964, - [SMALL_STATE(2424)] = 78977, - [SMALL_STATE(2425)] = 78990, - [SMALL_STATE(2426)] = 79003, - [SMALL_STATE(2427)] = 79016, - [SMALL_STATE(2428)] = 79029, - [SMALL_STATE(2429)] = 79042, - [SMALL_STATE(2430)] = 79055, - [SMALL_STATE(2431)] = 79068, - [SMALL_STATE(2432)] = 79081, - [SMALL_STATE(2433)] = 79092, - [SMALL_STATE(2434)] = 79103, - [SMALL_STATE(2435)] = 79116, - [SMALL_STATE(2436)] = 79127, - [SMALL_STATE(2437)] = 79140, - [SMALL_STATE(2438)] = 79153, - [SMALL_STATE(2439)] = 79164, - [SMALL_STATE(2440)] = 79175, - [SMALL_STATE(2441)] = 79188, - [SMALL_STATE(2442)] = 79201, - [SMALL_STATE(2443)] = 79214, - [SMALL_STATE(2444)] = 79227, - [SMALL_STATE(2445)] = 79238, - [SMALL_STATE(2446)] = 79251, - [SMALL_STATE(2447)] = 79264, - [SMALL_STATE(2448)] = 79277, - [SMALL_STATE(2449)] = 79290, - [SMALL_STATE(2450)] = 79303, - [SMALL_STATE(2451)] = 79316, - [SMALL_STATE(2452)] = 79329, - [SMALL_STATE(2453)] = 79342, - [SMALL_STATE(2454)] = 79353, - [SMALL_STATE(2455)] = 79366, - [SMALL_STATE(2456)] = 79379, - [SMALL_STATE(2457)] = 79392, - [SMALL_STATE(2458)] = 79405, - [SMALL_STATE(2459)] = 79418, - [SMALL_STATE(2460)] = 79431, - [SMALL_STATE(2461)] = 79444, - [SMALL_STATE(2462)] = 79457, - [SMALL_STATE(2463)] = 79470, - [SMALL_STATE(2464)] = 79483, - [SMALL_STATE(2465)] = 79496, - [SMALL_STATE(2466)] = 79509, - [SMALL_STATE(2467)] = 79520, - [SMALL_STATE(2468)] = 79531, - [SMALL_STATE(2469)] = 79544, - [SMALL_STATE(2470)] = 79557, - [SMALL_STATE(2471)] = 79568, - [SMALL_STATE(2472)] = 79581, - [SMALL_STATE(2473)] = 79594, - [SMALL_STATE(2474)] = 79605, - [SMALL_STATE(2475)] = 79618, - [SMALL_STATE(2476)] = 79631, - [SMALL_STATE(2477)] = 79644, - [SMALL_STATE(2478)] = 79657, - [SMALL_STATE(2479)] = 79670, - [SMALL_STATE(2480)] = 79683, - [SMALL_STATE(2481)] = 79694, - [SMALL_STATE(2482)] = 79707, - [SMALL_STATE(2483)] = 79720, - [SMALL_STATE(2484)] = 79733, - [SMALL_STATE(2485)] = 79746, - [SMALL_STATE(2486)] = 79757, - [SMALL_STATE(2487)] = 79768, - [SMALL_STATE(2488)] = 79781, - [SMALL_STATE(2489)] = 79794, - [SMALL_STATE(2490)] = 79807, - [SMALL_STATE(2491)] = 79820, - [SMALL_STATE(2492)] = 79833, - [SMALL_STATE(2493)] = 79846, - [SMALL_STATE(2494)] = 79859, - [SMALL_STATE(2495)] = 79872, - [SMALL_STATE(2496)] = 79885, - [SMALL_STATE(2497)] = 79896, - [SMALL_STATE(2498)] = 79909, - [SMALL_STATE(2499)] = 79918, - [SMALL_STATE(2500)] = 79927, - [SMALL_STATE(2501)] = 79940, - [SMALL_STATE(2502)] = 79953, - [SMALL_STATE(2503)] = 79966, - [SMALL_STATE(2504)] = 79979, - [SMALL_STATE(2505)] = 79992, - [SMALL_STATE(2506)] = 80005, - [SMALL_STATE(2507)] = 80018, - [SMALL_STATE(2508)] = 80029, - [SMALL_STATE(2509)] = 80038, - [SMALL_STATE(2510)] = 80051, - [SMALL_STATE(2511)] = 80062, - [SMALL_STATE(2512)] = 80073, - [SMALL_STATE(2513)] = 80086, - [SMALL_STATE(2514)] = 80099, - [SMALL_STATE(2515)] = 80112, - [SMALL_STATE(2516)] = 80125, - [SMALL_STATE(2517)] = 80138, - [SMALL_STATE(2518)] = 80151, - [SMALL_STATE(2519)] = 80164, - [SMALL_STATE(2520)] = 80177, - [SMALL_STATE(2521)] = 80190, - [SMALL_STATE(2522)] = 80201, - [SMALL_STATE(2523)] = 80214, - [SMALL_STATE(2524)] = 80225, - [SMALL_STATE(2525)] = 80236, - [SMALL_STATE(2526)] = 80247, - [SMALL_STATE(2527)] = 80260, - [SMALL_STATE(2528)] = 80269, - [SMALL_STATE(2529)] = 80282, - [SMALL_STATE(2530)] = 80293, - [SMALL_STATE(2531)] = 80306, - [SMALL_STATE(2532)] = 80317, - [SMALL_STATE(2533)] = 80330, - [SMALL_STATE(2534)] = 80343, - [SMALL_STATE(2535)] = 80356, - [SMALL_STATE(2536)] = 80369, - [SMALL_STATE(2537)] = 80382, - [SMALL_STATE(2538)] = 80395, - [SMALL_STATE(2539)] = 80404, - [SMALL_STATE(2540)] = 80415, - [SMALL_STATE(2541)] = 80424, - [SMALL_STATE(2542)] = 80437, - [SMALL_STATE(2543)] = 80450, - [SMALL_STATE(2544)] = 80463, - [SMALL_STATE(2545)] = 80471, - [SMALL_STATE(2546)] = 80479, - [SMALL_STATE(2547)] = 80487, - [SMALL_STATE(2548)] = 80495, - [SMALL_STATE(2549)] = 80503, - [SMALL_STATE(2550)] = 80511, - [SMALL_STATE(2551)] = 80519, - [SMALL_STATE(2552)] = 80527, - [SMALL_STATE(2553)] = 80535, - [SMALL_STATE(2554)] = 80543, - [SMALL_STATE(2555)] = 80551, - [SMALL_STATE(2556)] = 80559, - [SMALL_STATE(2557)] = 80567, - [SMALL_STATE(2558)] = 80577, - [SMALL_STATE(2559)] = 80585, - [SMALL_STATE(2560)] = 80593, - [SMALL_STATE(2561)] = 80601, - [SMALL_STATE(2562)] = 80609, - [SMALL_STATE(2563)] = 80617, - [SMALL_STATE(2564)] = 80625, - [SMALL_STATE(2565)] = 80633, - [SMALL_STATE(2566)] = 80643, - [SMALL_STATE(2567)] = 80653, - [SMALL_STATE(2568)] = 80661, - [SMALL_STATE(2569)] = 80669, - [SMALL_STATE(2570)] = 80677, - [SMALL_STATE(2571)] = 80687, - [SMALL_STATE(2572)] = 80695, - [SMALL_STATE(2573)] = 80703, - [SMALL_STATE(2574)] = 80711, - [SMALL_STATE(2575)] = 80719, - [SMALL_STATE(2576)] = 80727, - [SMALL_STATE(2577)] = 80735, - [SMALL_STATE(2578)] = 80743, - [SMALL_STATE(2579)] = 80751, - [SMALL_STATE(2580)] = 80761, - [SMALL_STATE(2581)] = 80769, - [SMALL_STATE(2582)] = 80777, - [SMALL_STATE(2583)] = 80785, - [SMALL_STATE(2584)] = 80793, - [SMALL_STATE(2585)] = 80801, - [SMALL_STATE(2586)] = 80809, - [SMALL_STATE(2587)] = 80819, - [SMALL_STATE(2588)] = 80827, - [SMALL_STATE(2589)] = 80835, - [SMALL_STATE(2590)] = 80843, - [SMALL_STATE(2591)] = 80851, - [SMALL_STATE(2592)] = 80859, - [SMALL_STATE(2593)] = 80869, - [SMALL_STATE(2594)] = 80877, - [SMALL_STATE(2595)] = 80885, - [SMALL_STATE(2596)] = 80893, - [SMALL_STATE(2597)] = 80901, - [SMALL_STATE(2598)] = 80909, - [SMALL_STATE(2599)] = 80917, - [SMALL_STATE(2600)] = 80925, - [SMALL_STATE(2601)] = 80933, - [SMALL_STATE(2602)] = 80941, - [SMALL_STATE(2603)] = 80949, - [SMALL_STATE(2604)] = 80957, - [SMALL_STATE(2605)] = 80965, - [SMALL_STATE(2606)] = 80975, - [SMALL_STATE(2607)] = 80983, - [SMALL_STATE(2608)] = 80991, - [SMALL_STATE(2609)] = 80999, - [SMALL_STATE(2610)] = 81007, - [SMALL_STATE(2611)] = 81017, - [SMALL_STATE(2612)] = 81025, - [SMALL_STATE(2613)] = 81035, - [SMALL_STATE(2614)] = 81043, - [SMALL_STATE(2615)] = 81051, - [SMALL_STATE(2616)] = 81061, - [SMALL_STATE(2617)] = 81069, - [SMALL_STATE(2618)] = 81077, - [SMALL_STATE(2619)] = 81085, - [SMALL_STATE(2620)] = 81093, - [SMALL_STATE(2621)] = 81101, - [SMALL_STATE(2622)] = 81111, - [SMALL_STATE(2623)] = 81119, - [SMALL_STATE(2624)] = 81127, - [SMALL_STATE(2625)] = 81135, - [SMALL_STATE(2626)] = 81143, - [SMALL_STATE(2627)] = 81151, - [SMALL_STATE(2628)] = 81159, - [SMALL_STATE(2629)] = 81167, - [SMALL_STATE(2630)] = 81175, - [SMALL_STATE(2631)] = 81183, - [SMALL_STATE(2632)] = 81191, - [SMALL_STATE(2633)] = 81199, - [SMALL_STATE(2634)] = 81207, - [SMALL_STATE(2635)] = 81215, - [SMALL_STATE(2636)] = 81223, - [SMALL_STATE(2637)] = 81231, - [SMALL_STATE(2638)] = 81239, - [SMALL_STATE(2639)] = 81249, - [SMALL_STATE(2640)] = 81257, - [SMALL_STATE(2641)] = 81265, - [SMALL_STATE(2642)] = 81273, - [SMALL_STATE(2643)] = 81283, - [SMALL_STATE(2644)] = 81293, - [SMALL_STATE(2645)] = 81301, - [SMALL_STATE(2646)] = 81309, - [SMALL_STATE(2647)] = 81317, - [SMALL_STATE(2648)] = 81325, - [SMALL_STATE(2649)] = 81333, - [SMALL_STATE(2650)] = 81341, - [SMALL_STATE(2651)] = 81349, - [SMALL_STATE(2652)] = 81357, - [SMALL_STATE(2653)] = 81365, - [SMALL_STATE(2654)] = 81373, - [SMALL_STATE(2655)] = 81381, - [SMALL_STATE(2656)] = 81389, - [SMALL_STATE(2657)] = 81397, - [SMALL_STATE(2658)] = 81405, - [SMALL_STATE(2659)] = 81413, - [SMALL_STATE(2660)] = 81421, - [SMALL_STATE(2661)] = 81429, - [SMALL_STATE(2662)] = 81437, - [SMALL_STATE(2663)] = 81445, - [SMALL_STATE(2664)] = 81453, - [SMALL_STATE(2665)] = 81461, - [SMALL_STATE(2666)] = 81469, - [SMALL_STATE(2667)] = 81477, - [SMALL_STATE(2668)] = 81487, - [SMALL_STATE(2669)] = 81495, - [SMALL_STATE(2670)] = 81503, - [SMALL_STATE(2671)] = 81511, - [SMALL_STATE(2672)] = 81519, - [SMALL_STATE(2673)] = 81527, - [SMALL_STATE(2674)] = 81535, - [SMALL_STATE(2675)] = 81543, - [SMALL_STATE(2676)] = 81551, - [SMALL_STATE(2677)] = 81559, - [SMALL_STATE(2678)] = 81567, - [SMALL_STATE(2679)] = 81575, - [SMALL_STATE(2680)] = 81583, - [SMALL_STATE(2681)] = 81591, - [SMALL_STATE(2682)] = 81599, - [SMALL_STATE(2683)] = 81607, - [SMALL_STATE(2684)] = 81615, - [SMALL_STATE(2685)] = 81623, - [SMALL_STATE(2686)] = 81631, - [SMALL_STATE(2687)] = 81639, - [SMALL_STATE(2688)] = 81647, - [SMALL_STATE(2689)] = 81655, - [SMALL_STATE(2690)] = 81663, - [SMALL_STATE(2691)] = 81673, - [SMALL_STATE(2692)] = 81681, - [SMALL_STATE(2693)] = 81689, - [SMALL_STATE(2694)] = 81697, - [SMALL_STATE(2695)] = 81705, - [SMALL_STATE(2696)] = 81713, - [SMALL_STATE(2697)] = 81721, - [SMALL_STATE(2698)] = 81729, - [SMALL_STATE(2699)] = 81737, - [SMALL_STATE(2700)] = 81745, - [SMALL_STATE(2701)] = 81753, - [SMALL_STATE(2702)] = 81761, - [SMALL_STATE(2703)] = 81769, - [SMALL_STATE(2704)] = 81779, - [SMALL_STATE(2705)] = 81787, - [SMALL_STATE(2706)] = 81795, - [SMALL_STATE(2707)] = 81805, - [SMALL_STATE(2708)] = 81813, - [SMALL_STATE(2709)] = 81821, - [SMALL_STATE(2710)] = 81829, - [SMALL_STATE(2711)] = 81837, - [SMALL_STATE(2712)] = 81845, - [SMALL_STATE(2713)] = 81853, - [SMALL_STATE(2714)] = 81861, - [SMALL_STATE(2715)] = 81869, - [SMALL_STATE(2716)] = 81877, - [SMALL_STATE(2717)] = 81885, - [SMALL_STATE(2718)] = 81893, - [SMALL_STATE(2719)] = 81903, - [SMALL_STATE(2720)] = 81911, - [SMALL_STATE(2721)] = 81919, - [SMALL_STATE(2722)] = 81927, - [SMALL_STATE(2723)] = 81937, - [SMALL_STATE(2724)] = 81945, - [SMALL_STATE(2725)] = 81953, - [SMALL_STATE(2726)] = 81961, - [SMALL_STATE(2727)] = 81969, - [SMALL_STATE(2728)] = 81977, - [SMALL_STATE(2729)] = 81985, - [SMALL_STATE(2730)] = 81993, - [SMALL_STATE(2731)] = 82001, - [SMALL_STATE(2732)] = 82009, - [SMALL_STATE(2733)] = 82017, - [SMALL_STATE(2734)] = 82025, - [SMALL_STATE(2735)] = 82033, - [SMALL_STATE(2736)] = 82041, - [SMALL_STATE(2737)] = 82049, - [SMALL_STATE(2738)] = 82057, - [SMALL_STATE(2739)] = 82065, - [SMALL_STATE(2740)] = 82073, - [SMALL_STATE(2741)] = 82081, - [SMALL_STATE(2742)] = 82089, - [SMALL_STATE(2743)] = 82097, - [SMALL_STATE(2744)] = 82105, - [SMALL_STATE(2745)] = 82115, - [SMALL_STATE(2746)] = 82123, - [SMALL_STATE(2747)] = 82131, - [SMALL_STATE(2748)] = 82139, - [SMALL_STATE(2749)] = 82149, - [SMALL_STATE(2750)] = 82157, - [SMALL_STATE(2751)] = 82167, - [SMALL_STATE(2752)] = 82175, - [SMALL_STATE(2753)] = 82183, - [SMALL_STATE(2754)] = 82191, - [SMALL_STATE(2755)] = 82199, - [SMALL_STATE(2756)] = 82207, - [SMALL_STATE(2757)] = 82215, - [SMALL_STATE(2758)] = 82223, - [SMALL_STATE(2759)] = 82231, - [SMALL_STATE(2760)] = 82239, - [SMALL_STATE(2761)] = 82247, - [SMALL_STATE(2762)] = 82255, - [SMALL_STATE(2763)] = 82263, - [SMALL_STATE(2764)] = 82271, - [SMALL_STATE(2765)] = 82279, - [SMALL_STATE(2766)] = 82287, - [SMALL_STATE(2767)] = 82295, - [SMALL_STATE(2768)] = 82305, - [SMALL_STATE(2769)] = 82313, - [SMALL_STATE(2770)] = 82321, - [SMALL_STATE(2771)] = 82329, - [SMALL_STATE(2772)] = 82337, - [SMALL_STATE(2773)] = 82345, - [SMALL_STATE(2774)] = 82353, - [SMALL_STATE(2775)] = 82361, - [SMALL_STATE(2776)] = 82369, - [SMALL_STATE(2777)] = 82377, - [SMALL_STATE(2778)] = 82385, - [SMALL_STATE(2779)] = 82393, - [SMALL_STATE(2780)] = 82401, - [SMALL_STATE(2781)] = 82409, - [SMALL_STATE(2782)] = 82417, - [SMALL_STATE(2783)] = 82425, - [SMALL_STATE(2784)] = 82433, - [SMALL_STATE(2785)] = 82441, - [SMALL_STATE(2786)] = 82449, - [SMALL_STATE(2787)] = 82457, - [SMALL_STATE(2788)] = 82465, - [SMALL_STATE(2789)] = 82473, - [SMALL_STATE(2790)] = 82481, - [SMALL_STATE(2791)] = 82489, - [SMALL_STATE(2792)] = 82497, - [SMALL_STATE(2793)] = 82505, - [SMALL_STATE(2794)] = 82513, - [SMALL_STATE(2795)] = 82521, - [SMALL_STATE(2796)] = 82529, - [SMALL_STATE(2797)] = 82537, - [SMALL_STATE(2798)] = 82545, - [SMALL_STATE(2799)] = 82553, - [SMALL_STATE(2800)] = 82561, - [SMALL_STATE(2801)] = 82569, - [SMALL_STATE(2802)] = 82577, - [SMALL_STATE(2803)] = 82585, - [SMALL_STATE(2804)] = 82593, - [SMALL_STATE(2805)] = 82601, - [SMALL_STATE(2806)] = 82609, - [SMALL_STATE(2807)] = 82617, - [SMALL_STATE(2808)] = 82625, - [SMALL_STATE(2809)] = 82633, - [SMALL_STATE(2810)] = 82641, - [SMALL_STATE(2811)] = 82649, - [SMALL_STATE(2812)] = 82657, - [SMALL_STATE(2813)] = 82665, - [SMALL_STATE(2814)] = 82675, - [SMALL_STATE(2815)] = 82683, - [SMALL_STATE(2816)] = 82691, - [SMALL_STATE(2817)] = 82699, - [SMALL_STATE(2818)] = 82707, - [SMALL_STATE(2819)] = 82717, - [SMALL_STATE(2820)] = 82725, - [SMALL_STATE(2821)] = 82733, - [SMALL_STATE(2822)] = 82741, - [SMALL_STATE(2823)] = 82749, - [SMALL_STATE(2824)] = 82757, - [SMALL_STATE(2825)] = 82765, - [SMALL_STATE(2826)] = 82773, - [SMALL_STATE(2827)] = 82781, - [SMALL_STATE(2828)] = 82789, - [SMALL_STATE(2829)] = 82797, - [SMALL_STATE(2830)] = 82805, - [SMALL_STATE(2831)] = 82815, - [SMALL_STATE(2832)] = 82825, - [SMALL_STATE(2833)] = 82833, - [SMALL_STATE(2834)] = 82841, - [SMALL_STATE(2835)] = 82849, - [SMALL_STATE(2836)] = 82857, - [SMALL_STATE(2837)] = 82865, - [SMALL_STATE(2838)] = 82873, - [SMALL_STATE(2839)] = 82881, - [SMALL_STATE(2840)] = 82889, - [SMALL_STATE(2841)] = 82897, - [SMALL_STATE(2842)] = 82905, - [SMALL_STATE(2843)] = 82913, - [SMALL_STATE(2844)] = 82921, - [SMALL_STATE(2845)] = 82929, - [SMALL_STATE(2846)] = 82939, - [SMALL_STATE(2847)] = 82947, - [SMALL_STATE(2848)] = 82955, - [SMALL_STATE(2849)] = 82963, - [SMALL_STATE(2850)] = 82971, - [SMALL_STATE(2851)] = 82979, - [SMALL_STATE(2852)] = 82987, - [SMALL_STATE(2853)] = 82995, - [SMALL_STATE(2854)] = 83003, - [SMALL_STATE(2855)] = 83011, - [SMALL_STATE(2856)] = 83019, - [SMALL_STATE(2857)] = 83027, - [SMALL_STATE(2858)] = 83035, - [SMALL_STATE(2859)] = 83043, - [SMALL_STATE(2860)] = 83051, - [SMALL_STATE(2861)] = 83059, - [SMALL_STATE(2862)] = 83067, - [SMALL_STATE(2863)] = 83075, - [SMALL_STATE(2864)] = 83083, - [SMALL_STATE(2865)] = 83091, - [SMALL_STATE(2866)] = 83101, - [SMALL_STATE(2867)] = 83109, - [SMALL_STATE(2868)] = 83117, - [SMALL_STATE(2869)] = 83127, - [SMALL_STATE(2870)] = 83135, - [SMALL_STATE(2871)] = 83143, - [SMALL_STATE(2872)] = 83151, - [SMALL_STATE(2873)] = 83159, - [SMALL_STATE(2874)] = 83167, - [SMALL_STATE(2875)] = 83175, - [SMALL_STATE(2876)] = 83183, - [SMALL_STATE(2877)] = 83191, - [SMALL_STATE(2878)] = 83199, - [SMALL_STATE(2879)] = 83207, - [SMALL_STATE(2880)] = 83215, - [SMALL_STATE(2881)] = 83225, - [SMALL_STATE(2882)] = 83233, - [SMALL_STATE(2883)] = 83241, - [SMALL_STATE(2884)] = 83249, - [SMALL_STATE(2885)] = 83257, - [SMALL_STATE(2886)] = 83267, - [SMALL_STATE(2887)] = 83275, - [SMALL_STATE(2888)] = 83283, - [SMALL_STATE(2889)] = 83291, - [SMALL_STATE(2890)] = 83299, - [SMALL_STATE(2891)] = 83307, - [SMALL_STATE(2892)] = 83315, - [SMALL_STATE(2893)] = 83323, - [SMALL_STATE(2894)] = 83330, - [SMALL_STATE(2895)] = 83337, - [SMALL_STATE(2896)] = 83344, - [SMALL_STATE(2897)] = 83351, - [SMALL_STATE(2898)] = 83358, - [SMALL_STATE(2899)] = 83365, - [SMALL_STATE(2900)] = 83372, - [SMALL_STATE(2901)] = 83379, - [SMALL_STATE(2902)] = 83386, - [SMALL_STATE(2903)] = 83393, - [SMALL_STATE(2904)] = 83400, - [SMALL_STATE(2905)] = 83407, - [SMALL_STATE(2906)] = 83414, - [SMALL_STATE(2907)] = 83421, - [SMALL_STATE(2908)] = 83428, - [SMALL_STATE(2909)] = 83435, - [SMALL_STATE(2910)] = 83442, - [SMALL_STATE(2911)] = 83449, - [SMALL_STATE(2912)] = 83456, - [SMALL_STATE(2913)] = 83463, - [SMALL_STATE(2914)] = 83470, - [SMALL_STATE(2915)] = 83477, - [SMALL_STATE(2916)] = 83484, - [SMALL_STATE(2917)] = 83491, - [SMALL_STATE(2918)] = 83498, - [SMALL_STATE(2919)] = 83505, - [SMALL_STATE(2920)] = 83512, - [SMALL_STATE(2921)] = 83519, - [SMALL_STATE(2922)] = 83526, - [SMALL_STATE(2923)] = 83533, - [SMALL_STATE(2924)] = 83540, - [SMALL_STATE(2925)] = 83547, - [SMALL_STATE(2926)] = 83554, - [SMALL_STATE(2927)] = 83561, - [SMALL_STATE(2928)] = 83568, - [SMALL_STATE(2929)] = 83575, - [SMALL_STATE(2930)] = 83582, - [SMALL_STATE(2931)] = 83589, - [SMALL_STATE(2932)] = 83596, - [SMALL_STATE(2933)] = 83603, - [SMALL_STATE(2934)] = 83610, - [SMALL_STATE(2935)] = 83617, - [SMALL_STATE(2936)] = 83624, - [SMALL_STATE(2937)] = 83631, - [SMALL_STATE(2938)] = 83638, - [SMALL_STATE(2939)] = 83645, - [SMALL_STATE(2940)] = 83652, - [SMALL_STATE(2941)] = 83659, - [SMALL_STATE(2942)] = 83666, - [SMALL_STATE(2943)] = 83673, - [SMALL_STATE(2944)] = 83680, - [SMALL_STATE(2945)] = 83687, - [SMALL_STATE(2946)] = 83694, - [SMALL_STATE(2947)] = 83701, - [SMALL_STATE(2948)] = 83708, - [SMALL_STATE(2949)] = 83715, - [SMALL_STATE(2950)] = 83722, - [SMALL_STATE(2951)] = 83729, - [SMALL_STATE(2952)] = 83736, - [SMALL_STATE(2953)] = 83743, - [SMALL_STATE(2954)] = 83750, - [SMALL_STATE(2955)] = 83757, - [SMALL_STATE(2956)] = 83764, - [SMALL_STATE(2957)] = 83771, - [SMALL_STATE(2958)] = 83778, - [SMALL_STATE(2959)] = 83785, - [SMALL_STATE(2960)] = 83792, - [SMALL_STATE(2961)] = 83799, - [SMALL_STATE(2962)] = 83806, - [SMALL_STATE(2963)] = 83813, - [SMALL_STATE(2964)] = 83820, - [SMALL_STATE(2965)] = 83827, - [SMALL_STATE(2966)] = 83834, - [SMALL_STATE(2967)] = 83841, - [SMALL_STATE(2968)] = 83848, - [SMALL_STATE(2969)] = 83855, - [SMALL_STATE(2970)] = 83862, - [SMALL_STATE(2971)] = 83869, - [SMALL_STATE(2972)] = 83876, - [SMALL_STATE(2973)] = 83883, - [SMALL_STATE(2974)] = 83890, - [SMALL_STATE(2975)] = 83897, - [SMALL_STATE(2976)] = 83904, - [SMALL_STATE(2977)] = 83911, - [SMALL_STATE(2978)] = 83918, - [SMALL_STATE(2979)] = 83925, - [SMALL_STATE(2980)] = 83932, - [SMALL_STATE(2981)] = 83939, - [SMALL_STATE(2982)] = 83946, - [SMALL_STATE(2983)] = 83953, - [SMALL_STATE(2984)] = 83960, - [SMALL_STATE(2985)] = 83967, - [SMALL_STATE(2986)] = 83974, - [SMALL_STATE(2987)] = 83981, - [SMALL_STATE(2988)] = 83988, - [SMALL_STATE(2989)] = 83995, - [SMALL_STATE(2990)] = 84002, - [SMALL_STATE(2991)] = 84009, - [SMALL_STATE(2992)] = 84016, - [SMALL_STATE(2993)] = 84023, - [SMALL_STATE(2994)] = 84030, - [SMALL_STATE(2995)] = 84037, - [SMALL_STATE(2996)] = 84044, - [SMALL_STATE(2997)] = 84051, - [SMALL_STATE(2998)] = 84058, - [SMALL_STATE(2999)] = 84065, - [SMALL_STATE(3000)] = 84072, - [SMALL_STATE(3001)] = 84079, - [SMALL_STATE(3002)] = 84086, - [SMALL_STATE(3003)] = 84093, - [SMALL_STATE(3004)] = 84100, - [SMALL_STATE(3005)] = 84107, - [SMALL_STATE(3006)] = 84114, - [SMALL_STATE(3007)] = 84121, - [SMALL_STATE(3008)] = 84128, - [SMALL_STATE(3009)] = 84135, - [SMALL_STATE(3010)] = 84142, - [SMALL_STATE(3011)] = 84149, - [SMALL_STATE(3012)] = 84156, - [SMALL_STATE(3013)] = 84163, - [SMALL_STATE(3014)] = 84170, - [SMALL_STATE(3015)] = 84177, - [SMALL_STATE(3016)] = 84184, - [SMALL_STATE(3017)] = 84191, - [SMALL_STATE(3018)] = 84198, - [SMALL_STATE(3019)] = 84205, - [SMALL_STATE(3020)] = 84212, - [SMALL_STATE(3021)] = 84219, - [SMALL_STATE(3022)] = 84226, - [SMALL_STATE(3023)] = 84233, - [SMALL_STATE(3024)] = 84240, - [SMALL_STATE(3025)] = 84247, - [SMALL_STATE(3026)] = 84254, - [SMALL_STATE(3027)] = 84261, - [SMALL_STATE(3028)] = 84268, - [SMALL_STATE(3029)] = 84275, - [SMALL_STATE(3030)] = 84282, - [SMALL_STATE(3031)] = 84289, - [SMALL_STATE(3032)] = 84296, - [SMALL_STATE(3033)] = 84303, - [SMALL_STATE(3034)] = 84310, - [SMALL_STATE(3035)] = 84317, - [SMALL_STATE(3036)] = 84324, - [SMALL_STATE(3037)] = 84331, - [SMALL_STATE(3038)] = 84338, - [SMALL_STATE(3039)] = 84345, - [SMALL_STATE(3040)] = 84352, - [SMALL_STATE(3041)] = 84359, - [SMALL_STATE(3042)] = 84366, - [SMALL_STATE(3043)] = 84373, - [SMALL_STATE(3044)] = 84380, - [SMALL_STATE(3045)] = 84387, - [SMALL_STATE(3046)] = 84394, - [SMALL_STATE(3047)] = 84401, - [SMALL_STATE(3048)] = 84408, - [SMALL_STATE(3049)] = 84415, - [SMALL_STATE(3050)] = 84422, - [SMALL_STATE(3051)] = 84429, - [SMALL_STATE(3052)] = 84436, - [SMALL_STATE(3053)] = 84443, - [SMALL_STATE(3054)] = 84450, - [SMALL_STATE(3055)] = 84457, - [SMALL_STATE(3056)] = 84464, - [SMALL_STATE(3057)] = 84471, - [SMALL_STATE(3058)] = 84478, - [SMALL_STATE(3059)] = 84485, - [SMALL_STATE(3060)] = 84492, - [SMALL_STATE(3061)] = 84499, - [SMALL_STATE(3062)] = 84506, - [SMALL_STATE(3063)] = 84513, - [SMALL_STATE(3064)] = 84520, - [SMALL_STATE(3065)] = 84527, - [SMALL_STATE(3066)] = 84534, - [SMALL_STATE(3067)] = 84541, - [SMALL_STATE(3068)] = 84548, - [SMALL_STATE(3069)] = 84555, - [SMALL_STATE(3070)] = 84562, - [SMALL_STATE(3071)] = 84569, - [SMALL_STATE(3072)] = 84576, - [SMALL_STATE(3073)] = 84583, - [SMALL_STATE(3074)] = 84590, - [SMALL_STATE(3075)] = 84597, - [SMALL_STATE(3076)] = 84604, - [SMALL_STATE(3077)] = 84611, - [SMALL_STATE(3078)] = 84618, - [SMALL_STATE(3079)] = 84625, - [SMALL_STATE(3080)] = 84632, - [SMALL_STATE(3081)] = 84639, - [SMALL_STATE(3082)] = 84646, - [SMALL_STATE(3083)] = 84653, - [SMALL_STATE(3084)] = 84660, - [SMALL_STATE(3085)] = 84667, - [SMALL_STATE(3086)] = 84674, - [SMALL_STATE(3087)] = 84681, - [SMALL_STATE(3088)] = 84688, - [SMALL_STATE(3089)] = 84695, - [SMALL_STATE(3090)] = 84702, - [SMALL_STATE(3091)] = 84709, - [SMALL_STATE(3092)] = 84716, - [SMALL_STATE(3093)] = 84723, - [SMALL_STATE(3094)] = 84730, - [SMALL_STATE(3095)] = 84737, - [SMALL_STATE(3096)] = 84744, - [SMALL_STATE(3097)] = 84751, - [SMALL_STATE(3098)] = 84758, - [SMALL_STATE(3099)] = 84765, - [SMALL_STATE(3100)] = 84772, - [SMALL_STATE(3101)] = 84779, - [SMALL_STATE(3102)] = 84786, - [SMALL_STATE(3103)] = 84793, - [SMALL_STATE(3104)] = 84800, - [SMALL_STATE(3105)] = 84807, - [SMALL_STATE(3106)] = 84814, - [SMALL_STATE(3107)] = 84821, - [SMALL_STATE(3108)] = 84828, - [SMALL_STATE(3109)] = 84835, - [SMALL_STATE(3110)] = 84842, - [SMALL_STATE(3111)] = 84849, - [SMALL_STATE(3112)] = 84856, - [SMALL_STATE(3113)] = 84863, - [SMALL_STATE(3114)] = 84870, - [SMALL_STATE(3115)] = 84877, - [SMALL_STATE(3116)] = 84884, - [SMALL_STATE(3117)] = 84891, - [SMALL_STATE(3118)] = 84898, - [SMALL_STATE(3119)] = 84905, - [SMALL_STATE(3120)] = 84912, - [SMALL_STATE(3121)] = 84919, - [SMALL_STATE(3122)] = 84926, - [SMALL_STATE(3123)] = 84933, - [SMALL_STATE(3124)] = 84940, - [SMALL_STATE(3125)] = 84947, - [SMALL_STATE(3126)] = 84954, - [SMALL_STATE(3127)] = 84961, - [SMALL_STATE(3128)] = 84968, - [SMALL_STATE(3129)] = 84975, - [SMALL_STATE(3130)] = 84982, - [SMALL_STATE(3131)] = 84989, - [SMALL_STATE(3132)] = 84996, - [SMALL_STATE(3133)] = 85003, - [SMALL_STATE(3134)] = 85010, - [SMALL_STATE(3135)] = 85017, - [SMALL_STATE(3136)] = 85024, - [SMALL_STATE(3137)] = 85031, - [SMALL_STATE(3138)] = 85038, - [SMALL_STATE(3139)] = 85045, - [SMALL_STATE(3140)] = 85052, - [SMALL_STATE(3141)] = 85059, - [SMALL_STATE(3142)] = 85066, - [SMALL_STATE(3143)] = 85073, - [SMALL_STATE(3144)] = 85080, - [SMALL_STATE(3145)] = 85087, - [SMALL_STATE(3146)] = 85094, - [SMALL_STATE(3147)] = 85101, - [SMALL_STATE(3148)] = 85108, - [SMALL_STATE(3149)] = 85115, - [SMALL_STATE(3150)] = 85122, - [SMALL_STATE(3151)] = 85129, - [SMALL_STATE(3152)] = 85136, - [SMALL_STATE(3153)] = 85143, - [SMALL_STATE(3154)] = 85150, - [SMALL_STATE(3155)] = 85157, - [SMALL_STATE(3156)] = 85164, - [SMALL_STATE(3157)] = 85171, - [SMALL_STATE(3158)] = 85178, - [SMALL_STATE(3159)] = 85185, - [SMALL_STATE(3160)] = 85192, - [SMALL_STATE(3161)] = 85199, - [SMALL_STATE(3162)] = 85206, - [SMALL_STATE(3163)] = 85213, - [SMALL_STATE(3164)] = 85220, - [SMALL_STATE(3165)] = 85227, - [SMALL_STATE(3166)] = 85234, - [SMALL_STATE(3167)] = 85241, - [SMALL_STATE(3168)] = 85248, - [SMALL_STATE(3169)] = 85255, - [SMALL_STATE(3170)] = 85262, - [SMALL_STATE(3171)] = 85269, - [SMALL_STATE(3172)] = 85276, - [SMALL_STATE(3173)] = 85283, - [SMALL_STATE(3174)] = 85290, - [SMALL_STATE(3175)] = 85297, - [SMALL_STATE(3176)] = 85304, - [SMALL_STATE(3177)] = 85311, - [SMALL_STATE(3178)] = 85318, - [SMALL_STATE(3179)] = 85325, - [SMALL_STATE(3180)] = 85332, - [SMALL_STATE(3181)] = 85339, - [SMALL_STATE(3182)] = 85346, - [SMALL_STATE(3183)] = 85353, - [SMALL_STATE(3184)] = 85360, - [SMALL_STATE(3185)] = 85367, - [SMALL_STATE(3186)] = 85374, - [SMALL_STATE(3187)] = 85381, - [SMALL_STATE(3188)] = 85388, - [SMALL_STATE(3189)] = 85395, - [SMALL_STATE(3190)] = 85402, - [SMALL_STATE(3191)] = 85409, - [SMALL_STATE(3192)] = 85416, - [SMALL_STATE(3193)] = 85423, - [SMALL_STATE(3194)] = 85430, - [SMALL_STATE(3195)] = 85437, - [SMALL_STATE(3196)] = 85444, - [SMALL_STATE(3197)] = 85451, - [SMALL_STATE(3198)] = 85458, - [SMALL_STATE(3199)] = 85465, - [SMALL_STATE(3200)] = 85472, - [SMALL_STATE(3201)] = 85479, - [SMALL_STATE(3202)] = 85486, - [SMALL_STATE(3203)] = 85493, - [SMALL_STATE(3204)] = 85500, - [SMALL_STATE(3205)] = 85507, - [SMALL_STATE(3206)] = 85514, - [SMALL_STATE(3207)] = 85521, - [SMALL_STATE(3208)] = 85528, - [SMALL_STATE(3209)] = 85535, - [SMALL_STATE(3210)] = 85542, - [SMALL_STATE(3211)] = 85549, - [SMALL_STATE(3212)] = 85556, - [SMALL_STATE(3213)] = 85563, - [SMALL_STATE(3214)] = 85570, - [SMALL_STATE(3215)] = 85577, - [SMALL_STATE(3216)] = 85584, - [SMALL_STATE(3217)] = 85591, - [SMALL_STATE(3218)] = 85598, - [SMALL_STATE(3219)] = 85605, - [SMALL_STATE(3220)] = 85612, - [SMALL_STATE(3221)] = 85619, - [SMALL_STATE(3222)] = 85626, - [SMALL_STATE(3223)] = 85633, - [SMALL_STATE(3224)] = 85640, - [SMALL_STATE(3225)] = 85647, - [SMALL_STATE(3226)] = 85654, - [SMALL_STATE(3227)] = 85661, - [SMALL_STATE(3228)] = 85668, - [SMALL_STATE(3229)] = 85675, - [SMALL_STATE(3230)] = 85682, - [SMALL_STATE(3231)] = 85689, - [SMALL_STATE(3232)] = 85696, - [SMALL_STATE(3233)] = 85703, - [SMALL_STATE(3234)] = 85710, - [SMALL_STATE(3235)] = 85717, - [SMALL_STATE(3236)] = 85724, - [SMALL_STATE(3237)] = 85731, - [SMALL_STATE(3238)] = 85738, - [SMALL_STATE(3239)] = 85745, - [SMALL_STATE(3240)] = 85752, - [SMALL_STATE(3241)] = 85759, - [SMALL_STATE(3242)] = 85766, - [SMALL_STATE(3243)] = 85773, - [SMALL_STATE(3244)] = 85780, + [SMALL_STATE(1325)] = 56220, + [SMALL_STATE(1326)] = 56255, + [SMALL_STATE(1327)] = 56278, + [SMALL_STATE(1328)] = 56313, + [SMALL_STATE(1329)] = 56348, + [SMALL_STATE(1330)] = 56379, + [SMALL_STATE(1331)] = 56414, + [SMALL_STATE(1332)] = 56449, + [SMALL_STATE(1333)] = 56484, + [SMALL_STATE(1334)] = 56507, + [SMALL_STATE(1335)] = 56530, + [SMALL_STATE(1336)] = 56565, + [SMALL_STATE(1337)] = 56600, + [SMALL_STATE(1338)] = 56635, + [SMALL_STATE(1339)] = 56668, + [SMALL_STATE(1340)] = 56703, + [SMALL_STATE(1341)] = 56724, + [SMALL_STATE(1342)] = 56745, + [SMALL_STATE(1343)] = 56778, + [SMALL_STATE(1344)] = 56809, + [SMALL_STATE(1345)] = 56844, + [SMALL_STATE(1346)] = 56879, + [SMALL_STATE(1347)] = 56914, + [SMALL_STATE(1348)] = 56941, + [SMALL_STATE(1349)] = 56980, + [SMALL_STATE(1350)] = 57001, + [SMALL_STATE(1351)] = 57028, + [SMALL_STATE(1352)] = 57055, + [SMALL_STATE(1353)] = 57081, + [SMALL_STATE(1354)] = 57105, + [SMALL_STATE(1355)] = 57141, + [SMALL_STATE(1356)] = 57169, + [SMALL_STATE(1357)] = 57197, + [SMALL_STATE(1358)] = 57219, + [SMALL_STATE(1359)] = 57245, + [SMALL_STATE(1360)] = 57271, + [SMALL_STATE(1361)] = 57293, + [SMALL_STATE(1362)] = 57327, + [SMALL_STATE(1363)] = 57357, + [SMALL_STATE(1364)] = 57383, + [SMALL_STATE(1365)] = 57409, + [SMALL_STATE(1366)] = 57433, + [SMALL_STATE(1367)] = 57469, + [SMALL_STATE(1368)] = 57495, + [SMALL_STATE(1369)] = 57529, + [SMALL_STATE(1370)] = 57563, + [SMALL_STATE(1371)] = 57593, + [SMALL_STATE(1372)] = 57619, + [SMALL_STATE(1373)] = 57641, + [SMALL_STATE(1374)] = 57669, + [SMALL_STATE(1375)] = 57689, + [SMALL_STATE(1376)] = 57717, + [SMALL_STATE(1377)] = 57743, + [SMALL_STATE(1378)] = 57771, + [SMALL_STATE(1379)] = 57793, + [SMALL_STATE(1380)] = 57819, + [SMALL_STATE(1381)] = 57841, + [SMALL_STATE(1382)] = 57877, + [SMALL_STATE(1383)] = 57903, + [SMALL_STATE(1384)] = 57929, + [SMALL_STATE(1385)] = 57967, + [SMALL_STATE(1386)] = 57993, + [SMALL_STATE(1387)] = 58019, + [SMALL_STATE(1388)] = 58045, + [SMALL_STATE(1389)] = 58071, + [SMALL_STATE(1390)] = 58105, + [SMALL_STATE(1391)] = 58139, + [SMALL_STATE(1392)] = 58167, + [SMALL_STATE(1393)] = 58193, + [SMALL_STATE(1394)] = 58215, + [SMALL_STATE(1395)] = 58243, + [SMALL_STATE(1396)] = 58269, + [SMALL_STATE(1397)] = 58295, + [SMALL_STATE(1398)] = 58323, + [SMALL_STATE(1399)] = 58357, + [SMALL_STATE(1400)] = 58385, + [SMALL_STATE(1401)] = 58411, + [SMALL_STATE(1402)] = 58437, + [SMALL_STATE(1403)] = 58473, + [SMALL_STATE(1404)] = 58501, + [SMALL_STATE(1405)] = 58527, + [SMALL_STATE(1406)] = 58553, + [SMALL_STATE(1407)] = 58581, + [SMALL_STATE(1408)] = 58607, + [SMALL_STATE(1409)] = 58633, + [SMALL_STATE(1410)] = 58659, + [SMALL_STATE(1411)] = 58687, + [SMALL_STATE(1412)] = 58715, + [SMALL_STATE(1413)] = 58741, + [SMALL_STATE(1414)] = 58767, + [SMALL_STATE(1415)] = 58797, + [SMALL_STATE(1416)] = 58823, + [SMALL_STATE(1417)] = 58849, + [SMALL_STATE(1418)] = 58875, + [SMALL_STATE(1419)] = 58901, + [SMALL_STATE(1420)] = 58927, + [SMALL_STATE(1421)] = 58963, + [SMALL_STATE(1422)] = 58997, + [SMALL_STATE(1423)] = 59023, + [SMALL_STATE(1424)] = 59045, + [SMALL_STATE(1425)] = 59067, + [SMALL_STATE(1426)] = 59100, + [SMALL_STATE(1427)] = 59121, + [SMALL_STATE(1428)] = 59142, + [SMALL_STATE(1429)] = 59163, + [SMALL_STATE(1430)] = 59182, + [SMALL_STATE(1431)] = 59203, + [SMALL_STATE(1432)] = 59234, + [SMALL_STATE(1433)] = 59265, + [SMALL_STATE(1434)] = 59286, + [SMALL_STATE(1435)] = 59305, + [SMALL_STATE(1436)] = 59340, + [SMALL_STATE(1437)] = 59367, + [SMALL_STATE(1438)] = 59390, + [SMALL_STATE(1439)] = 59421, + [SMALL_STATE(1440)] = 59456, + [SMALL_STATE(1441)] = 59481, + [SMALL_STATE(1442)] = 59506, + [SMALL_STATE(1443)] = 59533, + [SMALL_STATE(1444)] = 59566, + [SMALL_STATE(1445)] = 59593, + [SMALL_STATE(1446)] = 59626, + [SMALL_STATE(1447)] = 59645, + [SMALL_STATE(1448)] = 59670, + [SMALL_STATE(1449)] = 59689, + [SMALL_STATE(1450)] = 59714, + [SMALL_STATE(1451)] = 59733, + [SMALL_STATE(1452)] = 59764, + [SMALL_STATE(1453)] = 59783, + [SMALL_STATE(1454)] = 59808, + [SMALL_STATE(1455)] = 59843, + [SMALL_STATE(1456)] = 59876, + [SMALL_STATE(1457)] = 59909, + [SMALL_STATE(1458)] = 59936, + [SMALL_STATE(1459)] = 59961, + [SMALL_STATE(1460)] = 59988, + [SMALL_STATE(1461)] = 60015, + [SMALL_STATE(1462)] = 60042, + [SMALL_STATE(1463)] = 60063, + [SMALL_STATE(1464)] = 60082, + [SMALL_STATE(1465)] = 60107, + [SMALL_STATE(1466)] = 60132, + [SMALL_STATE(1467)] = 60161, + [SMALL_STATE(1468)] = 60186, + [SMALL_STATE(1469)] = 60209, + [SMALL_STATE(1470)] = 60234, + [SMALL_STATE(1471)] = 60255, + [SMALL_STATE(1472)] = 60276, + [SMALL_STATE(1473)] = 60309, + [SMALL_STATE(1474)] = 60334, + [SMALL_STATE(1475)] = 60359, + [SMALL_STATE(1476)] = 60394, + [SMALL_STATE(1477)] = 60419, + [SMALL_STATE(1478)] = 60446, + [SMALL_STATE(1479)] = 60481, + [SMALL_STATE(1480)] = 60514, + [SMALL_STATE(1481)] = 60549, + [SMALL_STATE(1482)] = 60570, + [SMALL_STATE(1483)] = 60597, + [SMALL_STATE(1484)] = 60624, + [SMALL_STATE(1485)] = 60651, + [SMALL_STATE(1486)] = 60678, + [SMALL_STATE(1487)] = 60711, + [SMALL_STATE(1488)] = 60738, + [SMALL_STATE(1489)] = 60765, + [SMALL_STATE(1490)] = 60798, + [SMALL_STATE(1491)] = 60831, + [SMALL_STATE(1492)] = 60864, + [SMALL_STATE(1493)] = 60891, + [SMALL_STATE(1494)] = 60911, + [SMALL_STATE(1495)] = 60937, + [SMALL_STATE(1496)] = 60963, + [SMALL_STATE(1497)] = 60989, + [SMALL_STATE(1498)] = 61015, + [SMALL_STATE(1499)] = 61049, + [SMALL_STATE(1500)] = 61081, + [SMALL_STATE(1501)] = 61101, + [SMALL_STATE(1502)] = 61121, + [SMALL_STATE(1503)] = 61151, + [SMALL_STATE(1504)] = 61171, + [SMALL_STATE(1505)] = 61195, + [SMALL_STATE(1506)] = 61219, + [SMALL_STATE(1507)] = 61245, + [SMALL_STATE(1508)] = 61277, + [SMALL_STATE(1509)] = 61297, + [SMALL_STATE(1510)] = 61329, + [SMALL_STATE(1511)] = 61355, + [SMALL_STATE(1512)] = 61375, + [SMALL_STATE(1513)] = 61395, + [SMALL_STATE(1514)] = 61421, + [SMALL_STATE(1515)] = 61447, + [SMALL_STATE(1516)] = 61467, + [SMALL_STATE(1517)] = 61491, + [SMALL_STATE(1518)] = 61511, + [SMALL_STATE(1519)] = 61531, + [SMALL_STATE(1520)] = 61551, + [SMALL_STATE(1521)] = 61583, + [SMALL_STATE(1522)] = 61615, + [SMALL_STATE(1523)] = 61637, + [SMALL_STATE(1524)] = 61669, + [SMALL_STATE(1525)] = 61695, + [SMALL_STATE(1526)] = 61729, + [SMALL_STATE(1527)] = 61751, + [SMALL_STATE(1528)] = 61775, + [SMALL_STATE(1529)] = 61799, + [SMALL_STATE(1530)] = 61825, + [SMALL_STATE(1531)] = 61851, + [SMALL_STATE(1532)] = 61871, + [SMALL_STATE(1533)] = 61891, + [SMALL_STATE(1534)] = 61917, + [SMALL_STATE(1535)] = 61951, + [SMALL_STATE(1536)] = 61971, + [SMALL_STATE(1537)] = 61991, + [SMALL_STATE(1538)] = 62011, + [SMALL_STATE(1539)] = 62031, + [SMALL_STATE(1540)] = 62063, + [SMALL_STATE(1541)] = 62089, + [SMALL_STATE(1542)] = 62115, + [SMALL_STATE(1543)] = 62147, + [SMALL_STATE(1544)] = 62173, + [SMALL_STATE(1545)] = 62193, + [SMALL_STATE(1546)] = 62215, + [SMALL_STATE(1547)] = 62241, + [SMALL_STATE(1548)] = 62261, + [SMALL_STATE(1549)] = 62281, + [SMALL_STATE(1550)] = 62313, + [SMALL_STATE(1551)] = 62339, + [SMALL_STATE(1552)] = 62371, + [SMALL_STATE(1553)] = 62403, + [SMALL_STATE(1554)] = 62435, + [SMALL_STATE(1555)] = 62455, + [SMALL_STATE(1556)] = 62481, + [SMALL_STATE(1557)] = 62501, + [SMALL_STATE(1558)] = 62535, + [SMALL_STATE(1559)] = 62569, + [SMALL_STATE(1560)] = 62589, + [SMALL_STATE(1561)] = 62609, + [SMALL_STATE(1562)] = 62629, + [SMALL_STATE(1563)] = 62649, + [SMALL_STATE(1564)] = 62669, + [SMALL_STATE(1565)] = 62709, + [SMALL_STATE(1566)] = 62741, + [SMALL_STATE(1567)] = 62775, + [SMALL_STATE(1568)] = 62807, + [SMALL_STATE(1569)] = 62827, + [SMALL_STATE(1570)] = 62853, + [SMALL_STATE(1571)] = 62883, + [SMALL_STATE(1572)] = 62915, + [SMALL_STATE(1573)] = 62941, + [SMALL_STATE(1574)] = 62973, + [SMALL_STATE(1575)] = 62993, + [SMALL_STATE(1576)] = 63025, + [SMALL_STATE(1577)] = 63057, + [SMALL_STATE(1578)] = 63089, + [SMALL_STATE(1579)] = 63119, + [SMALL_STATE(1580)] = 63153, + [SMALL_STATE(1581)] = 63185, + [SMALL_STATE(1582)] = 63217, + [SMALL_STATE(1583)] = 63249, + [SMALL_STATE(1584)] = 63271, + [SMALL_STATE(1585)] = 63303, + [SMALL_STATE(1586)] = 63335, + [SMALL_STATE(1587)] = 63367, + [SMALL_STATE(1588)] = 63399, + [SMALL_STATE(1589)] = 63431, + [SMALL_STATE(1590)] = 63463, + [SMALL_STATE(1591)] = 63489, + [SMALL_STATE(1592)] = 63515, + [SMALL_STATE(1593)] = 63541, + [SMALL_STATE(1594)] = 63567, + [SMALL_STATE(1595)] = 63599, + [SMALL_STATE(1596)] = 63631, + [SMALL_STATE(1597)] = 63663, + [SMALL_STATE(1598)] = 63695, + [SMALL_STATE(1599)] = 63721, + [SMALL_STATE(1600)] = 63747, + [SMALL_STATE(1601)] = 63779, + [SMALL_STATE(1602)] = 63805, + [SMALL_STATE(1603)] = 63827, + [SMALL_STATE(1604)] = 63853, + [SMALL_STATE(1605)] = 63879, + [SMALL_STATE(1606)] = 63911, + [SMALL_STATE(1607)] = 63937, + [SMALL_STATE(1608)] = 63957, + [SMALL_STATE(1609)] = 63977, + [SMALL_STATE(1610)] = 63997, + [SMALL_STATE(1611)] = 64029, + [SMALL_STATE(1612)] = 64061, + [SMALL_STATE(1613)] = 64087, + [SMALL_STATE(1614)] = 64119, + [SMALL_STATE(1615)] = 64151, + [SMALL_STATE(1616)] = 64177, + [SMALL_STATE(1617)] = 64209, + [SMALL_STATE(1618)] = 64241, + [SMALL_STATE(1619)] = 64281, + [SMALL_STATE(1620)] = 64321, + [SMALL_STATE(1621)] = 64341, + [SMALL_STATE(1622)] = 64371, + [SMALL_STATE(1623)] = 64405, + [SMALL_STATE(1624)] = 64431, + [SMALL_STATE(1625)] = 64465, + [SMALL_STATE(1626)] = 64491, + [SMALL_STATE(1627)] = 64523, + [SMALL_STATE(1628)] = 64543, + [SMALL_STATE(1629)] = 64569, + [SMALL_STATE(1630)] = 64595, + [SMALL_STATE(1631)] = 64615, + [SMALL_STATE(1632)] = 64635, + [SMALL_STATE(1633)] = 64654, + [SMALL_STATE(1634)] = 64677, + [SMALL_STATE(1635)] = 64698, + [SMALL_STATE(1636)] = 64727, + [SMALL_STATE(1637)] = 64756, + [SMALL_STATE(1638)] = 64777, + [SMALL_STATE(1639)] = 64796, + [SMALL_STATE(1640)] = 64821, + [SMALL_STATE(1641)] = 64850, + [SMALL_STATE(1642)] = 64881, + [SMALL_STATE(1643)] = 64910, + [SMALL_STATE(1644)] = 64939, + [SMALL_STATE(1645)] = 64962, + [SMALL_STATE(1646)] = 64987, + [SMALL_STATE(1647)] = 65008, + [SMALL_STATE(1648)] = 65031, + [SMALL_STATE(1649)] = 65054, + [SMALL_STATE(1650)] = 65073, + [SMALL_STATE(1651)] = 65098, + [SMALL_STATE(1652)] = 65119, + [SMALL_STATE(1653)] = 65140, + [SMALL_STATE(1654)] = 65165, + [SMALL_STATE(1655)] = 65194, + [SMALL_STATE(1656)] = 65215, + [SMALL_STATE(1657)] = 65244, + [SMALL_STATE(1658)] = 65263, + [SMALL_STATE(1659)] = 65292, + [SMALL_STATE(1660)] = 65317, + [SMALL_STATE(1661)] = 65346, + [SMALL_STATE(1662)] = 65367, + [SMALL_STATE(1663)] = 65390, + [SMALL_STATE(1664)] = 65417, + [SMALL_STATE(1665)] = 65446, + [SMALL_STATE(1666)] = 65475, + [SMALL_STATE(1667)] = 65498, + [SMALL_STATE(1668)] = 65527, + [SMALL_STATE(1669)] = 65556, + [SMALL_STATE(1670)] = 65579, + [SMALL_STATE(1671)] = 65598, + [SMALL_STATE(1672)] = 65627, + [SMALL_STATE(1673)] = 65654, + [SMALL_STATE(1674)] = 65673, + [SMALL_STATE(1675)] = 65694, + [SMALL_STATE(1676)] = 65723, + [SMALL_STATE(1677)] = 65752, + [SMALL_STATE(1678)] = 65781, + [SMALL_STATE(1679)] = 65802, + [SMALL_STATE(1680)] = 65829, + [SMALL_STATE(1681)] = 65858, + [SMALL_STATE(1682)] = 65877, + [SMALL_STATE(1683)] = 65894, + [SMALL_STATE(1684)] = 65921, + [SMALL_STATE(1685)] = 65938, + [SMALL_STATE(1686)] = 65961, + [SMALL_STATE(1687)] = 65984, + [SMALL_STATE(1688)] = 66003, + [SMALL_STATE(1689)] = 66026, + [SMALL_STATE(1690)] = 66053, + [SMALL_STATE(1691)] = 66072, + [SMALL_STATE(1692)] = 66093, + [SMALL_STATE(1693)] = 66116, + [SMALL_STATE(1694)] = 66145, + [SMALL_STATE(1695)] = 66172, + [SMALL_STATE(1696)] = 66193, + [SMALL_STATE(1697)] = 66222, + [SMALL_STATE(1698)] = 66241, + [SMALL_STATE(1699)] = 66270, + [SMALL_STATE(1700)] = 66291, + [SMALL_STATE(1701)] = 66314, + [SMALL_STATE(1702)] = 66331, + [SMALL_STATE(1703)] = 66352, + [SMALL_STATE(1704)] = 66381, + [SMALL_STATE(1705)] = 66403, + [SMALL_STATE(1706)] = 66421, + [SMALL_STATE(1707)] = 66445, + [SMALL_STATE(1708)] = 66465, + [SMALL_STATE(1709)] = 66491, + [SMALL_STATE(1710)] = 66511, + [SMALL_STATE(1711)] = 66537, + [SMALL_STATE(1712)] = 66559, + [SMALL_STATE(1713)] = 66585, + [SMALL_STATE(1714)] = 66607, + [SMALL_STATE(1715)] = 66625, + [SMALL_STATE(1716)] = 66643, + [SMALL_STATE(1717)] = 66665, + [SMALL_STATE(1718)] = 66689, + [SMALL_STATE(1719)] = 66709, + [SMALL_STATE(1720)] = 66729, + [SMALL_STATE(1721)] = 66751, + [SMALL_STATE(1722)] = 66771, + [SMALL_STATE(1723)] = 66791, + [SMALL_STATE(1724)] = 66817, + [SMALL_STATE(1725)] = 66835, + [SMALL_STATE(1726)] = 66863, + [SMALL_STATE(1727)] = 66889, + [SMALL_STATE(1728)] = 66909, + [SMALL_STATE(1729)] = 66937, + [SMALL_STATE(1730)] = 66955, + [SMALL_STATE(1731)] = 66983, + [SMALL_STATE(1732)] = 67009, + [SMALL_STATE(1733)] = 67037, + [SMALL_STATE(1734)] = 67065, + [SMALL_STATE(1735)] = 67083, + [SMALL_STATE(1736)] = 67105, + [SMALL_STATE(1737)] = 67131, + [SMALL_STATE(1738)] = 67151, + [SMALL_STATE(1739)] = 67177, + [SMALL_STATE(1740)] = 67203, + [SMALL_STATE(1741)] = 67219, + [SMALL_STATE(1742)] = 67245, + [SMALL_STATE(1743)] = 67263, + [SMALL_STATE(1744)] = 67281, + [SMALL_STATE(1745)] = 67299, + [SMALL_STATE(1746)] = 67317, + [SMALL_STATE(1747)] = 67335, + [SMALL_STATE(1748)] = 67355, + [SMALL_STATE(1749)] = 67381, + [SMALL_STATE(1750)] = 67399, + [SMALL_STATE(1751)] = 67427, + [SMALL_STATE(1752)] = 67445, + [SMALL_STATE(1753)] = 67471, + [SMALL_STATE(1754)] = 67497, + [SMALL_STATE(1755)] = 67523, + [SMALL_STATE(1756)] = 67541, + [SMALL_STATE(1757)] = 67559, + [SMALL_STATE(1758)] = 67579, + [SMALL_STATE(1759)] = 67597, + [SMALL_STATE(1760)] = 67625, + [SMALL_STATE(1761)] = 67643, + [SMALL_STATE(1762)] = 67661, + [SMALL_STATE(1763)] = 67683, + [SMALL_STATE(1764)] = 67705, + [SMALL_STATE(1765)] = 67727, + [SMALL_STATE(1766)] = 67751, + [SMALL_STATE(1767)] = 67771, + [SMALL_STATE(1768)] = 67793, + [SMALL_STATE(1769)] = 67815, + [SMALL_STATE(1770)] = 67837, + [SMALL_STATE(1771)] = 67855, + [SMALL_STATE(1772)] = 67883, + [SMALL_STATE(1773)] = 67909, + [SMALL_STATE(1774)] = 67935, + [SMALL_STATE(1775)] = 67951, + [SMALL_STATE(1776)] = 67969, + [SMALL_STATE(1777)] = 67987, + [SMALL_STATE(1778)] = 68005, + [SMALL_STATE(1779)] = 68025, + [SMALL_STATE(1780)] = 68051, + [SMALL_STATE(1781)] = 68069, + [SMALL_STATE(1782)] = 68089, + [SMALL_STATE(1783)] = 68115, + [SMALL_STATE(1784)] = 68141, + [SMALL_STATE(1785)] = 68157, + [SMALL_STATE(1786)] = 68175, + [SMALL_STATE(1787)] = 68201, + [SMALL_STATE(1788)] = 68219, + [SMALL_STATE(1789)] = 68237, + [SMALL_STATE(1790)] = 68255, + [SMALL_STATE(1791)] = 68273, + [SMALL_STATE(1792)] = 68301, + [SMALL_STATE(1793)] = 68329, + [SMALL_STATE(1794)] = 68355, + [SMALL_STATE(1795)] = 68381, + [SMALL_STATE(1796)] = 68407, + [SMALL_STATE(1797)] = 68424, + [SMALL_STATE(1798)] = 68441, + [SMALL_STATE(1799)] = 68464, + [SMALL_STATE(1800)] = 68483, + [SMALL_STATE(1801)] = 68502, + [SMALL_STATE(1802)] = 68527, + [SMALL_STATE(1803)] = 68546, + [SMALL_STATE(1804)] = 68565, + [SMALL_STATE(1805)] = 68582, + [SMALL_STATE(1806)] = 68599, + [SMALL_STATE(1807)] = 68628, + [SMALL_STATE(1808)] = 68653, + [SMALL_STATE(1809)] = 68678, + [SMALL_STATE(1810)] = 68703, + [SMALL_STATE(1811)] = 68728, + [SMALL_STATE(1812)] = 68753, + [SMALL_STATE(1813)] = 68778, + [SMALL_STATE(1814)] = 68795, + [SMALL_STATE(1815)] = 68812, + [SMALL_STATE(1816)] = 68837, + [SMALL_STATE(1817)] = 68856, + [SMALL_STATE(1818)] = 68881, + [SMALL_STATE(1819)] = 68896, + [SMALL_STATE(1820)] = 68911, + [SMALL_STATE(1821)] = 68930, + [SMALL_STATE(1822)] = 68951, + [SMALL_STATE(1823)] = 68976, + [SMALL_STATE(1824)] = 68993, + [SMALL_STATE(1825)] = 69010, + [SMALL_STATE(1826)] = 69035, + [SMALL_STATE(1827)] = 69052, + [SMALL_STATE(1828)] = 69077, + [SMALL_STATE(1829)] = 69102, + [SMALL_STATE(1830)] = 69121, + [SMALL_STATE(1831)] = 69138, + [SMALL_STATE(1832)] = 69157, + [SMALL_STATE(1833)] = 69176, + [SMALL_STATE(1834)] = 69201, + [SMALL_STATE(1835)] = 69220, + [SMALL_STATE(1836)] = 69245, + [SMALL_STATE(1837)] = 69270, + [SMALL_STATE(1838)] = 69297, + [SMALL_STATE(1839)] = 69314, + [SMALL_STATE(1840)] = 69333, + [SMALL_STATE(1841)] = 69352, + [SMALL_STATE(1842)] = 69377, + [SMALL_STATE(1843)] = 69402, + [SMALL_STATE(1844)] = 69419, + [SMALL_STATE(1845)] = 69438, + [SMALL_STATE(1846)] = 69455, + [SMALL_STATE(1847)] = 69474, + [SMALL_STATE(1848)] = 69491, + [SMALL_STATE(1849)] = 69520, + [SMALL_STATE(1850)] = 69547, + [SMALL_STATE(1851)] = 69572, + [SMALL_STATE(1852)] = 69592, + [SMALL_STATE(1853)] = 69608, + [SMALL_STATE(1854)] = 69626, + [SMALL_STATE(1855)] = 69640, + [SMALL_STATE(1856)] = 69660, + [SMALL_STATE(1857)] = 69684, + [SMALL_STATE(1858)] = 69708, + [SMALL_STATE(1859)] = 69732, + [SMALL_STATE(1860)] = 69746, + [SMALL_STATE(1861)] = 69768, + [SMALL_STATE(1862)] = 69786, + [SMALL_STATE(1863)] = 69800, + [SMALL_STATE(1864)] = 69824, + [SMALL_STATE(1865)] = 69844, + [SMALL_STATE(1866)] = 69864, + [SMALL_STATE(1867)] = 69878, + [SMALL_STATE(1868)] = 69906, + [SMALL_STATE(1869)] = 69920, + [SMALL_STATE(1870)] = 69934, + [SMALL_STATE(1871)] = 69948, + [SMALL_STATE(1872)] = 69970, + [SMALL_STATE(1873)] = 69984, + [SMALL_STATE(1874)] = 70000, + [SMALL_STATE(1875)] = 70014, + [SMALL_STATE(1876)] = 70028, + [SMALL_STATE(1877)] = 70052, + [SMALL_STATE(1878)] = 70072, + [SMALL_STATE(1879)] = 70094, + [SMALL_STATE(1880)] = 70118, + [SMALL_STATE(1881)] = 70136, + [SMALL_STATE(1882)] = 70154, + [SMALL_STATE(1883)] = 70174, + [SMALL_STATE(1884)] = 70194, + [SMALL_STATE(1885)] = 70210, + [SMALL_STATE(1886)] = 70236, + [SMALL_STATE(1887)] = 70252, + [SMALL_STATE(1888)] = 70266, + [SMALL_STATE(1889)] = 70292, + [SMALL_STATE(1890)] = 70308, + [SMALL_STATE(1891)] = 70330, + [SMALL_STATE(1892)] = 70344, + [SMALL_STATE(1893)] = 70358, + [SMALL_STATE(1894)] = 70372, + [SMALL_STATE(1895)] = 70392, + [SMALL_STATE(1896)] = 70406, + [SMALL_STATE(1897)] = 70424, + [SMALL_STATE(1898)] = 70444, + [SMALL_STATE(1899)] = 70462, + [SMALL_STATE(1900)] = 70476, + [SMALL_STATE(1901)] = 70498, + [SMALL_STATE(1902)] = 70518, + [SMALL_STATE(1903)] = 70542, + [SMALL_STATE(1904)] = 70562, + [SMALL_STATE(1905)] = 70578, + [SMALL_STATE(1906)] = 70594, + [SMALL_STATE(1907)] = 70616, + [SMALL_STATE(1908)] = 70644, + [SMALL_STATE(1909)] = 70668, + [SMALL_STATE(1910)] = 70690, + [SMALL_STATE(1911)] = 70712, + [SMALL_STATE(1912)] = 70732, + [SMALL_STATE(1913)] = 70752, + [SMALL_STATE(1914)] = 70768, + [SMALL_STATE(1915)] = 70790, + [SMALL_STATE(1916)] = 70806, + [SMALL_STATE(1917)] = 70830, + [SMALL_STATE(1918)] = 70846, + [SMALL_STATE(1919)] = 70866, + [SMALL_STATE(1920)] = 70890, + [SMALL_STATE(1921)] = 70914, + [SMALL_STATE(1922)] = 70940, + [SMALL_STATE(1923)] = 70964, + [SMALL_STATE(1924)] = 70984, + [SMALL_STATE(1925)] = 71008, + [SMALL_STATE(1926)] = 71028, + [SMALL_STATE(1927)] = 71048, + [SMALL_STATE(1928)] = 71064, + [SMALL_STATE(1929)] = 71080, + [SMALL_STATE(1930)] = 71104, + [SMALL_STATE(1931)] = 71120, + [SMALL_STATE(1932)] = 71136, + [SMALL_STATE(1933)] = 71152, + [SMALL_STATE(1934)] = 71168, + [SMALL_STATE(1935)] = 71188, + [SMALL_STATE(1936)] = 71208, + [SMALL_STATE(1937)] = 71236, + [SMALL_STATE(1938)] = 71256, + [SMALL_STATE(1939)] = 71272, + [SMALL_STATE(1940)] = 71292, + [SMALL_STATE(1941)] = 71308, + [SMALL_STATE(1942)] = 71322, + [SMALL_STATE(1943)] = 71346, + [SMALL_STATE(1944)] = 71366, + [SMALL_STATE(1945)] = 71388, + [SMALL_STATE(1946)] = 71412, + [SMALL_STATE(1947)] = 71428, + [SMALL_STATE(1948)] = 71448, + [SMALL_STATE(1949)] = 71476, + [SMALL_STATE(1950)] = 71498, + [SMALL_STATE(1951)] = 71518, + [SMALL_STATE(1952)] = 71544, + [SMALL_STATE(1953)] = 71564, + [SMALL_STATE(1954)] = 71584, + [SMALL_STATE(1955)] = 71604, + [SMALL_STATE(1956)] = 71620, + [SMALL_STATE(1957)] = 71642, + [SMALL_STATE(1958)] = 71670, + [SMALL_STATE(1959)] = 71686, + [SMALL_STATE(1960)] = 71700, + [SMALL_STATE(1961)] = 71714, + [SMALL_STATE(1962)] = 71730, + [SMALL_STATE(1963)] = 71746, + [SMALL_STATE(1964)] = 71768, + [SMALL_STATE(1965)] = 71784, + [SMALL_STATE(1966)] = 71800, + [SMALL_STATE(1967)] = 71814, + [SMALL_STATE(1968)] = 71835, + [SMALL_STATE(1969)] = 71858, + [SMALL_STATE(1970)] = 71881, + [SMALL_STATE(1971)] = 71904, + [SMALL_STATE(1972)] = 71927, + [SMALL_STATE(1973)] = 71950, + [SMALL_STATE(1974)] = 71971, + [SMALL_STATE(1975)] = 71992, + [SMALL_STATE(1976)] = 72015, + [SMALL_STATE(1977)] = 72040, + [SMALL_STATE(1978)] = 72063, + [SMALL_STATE(1979)] = 72088, + [SMALL_STATE(1980)] = 72107, + [SMALL_STATE(1981)] = 72128, + [SMALL_STATE(1982)] = 72149, + [SMALL_STATE(1983)] = 72170, + [SMALL_STATE(1984)] = 72193, + [SMALL_STATE(1985)] = 72216, + [SMALL_STATE(1986)] = 72239, + [SMALL_STATE(1987)] = 72260, + [SMALL_STATE(1988)] = 72283, + [SMALL_STATE(1989)] = 72306, + [SMALL_STATE(1990)] = 72325, + [SMALL_STATE(1991)] = 72344, + [SMALL_STATE(1992)] = 72365, + [SMALL_STATE(1993)] = 72388, + [SMALL_STATE(1994)] = 72411, + [SMALL_STATE(1995)] = 72432, + [SMALL_STATE(1996)] = 72455, + [SMALL_STATE(1997)] = 72478, + [SMALL_STATE(1998)] = 72497, + [SMALL_STATE(1999)] = 72518, + [SMALL_STATE(2000)] = 72539, + [SMALL_STATE(2001)] = 72560, + [SMALL_STATE(2002)] = 72581, + [SMALL_STATE(2003)] = 72604, + [SMALL_STATE(2004)] = 72627, + [SMALL_STATE(2005)] = 72648, + [SMALL_STATE(2006)] = 72671, + [SMALL_STATE(2007)] = 72694, + [SMALL_STATE(2008)] = 72717, + [SMALL_STATE(2009)] = 72738, + [SMALL_STATE(2010)] = 72761, + [SMALL_STATE(2011)] = 72786, + [SMALL_STATE(2012)] = 72811, + [SMALL_STATE(2013)] = 72832, + [SMALL_STATE(2014)] = 72855, + [SMALL_STATE(2015)] = 72876, + [SMALL_STATE(2016)] = 72891, + [SMALL_STATE(2017)] = 72914, + [SMALL_STATE(2018)] = 72937, + [SMALL_STATE(2019)] = 72960, + [SMALL_STATE(2020)] = 72983, + [SMALL_STATE(2021)] = 73004, + [SMALL_STATE(2022)] = 73025, + [SMALL_STATE(2023)] = 73046, + [SMALL_STATE(2024)] = 73071, + [SMALL_STATE(2025)] = 73094, + [SMALL_STATE(2026)] = 73117, + [SMALL_STATE(2027)] = 73134, + [SMALL_STATE(2028)] = 73153, + [SMALL_STATE(2029)] = 73176, + [SMALL_STATE(2030)] = 73191, + [SMALL_STATE(2031)] = 73212, + [SMALL_STATE(2032)] = 73233, + [SMALL_STATE(2033)] = 73250, + [SMALL_STATE(2034)] = 73273, + [SMALL_STATE(2035)] = 73296, + [SMALL_STATE(2036)] = 73317, + [SMALL_STATE(2037)] = 73336, + [SMALL_STATE(2038)] = 73359, + [SMALL_STATE(2039)] = 73382, + [SMALL_STATE(2040)] = 73403, + [SMALL_STATE(2041)] = 73426, + [SMALL_STATE(2042)] = 73447, + [SMALL_STATE(2043)] = 73470, + [SMALL_STATE(2044)] = 73491, + [SMALL_STATE(2045)] = 73512, + [SMALL_STATE(2046)] = 73533, + [SMALL_STATE(2047)] = 73556, + [SMALL_STATE(2048)] = 73579, + [SMALL_STATE(2049)] = 73600, + [SMALL_STATE(2050)] = 73623, + [SMALL_STATE(2051)] = 73646, + [SMALL_STATE(2052)] = 73669, + [SMALL_STATE(2053)] = 73688, + [SMALL_STATE(2054)] = 73709, + [SMALL_STATE(2055)] = 73730, + [SMALL_STATE(2056)] = 73749, + [SMALL_STATE(2057)] = 73772, + [SMALL_STATE(2058)] = 73795, + [SMALL_STATE(2059)] = 73816, + [SMALL_STATE(2060)] = 73837, + [SMALL_STATE(2061)] = 73852, + [SMALL_STATE(2062)] = 73871, + [SMALL_STATE(2063)] = 73892, + [SMALL_STATE(2064)] = 73911, + [SMALL_STATE(2065)] = 73930, + [SMALL_STATE(2066)] = 73953, + [SMALL_STATE(2067)] = 73970, + [SMALL_STATE(2068)] = 73982, + [SMALL_STATE(2069)] = 73994, + [SMALL_STATE(2070)] = 74014, + [SMALL_STATE(2071)] = 74034, + [SMALL_STATE(2072)] = 74052, + [SMALL_STATE(2073)] = 74070, + [SMALL_STATE(2074)] = 74082, + [SMALL_STATE(2075)] = 74098, + [SMALL_STATE(2076)] = 74110, + [SMALL_STATE(2077)] = 74128, + [SMALL_STATE(2078)] = 74150, + [SMALL_STATE(2079)] = 74172, + [SMALL_STATE(2080)] = 74192, + [SMALL_STATE(2081)] = 74214, + [SMALL_STATE(2082)] = 74236, + [SMALL_STATE(2083)] = 74250, + [SMALL_STATE(2084)] = 74266, + [SMALL_STATE(2085)] = 74284, + [SMALL_STATE(2086)] = 74302, + [SMALL_STATE(2087)] = 74314, + [SMALL_STATE(2088)] = 74334, + [SMALL_STATE(2089)] = 74350, + [SMALL_STATE(2090)] = 74368, + [SMALL_STATE(2091)] = 74388, + [SMALL_STATE(2092)] = 74408, + [SMALL_STATE(2093)] = 74428, + [SMALL_STATE(2094)] = 74448, + [SMALL_STATE(2095)] = 74460, + [SMALL_STATE(2096)] = 74480, + [SMALL_STATE(2097)] = 74502, + [SMALL_STATE(2098)] = 74520, + [SMALL_STATE(2099)] = 74542, + [SMALL_STATE(2100)] = 74564, + [SMALL_STATE(2101)] = 74586, + [SMALL_STATE(2102)] = 74604, + [SMALL_STATE(2103)] = 74626, + [SMALL_STATE(2104)] = 74638, + [SMALL_STATE(2105)] = 74654, + [SMALL_STATE(2106)] = 74676, + [SMALL_STATE(2107)] = 74698, + [SMALL_STATE(2108)] = 74720, + [SMALL_STATE(2109)] = 74732, + [SMALL_STATE(2110)] = 74746, + [SMALL_STATE(2111)] = 74768, + [SMALL_STATE(2112)] = 74786, + [SMALL_STATE(2113)] = 74806, + [SMALL_STATE(2114)] = 74818, + [SMALL_STATE(2115)] = 74830, + [SMALL_STATE(2116)] = 74850, + [SMALL_STATE(2117)] = 74870, + [SMALL_STATE(2118)] = 74886, + [SMALL_STATE(2119)] = 74906, + [SMALL_STATE(2120)] = 74924, + [SMALL_STATE(2121)] = 74936, + [SMALL_STATE(2122)] = 74948, + [SMALL_STATE(2123)] = 74966, + [SMALL_STATE(2124)] = 74988, + [SMALL_STATE(2125)] = 75010, + [SMALL_STATE(2126)] = 75032, + [SMALL_STATE(2127)] = 75054, + [SMALL_STATE(2128)] = 75076, + [SMALL_STATE(2129)] = 75088, + [SMALL_STATE(2130)] = 75108, + [SMALL_STATE(2131)] = 75128, + [SMALL_STATE(2132)] = 75140, + [SMALL_STATE(2133)] = 75162, + [SMALL_STATE(2134)] = 75184, + [SMALL_STATE(2135)] = 75206, + [SMALL_STATE(2136)] = 75226, + [SMALL_STATE(2137)] = 75246, + [SMALL_STATE(2138)] = 75264, + [SMALL_STATE(2139)] = 75286, + [SMALL_STATE(2140)] = 75304, + [SMALL_STATE(2141)] = 75322, + [SMALL_STATE(2142)] = 75340, + [SMALL_STATE(2143)] = 75358, + [SMALL_STATE(2144)] = 75376, + [SMALL_STATE(2145)] = 75394, + [SMALL_STATE(2146)] = 75416, + [SMALL_STATE(2147)] = 75434, + [SMALL_STATE(2148)] = 75452, + [SMALL_STATE(2149)] = 75472, + [SMALL_STATE(2150)] = 75490, + [SMALL_STATE(2151)] = 75510, + [SMALL_STATE(2152)] = 75528, + [SMALL_STATE(2153)] = 75542, + [SMALL_STATE(2154)] = 75562, + [SMALL_STATE(2155)] = 75580, + [SMALL_STATE(2156)] = 75600, + [SMALL_STATE(2157)] = 75618, + [SMALL_STATE(2158)] = 75640, + [SMALL_STATE(2159)] = 75660, + [SMALL_STATE(2160)] = 75678, + [SMALL_STATE(2161)] = 75696, + [SMALL_STATE(2162)] = 75714, + [SMALL_STATE(2163)] = 75736, + [SMALL_STATE(2164)] = 75754, + [SMALL_STATE(2165)] = 75772, + [SMALL_STATE(2166)] = 75790, + [SMALL_STATE(2167)] = 75802, + [SMALL_STATE(2168)] = 75818, + [SMALL_STATE(2169)] = 75838, + [SMALL_STATE(2170)] = 75856, + [SMALL_STATE(2171)] = 75876, + [SMALL_STATE(2172)] = 75896, + [SMALL_STATE(2173)] = 75916, + [SMALL_STATE(2174)] = 75934, + [SMALL_STATE(2175)] = 75952, + [SMALL_STATE(2176)] = 75970, + [SMALL_STATE(2177)] = 75988, + [SMALL_STATE(2178)] = 75999, + [SMALL_STATE(2179)] = 76010, + [SMALL_STATE(2180)] = 76023, + [SMALL_STATE(2181)] = 76040, + [SMALL_STATE(2182)] = 76051, + [SMALL_STATE(2183)] = 76064, + [SMALL_STATE(2184)] = 76077, + [SMALL_STATE(2185)] = 76090, + [SMALL_STATE(2186)] = 76103, + [SMALL_STATE(2187)] = 76114, + [SMALL_STATE(2188)] = 76133, + [SMALL_STATE(2189)] = 76144, + [SMALL_STATE(2190)] = 76161, + [SMALL_STATE(2191)] = 76172, + [SMALL_STATE(2192)] = 76191, + [SMALL_STATE(2193)] = 76204, + [SMALL_STATE(2194)] = 76221, + [SMALL_STATE(2195)] = 76238, + [SMALL_STATE(2196)] = 76255, + [SMALL_STATE(2197)] = 76272, + [SMALL_STATE(2198)] = 76289, + [SMALL_STATE(2199)] = 76306, + [SMALL_STATE(2200)] = 76323, + [SMALL_STATE(2201)] = 76340, + [SMALL_STATE(2202)] = 76357, + [SMALL_STATE(2203)] = 76376, + [SMALL_STATE(2204)] = 76391, + [SMALL_STATE(2205)] = 76404, + [SMALL_STATE(2206)] = 76415, + [SMALL_STATE(2207)] = 76426, + [SMALL_STATE(2208)] = 76443, + [SMALL_STATE(2209)] = 76460, + [SMALL_STATE(2210)] = 76477, + [SMALL_STATE(2211)] = 76494, + [SMALL_STATE(2212)] = 76509, + [SMALL_STATE(2213)] = 76526, + [SMALL_STATE(2214)] = 76543, + [SMALL_STATE(2215)] = 76560, + [SMALL_STATE(2216)] = 76577, + [SMALL_STATE(2217)] = 76594, + [SMALL_STATE(2218)] = 76611, + [SMALL_STATE(2219)] = 76626, + [SMALL_STATE(2220)] = 76637, + [SMALL_STATE(2221)] = 76654, + [SMALL_STATE(2222)] = 76671, + [SMALL_STATE(2223)] = 76686, + [SMALL_STATE(2224)] = 76699, + [SMALL_STATE(2225)] = 76716, + [SMALL_STATE(2226)] = 76733, + [SMALL_STATE(2227)] = 76750, + [SMALL_STATE(2228)] = 76765, + [SMALL_STATE(2229)] = 76782, + [SMALL_STATE(2230)] = 76793, + [SMALL_STATE(2231)] = 76810, + [SMALL_STATE(2232)] = 76821, + [SMALL_STATE(2233)] = 76836, + [SMALL_STATE(2234)] = 76853, + [SMALL_STATE(2235)] = 76870, + [SMALL_STATE(2236)] = 76887, + [SMALL_STATE(2237)] = 76904, + [SMALL_STATE(2238)] = 76917, + [SMALL_STATE(2239)] = 76930, + [SMALL_STATE(2240)] = 76945, + [SMALL_STATE(2241)] = 76962, + [SMALL_STATE(2242)] = 76973, + [SMALL_STATE(2243)] = 76986, + [SMALL_STATE(2244)] = 77001, + [SMALL_STATE(2245)] = 77018, + [SMALL_STATE(2246)] = 77029, + [SMALL_STATE(2247)] = 77040, + [SMALL_STATE(2248)] = 77051, + [SMALL_STATE(2249)] = 77062, + [SMALL_STATE(2250)] = 77079, + [SMALL_STATE(2251)] = 77096, + [SMALL_STATE(2252)] = 77113, + [SMALL_STATE(2253)] = 77130, + [SMALL_STATE(2254)] = 77141, + [SMALL_STATE(2255)] = 77156, + [SMALL_STATE(2256)] = 77171, + [SMALL_STATE(2257)] = 77184, + [SMALL_STATE(2258)] = 77195, + [SMALL_STATE(2259)] = 77210, + [SMALL_STATE(2260)] = 77221, + [SMALL_STATE(2261)] = 77234, + [SMALL_STATE(2262)] = 77249, + [SMALL_STATE(2263)] = 77260, + [SMALL_STATE(2264)] = 77273, + [SMALL_STATE(2265)] = 77290, + [SMALL_STATE(2266)] = 77301, + [SMALL_STATE(2267)] = 77318, + [SMALL_STATE(2268)] = 77329, + [SMALL_STATE(2269)] = 77344, + [SMALL_STATE(2270)] = 77360, + [SMALL_STATE(2271)] = 77374, + [SMALL_STATE(2272)] = 77390, + [SMALL_STATE(2273)] = 77404, + [SMALL_STATE(2274)] = 77420, + [SMALL_STATE(2275)] = 77434, + [SMALL_STATE(2276)] = 77444, + [SMALL_STATE(2277)] = 77460, + [SMALL_STATE(2278)] = 77476, + [SMALL_STATE(2279)] = 77492, + [SMALL_STATE(2280)] = 77506, + [SMALL_STATE(2281)] = 77522, + [SMALL_STATE(2282)] = 77536, + [SMALL_STATE(2283)] = 77550, + [SMALL_STATE(2284)] = 77566, + [SMALL_STATE(2285)] = 77580, + [SMALL_STATE(2286)] = 77596, + [SMALL_STATE(2287)] = 77612, + [SMALL_STATE(2288)] = 77628, + [SMALL_STATE(2289)] = 77644, + [SMALL_STATE(2290)] = 77660, + [SMALL_STATE(2291)] = 77676, + [SMALL_STATE(2292)] = 77692, + [SMALL_STATE(2293)] = 77708, + [SMALL_STATE(2294)] = 77724, + [SMALL_STATE(2295)] = 77740, + [SMALL_STATE(2296)] = 77756, + [SMALL_STATE(2297)] = 77772, + [SMALL_STATE(2298)] = 77788, + [SMALL_STATE(2299)] = 77804, + [SMALL_STATE(2300)] = 77820, + [SMALL_STATE(2301)] = 77836, + [SMALL_STATE(2302)] = 77852, + [SMALL_STATE(2303)] = 77866, + [SMALL_STATE(2304)] = 77880, + [SMALL_STATE(2305)] = 77894, + [SMALL_STATE(2306)] = 77910, + [SMALL_STATE(2307)] = 77926, + [SMALL_STATE(2308)] = 77942, + [SMALL_STATE(2309)] = 77956, + [SMALL_STATE(2310)] = 77972, + [SMALL_STATE(2311)] = 77988, + [SMALL_STATE(2312)] = 78002, + [SMALL_STATE(2313)] = 78018, + [SMALL_STATE(2314)] = 78034, + [SMALL_STATE(2315)] = 78050, + [SMALL_STATE(2316)] = 78060, + [SMALL_STATE(2317)] = 78070, + [SMALL_STATE(2318)] = 78082, + [SMALL_STATE(2319)] = 78096, + [SMALL_STATE(2320)] = 78112, + [SMALL_STATE(2321)] = 78128, + [SMALL_STATE(2322)] = 78144, + [SMALL_STATE(2323)] = 78160, + [SMALL_STATE(2324)] = 78176, + [SMALL_STATE(2325)] = 78190, + [SMALL_STATE(2326)] = 78206, + [SMALL_STATE(2327)] = 78222, + [SMALL_STATE(2328)] = 78238, + [SMALL_STATE(2329)] = 78252, + [SMALL_STATE(2330)] = 78268, + [SMALL_STATE(2331)] = 78284, + [SMALL_STATE(2332)] = 78300, + [SMALL_STATE(2333)] = 78316, + [SMALL_STATE(2334)] = 78332, + [SMALL_STATE(2335)] = 78348, + [SMALL_STATE(2336)] = 78362, + [SMALL_STATE(2337)] = 78378, + [SMALL_STATE(2338)] = 78392, + [SMALL_STATE(2339)] = 78406, + [SMALL_STATE(2340)] = 78420, + [SMALL_STATE(2341)] = 78434, + [SMALL_STATE(2342)] = 78450, + [SMALL_STATE(2343)] = 78466, + [SMALL_STATE(2344)] = 78480, + [SMALL_STATE(2345)] = 78492, + [SMALL_STATE(2346)] = 78504, + [SMALL_STATE(2347)] = 78516, + [SMALL_STATE(2348)] = 78532, + [SMALL_STATE(2349)] = 78544, + [SMALL_STATE(2350)] = 78560, + [SMALL_STATE(2351)] = 78574, + [SMALL_STATE(2352)] = 78588, + [SMALL_STATE(2353)] = 78604, + [SMALL_STATE(2354)] = 78618, + [SMALL_STATE(2355)] = 78634, + [SMALL_STATE(2356)] = 78650, + [SMALL_STATE(2357)] = 78666, + [SMALL_STATE(2358)] = 78682, + [SMALL_STATE(2359)] = 78696, + [SMALL_STATE(2360)] = 78706, + [SMALL_STATE(2361)] = 78718, + [SMALL_STATE(2362)] = 78732, + [SMALL_STATE(2363)] = 78748, + [SMALL_STATE(2364)] = 78760, + [SMALL_STATE(2365)] = 78776, + [SMALL_STATE(2366)] = 78792, + [SMALL_STATE(2367)] = 78806, + [SMALL_STATE(2368)] = 78816, + [SMALL_STATE(2369)] = 78832, + [SMALL_STATE(2370)] = 78848, + [SMALL_STATE(2371)] = 78860, + [SMALL_STATE(2372)] = 78872, + [SMALL_STATE(2373)] = 78888, + [SMALL_STATE(2374)] = 78904, + [SMALL_STATE(2375)] = 78918, + [SMALL_STATE(2376)] = 78932, + [SMALL_STATE(2377)] = 78946, + [SMALL_STATE(2378)] = 78962, + [SMALL_STATE(2379)] = 78974, + [SMALL_STATE(2380)] = 78990, + [SMALL_STATE(2381)] = 79006, + [SMALL_STATE(2382)] = 79018, + [SMALL_STATE(2383)] = 79028, + [SMALL_STATE(2384)] = 79044, + [SMALL_STATE(2385)] = 79058, + [SMALL_STATE(2386)] = 79074, + [SMALL_STATE(2387)] = 79090, + [SMALL_STATE(2388)] = 79106, + [SMALL_STATE(2389)] = 79122, + [SMALL_STATE(2390)] = 79138, + [SMALL_STATE(2391)] = 79152, + [SMALL_STATE(2392)] = 79168, + [SMALL_STATE(2393)] = 79184, + [SMALL_STATE(2394)] = 79198, + [SMALL_STATE(2395)] = 79210, + [SMALL_STATE(2396)] = 79222, + [SMALL_STATE(2397)] = 79236, + [SMALL_STATE(2398)] = 79250, + [SMALL_STATE(2399)] = 79264, + [SMALL_STATE(2400)] = 79280, + [SMALL_STATE(2401)] = 79292, + [SMALL_STATE(2402)] = 79304, + [SMALL_STATE(2403)] = 79316, + [SMALL_STATE(2404)] = 79329, + [SMALL_STATE(2405)] = 79342, + [SMALL_STATE(2406)] = 79353, + [SMALL_STATE(2407)] = 79366, + [SMALL_STATE(2408)] = 79377, + [SMALL_STATE(2409)] = 79390, + [SMALL_STATE(2410)] = 79403, + [SMALL_STATE(2411)] = 79416, + [SMALL_STATE(2412)] = 79429, + [SMALL_STATE(2413)] = 79442, + [SMALL_STATE(2414)] = 79455, + [SMALL_STATE(2415)] = 79468, + [SMALL_STATE(2416)] = 79479, + [SMALL_STATE(2417)] = 79492, + [SMALL_STATE(2418)] = 79503, + [SMALL_STATE(2419)] = 79516, + [SMALL_STATE(2420)] = 79529, + [SMALL_STATE(2421)] = 79542, + [SMALL_STATE(2422)] = 79555, + [SMALL_STATE(2423)] = 79568, + [SMALL_STATE(2424)] = 79581, + [SMALL_STATE(2425)] = 79592, + [SMALL_STATE(2426)] = 79605, + [SMALL_STATE(2427)] = 79618, + [SMALL_STATE(2428)] = 79631, + [SMALL_STATE(2429)] = 79644, + [SMALL_STATE(2430)] = 79657, + [SMALL_STATE(2431)] = 79670, + [SMALL_STATE(2432)] = 79683, + [SMALL_STATE(2433)] = 79694, + [SMALL_STATE(2434)] = 79705, + [SMALL_STATE(2435)] = 79718, + [SMALL_STATE(2436)] = 79731, + [SMALL_STATE(2437)] = 79744, + [SMALL_STATE(2438)] = 79757, + [SMALL_STATE(2439)] = 79770, + [SMALL_STATE(2440)] = 79783, + [SMALL_STATE(2441)] = 79796, + [SMALL_STATE(2442)] = 79809, + [SMALL_STATE(2443)] = 79822, + [SMALL_STATE(2444)] = 79835, + [SMALL_STATE(2445)] = 79846, + [SMALL_STATE(2446)] = 79859, + [SMALL_STATE(2447)] = 79872, + [SMALL_STATE(2448)] = 79883, + [SMALL_STATE(2449)] = 79894, + [SMALL_STATE(2450)] = 79905, + [SMALL_STATE(2451)] = 79918, + [SMALL_STATE(2452)] = 79927, + [SMALL_STATE(2453)] = 79940, + [SMALL_STATE(2454)] = 79953, + [SMALL_STATE(2455)] = 79964, + [SMALL_STATE(2456)] = 79977, + [SMALL_STATE(2457)] = 79990, + [SMALL_STATE(2458)] = 80003, + [SMALL_STATE(2459)] = 80016, + [SMALL_STATE(2460)] = 80029, + [SMALL_STATE(2461)] = 80042, + [SMALL_STATE(2462)] = 80055, + [SMALL_STATE(2463)] = 80066, + [SMALL_STATE(2464)] = 80079, + [SMALL_STATE(2465)] = 80092, + [SMALL_STATE(2466)] = 80105, + [SMALL_STATE(2467)] = 80118, + [SMALL_STATE(2468)] = 80131, + [SMALL_STATE(2469)] = 80144, + [SMALL_STATE(2470)] = 80157, + [SMALL_STATE(2471)] = 80170, + [SMALL_STATE(2472)] = 80183, + [SMALL_STATE(2473)] = 80196, + [SMALL_STATE(2474)] = 80209, + [SMALL_STATE(2475)] = 80222, + [SMALL_STATE(2476)] = 80235, + [SMALL_STATE(2477)] = 80248, + [SMALL_STATE(2478)] = 80261, + [SMALL_STATE(2479)] = 80274, + [SMALL_STATE(2480)] = 80287, + [SMALL_STATE(2481)] = 80300, + [SMALL_STATE(2482)] = 80313, + [SMALL_STATE(2483)] = 80326, + [SMALL_STATE(2484)] = 80339, + [SMALL_STATE(2485)] = 80352, + [SMALL_STATE(2486)] = 80365, + [SMALL_STATE(2487)] = 80378, + [SMALL_STATE(2488)] = 80389, + [SMALL_STATE(2489)] = 80402, + [SMALL_STATE(2490)] = 80415, + [SMALL_STATE(2491)] = 80428, + [SMALL_STATE(2492)] = 80439, + [SMALL_STATE(2493)] = 80452, + [SMALL_STATE(2494)] = 80461, + [SMALL_STATE(2495)] = 80470, + [SMALL_STATE(2496)] = 80483, + [SMALL_STATE(2497)] = 80496, + [SMALL_STATE(2498)] = 80505, + [SMALL_STATE(2499)] = 80518, + [SMALL_STATE(2500)] = 80531, + [SMALL_STATE(2501)] = 80540, + [SMALL_STATE(2502)] = 80551, + [SMALL_STATE(2503)] = 80564, + [SMALL_STATE(2504)] = 80577, + [SMALL_STATE(2505)] = 80590, + [SMALL_STATE(2506)] = 80603, + [SMALL_STATE(2507)] = 80616, + [SMALL_STATE(2508)] = 80629, + [SMALL_STATE(2509)] = 80642, + [SMALL_STATE(2510)] = 80653, + [SMALL_STATE(2511)] = 80664, + [SMALL_STATE(2512)] = 80675, + [SMALL_STATE(2513)] = 80688, + [SMALL_STATE(2514)] = 80701, + [SMALL_STATE(2515)] = 80714, + [SMALL_STATE(2516)] = 80725, + [SMALL_STATE(2517)] = 80736, + [SMALL_STATE(2518)] = 80749, + [SMALL_STATE(2519)] = 80762, + [SMALL_STATE(2520)] = 80775, + [SMALL_STATE(2521)] = 80784, + [SMALL_STATE(2522)] = 80797, + [SMALL_STATE(2523)] = 80810, + [SMALL_STATE(2524)] = 80823, + [SMALL_STATE(2525)] = 80836, + [SMALL_STATE(2526)] = 80847, + [SMALL_STATE(2527)] = 80858, + [SMALL_STATE(2528)] = 80871, + [SMALL_STATE(2529)] = 80880, + [SMALL_STATE(2530)] = 80893, + [SMALL_STATE(2531)] = 80906, + [SMALL_STATE(2532)] = 80919, + [SMALL_STATE(2533)] = 80932, + [SMALL_STATE(2534)] = 80945, + [SMALL_STATE(2535)] = 80958, + [SMALL_STATE(2536)] = 80971, + [SMALL_STATE(2537)] = 80984, + [SMALL_STATE(2538)] = 80997, + [SMALL_STATE(2539)] = 81008, + [SMALL_STATE(2540)] = 81021, + [SMALL_STATE(2541)] = 81034, + [SMALL_STATE(2542)] = 81047, + [SMALL_STATE(2543)] = 81060, + [SMALL_STATE(2544)] = 81073, + [SMALL_STATE(2545)] = 81086, + [SMALL_STATE(2546)] = 81099, + [SMALL_STATE(2547)] = 81112, + [SMALL_STATE(2548)] = 81125, + [SMALL_STATE(2549)] = 81136, + [SMALL_STATE(2550)] = 81147, + [SMALL_STATE(2551)] = 81160, + [SMALL_STATE(2552)] = 81173, + [SMALL_STATE(2553)] = 81186, + [SMALL_STATE(2554)] = 81199, + [SMALL_STATE(2555)] = 81212, + [SMALL_STATE(2556)] = 81225, + [SMALL_STATE(2557)] = 81238, + [SMALL_STATE(2558)] = 81251, + [SMALL_STATE(2559)] = 81264, + [SMALL_STATE(2560)] = 81277, + [SMALL_STATE(2561)] = 81290, + [SMALL_STATE(2562)] = 81303, + [SMALL_STATE(2563)] = 81316, + [SMALL_STATE(2564)] = 81329, + [SMALL_STATE(2565)] = 81340, + [SMALL_STATE(2566)] = 81353, + [SMALL_STATE(2567)] = 81366, + [SMALL_STATE(2568)] = 81379, + [SMALL_STATE(2569)] = 81390, + [SMALL_STATE(2570)] = 81403, + [SMALL_STATE(2571)] = 81416, + [SMALL_STATE(2572)] = 81427, + [SMALL_STATE(2573)] = 81438, + [SMALL_STATE(2574)] = 81449, + [SMALL_STATE(2575)] = 81462, + [SMALL_STATE(2576)] = 81475, + [SMALL_STATE(2577)] = 81486, + [SMALL_STATE(2578)] = 81499, + [SMALL_STATE(2579)] = 81512, + [SMALL_STATE(2580)] = 81525, + [SMALL_STATE(2581)] = 81538, + [SMALL_STATE(2582)] = 81549, + [SMALL_STATE(2583)] = 81562, + [SMALL_STATE(2584)] = 81573, + [SMALL_STATE(2585)] = 81586, + [SMALL_STATE(2586)] = 81599, + [SMALL_STATE(2587)] = 81612, + [SMALL_STATE(2588)] = 81625, + [SMALL_STATE(2589)] = 81638, + [SMALL_STATE(2590)] = 81651, + [SMALL_STATE(2591)] = 81664, + [SMALL_STATE(2592)] = 81677, + [SMALL_STATE(2593)] = 81690, + [SMALL_STATE(2594)] = 81701, + [SMALL_STATE(2595)] = 81714, + [SMALL_STATE(2596)] = 81727, + [SMALL_STATE(2597)] = 81740, + [SMALL_STATE(2598)] = 81753, + [SMALL_STATE(2599)] = 81766, + [SMALL_STATE(2600)] = 81774, + [SMALL_STATE(2601)] = 81782, + [SMALL_STATE(2602)] = 81790, + [SMALL_STATE(2603)] = 81798, + [SMALL_STATE(2604)] = 81806, + [SMALL_STATE(2605)] = 81814, + [SMALL_STATE(2606)] = 81822, + [SMALL_STATE(2607)] = 81830, + [SMALL_STATE(2608)] = 81838, + [SMALL_STATE(2609)] = 81846, + [SMALL_STATE(2610)] = 81854, + [SMALL_STATE(2611)] = 81862, + [SMALL_STATE(2612)] = 81870, + [SMALL_STATE(2613)] = 81878, + [SMALL_STATE(2614)] = 81886, + [SMALL_STATE(2615)] = 81894, + [SMALL_STATE(2616)] = 81902, + [SMALL_STATE(2617)] = 81910, + [SMALL_STATE(2618)] = 81918, + [SMALL_STATE(2619)] = 81926, + [SMALL_STATE(2620)] = 81934, + [SMALL_STATE(2621)] = 81942, + [SMALL_STATE(2622)] = 81950, + [SMALL_STATE(2623)] = 81958, + [SMALL_STATE(2624)] = 81966, + [SMALL_STATE(2625)] = 81974, + [SMALL_STATE(2626)] = 81982, + [SMALL_STATE(2627)] = 81990, + [SMALL_STATE(2628)] = 82000, + [SMALL_STATE(2629)] = 82008, + [SMALL_STATE(2630)] = 82016, + [SMALL_STATE(2631)] = 82024, + [SMALL_STATE(2632)] = 82032, + [SMALL_STATE(2633)] = 82040, + [SMALL_STATE(2634)] = 82048, + [SMALL_STATE(2635)] = 82056, + [SMALL_STATE(2636)] = 82064, + [SMALL_STATE(2637)] = 82072, + [SMALL_STATE(2638)] = 82080, + [SMALL_STATE(2639)] = 82088, + [SMALL_STATE(2640)] = 82096, + [SMALL_STATE(2641)] = 82104, + [SMALL_STATE(2642)] = 82114, + [SMALL_STATE(2643)] = 82124, + [SMALL_STATE(2644)] = 82132, + [SMALL_STATE(2645)] = 82140, + [SMALL_STATE(2646)] = 82148, + [SMALL_STATE(2647)] = 82156, + [SMALL_STATE(2648)] = 82164, + [SMALL_STATE(2649)] = 82172, + [SMALL_STATE(2650)] = 82180, + [SMALL_STATE(2651)] = 82188, + [SMALL_STATE(2652)] = 82196, + [SMALL_STATE(2653)] = 82204, + [SMALL_STATE(2654)] = 82212, + [SMALL_STATE(2655)] = 82220, + [SMALL_STATE(2656)] = 82228, + [SMALL_STATE(2657)] = 82236, + [SMALL_STATE(2658)] = 82244, + [SMALL_STATE(2659)] = 82252, + [SMALL_STATE(2660)] = 82262, + [SMALL_STATE(2661)] = 82270, + [SMALL_STATE(2662)] = 82278, + [SMALL_STATE(2663)] = 82286, + [SMALL_STATE(2664)] = 82294, + [SMALL_STATE(2665)] = 82302, + [SMALL_STATE(2666)] = 82310, + [SMALL_STATE(2667)] = 82318, + [SMALL_STATE(2668)] = 82326, + [SMALL_STATE(2669)] = 82334, + [SMALL_STATE(2670)] = 82342, + [SMALL_STATE(2671)] = 82350, + [SMALL_STATE(2672)] = 82358, + [SMALL_STATE(2673)] = 82366, + [SMALL_STATE(2674)] = 82374, + [SMALL_STATE(2675)] = 82382, + [SMALL_STATE(2676)] = 82392, + [SMALL_STATE(2677)] = 82400, + [SMALL_STATE(2678)] = 82408, + [SMALL_STATE(2679)] = 82416, + [SMALL_STATE(2680)] = 82424, + [SMALL_STATE(2681)] = 82432, + [SMALL_STATE(2682)] = 82442, + [SMALL_STATE(2683)] = 82452, + [SMALL_STATE(2684)] = 82460, + [SMALL_STATE(2685)] = 82468, + [SMALL_STATE(2686)] = 82476, + [SMALL_STATE(2687)] = 82486, + [SMALL_STATE(2688)] = 82494, + [SMALL_STATE(2689)] = 82502, + [SMALL_STATE(2690)] = 82510, + [SMALL_STATE(2691)] = 82518, + [SMALL_STATE(2692)] = 82526, + [SMALL_STATE(2693)] = 82534, + [SMALL_STATE(2694)] = 82542, + [SMALL_STATE(2695)] = 82550, + [SMALL_STATE(2696)] = 82558, + [SMALL_STATE(2697)] = 82566, + [SMALL_STATE(2698)] = 82574, + [SMALL_STATE(2699)] = 82582, + [SMALL_STATE(2700)] = 82590, + [SMALL_STATE(2701)] = 82598, + [SMALL_STATE(2702)] = 82606, + [SMALL_STATE(2703)] = 82614, + [SMALL_STATE(2704)] = 82622, + [SMALL_STATE(2705)] = 82632, + [SMALL_STATE(2706)] = 82640, + [SMALL_STATE(2707)] = 82650, + [SMALL_STATE(2708)] = 82658, + [SMALL_STATE(2709)] = 82666, + [SMALL_STATE(2710)] = 82674, + [SMALL_STATE(2711)] = 82682, + [SMALL_STATE(2712)] = 82690, + [SMALL_STATE(2713)] = 82698, + [SMALL_STATE(2714)] = 82706, + [SMALL_STATE(2715)] = 82714, + [SMALL_STATE(2716)] = 82724, + [SMALL_STATE(2717)] = 82732, + [SMALL_STATE(2718)] = 82742, + [SMALL_STATE(2719)] = 82750, + [SMALL_STATE(2720)] = 82760, + [SMALL_STATE(2721)] = 82768, + [SMALL_STATE(2722)] = 82776, + [SMALL_STATE(2723)] = 82784, + [SMALL_STATE(2724)] = 82794, + [SMALL_STATE(2725)] = 82802, + [SMALL_STATE(2726)] = 82810, + [SMALL_STATE(2727)] = 82818, + [SMALL_STATE(2728)] = 82826, + [SMALL_STATE(2729)] = 82834, + [SMALL_STATE(2730)] = 82842, + [SMALL_STATE(2731)] = 82850, + [SMALL_STATE(2732)] = 82858, + [SMALL_STATE(2733)] = 82866, + [SMALL_STATE(2734)] = 82874, + [SMALL_STATE(2735)] = 82882, + [SMALL_STATE(2736)] = 82890, + [SMALL_STATE(2737)] = 82898, + [SMALL_STATE(2738)] = 82906, + [SMALL_STATE(2739)] = 82914, + [SMALL_STATE(2740)] = 82922, + [SMALL_STATE(2741)] = 82930, + [SMALL_STATE(2742)] = 82938, + [SMALL_STATE(2743)] = 82946, + [SMALL_STATE(2744)] = 82954, + [SMALL_STATE(2745)] = 82962, + [SMALL_STATE(2746)] = 82970, + [SMALL_STATE(2747)] = 82978, + [SMALL_STATE(2748)] = 82986, + [SMALL_STATE(2749)] = 82994, + [SMALL_STATE(2750)] = 83004, + [SMALL_STATE(2751)] = 83012, + [SMALL_STATE(2752)] = 83020, + [SMALL_STATE(2753)] = 83030, + [SMALL_STATE(2754)] = 83038, + [SMALL_STATE(2755)] = 83046, + [SMALL_STATE(2756)] = 83054, + [SMALL_STATE(2757)] = 83062, + [SMALL_STATE(2758)] = 83070, + [SMALL_STATE(2759)] = 83078, + [SMALL_STATE(2760)] = 83086, + [SMALL_STATE(2761)] = 83094, + [SMALL_STATE(2762)] = 83102, + [SMALL_STATE(2763)] = 83110, + [SMALL_STATE(2764)] = 83120, + [SMALL_STATE(2765)] = 83128, + [SMALL_STATE(2766)] = 83138, + [SMALL_STATE(2767)] = 83146, + [SMALL_STATE(2768)] = 83154, + [SMALL_STATE(2769)] = 83162, + [SMALL_STATE(2770)] = 83170, + [SMALL_STATE(2771)] = 83178, + [SMALL_STATE(2772)] = 83188, + [SMALL_STATE(2773)] = 83196, + [SMALL_STATE(2774)] = 83204, + [SMALL_STATE(2775)] = 83212, + [SMALL_STATE(2776)] = 83220, + [SMALL_STATE(2777)] = 83228, + [SMALL_STATE(2778)] = 83236, + [SMALL_STATE(2779)] = 83244, + [SMALL_STATE(2780)] = 83254, + [SMALL_STATE(2781)] = 83262, + [SMALL_STATE(2782)] = 83270, + [SMALL_STATE(2783)] = 83278, + [SMALL_STATE(2784)] = 83286, + [SMALL_STATE(2785)] = 83294, + [SMALL_STATE(2786)] = 83302, + [SMALL_STATE(2787)] = 83310, + [SMALL_STATE(2788)] = 83318, + [SMALL_STATE(2789)] = 83326, + [SMALL_STATE(2790)] = 83334, + [SMALL_STATE(2791)] = 83342, + [SMALL_STATE(2792)] = 83350, + [SMALL_STATE(2793)] = 83358, + [SMALL_STATE(2794)] = 83366, + [SMALL_STATE(2795)] = 83374, + [SMALL_STATE(2796)] = 83382, + [SMALL_STATE(2797)] = 83390, + [SMALL_STATE(2798)] = 83398, + [SMALL_STATE(2799)] = 83406, + [SMALL_STATE(2800)] = 83414, + [SMALL_STATE(2801)] = 83422, + [SMALL_STATE(2802)] = 83430, + [SMALL_STATE(2803)] = 83438, + [SMALL_STATE(2804)] = 83446, + [SMALL_STATE(2805)] = 83454, + [SMALL_STATE(2806)] = 83462, + [SMALL_STATE(2807)] = 83470, + [SMALL_STATE(2808)] = 83478, + [SMALL_STATE(2809)] = 83486, + [SMALL_STATE(2810)] = 83494, + [SMALL_STATE(2811)] = 83502, + [SMALL_STATE(2812)] = 83510, + [SMALL_STATE(2813)] = 83518, + [SMALL_STATE(2814)] = 83526, + [SMALL_STATE(2815)] = 83534, + [SMALL_STATE(2816)] = 83542, + [SMALL_STATE(2817)] = 83550, + [SMALL_STATE(2818)] = 83558, + [SMALL_STATE(2819)] = 83568, + [SMALL_STATE(2820)] = 83578, + [SMALL_STATE(2821)] = 83586, + [SMALL_STATE(2822)] = 83596, + [SMALL_STATE(2823)] = 83604, + [SMALL_STATE(2824)] = 83614, + [SMALL_STATE(2825)] = 83622, + [SMALL_STATE(2826)] = 83630, + [SMALL_STATE(2827)] = 83638, + [SMALL_STATE(2828)] = 83646, + [SMALL_STATE(2829)] = 83654, + [SMALL_STATE(2830)] = 83662, + [SMALL_STATE(2831)] = 83670, + [SMALL_STATE(2832)] = 83678, + [SMALL_STATE(2833)] = 83686, + [SMALL_STATE(2834)] = 83694, + [SMALL_STATE(2835)] = 83702, + [SMALL_STATE(2836)] = 83710, + [SMALL_STATE(2837)] = 83718, + [SMALL_STATE(2838)] = 83726, + [SMALL_STATE(2839)] = 83734, + [SMALL_STATE(2840)] = 83742, + [SMALL_STATE(2841)] = 83750, + [SMALL_STATE(2842)] = 83758, + [SMALL_STATE(2843)] = 83766, + [SMALL_STATE(2844)] = 83774, + [SMALL_STATE(2845)] = 83784, + [SMALL_STATE(2846)] = 83792, + [SMALL_STATE(2847)] = 83800, + [SMALL_STATE(2848)] = 83810, + [SMALL_STATE(2849)] = 83818, + [SMALL_STATE(2850)] = 83826, + [SMALL_STATE(2851)] = 83834, + [SMALL_STATE(2852)] = 83842, + [SMALL_STATE(2853)] = 83850, + [SMALL_STATE(2854)] = 83858, + [SMALL_STATE(2855)] = 83866, + [SMALL_STATE(2856)] = 83874, + [SMALL_STATE(2857)] = 83882, + [SMALL_STATE(2858)] = 83892, + [SMALL_STATE(2859)] = 83900, + [SMALL_STATE(2860)] = 83910, + [SMALL_STATE(2861)] = 83918, + [SMALL_STATE(2862)] = 83926, + [SMALL_STATE(2863)] = 83934, + [SMALL_STATE(2864)] = 83942, + [SMALL_STATE(2865)] = 83950, + [SMALL_STATE(2866)] = 83958, + [SMALL_STATE(2867)] = 83966, + [SMALL_STATE(2868)] = 83974, + [SMALL_STATE(2869)] = 83984, + [SMALL_STATE(2870)] = 83992, + [SMALL_STATE(2871)] = 84000, + [SMALL_STATE(2872)] = 84010, + [SMALL_STATE(2873)] = 84018, + [SMALL_STATE(2874)] = 84026, + [SMALL_STATE(2875)] = 84034, + [SMALL_STATE(2876)] = 84042, + [SMALL_STATE(2877)] = 84050, + [SMALL_STATE(2878)] = 84058, + [SMALL_STATE(2879)] = 84066, + [SMALL_STATE(2880)] = 84074, + [SMALL_STATE(2881)] = 84082, + [SMALL_STATE(2882)] = 84090, + [SMALL_STATE(2883)] = 84098, + [SMALL_STATE(2884)] = 84106, + [SMALL_STATE(2885)] = 84114, + [SMALL_STATE(2886)] = 84122, + [SMALL_STATE(2887)] = 84130, + [SMALL_STATE(2888)] = 84138, + [SMALL_STATE(2889)] = 84146, + [SMALL_STATE(2890)] = 84154, + [SMALL_STATE(2891)] = 84162, + [SMALL_STATE(2892)] = 84170, + [SMALL_STATE(2893)] = 84178, + [SMALL_STATE(2894)] = 84186, + [SMALL_STATE(2895)] = 84194, + [SMALL_STATE(2896)] = 84202, + [SMALL_STATE(2897)] = 84210, + [SMALL_STATE(2898)] = 84218, + [SMALL_STATE(2899)] = 84226, + [SMALL_STATE(2900)] = 84234, + [SMALL_STATE(2901)] = 84244, + [SMALL_STATE(2902)] = 84252, + [SMALL_STATE(2903)] = 84260, + [SMALL_STATE(2904)] = 84268, + [SMALL_STATE(2905)] = 84276, + [SMALL_STATE(2906)] = 84284, + [SMALL_STATE(2907)] = 84292, + [SMALL_STATE(2908)] = 84300, + [SMALL_STATE(2909)] = 84308, + [SMALL_STATE(2910)] = 84316, + [SMALL_STATE(2911)] = 84324, + [SMALL_STATE(2912)] = 84332, + [SMALL_STATE(2913)] = 84340, + [SMALL_STATE(2914)] = 84348, + [SMALL_STATE(2915)] = 84356, + [SMALL_STATE(2916)] = 84364, + [SMALL_STATE(2917)] = 84372, + [SMALL_STATE(2918)] = 84380, + [SMALL_STATE(2919)] = 84388, + [SMALL_STATE(2920)] = 84396, + [SMALL_STATE(2921)] = 84404, + [SMALL_STATE(2922)] = 84412, + [SMALL_STATE(2923)] = 84422, + [SMALL_STATE(2924)] = 84430, + [SMALL_STATE(2925)] = 84438, + [SMALL_STATE(2926)] = 84446, + [SMALL_STATE(2927)] = 84456, + [SMALL_STATE(2928)] = 84464, + [SMALL_STATE(2929)] = 84472, + [SMALL_STATE(2930)] = 84480, + [SMALL_STATE(2931)] = 84488, + [SMALL_STATE(2932)] = 84496, + [SMALL_STATE(2933)] = 84504, + [SMALL_STATE(2934)] = 84512, + [SMALL_STATE(2935)] = 84520, + [SMALL_STATE(2936)] = 84528, + [SMALL_STATE(2937)] = 84536, + [SMALL_STATE(2938)] = 84544, + [SMALL_STATE(2939)] = 84552, + [SMALL_STATE(2940)] = 84560, + [SMALL_STATE(2941)] = 84568, + [SMALL_STATE(2942)] = 84576, + [SMALL_STATE(2943)] = 84584, + [SMALL_STATE(2944)] = 84592, + [SMALL_STATE(2945)] = 84600, + [SMALL_STATE(2946)] = 84608, + [SMALL_STATE(2947)] = 84616, + [SMALL_STATE(2948)] = 84626, + [SMALL_STATE(2949)] = 84633, + [SMALL_STATE(2950)] = 84640, + [SMALL_STATE(2951)] = 84647, + [SMALL_STATE(2952)] = 84654, + [SMALL_STATE(2953)] = 84661, + [SMALL_STATE(2954)] = 84668, + [SMALL_STATE(2955)] = 84675, + [SMALL_STATE(2956)] = 84682, + [SMALL_STATE(2957)] = 84689, + [SMALL_STATE(2958)] = 84696, + [SMALL_STATE(2959)] = 84703, + [SMALL_STATE(2960)] = 84710, + [SMALL_STATE(2961)] = 84717, + [SMALL_STATE(2962)] = 84724, + [SMALL_STATE(2963)] = 84731, + [SMALL_STATE(2964)] = 84738, + [SMALL_STATE(2965)] = 84745, + [SMALL_STATE(2966)] = 84752, + [SMALL_STATE(2967)] = 84759, + [SMALL_STATE(2968)] = 84766, + [SMALL_STATE(2969)] = 84773, + [SMALL_STATE(2970)] = 84780, + [SMALL_STATE(2971)] = 84787, + [SMALL_STATE(2972)] = 84794, + [SMALL_STATE(2973)] = 84801, + [SMALL_STATE(2974)] = 84808, + [SMALL_STATE(2975)] = 84815, + [SMALL_STATE(2976)] = 84822, + [SMALL_STATE(2977)] = 84829, + [SMALL_STATE(2978)] = 84836, + [SMALL_STATE(2979)] = 84843, + [SMALL_STATE(2980)] = 84850, + [SMALL_STATE(2981)] = 84857, + [SMALL_STATE(2982)] = 84864, + [SMALL_STATE(2983)] = 84871, + [SMALL_STATE(2984)] = 84878, + [SMALL_STATE(2985)] = 84885, + [SMALL_STATE(2986)] = 84892, + [SMALL_STATE(2987)] = 84899, + [SMALL_STATE(2988)] = 84906, + [SMALL_STATE(2989)] = 84913, + [SMALL_STATE(2990)] = 84920, + [SMALL_STATE(2991)] = 84927, + [SMALL_STATE(2992)] = 84934, + [SMALL_STATE(2993)] = 84941, + [SMALL_STATE(2994)] = 84948, + [SMALL_STATE(2995)] = 84955, + [SMALL_STATE(2996)] = 84962, + [SMALL_STATE(2997)] = 84969, + [SMALL_STATE(2998)] = 84976, + [SMALL_STATE(2999)] = 84983, + [SMALL_STATE(3000)] = 84990, + [SMALL_STATE(3001)] = 84997, + [SMALL_STATE(3002)] = 85004, + [SMALL_STATE(3003)] = 85011, + [SMALL_STATE(3004)] = 85018, + [SMALL_STATE(3005)] = 85025, + [SMALL_STATE(3006)] = 85032, + [SMALL_STATE(3007)] = 85039, + [SMALL_STATE(3008)] = 85046, + [SMALL_STATE(3009)] = 85053, + [SMALL_STATE(3010)] = 85060, + [SMALL_STATE(3011)] = 85067, + [SMALL_STATE(3012)] = 85074, + [SMALL_STATE(3013)] = 85081, + [SMALL_STATE(3014)] = 85088, + [SMALL_STATE(3015)] = 85095, + [SMALL_STATE(3016)] = 85102, + [SMALL_STATE(3017)] = 85109, + [SMALL_STATE(3018)] = 85116, + [SMALL_STATE(3019)] = 85123, + [SMALL_STATE(3020)] = 85130, + [SMALL_STATE(3021)] = 85137, + [SMALL_STATE(3022)] = 85144, + [SMALL_STATE(3023)] = 85151, + [SMALL_STATE(3024)] = 85158, + [SMALL_STATE(3025)] = 85165, + [SMALL_STATE(3026)] = 85172, + [SMALL_STATE(3027)] = 85179, + [SMALL_STATE(3028)] = 85186, + [SMALL_STATE(3029)] = 85193, + [SMALL_STATE(3030)] = 85200, + [SMALL_STATE(3031)] = 85207, + [SMALL_STATE(3032)] = 85214, + [SMALL_STATE(3033)] = 85221, + [SMALL_STATE(3034)] = 85228, + [SMALL_STATE(3035)] = 85235, + [SMALL_STATE(3036)] = 85242, + [SMALL_STATE(3037)] = 85249, + [SMALL_STATE(3038)] = 85256, + [SMALL_STATE(3039)] = 85263, + [SMALL_STATE(3040)] = 85270, + [SMALL_STATE(3041)] = 85277, + [SMALL_STATE(3042)] = 85284, + [SMALL_STATE(3043)] = 85291, + [SMALL_STATE(3044)] = 85298, + [SMALL_STATE(3045)] = 85305, + [SMALL_STATE(3046)] = 85312, + [SMALL_STATE(3047)] = 85319, + [SMALL_STATE(3048)] = 85326, + [SMALL_STATE(3049)] = 85333, + [SMALL_STATE(3050)] = 85340, + [SMALL_STATE(3051)] = 85347, + [SMALL_STATE(3052)] = 85354, + [SMALL_STATE(3053)] = 85361, + [SMALL_STATE(3054)] = 85368, + [SMALL_STATE(3055)] = 85375, + [SMALL_STATE(3056)] = 85382, + [SMALL_STATE(3057)] = 85389, + [SMALL_STATE(3058)] = 85396, + [SMALL_STATE(3059)] = 85403, + [SMALL_STATE(3060)] = 85410, + [SMALL_STATE(3061)] = 85417, + [SMALL_STATE(3062)] = 85424, + [SMALL_STATE(3063)] = 85431, + [SMALL_STATE(3064)] = 85438, + [SMALL_STATE(3065)] = 85445, + [SMALL_STATE(3066)] = 85452, + [SMALL_STATE(3067)] = 85459, + [SMALL_STATE(3068)] = 85466, + [SMALL_STATE(3069)] = 85473, + [SMALL_STATE(3070)] = 85480, + [SMALL_STATE(3071)] = 85487, + [SMALL_STATE(3072)] = 85494, + [SMALL_STATE(3073)] = 85501, + [SMALL_STATE(3074)] = 85508, + [SMALL_STATE(3075)] = 85515, + [SMALL_STATE(3076)] = 85522, + [SMALL_STATE(3077)] = 85529, + [SMALL_STATE(3078)] = 85536, + [SMALL_STATE(3079)] = 85543, + [SMALL_STATE(3080)] = 85550, + [SMALL_STATE(3081)] = 85557, + [SMALL_STATE(3082)] = 85564, + [SMALL_STATE(3083)] = 85571, + [SMALL_STATE(3084)] = 85578, + [SMALL_STATE(3085)] = 85585, + [SMALL_STATE(3086)] = 85592, + [SMALL_STATE(3087)] = 85599, + [SMALL_STATE(3088)] = 85606, + [SMALL_STATE(3089)] = 85613, + [SMALL_STATE(3090)] = 85620, + [SMALL_STATE(3091)] = 85627, + [SMALL_STATE(3092)] = 85634, + [SMALL_STATE(3093)] = 85641, + [SMALL_STATE(3094)] = 85648, + [SMALL_STATE(3095)] = 85655, + [SMALL_STATE(3096)] = 85662, + [SMALL_STATE(3097)] = 85669, + [SMALL_STATE(3098)] = 85676, + [SMALL_STATE(3099)] = 85683, + [SMALL_STATE(3100)] = 85690, + [SMALL_STATE(3101)] = 85697, + [SMALL_STATE(3102)] = 85704, + [SMALL_STATE(3103)] = 85711, + [SMALL_STATE(3104)] = 85718, + [SMALL_STATE(3105)] = 85725, + [SMALL_STATE(3106)] = 85732, + [SMALL_STATE(3107)] = 85739, + [SMALL_STATE(3108)] = 85746, + [SMALL_STATE(3109)] = 85753, + [SMALL_STATE(3110)] = 85760, + [SMALL_STATE(3111)] = 85767, + [SMALL_STATE(3112)] = 85774, + [SMALL_STATE(3113)] = 85781, + [SMALL_STATE(3114)] = 85788, + [SMALL_STATE(3115)] = 85795, + [SMALL_STATE(3116)] = 85802, + [SMALL_STATE(3117)] = 85809, + [SMALL_STATE(3118)] = 85816, + [SMALL_STATE(3119)] = 85823, + [SMALL_STATE(3120)] = 85830, + [SMALL_STATE(3121)] = 85837, + [SMALL_STATE(3122)] = 85844, + [SMALL_STATE(3123)] = 85851, + [SMALL_STATE(3124)] = 85858, + [SMALL_STATE(3125)] = 85865, + [SMALL_STATE(3126)] = 85872, + [SMALL_STATE(3127)] = 85879, + [SMALL_STATE(3128)] = 85886, + [SMALL_STATE(3129)] = 85893, + [SMALL_STATE(3130)] = 85900, + [SMALL_STATE(3131)] = 85907, + [SMALL_STATE(3132)] = 85914, + [SMALL_STATE(3133)] = 85921, + [SMALL_STATE(3134)] = 85928, + [SMALL_STATE(3135)] = 85935, + [SMALL_STATE(3136)] = 85942, + [SMALL_STATE(3137)] = 85949, + [SMALL_STATE(3138)] = 85956, + [SMALL_STATE(3139)] = 85963, + [SMALL_STATE(3140)] = 85970, + [SMALL_STATE(3141)] = 85977, + [SMALL_STATE(3142)] = 85984, + [SMALL_STATE(3143)] = 85991, + [SMALL_STATE(3144)] = 85998, + [SMALL_STATE(3145)] = 86005, + [SMALL_STATE(3146)] = 86012, + [SMALL_STATE(3147)] = 86019, + [SMALL_STATE(3148)] = 86026, + [SMALL_STATE(3149)] = 86033, + [SMALL_STATE(3150)] = 86040, + [SMALL_STATE(3151)] = 86047, + [SMALL_STATE(3152)] = 86054, + [SMALL_STATE(3153)] = 86061, + [SMALL_STATE(3154)] = 86068, + [SMALL_STATE(3155)] = 86075, + [SMALL_STATE(3156)] = 86082, + [SMALL_STATE(3157)] = 86089, + [SMALL_STATE(3158)] = 86096, + [SMALL_STATE(3159)] = 86103, + [SMALL_STATE(3160)] = 86110, + [SMALL_STATE(3161)] = 86117, + [SMALL_STATE(3162)] = 86124, + [SMALL_STATE(3163)] = 86131, + [SMALL_STATE(3164)] = 86138, + [SMALL_STATE(3165)] = 86145, + [SMALL_STATE(3166)] = 86152, + [SMALL_STATE(3167)] = 86159, + [SMALL_STATE(3168)] = 86166, + [SMALL_STATE(3169)] = 86173, + [SMALL_STATE(3170)] = 86180, + [SMALL_STATE(3171)] = 86187, + [SMALL_STATE(3172)] = 86194, + [SMALL_STATE(3173)] = 86201, + [SMALL_STATE(3174)] = 86208, + [SMALL_STATE(3175)] = 86215, + [SMALL_STATE(3176)] = 86222, + [SMALL_STATE(3177)] = 86229, + [SMALL_STATE(3178)] = 86236, + [SMALL_STATE(3179)] = 86243, + [SMALL_STATE(3180)] = 86250, + [SMALL_STATE(3181)] = 86257, + [SMALL_STATE(3182)] = 86264, + [SMALL_STATE(3183)] = 86271, + [SMALL_STATE(3184)] = 86278, + [SMALL_STATE(3185)] = 86285, + [SMALL_STATE(3186)] = 86292, + [SMALL_STATE(3187)] = 86299, + [SMALL_STATE(3188)] = 86306, + [SMALL_STATE(3189)] = 86313, + [SMALL_STATE(3190)] = 86320, + [SMALL_STATE(3191)] = 86327, + [SMALL_STATE(3192)] = 86334, + [SMALL_STATE(3193)] = 86341, + [SMALL_STATE(3194)] = 86348, + [SMALL_STATE(3195)] = 86355, + [SMALL_STATE(3196)] = 86362, + [SMALL_STATE(3197)] = 86369, + [SMALL_STATE(3198)] = 86376, + [SMALL_STATE(3199)] = 86383, + [SMALL_STATE(3200)] = 86390, + [SMALL_STATE(3201)] = 86397, + [SMALL_STATE(3202)] = 86404, + [SMALL_STATE(3203)] = 86411, + [SMALL_STATE(3204)] = 86418, + [SMALL_STATE(3205)] = 86425, + [SMALL_STATE(3206)] = 86432, + [SMALL_STATE(3207)] = 86439, + [SMALL_STATE(3208)] = 86446, + [SMALL_STATE(3209)] = 86453, + [SMALL_STATE(3210)] = 86460, + [SMALL_STATE(3211)] = 86467, + [SMALL_STATE(3212)] = 86474, + [SMALL_STATE(3213)] = 86481, + [SMALL_STATE(3214)] = 86488, + [SMALL_STATE(3215)] = 86495, + [SMALL_STATE(3216)] = 86502, + [SMALL_STATE(3217)] = 86509, + [SMALL_STATE(3218)] = 86516, + [SMALL_STATE(3219)] = 86523, + [SMALL_STATE(3220)] = 86530, + [SMALL_STATE(3221)] = 86537, + [SMALL_STATE(3222)] = 86544, + [SMALL_STATE(3223)] = 86551, + [SMALL_STATE(3224)] = 86558, + [SMALL_STATE(3225)] = 86565, + [SMALL_STATE(3226)] = 86572, + [SMALL_STATE(3227)] = 86579, + [SMALL_STATE(3228)] = 86586, + [SMALL_STATE(3229)] = 86593, + [SMALL_STATE(3230)] = 86600, + [SMALL_STATE(3231)] = 86607, + [SMALL_STATE(3232)] = 86614, + [SMALL_STATE(3233)] = 86621, + [SMALL_STATE(3234)] = 86628, + [SMALL_STATE(3235)] = 86635, + [SMALL_STATE(3236)] = 86642, + [SMALL_STATE(3237)] = 86649, + [SMALL_STATE(3238)] = 86656, + [SMALL_STATE(3239)] = 86663, + [SMALL_STATE(3240)] = 86670, + [SMALL_STATE(3241)] = 86677, + [SMALL_STATE(3242)] = 86684, + [SMALL_STATE(3243)] = 86691, + [SMALL_STATE(3244)] = 86698, + [SMALL_STATE(3245)] = 86705, + [SMALL_STATE(3246)] = 86712, + [SMALL_STATE(3247)] = 86719, + [SMALL_STATE(3248)] = 86726, + [SMALL_STATE(3249)] = 86733, + [SMALL_STATE(3250)] = 86740, + [SMALL_STATE(3251)] = 86747, + [SMALL_STATE(3252)] = 86754, + [SMALL_STATE(3253)] = 86761, + [SMALL_STATE(3254)] = 86768, + [SMALL_STATE(3255)] = 86775, + [SMALL_STATE(3256)] = 86782, + [SMALL_STATE(3257)] = 86789, + [SMALL_STATE(3258)] = 86796, + [SMALL_STATE(3259)] = 86803, + [SMALL_STATE(3260)] = 86810, + [SMALL_STATE(3261)] = 86817, + [SMALL_STATE(3262)] = 86824, + [SMALL_STATE(3263)] = 86831, + [SMALL_STATE(3264)] = 86838, + [SMALL_STATE(3265)] = 86845, + [SMALL_STATE(3266)] = 86852, + [SMALL_STATE(3267)] = 86859, + [SMALL_STATE(3268)] = 86866, + [SMALL_STATE(3269)] = 86873, + [SMALL_STATE(3270)] = 86880, + [SMALL_STATE(3271)] = 86887, + [SMALL_STATE(3272)] = 86894, + [SMALL_STATE(3273)] = 86901, + [SMALL_STATE(3274)] = 86908, + [SMALL_STATE(3275)] = 86915, + [SMALL_STATE(3276)] = 86922, + [SMALL_STATE(3277)] = 86929, + [SMALL_STATE(3278)] = 86936, + [SMALL_STATE(3279)] = 86943, + [SMALL_STATE(3280)] = 86950, + [SMALL_STATE(3281)] = 86957, + [SMALL_STATE(3282)] = 86964, + [SMALL_STATE(3283)] = 86971, + [SMALL_STATE(3284)] = 86978, + [SMALL_STATE(3285)] = 86985, + [SMALL_STATE(3286)] = 86992, + [SMALL_STATE(3287)] = 86999, + [SMALL_STATE(3288)] = 87006, + [SMALL_STATE(3289)] = 87013, + [SMALL_STATE(3290)] = 87020, + [SMALL_STATE(3291)] = 87027, + [SMALL_STATE(3292)] = 87034, + [SMALL_STATE(3293)] = 87041, + [SMALL_STATE(3294)] = 87048, + [SMALL_STATE(3295)] = 87055, + [SMALL_STATE(3296)] = 87062, + [SMALL_STATE(3297)] = 87069, + [SMALL_STATE(3298)] = 87076, + [SMALL_STATE(3299)] = 87083, + [SMALL_STATE(3300)] = 87090, + [SMALL_STATE(3301)] = 87097, + [SMALL_STATE(3302)] = 87104, + [SMALL_STATE(3303)] = 87111, + [SMALL_STATE(3304)] = 87118, + [SMALL_STATE(3305)] = 87125, + [SMALL_STATE(3306)] = 87132, + [SMALL_STATE(3307)] = 87139, + [SMALL_STATE(3308)] = 87146, + [SMALL_STATE(3309)] = 87153, + [SMALL_STATE(3310)] = 87160, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -129961,352 +130351,352 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(141), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_statement, 2, .production_id = 50), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 2), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(141), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1926), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1539), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1859), - [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2129), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1531), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1908), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1894), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1889), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1882), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1786), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2656), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(245), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(381), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1645), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(439), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(440), - [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2539), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1263), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2557), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(379), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2533), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2520), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2515), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2514), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(443), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(386), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1789), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(87), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(324), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(326), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3212), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(311), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(348), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1461), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2138), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1562), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(689), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1570), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1573), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2495), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3192), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2617), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2358), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2619), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(267), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1754), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2621), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1915), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2623), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3184), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1427), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3181), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1505), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1918), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(290), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(365), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(463), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2630), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2632), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1927), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 4, .production_id = 66), - [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_statement, 3, .production_id = 91), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(248), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 3), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 3, .production_id = 52), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(251), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 1), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 2, .production_id = 51), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_file, 1), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(260), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(250), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(262), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 1), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(255), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2, .production_id = 51), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(257), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 3, .production_id = 52), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 3), + [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 4, .production_id = 66), + [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_statement, 3, .production_id = 91), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(141), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2017), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1617), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1873), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2121), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1616), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1859), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1862), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1869), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1870), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1845), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2797), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(248), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(379), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1668), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(583), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(585), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2576), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1263), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2922), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(377), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2439), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2440), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2442), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2457), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(567), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(412), + [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1806), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(74), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(324), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(327), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3303), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(331), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(332), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1478), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2191), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1626), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(691), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1624), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1622), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2469), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3297), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2852), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2487), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2745), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(267), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1827), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2818), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1900), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2802), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3287), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1443), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(3286), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1618), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(1856), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(288), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(355), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(494), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2799), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2798), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(2016), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(246), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 1), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(259), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(255), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_file, 1), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2, .production_id = 51), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 2, .production_id = 51), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(260), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(252), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 1), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(254), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__separated_statements, 2), SHIFT_REPEAT(253), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_list, 2), REDUCE(aux_sym__pattern_ordinary_atom, 2), [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), @@ -130314,3504 +130704,3573 @@ static const TSParseActionEntry ts_parse_actions[] = { [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list, 2), REDUCE(aux_sym__pattern_ordinary_atom, 2), [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), - [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 2), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), - [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(462), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(146), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_braces_name_expression, 3), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_braces_name_expression, 3), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(466), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(150), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_curly_braces_name_expression, 3), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_curly_braces_name_expression, 3), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_dict, 1), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_dict, 1), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 68), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 68), - [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 4, .production_id = 46), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 4, .production_id = 46), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_name, 1), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_name, 1), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_name, 2), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_name, 2), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 2), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, .production_id = 100), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, .production_id = 100), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 6), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 6), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 89), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 89), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 88), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 88), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 5, .production_id = 48), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 5, .production_id = 48), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 87), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 5, .production_id = 64), - [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 5, .production_id = 64), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 5), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 5), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 47), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 47), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 2), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 2), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 4, .production_id = 67), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 4, .production_id = 67), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 48), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 48), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), + [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 2), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(664), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(147), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_curly_braces_name_expression, 3), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_curly_braces_name_expression, 3), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_dict, 1), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_dict, 1), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(667), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(152), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__curly_braces_name_expression, 3), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__curly_braces_name_expression, 3), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 2), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 3), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 3), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3, .production_id = 49), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 49), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_variable, 2), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_variable, 2), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 87), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 5, .production_id = 48), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 5, .production_id = 48), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 48), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 48), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 4), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 4), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 2), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 2), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 3, .production_id = 46), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 3, .production_id = 46), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_name, 2), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_name, 2), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 3), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 3), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 88), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 88), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, .production_id = 89), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, .production_id = 89), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 6), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 6), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, .production_id = 100), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, .production_id = 100), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_name, 1), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_name, 1), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 4, .production_id = 46), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 4, .production_id = 46), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 2), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 2), [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 4, .production_id = 64), [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 4, .production_id = 64), - [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 2), - [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 2), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 21), - [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 2, .production_id = 21), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 4), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 4), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 69), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 69), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 5, .production_id = 64), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 5, .production_id = 64), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 48), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 48), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operation, 2), [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operation, 2), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 2), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 2), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 69), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 69), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_variable, 2), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_variable, 2), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3, .production_id = 49), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3, .production_id = 49), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 3), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 3), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 3), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 3), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 48), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 48), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 3, .production_id = 46), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 3, .production_id = 46), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 3), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 3), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__separated_statements, 1), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__separated_statements, 1), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__separated_statements, 2), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 4, .production_id = 67), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 4, .production_id = 67), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 47), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 47), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 3), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 3), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 21), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 2, .production_id = 21), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 68), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 68), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_dictionary, 2), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_dictionary, 2), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary, 5), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionnary, 5), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__separated_statements, 2), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__separated_statements, 1), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__separated_statements, 1), [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_autocmd_statement_repeat1, 2), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_autocmd_statement_repeat1, 2), SHIFT_REPEAT(3093), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_autocmd_statement_repeat1, 2), SHIFT_REPEAT(2989), [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_autocmd_statement_repeat1, 2), [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), SHIFT_REPEAT(263), [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2), [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2), [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_lhs, 1), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_lhs, 1), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 1), [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 1), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scriptencoding_statement, 1), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 1), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_rhs, 1), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_rhs, 1), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 1), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 1), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 1), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_line, 1), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_line, 1), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range, 1, .production_id = 1), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 1), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(455), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(298), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(561), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(308), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echomsg_statement, 1), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlet_statement, 2), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echoerr_statement, 2), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(515), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(317), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echomsg_statement, 2), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echon_statement, 2), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlet_statement, 3), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 2), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 1), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echon_statement, 1), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(453), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(330), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echoerr_statement, 1), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(367), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(300), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(301), - [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2270), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(617), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(465), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2246), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(465), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(573), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(573), - [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(363), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2272), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), - [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(583), - [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2339), - [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(359), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(299), - [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(296), - [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2316), - [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(518), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(646), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2303), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(646), - [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(559), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(559), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(356), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2264), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(512), - [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2338), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 87), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 1), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 1), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_line, 1), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_line, 1), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 1), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range, 1, .production_id = 1), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(651), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(300), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(587), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(302), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlet_statement, 2), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echoerr_statement, 2), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echomsg_statement, 2), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echon_statement, 2), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 2), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echoerr_statement, 1), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echomsg_statement, 1), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echon_statement, 1), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 1), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(373), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(295), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(310), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2323), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(509), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(666), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2331), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(666), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(624), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(624), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(371), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2322), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(503), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2271), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlet_statement, 3), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(476), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(330), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(359), + [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(299), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(309), + [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2326), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(443), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(662), + [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2332), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(662), + [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(474), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(474), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(367), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2385), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(595), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 2), SHIFT_REPEAT(2305), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(645), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(347), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 87), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unlet_statement_repeat1, 1), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unlet_statement_repeat1, 1), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_variable, 1), [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ident, 1), [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_variable, 1), [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ident, 1), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(468), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(669), [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(682), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(657), - [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(685), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 1), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable, 1), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable, 1), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 3), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 3), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 2), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 2), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 4), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 4), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 3, .production_id = 83), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 3, .production_id = 83), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_hl_pattern, 3), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_hl_pattern, 3), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(613), - [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(755), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(457), - [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(764), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 3, .production_id = 83), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 3, .production_id = 83), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 4, .production_id = 8), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 3, .production_id = 8), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2483), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_hl_groups_repeat1, 2), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_groups, 3), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_groups, 3), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_groups, 2), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_groups, 2), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 3, .production_id = 83), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 3, .production_id = 83), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_groups, 1), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_groups, 1), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 3), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_hl_groups_repeat1, 3), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 1, .production_id = 35), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 86), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 3, .production_id = 54), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_assignment, 3), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 2, .production_id = 56), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 2, .production_id = 56), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary_entry, 3, .production_id = 63), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 2, .production_id = 56), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 2, .production_id = 56), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 2), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_dictionary_entry, 3, .production_id = 63), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2, .production_id = 35), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), - [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1083), - [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3111), - [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2921), - [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1083), - [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2970), - [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1082), - [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3133), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1081), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_assignment, 3), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 4, .production_id = 74), - [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1164), - [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3151), - [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2952), - [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1164), - [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2910), - [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1158), - [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3035), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1135), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 2, .production_id = 56), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 2, .production_id = 56), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1872), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat2, 2), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2911), - [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3036), - [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3218), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 4, .production_id = 106), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 4, .production_id = 106), - [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3135), - [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3216), - [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3054), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 35), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 35), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 56), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 56), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 56), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 56), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 1, .production_id = 56), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 1, .production_id = 56), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 35), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 35), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 3, .production_id = 83), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 3, .production_id = 83), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 3, .production_id = 83), - [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 3, .production_id = 83), - [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1831), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_pattern_offset, 3, .production_id = 104), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_pattern_offset, 3, .production_id = 104), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2492), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 5, .production_id = 106), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 5, .production_id = 106), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2, .production_id = 105), - [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat2, 2, .production_id = 105), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 1, .production_id = 35), - [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 1, .production_id = 35), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 3, .production_id = 83), - [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 3, .production_id = 83), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 5, .production_id = 106), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 5, .production_id = 106), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 77), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 95), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_lhs, 3), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_lhs, 3), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_branch, 1), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_branch, 1), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 4, .production_id = 77), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_lhs, 2), - [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_lhs, 2), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_piece, 1), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_piece, 1), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 4, .production_id = 106), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 4, .production_id = 106), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 6, .production_id = 95), - [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2947), - [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2226), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1122), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3167), - [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2288), - [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1125), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), - [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(1131), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(265), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(3183), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_atom, 3), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_atom, 3), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 5, .production_id = 106), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 5, .production_id = 106), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2534), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), - [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2947), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), - [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2226), - [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1119), - [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1509), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 3), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom, 3), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [3651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3167), - [3654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2288), - [3657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1117), - [3660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1493), - [3663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2956), - [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2332), - [3669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1160), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 4, .production_id = 106), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 4, .production_id = 106), - [3676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2942), - [3679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2317), - [3682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1165), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 1, .production_id = 24), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 1, .production_id = 24), - [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2956), - [3692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2332), - [3695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1147), - [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1585), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), - [3703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3039), - [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3040), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3041), - [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3042), - [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3043), - [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3044), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_keys, 3), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 6, .production_id = 77), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_keys, 2), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 8), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2942), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2317), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1142), - [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1467), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keycode, 3), - [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keycode, 3), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3142), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3143), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3148), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3149), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3152), - [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3153), - [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2893), - [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2265), - [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1195), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), - [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1287), - [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3160), - [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1287), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2963), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2922), - [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1273), - [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2943), - [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2231), - [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1203), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1284), - [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3129), - [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1284), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3045), - [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3134), - [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1272), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 7, .production_id = 95), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_keycode, 3), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_keycode, 3), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1828), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2403), - [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2893), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2265), - [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1190), - [3922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1485), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1301), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3069), - [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1301), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3058), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3056), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1314), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3105), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2981), - [3951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2352), - [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1236), - [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2943), - [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2231), - [3963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1205), - [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1492), - [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1839), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2988), - [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2356), - [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1242), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2426), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_statement, 1), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2988), - [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2356), - [4018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1230), - [4021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1518), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2981), - [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2352), - [4040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1240), - [4043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1529), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_piece, 2), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_piece, 2), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 1, .production_id = 57), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 1, .production_id = 57), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_multi, 1), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_multi, 1), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 1), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 1), - [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3002), - [4077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2285), - [4080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1290), - [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(287), - [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), - [4088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(1294), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2974), - [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2342), - [4109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1299), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_start_stop, 3, .production_id = 76), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_start_stop, 3, .production_id = 76), - [4124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3002), - [4127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2285), - [4130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1275), - [4133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1508), - [4136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(285), - [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(1310), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_term_list, 2), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(286), - [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(1328), - [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2974), - [4163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2342), - [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1319), - [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1465), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2967), - [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2223), - [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1339), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 2), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 3, .production_id = 8), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 3), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2503), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 5, .production_id = 8), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1351), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), - [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1351), - [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2995), - [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2351), - [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1352), - [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1472), - [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3141), - [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(2975), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1353), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 3), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3174), - [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2284), - [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1356), - [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1357), - [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), - [4291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1357), - [4294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3094), - [4297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2331), - [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1358), - [4303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2967), - [4306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2223), - [4309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1337), - [4312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1543), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_attr_list, 2), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_attr_list, 2), - [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), SHIFT_REPEAT(1695), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 1), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 2), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_attr_list, 1), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_attr_list, 1), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1379), - [4385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1379), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [4398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1556), - [4401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3057), - [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3213), - [4407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1382), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 4, .production_id = 8), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [4420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1391), - [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1391), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), SHIFT_REPEAT(1672), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 1), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_argument, 2, .production_id = 56), - [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_argument, 2, .production_id = 56), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [4481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2494), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1418), - [4509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1418), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1420), - [4521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1420), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1436), - [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1436), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3174), - [4585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2284), - [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1390), - [4591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1538), - [4594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3094), - [4597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2331), - [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1380), - [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1513), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2995), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2351), - [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1405), - [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1535), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1455), - [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1455), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_font, 3, .production_id = 76), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_font, 3, .production_id = 76), - [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_gui_color, 3, .production_id = 76), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_gui_color, 3, .production_id = 76), - [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_gui, 3, .production_id = 76), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_gui, 3, .production_id = 76), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(450), - [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1476), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_ctermfg_ctermbg, 3, .production_id = 76), - [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_ctermfg_ctermbg, 3, .production_id = 76), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_cterm, 3, .production_id = 76), - [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_cterm, 3, .production_id = 76), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_attribute, 1, .production_id = 28), - [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_attribute, 1, .production_id = 28), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_quoted_name, 3), - [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_quoted_name, 3), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_branch, 2), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(570), - [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1520), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(449), - [4757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1525), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(451), - [4767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1528), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(460), - [4805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1542), - [4808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(1556), - [4811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(3057), - [4814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(3213), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1550), - [4828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1550), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1689), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 1, .production_id = 57), - [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 1, .production_id = 57), - [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(490), - [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1561), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 1), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1713), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1572), - [4892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1572), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [4899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(582), - [4902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1576), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1588), - [4912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1588), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1668), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 2), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_statement, 2), - [4984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(2119), - [4987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(638), - [4990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1595), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 2), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), - [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1648), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 2), - [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1621), - [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(2123), - [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(467), - [5021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1527), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1630), - [5035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1630), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [5064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1642), - [5067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1642), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1710), - [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1653), - [5084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1653), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define, 2, .production_id = 33), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 1, .production_id = 57), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_option, 2), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define, 3, .production_id = 33), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_option, 1), - [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_option, 1), - [5139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1696), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_item, 1, .production_id = 12), - [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_item, 1, .production_id = 12), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_place, 2, .production_id = 37), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_statement_repeat1, 2), - [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), - [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), SHIFT_REPEAT(1687), - [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1614), - [5186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1690), - [5189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1690), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [5210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(1706), - [5213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(269), - [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(3088), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1637), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_option, 2), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1738), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3016), - [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3015), - [5261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3014), - [5264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3013), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [5271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3027), - [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3023), - [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3021), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), - [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 82), - [5284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 82), SHIFT_REPEAT(3059), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [5289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3226), - [5292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3228), - [5295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3235), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [5300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3060), - [5303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3244), - [5306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3061), - [5309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3062), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_cluster, 2, .production_id = 56), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_cluster, 2, .production_id = 56), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 1), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 20), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3127), - [5337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3126), - [5340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(3003), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), - [5345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1462), - [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1462), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 3, .production_id = 32), - [5355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(3159), - [5358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1433), - [5361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1433), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 1), - [5382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1622), - [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 2, .production_id = 15), - [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 2), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2, .production_id = 20), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 5), - [5409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 5), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 1), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3113), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1675), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 6), - [5441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 6), - [5443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1608), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [5448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_arg_text, 1), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_arg_text, 1), - [5454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1714), - [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), SHIFT_REPEAT(1799), - [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 4, .production_id = 61), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_option, 2), - [5466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_option, 2), - [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 2), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 2), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_option, 2), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inv_option, 2), - [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 3), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 3), - [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), - [5492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1815), - [5495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1815), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_place_argument, 3, .production_id = 83), - [5512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 1, .production_id = 58), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_argument, 3, .production_id = 83), - [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_argument, 3, .production_id = 83), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_option, 3), - [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_option, 3), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1824), - [5529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1824), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1651), - [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 1, .production_id = 35), - [5539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 1, .production_id = 35), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 1, .production_id = 35), - [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 2), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_arg_text, 2), - [5565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_arg_text, 2), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_explicit, 1, .production_id = 3), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_list, 1, .production_id = 8), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [5591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inv_option, 2), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 1, .production_id = 44), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 4, .production_id = 20), - [5611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 1), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 1), - [5617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1633), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1871), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 1, .production_id = 8), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_colorscheme_statement, 1), - [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_previous_pattern, 1), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_line, 1), - [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 3), - [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_sync_lines, 3, .production_id = 83), - [5657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1885), - [5660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1885), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 1), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_option, 2), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(2973), - [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1477), - [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1477), - [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 1, .production_id = 36), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 1), - [5748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 1), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [5752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_rhs, 2), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 1), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 1), - [5766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(1862), - [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(3242), - [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), - [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2137), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 3, .production_id = 44), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), - [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3066), - [5804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3067), - [5807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3068), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), - [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3063), - [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3064), - [5820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3065), - [5823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(1867), - [5826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2989), - [5829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2178), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_cluster, 3, .production_id = 8), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 2, .production_id = 39), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 2, .production_id = 29), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 2, .production_id = 38), - [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), SHIFT_REPEAT(3053), - [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), - [5885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3049), - [5888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3050), - [5891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3051), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 1, .production_id = 37), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [5914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(1960), - [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), - [5919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), SHIFT_REPEAT(3220), - [5922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3200), - [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3120), - [5928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3190), - [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_cluster, 2, .production_id = 8), - [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 2, .production_id = 36), - [5935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3012), - [5938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3011), - [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3009), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 2, .production_id = 37), - [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place, 2, .production_id = 8), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(538), - [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1970), - [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 3, .production_id = 38), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1974), - [5973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1974), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(273), - [5981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(3210), - [5984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(1977), - [5987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [5993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(274), - [5996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(3083), - [5999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(1980), - [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 3, .production_id = 39), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 3), - [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_rhs, 3), - [6012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3008), - [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3006), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3000), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [6033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1991), - [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1991), - [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 2), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_statement, 1, .production_id = 2), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 2, .production_id = 44), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [6093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1709), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 1), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [6110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 1), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [6128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 2, .production_id = 19), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 5, .production_id = 98), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1730), - [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3114), - [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3115), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 2, .production_id = 19), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [6155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3108), - [6158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1657), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_bangs, 1), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_bangs, 1), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_explicit, 3, .production_id = 45), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [6173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(275), - [6176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(3138), - [6179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(2044), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 3, .production_id = 40), - [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range, 1, .production_id = 2), - [6188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2292), - [6191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), - [6193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2292), - [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 3, .production_id = 40), - [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 2), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [6202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 2), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 9), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 22), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 8), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 3, .production_id = 40), - [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 81), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 59), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 2, .production_id = 19), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [6258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(1953), - [6261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(3123), - [6264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2318), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 2), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 2, .production_id = 19), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 3, .production_id = 40), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 3, .production_id = 59), - [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 2), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 3, .production_id = 29), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 82), - [6313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 82), SHIFT_REPEAT(3112), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 82), SHIFT_REPEAT(3032), - [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [6323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2306), - [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 7), - [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2096), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1729), - [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(636), - [6359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(2133), - [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 1, .production_id = 35), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 1, .production_id = 35), - [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 1, .production_id = 35), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 1, .production_id = 35), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 4, .production_id = 78), - [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 1, .production_id = 24), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 96), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 78), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), - [6392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), SHIFT_REPEAT(3077), - [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 97), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_cluster, 3, .production_id = 83), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id_argument, 3, .production_id = 83), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump_argument, 3, .production_id = 83), - [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 96), - [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 107), - [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 108), - [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 97), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 107), - [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 108), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 112), - [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 1, .production_id = 24), - [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 8, .production_id = 112), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_list_argument, 3, .production_id = 83), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_clear, 1, .production_id = 8), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_spell, 1, .production_id = 8), - [6437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2438), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(484), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_list, 1, .production_id = 8), - [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_bangs, 2), - [6455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_bangs, 2), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__runtime_where, 1), - [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__runtime_where, 1), - [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(491), - [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [6470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), SHIFT_REPEAT(2932), - [6473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__let_heredoc_repeat1, 2), SHIFT_REPEAT(2387), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__let_heredoc_repeat1, 2), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1599), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [6507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1655), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_rhs, 1), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_statement, 3), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), SHIFT_REPEAT(1593), - [6529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_set_statement_repeat1, 2), - [6531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), SHIFT_REPEAT(2615), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), - [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 1), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setlocal_statement, 3), - [6544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), SHIFT_REPEAT(2579), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [6551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetypes, 2), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [6555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), SHIFT_REPEAT(1554), - [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 1, .production_id = 58), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [6574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setlocal_statement, 3), - [6576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_statement, 3), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [6584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_rhs, 1), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [6640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), SHIFT_REPEAT(3145), - [6643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), - [6645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), SHIFT_REPEAT(2276), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 2, .production_id = 4), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync_lines, 3, .production_id = 83), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 3, .production_id = 23), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [6688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 1), - [6690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_argument, 1), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_argument, 1), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [6724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1745), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetypes, 1), - [6731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1743), - [6734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat2, 2), SHIFT_REPEAT(2302), - [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat2, 2), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setlocal_statement, 2), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [6755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_statement, 2), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_case, 1, .production_id = 8), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_foldlevel, 1, .production_id = 8), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [6771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1735), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_iskeyword, 1, .production_id = 8), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setlocal_statement, 2), - [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_statement, 2), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_conceal, 1, .production_id = 8), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_iskeyword, 1, .production_id = 8), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_startinsert_statement, 1), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_clear, 1), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [6868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionnary_repeat1, 2), SHIFT_REPEAT(410), - [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionnary_repeat1, 2), - [6873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 65), SHIFT_REPEAT(2885), - [6876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 65), - [6878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1604), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [6899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1600), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc_parameter, 1), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_au_event_list_repeat1, 2), - [6914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_au_event_list_repeat1, 2), SHIFT_REPEAT(3072), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [6927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1603), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_au_event_list, 1), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [7038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2720), - [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_au_event_list, 2), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(2201), - [7078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [7090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), SHIFT_REPEAT(1583), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [7099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_item, 2, .production_id = 30), - [7101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_item, 2, .production_id = 30), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_rhs, 2, .production_id = 60), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [7177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_rhs, 2, .production_id = 60), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 8, .production_id = 109), - [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_options_statement, 2), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 3), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 4, .production_id = 53), - [7213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_link, 3, .production_id = 55), - [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_clear, 3, .production_id = 8), - [7217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_list, 2, .production_id = 8), - [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 50), - [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 4, .production_id = 50), - [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4), - [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 31), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_list, 3, .production_id = 8), - [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 4), - [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bang_filter_statement, 3, .production_id = 43), - [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 4, .production_id = 20), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 4, .production_id = 62), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 42), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_include, 2, .production_id = 8), - [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 3, .production_id = 20), - [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wincmd_statement, 3, .production_id = 41), - [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 66), - [7267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 5, .production_id = 70), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [7271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5, .production_id = 71), - [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 71), - [7275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 50), - [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 52), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 4, .production_id = 52), - [7287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_conceal, 2, .production_id = 8), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_iskeyword, 2, .production_id = 8), - [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_foldlevel, 2, .production_id = 8), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 5, .production_id = 72), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_assignment, 2), - [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 3), - [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_spell, 2, .production_id = 8), - [7305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_case, 2, .production_id = 8), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 5, .production_id = 73), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_link, 4, .production_id = 75), - [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 2, .production_id = 34), - [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 2, .production_id = 8), - [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_clear, 2), - [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_cursor, 1, .production_id = 35), - [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setfiletype_statement, 3), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [7325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place, 2, .production_id = 34), - [7327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_list, 2, .production_id = 33), - [7329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_clear, 2, .production_id = 8), - [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_include, 4, .production_id = 79), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 29), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_undefine, 2, .production_id = 33), - [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 80), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 5), - [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_options_statement, 1), - [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopinsert_statement, 1), - [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 5, .production_id = 20), - [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comclear_statement, 1), - [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 5, .production_id = 84), - [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 85), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(512), + [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(684), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable, 1), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable, 1), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 1), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 4), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 4), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 2), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 2), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 3), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 3), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_hl_pattern, 3), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_hl_pattern, 3), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(540), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(724), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 3, .production_id = 83), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 3, .production_id = 83), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(653), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(766), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 3, .production_id = 8), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 3, .production_id = 83), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 3, .production_id = 83), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 4, .production_id = 8), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_groups, 2), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_groups, 2), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2522), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_hl_groups_repeat1, 2), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 3, .production_id = 83), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 3, .production_id = 83), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_groups, 3), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_groups, 3), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_groups, 1), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_groups, 1), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 3), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_hl_groups_repeat1, 3), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_assignment, 3), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 86), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 2), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 2, .production_id = 56), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 2, .production_id = 56), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2, .production_id = 35), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 3, .production_id = 54), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 1, .production_id = 35), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_assignment, 3), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_dictionary_entry, 3, .production_id = 63), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 4, .production_id = 74), + [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1135), + [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3215), + [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3003), + [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1135), + [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2963), + [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1140), + [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3045), + [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1144), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 2, .production_id = 56), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 2, .production_id = 56), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 2, .production_id = 56), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 2, .production_id = 56), + [3194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1088), + [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3174), + [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2972), + [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1088), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2995), + [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1081), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3152), + [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(1098), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionnary_entry, 3, .production_id = 63), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(2964), + [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3059), + [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3254), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 2), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1917), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat2, 2), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1946), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 56), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 56), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 4, .production_id = 106), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 4, .production_id = 106), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 3, .production_id = 83), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 3, .production_id = 83), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 35), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 35), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 1, .production_id = 56), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 1, .production_id = 56), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 1, .production_id = 35), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_region_repeat1, 1, .production_id = 35), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2422), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_end, 5, .production_id = 106), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_end, 5, .production_id = 106), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 35), + [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_match, 1, .production_id = 35), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_keyword, 3, .production_id = 83), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_keyword, 3, .production_id = 83), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 56), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 1, .production_id = 56), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_region, 3, .production_id = 83), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_region, 3, .production_id = 83), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2, .production_id = 105), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat2, 2, .production_id = 105), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_pattern_offset, 3, .production_id = 104), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_pattern_offset, 3, .production_id = 104), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3154), + [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3256), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat1, 2), SHIFT_REPEAT(3027), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 95), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_lhs, 2), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_lhs, 2), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), + [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(1109), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), + [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(265), + [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(3284), + [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3295), + [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2380), + [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1111), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 4, .production_id = 77), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 77), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_branch, 1), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_branch, 1), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_piece, 1), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_piece, 1), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3170), + [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2314), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1116), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 6, .production_id = 95), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_lhs, 3), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_lhs, 3), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 4, .production_id = 106), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 4, .production_id = 106), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_start, 5, .production_id = 106), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_start, 5, .production_id = 106), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3170), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), + [3597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2314), + [3600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1115), + [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1565), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_atom, 3), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_atom, 3), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 5, .production_id = 106), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 5, .production_id = 106), + [3620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3295), + [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2380), + [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1124), + [3629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1509), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_region_skip, 4, .production_id = 106), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region_skip, 4, .production_id = 106), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 3), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom, 3), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2492), + [3669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2993), + [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2321), + [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1160), + [3678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3011), + [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2307), + [3684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1166), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 6, .production_id = 77), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 5, .production_id = 8), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 1, .production_id = 24), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 1, .production_id = 24), + [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3094), + [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3093), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3092), + [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3091), + [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3090), + [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3089), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_match, 7, .production_id = 95), + [3733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3100), + [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3101), + [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3102), + [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3103), + [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3104), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3105), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_keys, 2), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_keys, 3), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keycode, 3), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keycode, 3), + [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2978), + [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2352), + [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1184), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2993), + [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2321), + [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1149), + [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1588), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_keycode, 3), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_keycode, 3), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1290), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3224), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1290), + [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3018), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(2973), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1280), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3011), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2307), + [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1148), + [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1594), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1284), + [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3193), + [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1284), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3063), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3153), + [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1285), + [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2955), + [3887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2391), + [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1212), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1928), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1308), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3006), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1308), + [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3014), + [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(3015), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 2), SHIFT_REPEAT(1316), + [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3049), + [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2283), + [3924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1223), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_body_keys_repeat1, 2), SHIFT_REPEAT(3168), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat2, 2), SHIFT_REPEAT(1958), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2955), + [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2391), + [3955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1191), + [3958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1587), + [3961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2978), + [3964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2352), + [3967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1208), + [3970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1584), + [3973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3042), + [3976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2278), + [3979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1236), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2470), + [3997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3049), + [4000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2283), + [4003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1230), + [4006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1585), + [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3042), + [4012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2278), + [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1218), + [4018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1597), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2504), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_statement, 1), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_piece, 2), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_piece, 2), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 1), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 1), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3035), + [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2298), + [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1279), + [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_multi, 1), + [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_multi, 1), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_match_repeat1, 1, .production_id = 57), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_match_repeat1, 1, .production_id = 57), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [4097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3034), + [4100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2293), + [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1302), + [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3035), + [4109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2298), + [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1276), + [4115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1581), + [4118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(285), + [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), + [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(1306), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_start_stop, 3, .production_id = 76), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_start_stop, 3, .production_id = 76), + [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(286), + [4137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(1312), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_term_list, 2), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 4, .production_id = 8), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1468), + [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3205), + [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1468), + [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(2996), + [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1371), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 5, .production_id = 8), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword, 3, .production_id = 8), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3034), + [4216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2293), + [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1301), + [4222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1596), + [4225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3026), + [4228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2301), + [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1343), + [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1437), + [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3230), + [4240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1437), + [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3032), + [4246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1367), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(287), + [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__hl_term_list, 2), SHIFT_REPEAT(1350), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 1), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 1), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 2), + [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 2), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [4297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1358), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), + [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1358), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filename, 3), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [4321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3190), + [4324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2319), + [4327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1362), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), SHIFT_REPEAT(1784), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_attr_list, 2), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_attr_list, 2), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword_identifier, 1), + [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_keyword_identifier, 1), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_argument, 2, .production_id = 56), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_argument, 2, .production_id = 56), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3056), + [4384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2286), + [4387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1377), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_keyword_identifier_repeat1, 2), + [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_identifier_repeat1, 2), + [4394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_identifier_repeat1, 2), SHIFT_REPEAT(1379), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword_identifier, 2), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_keyword_identifier, 2), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_attr_list, 1), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_attr_list, 1), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [4435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1522), + [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3234), + [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1522), + [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(3040), + [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 2), SHIFT_REPEAT(1441), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [4466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3026), + [4469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2301), + [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1351), + [4475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1595), + [4478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1399), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), + [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1399), + [4486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_identifier_repeat1, 2), SHIFT_REPEAT(1401), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filename, 3), + [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1404), + [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1404), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__hl_attr_list_repeat1, 2), SHIFT_REPEAT(1774), + [4504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1410), + [4507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1410), + [4510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(3106), + [4513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(2289), + [4516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom, 2), SHIFT_REPEAT(1411), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2464), + [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2482), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3106), + [4556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2289), + [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1353), + [4562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1573), + [4565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3056), + [4568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2286), + [4571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1365), + [4574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1600), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2484), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [4600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1442), + [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1442), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1447), + [4629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1447), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1457), + [4651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1457), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_identifier_repeat1, 2), SHIFT_REPEAT(1465), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(3190), + [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(2319), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1385), + [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_concat, 2), SHIFT_REPEAT(1551), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1483), + [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1483), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hl_attribute, 1, .production_id = 28), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hl_attribute, 1, .production_id = 28), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(639), + [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1495), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_quoted_name, 3), + [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_quoted_name, 3), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword_identifier, 3), + [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_keyword_identifier, 3), + [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(634), + [4780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1510), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_keyword_identifier, 4), + [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_keyword_identifier, 4), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_branch, 2), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hl_groups_repeat1, 2), SHIFT_REPEAT(2578), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(616), + [4825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1529), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_cterm, 3, .production_id = 76), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_cterm, 3, .production_id = 76), + [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_ctermfg_ctermbg, 3, .production_id = 76), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_ctermfg_ctermbg, 3, .production_id = 76), + [4838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(677), + [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1533), + [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_gui, 3, .production_id = 76), + [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_gui, 3, .production_id = 76), + [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_gui_color, 3, .production_id = 76), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_gui_color, 3, .production_id = 76), + [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hl_key_font, 3, .production_id = 76), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_key_font, 3, .production_id = 76), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(626), + [4867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1543), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat2, 1, .production_id = 57), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat2, 1, .production_id = 57), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(1790), + [4913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(3118), + [4916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(1790), + [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), SHIFT_REPEAT(3187), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 2), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1795), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [4949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(630), + [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1593), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1601), + [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1601), + [4965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1772), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 1), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [4990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1615), + [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1615), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(660), + [5025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(1625), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [5038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1629), + [5041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1629), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 2), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [5080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1748), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1650), + [5094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1650), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1794), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1654), + [5117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1662), + [5120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1662), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_statement, 2), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 2), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_statement, 2), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(2082), + [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(566), + [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1546), + [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(2152), + [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(668), + [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_statement_repeat1, 2), SHIFT_REPEAT(1514), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1686), + [5178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1686), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [5193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1636), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_item, 1, .production_id = 12), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1708), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_option, 2), + [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_option, 2), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 82), + [5237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 82), SHIFT_REPEAT(3121), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), + [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3246), + [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3245), + [5250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3244), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), + [5255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3122), + [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3242), + [5261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3123), + [5264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3124), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_option, 1), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(1733), + [5280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(269), + [5283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_lhs_repeat1, 2), SHIFT_REPEAT(3117), + [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_statement_repeat1, 2), + [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), + [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), SHIFT_REPEAT(1735), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3052), + [5310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3054), + [5313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3069), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_keyword_repeat1, 1, .production_id = 57), + [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_keyword_repeat1, 1, .production_id = 57), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define, 2, .production_id = 33), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [5330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3144), + [5333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3073), + [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3074), + [5339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3075), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1762), + [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1762), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_option, 1), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_item, 1, .production_id = 12), + [5364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1754), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_place, 2, .production_id = 37), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1703), + [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define, 3, .production_id = 33), + [5398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1640), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 2), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 6), + [5421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 6), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2, .production_id = 20), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 1), + [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 4, .production_id = 61), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_cluster, 2, .production_id = 56), + [5467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_arguments_cluster, 2, .production_id = 56), + [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3148), + [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 2), SHIFT_REPEAT(3147), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 3, .production_id = 32), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [5485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(3036), + [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), + [5490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1485), + [5493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1485), + [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1696), + [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_statement_repeat1, 2), SHIFT_REPEAT(1821), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_statement, 2, .production_id = 15), + [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_assignment, 5), + [5506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_assignment, 5), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 1), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_arg_text, 1), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_arg_text, 1), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 1), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 20), + [5528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1710), + [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(3300), + [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1477), + [5537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1477), + [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 2), SHIFT_REPEAT(3177), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [5547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1793), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1658), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 3), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 3), + [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_explicit, 1, .production_id = 3), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_place_repeat1, 1, .production_id = 35), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 1), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 1, .production_id = 44), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_option, 3), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_marker, 3), + [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_line, 1), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_previous_pattern, 1), + [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_option, 2), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inv_option, 2), + [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_option, 2), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_colorscheme_statement, 1), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [5663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), + [5665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1882), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 2), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_argument, 3, .production_id = 83), + [5674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_argument, 3, .production_id = 83), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_place_argument, 3, .production_id = 83), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 1, .production_id = 8), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 4, .production_id = 20), + [5688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_sync_lines, 3, .production_id = 83), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1693), + [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 1), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 1), + [5703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1698), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_define_repeat1, 1, .production_id = 35), + [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sign_define_repeat1, 1, .production_id = 35), + [5714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_command_argument, 2), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command_argument, 2), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_list, 1, .production_id = 8), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [5736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1914), + [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1914), + [5742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(3033), + [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1550), + [5748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 2), SHIFT_REPEAT(1550), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_define_arg_text, 2), + [5779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sign_define_arg_text, 2), + [5781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_option, 3), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__syn_sync_repeat1, 1, .production_id = 58), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1943), + [5800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1943), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1953), + [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1953), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [5831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_option, 2), + [5833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inv_option, 2), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_option, 2), + [5841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 2, .production_id = 44), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 3, .production_id = 38), + [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), + [5853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3128), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3129), + [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3130), + [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3013), + [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3001), + [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(2950), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), + [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3125), + [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3126), + [5881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3127), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 1, .production_id = 36), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [5900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3095), + [5903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3098), + [5906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3119), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [5919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_rhs, 2), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), + [5927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), SHIFT_REPEAT(3251), + [5930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1980), + [5933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_argument_repeat1, 2), SHIFT_REPEAT(1980), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 2, .production_id = 29), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [5950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 1, .production_id = 37), + [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_command, 3, .production_id = 44), + [5954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3078), + [5957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3080), + [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3083), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 2), + [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1989), + [5970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_filename_repeat1, 2), SHIFT_REPEAT(1989), + [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_cluster, 3, .production_id = 8), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(1949), + [5980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(3142), + [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), + [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2256), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 2, .production_id = 39), + [5990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(1897), + [5993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(3239), + [5996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2263), + [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 2, .production_id = 38), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_cluster, 2, .production_id = 8), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(468), + [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(2000), + [6021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(273), + [6024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(3260), + [6027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(2002), + [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place, 2, .production_id = 8), + [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__map_rhs, 3), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_runtime_statement_repeat1, 1), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_runtime_statement_repeat1, 1), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 1), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 1), + [6070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3110), + [6073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3111), + [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3112), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 2, .production_id = 37), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id, 2, .production_id = 36), + [6089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1753), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [6096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(274), + [6099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(2998), + [6102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(2028), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), + [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(2032), + [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 3), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_statement, 1, .production_id = 2), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 2), SHIFT_REPEAT(3029), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump, 3, .production_id = 39), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 1), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 1), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range, 1, .production_id = 2), + [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_explicit, 3, .production_id = 45), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 2), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 5, .production_id = 98), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 3, .production_id = 29), + [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 22), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 3, .production_id = 59), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1726), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 82), SHIFT_REPEAT(3043), + [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 82), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [6281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(276), + [6284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(3155), + [6287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 2), SHIFT_REPEAT(2100), + [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 81), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 2), SHIFT_REPEAT(3171), + [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 9), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1660), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 3, .production_id = 40), + [6354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2371), + [6357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), + [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2371), + [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 8), + [6364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 2), SHIFT_REPEAT(3178), + [6367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 2), SHIFT_REPEAT(3179), + [6370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 3, .production_id = 40), + [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 2, .production_id = 19), + [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 2, .production_id = 82), SHIFT_REPEAT(3176), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 59), + [6379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 2), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 2, .production_id = 19), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 2), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 2, .production_id = 19), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [6399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2045), + [6402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(3146), + [6405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bang_filter_command_repeat1, 2), SHIFT_REPEAT(2378), + [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_builtin_statement, 3, .production_id = 40), + [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_command, 2), + [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unknown_builtin_statement, 2, .production_id = 19), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 7), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_bangs, 1), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_bangs, 1), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [6444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2316), + [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), + [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_command, 3, .production_id = 40), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_spell, 1, .production_id = 8), + [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_list, 1, .production_id = 8), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bang_filter_bangs, 2), + [6461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bang_filter_bangs, 2), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_jump_argument, 3, .production_id = 83), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 8, .production_id = 112), + [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 112), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 108), + [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 7, .production_id = 107), + [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 97), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 108), + [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 107), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 6, .production_id = 96), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_id_argument, 3, .production_id = 83), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_arguments_cluster, 3, .production_id = 83), + [6499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 2), SHIFT_REPEAT(2447), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 97), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), SHIFT_REPEAT(3203), + [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), + [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 78), + [6513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2147), + [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place_list_argument, 3, .production_id = 83), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 5, .production_id = 96), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_region, 4, .production_id = 78), + [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_place_list, 1, .production_id = 35), + [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__runtime_where, 1), + [6536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__runtime_where, 1), + [6538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__let_heredoc_repeat1, 2), SHIFT_REPEAT(2451), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__let_heredoc_repeat1, 2), + [6543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(533), + [6546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(2240), + [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__map_rhs_repeat1, 1, .production_id = 24), + [6551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__map_rhs_repeat1, 1, .production_id = 24), + [6553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(495), + [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_clear, 1, .production_id = 8), + [6562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__syn_region_repeat2, 2), SHIFT_REPEAT(3139), + [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_cluster_repeat1, 1, .production_id = 35), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [6569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(488), + [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_unplace_id_repeat1, 1, .production_id = 35), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sign_jump_repeat1, 1, .production_id = 35), + [6578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1680), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [6583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1741), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setlocal_statement, 2), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1635), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetypes, 2), + [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__syn_sync_repeat1, 1, .production_id = 58), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [6621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), SHIFT_REPEAT(1498), + [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setlocal_statement, 3), + [6630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), SHIFT_REPEAT(2819), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_statement, 3), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), SHIFT_REPEAT(2970), + [6680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), + [6682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), SHIFT_REPEAT(2296), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [6699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filetypes_repeat1, 2), SHIFT_REPEAT(2763), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 3, .production_id = 23), + [6706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), SHIFT_REPEAT(1579), + [6709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_set_statement_repeat1, 2), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 1), + [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_argument, 1), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [6747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_rhs, 1), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat2, 2), SHIFT_REPEAT(2392), + [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat2, 2), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetypes, 1), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_statement, 2), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [6806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setlocal_statement, 3), + [6808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_statement, 3), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [6818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_rhs, 1), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_conceal, 1, .production_id = 8), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_iskeyword, 1, .production_id = 8), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_foldlevel, 1, .production_id = 8), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_case, 1, .production_id = 8), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 2, .production_id = 4), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync_lines, 3, .production_id = 83), + [6860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__syn_iskeyword, 1, .production_id = 8), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unknown_builtin_statement_repeat1, 1), + [6874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_argument, 1), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [6882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1731), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [6887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1738), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [6918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_branch_repeat1, 2), SHIFT_REPEAT(1782), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [6927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setlocal_statement, 2), + [6929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_statement, 2), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [6949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1643), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1676), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_clear, 1), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc_parameter, 1), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_startinsert_statement, 1), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_au_event_list_repeat1, 2), + [7071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_au_event_list_repeat1, 2), SHIFT_REPEAT(3136), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [7102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__syn_keyword_identifier_repeat1, 2), SHIFT_REPEAT(2481), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__set_rhs, 2, .production_id = 60), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_item, 2, .production_id = 30), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [7151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_repeat1, 2), SHIFT_REPEAT(1656), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_ordinary_atom_repeat1, 2), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [7190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__set_rhs, 2, .production_id = 60), + [7192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_au_event_list, 2), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [7218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionnary_repeat1, 2), SHIFT_REPEAT(395), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionnary_repeat1, 2), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [7233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 65), SHIFT_REPEAT(2627), + [7236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 65), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_au_event_list, 1), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [7278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), SHIFT_REPEAT(2886), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 2), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [7313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_item, 2, .production_id = 30), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [7321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(2202), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [7326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_set_statement_repeat1, 2), SHIFT_REPEAT(1566), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 3), + [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_statement, 3, .production_id = 26), + [7335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_enable, 1, .production_id = 8), + [7337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_iskeyword, 2, .production_id = 8), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 6, .production_id = 93), + [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_conceal, 2, .production_id = 8), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_include, 2, .production_id = 8), + [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 6, .production_id = 92), + [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 4), + [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 52), + [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 50), + [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_list, 2, .production_id = 8), + [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 71), + [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 6, .production_id = 90), + [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 9), + [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 10), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6), - [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 6, .production_id = 90), - [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 71), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 50), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 52), - [7387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 4), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 6, .production_id = 92), - [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 6, .production_id = 93), - [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 6, .production_id = 94), - [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 6), - [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 99), - [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_register_statement, 1), - [7407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 71), - [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 5), - [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 5, .production_id = 66), - [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 7, .production_id = 101), - [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 7, .production_id = 102), - [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 7, .production_id = 103), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [7421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 5), - [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_none, 2), - [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 3, .production_id = 27), - [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 6, .production_id = 29), - [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 2), - [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perl_statement, 2), - [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 6, .production_id = 85), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lua_statement, 2), - [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 6), - [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ruby_statement, 2), - [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_statement, 2), - [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 8, .production_id = 110), - [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 8, .production_id = 111), - [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augroup_statement, 3, .production_id = 23), - [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_silent_statement, 2), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_cursor_argument, 3, .production_id = 83), - [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_statement, 3, .production_id = 26), - [7461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 2, .production_id = 25), - [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echohl_statement, 2), - [7465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 7, .production_id = 99), - [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 9, .production_id = 113), - [7469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_statement, 2, .production_id = 5), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_silent_statement, 3), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 3), - [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_assignment, 2), - [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3), - [7489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__au_pattern, 1), - [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 52), - [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augroup_statement, 2, .production_id = 4), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 1), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 2), - [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_state, 1), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_statement, 2, .production_id = 18), - [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_statement, 2, .production_id = 17), - [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wincmd_statement, 2, .production_id = 16), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delcommand_statement, 2), - [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_colorscheme_statement, 2, .production_id = 14), - [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2, .production_id = 13), - [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scriptencoding_statement, 2), - [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encoding, 1), - [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_startinsert_statement, 2), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 2, .production_id = 7), - [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_enable, 1, .production_id = 8), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setfiletype_statement, 2), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 9), - [7547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 11), - [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 10), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body, 1, .production_id = 6), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 46), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__keycode_in, 2), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [8057] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at, 1), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syntax_statement, 2, .production_id = 11), + [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 85), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 5, .production_id = 84), + [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 5, .production_id = 20), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setfiletype_statement, 3), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 31), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_cursor_argument, 3, .production_id = 83), + [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setfiletype_statement, 2), + [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_options_statement, 2), + [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_list, 2, .production_id = 33), + [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 5), + [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_startinsert_statement, 2), + [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 80), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 4, .production_id = 29), + [7407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encoding, 1), + [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 5, .production_id = 73), + [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_include, 4, .production_id = 79), + [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_undefine, 2, .production_id = 33), + [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scriptencoding_statement, 2), + [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_place, 2, .production_id = 34), + [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 2, .production_id = 13), + [7421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace_cursor, 1, .production_id = 35), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 2, .production_id = 8), + [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sign_unplace, 2, .production_id = 34), + [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_colorscheme_statement, 2, .production_id = 14), + [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delcommand_statement, 2), + [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_statement, 2, .production_id = 5), + [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body, 1, .production_id = 6), + [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wincmd_statement, 2, .production_id = 16), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_link, 4, .production_id = 75), + [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 3), + [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_assignment, 2), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wincmd_statement, 3, .production_id = 41), + [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 3, .production_id = 20), + [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 5, .production_id = 72), + [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 3, .production_id = 42), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 6, .production_id = 94), + [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 4, .production_id = 52), + [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bang_filter_statement, 3, .production_id = 43), + [7461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_statement, 2, .production_id = 17), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augroup_statement, 2, .production_id = 4), + [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_statement, 2, .production_id = 18), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [7479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5), + [7481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_foldlevel, 2, .production_id = 8), + [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perl_statement, 2), + [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 52), + [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__filetype_state, 1), + [7489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_list, 3, .production_id = 8), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 4, .production_id = 50), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echohl_statement, 2), + [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_silent_statement, 2), + [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 50), + [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 2), + [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 50), + [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 52), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 71), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 5, .production_id = 71), + [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script, 3), + [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 5, .production_id = 70), + [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4), + [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 66), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_case, 2, .production_id = 8), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_python_statement, 2), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [7541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_clear, 2, .production_id = 8), + [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ruby_statement, 2), + [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 4, .production_id = 53), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_silent_statement, 3), + [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_clear, 3, .production_id = 8), + [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lua_statement, 2), + [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_clear, 2), + [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_none, 2), + [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_assignment, 2), + [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 3, .production_id = 27), + [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augroup_statement, 3, .production_id = 23), + [7571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_dictionary_repeat1, 2, .production_id = 46), + [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5), + [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 6), + [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_definition, 2, .production_id = 25), + [7579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 99), + [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopinsert_statement, 1), + [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 71), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 2), + [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 4, .production_id = 62), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_statement, 4, .production_id = 20), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 5), + [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 5, .production_id = 66), + [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filetype_statement, 4), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [7615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 7, .production_id = 101), + [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight_statement, 2, .production_id = 7), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 7, .production_id = 102), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_spell, 2, .production_id = 8), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 7, .production_id = 103), + [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__map_rhs, 5), + [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_register_statement, 1), + [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comclear_statement, 1), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hl_body_link, 3, .production_id = 55), + [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__syn_sync, 6, .production_id = 29), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 6, .production_id = 85), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 6), + [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 8, .production_id = 109), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_options_statement, 1), + [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 8, .production_id = 110), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 8, .production_id = 111), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_heredoc, 7, .production_id = 99), + [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autocmd_statement, 9, .production_id = 113), + [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_script_repeat1, 1), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__au_pattern, 1), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__keycode_in, 2), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at, 1), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [8309] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), }; #ifdef __cplusplus diff --git a/test/corpus/syntax_statement.txt b/test/corpus/syntax_statement.txt index 71dd765..df63e89 100644 --- a/test/corpus/syntax_statement.txt +++ b/test/corpus/syntax_statement.txt @@ -146,6 +146,44 @@ syn keyword vimSetting transparent skipwhite skipnl skipempty tag (syntax_argument) (keyword))) +================================================================================ +Syntax keyword special characters +================================================================================ + +syntax keyword Type conceal int long contained char= cchar=. +syntax keyword Type conceal int long3 contained this<>strange +syntax keyword Type conceal transparent[] +syntax keyword Type conceal nextgro[p]][opt] contained[] wired{keyword + +-------------------------------------------------------------------------------- + +(script_file + (syntax_statement + (hl_group) + (syntax_argument) + (keyword) + (keyword) + (syntax_argument) + (keyword) + (syntax_argument)) + (syntax_statement + (hl_group) + (syntax_argument) + (keyword) + (keyword) + (syntax_argument) + (keyword)) + (syntax_statement + (hl_group) + (syntax_argument) + (keyword)) + (syntax_statement + (hl_group) + (syntax_argument) + (keyword) + (keyword) + (keyword))) + ================================================================================ Syntax match ================================================================================