diff --git a/add_language.py b/add_language.py new file mode 100644 index 0000000..824f2ab --- /dev/null +++ b/add_language.py @@ -0,0 +1,119 @@ +""" +A script to add a new language to the tree-sitter-gritql project. +see https://github.com/getgrit/tree-sitter-gritql/commit/ea51437 +""" + +# Future imports (must occur at the beginning of the file): +from __future__ import annotations # https://www.python.org/dev/peps/pep-0585/ + +# Standard library imports: +import os +import re +import json +from argparse import Namespace, ArgumentParser +from subprocess import check_output, CalledProcessError + +repo_path = os.path.dirname(os.path.realpath(__file__)) +src_path = os.path.join(repo_path, "src") + +# https://regex101.com/r/YnCDji/1 +GRAMMAR_LANGUAGE_CHOICE = re.compile( + r""" + \/\/ These are target languages + languageName: \(\_\$\) => + choice\( + ('grit',) + (\s*'\w+',\n?)+ + (?P\s*'\w+',) + \),""", +) + + +def main(args: Namespace): + """Automate the process of adding a new language to the tree-sitter-gritql grammar/parser.""" + + grammar_js_path = os.path.join(repo_path, "grammar.js") + with open(grammar_js_path, "r") as f: + grammar_js = f.read() + match = GRAMMAR_LANGUAGE_CHOICE.search(grammar_js) + assert match, "Could not find the languageName choice in grammar.js" + print("Found languageName choice in grammar.js") + print(match.group(0)) + + # Extract the last language and append the new language + last_language = match.group("last_language") + new_language = f"\n '{args.language}'," + language_name_block = match.group(0) + new_language_name_block = language_name_block.replace( + last_language, last_language + new_language + ) + updated_grammar_js = grammar_js.replace( + language_name_block, new_language_name_block + ) + + # Write the updated grammar.js file + with open(grammar_js_path, "w") as f: + f.write(updated_grammar_js) + + # check if tree-sitter is installed: + try: + output = ( + check_output(["tree-sitter", "--version"], cwd=repo_path).decode().strip() + ) + print("using", output) + except CalledProcessError: + print("tree-sitter is not installed. Please install it first.") + print("using `npm install -g tree-sitter-cli`") + return + + output = check_output(["tree-sitter", "generate"], cwd=repo_path).decode().strip() + print(output) + + grammar_path = os.path.join(src_path, "grammar.json") + with open(grammar_path, "r") as f: + grammar = json.load(f) + # assert the language was added if not add it + for member in grammar["rules"]["languageName"]["members"]: + if member["value"] == args.language: + print(f"{args.language} already exists in grammar.json") + break + else: + print(f"Adding {args.language} to the grammar.json") + grammar["rules"]["languageName"]["members"].append( + {"type": "STRING", "value": args.language} + ) + with open(grammar_path, "w") as f: + json.dump(grammar, f, indent=2) + f.write("\n") # add trailing newline + + node_types_path = os.path.join(src_path, "node-types.json") + with open(node_types_path, "r") as f: + node_types = json.load(f) + # assert the language was added if not add it + for node_type in node_types: + if node_type["type"] == args.language: + print(f"{args.language} already exists in node-types.json") + break + else: + print(f"Adding {args.language} to the node-types.json") + node_types.append({"type": args.language, "named": False}) + with open(node_types_path, "w") as f: + json.dump(node_types, f, indent=2) + f.write("\n") # add trailing newline + + output = check_output(["git", "status"], cwd=repo_path).decode().strip() + print(output) + + +if __name__ == "__main__": + parser = ArgumentParser( + description="Add a new language to the tree-sitter-gritql project." + ) + parser.add_argument( + "--language", + "--lang", + help="The name of the language to add. e.g. 'kotlin'", + required=True, + ) + args = parser.parse_args() + main(args) diff --git a/grammar.js b/grammar.js index ac13726..7b3932d 100644 --- a/grammar.js +++ b/grammar.js @@ -608,6 +608,7 @@ module.exports = grammar({ 'c', 'ruby', 'cpp', + 'kotlin', ), backtickSnippet: (_$) => /`(?:[^`\\]|\\\$|\\\\|\\`|\\n)*`/, diff --git a/src/grammar.json b/src/grammar.json index bea655d..521619f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "gritql", "word": "name", "rules": { @@ -5916,6 +5917,10 @@ { "type": "STRING", "value": "cpp" + }, + { + "type": "STRING", + "value": "kotlin" } ] }, diff --git a/src/node-types.json b/src/node-types.json index b01f60b..c7a5d08 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -13343,6 +13343,7 @@ { "type": "source_file", "named": true, + "root": true, "fields": { "definitions": { "multiple": true, @@ -14677,6 +14678,10 @@ "type": "json", "named": false }, + { + "type": "kotlin", + "named": false + }, { "type": "language", "named": false @@ -14847,11 +14852,11 @@ }, { "type": "variable", - "named": false + "named": true }, { "type": "variable", - "named": true + "named": false }, { "type": "where", diff --git a/src/parser.c b/src/parser.c index e2c5b5f..4ff6897 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,9 +7,9 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 1545 #define LARGE_STATE_COUNT 302 -#define SYMBOL_COUNT 208 +#define SYMBOL_COUNT 209 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 112 +#define TOKEN_COUNT 113 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 48 #define MAX_ALIAS_SEQUENCE_LENGTH 11 @@ -113,116 +113,117 @@ enum ts_symbol_identifiers { anon_sym_php = 95, anon_sym_c = 96, anon_sym_cpp = 97, - sym_backtickSnippet = 98, - sym_rawBacktickSnippet = 99, - sym_doubleQuoteSnippet = 100, - sym_undefined = 101, - sym_top = 102, - sym_bottom = 103, - sym_intConstant = 104, - sym_signedIntConstant = 105, - sym_doubleConstant = 106, - sym_stringConstant = 107, - sym_regex = 108, - anon_sym_r = 109, - sym_annotation = 110, - sym_comment = 111, - sym_source_file = 112, - sym_sequential = 113, - sym_files = 114, - sym_definition = 115, - sym_version = 116, - sym_langdecl = 117, - sym__pattern = 118, - sym__container = 119, - sym_mulOperation = 120, - sym_divOperation = 121, - sym_modOperation = 122, - sym_addOperation = 123, - sym_subOperation = 124, - sym_patternAs = 125, - sym_patternLimit = 126, - sym_assignmentAsPattern = 127, - sym_patternAccumulate = 128, - sym_patternWhere = 129, - sym__literal = 130, - sym_patternNot = 131, - sym_patternOr = 132, - sym_patternOrElse = 133, - sym_patternAny = 134, - sym_patternAnd = 135, - sym_patternMaybe = 136, - sym_patternAfter = 137, - sym_patternBefore = 138, - sym_patternContains = 139, - sym_patternIncludes = 140, - sym_rewrite = 141, - sym_patternIfElse = 142, - sym_within = 143, - sym__bubbleScope = 144, - sym_bubble = 145, - sym_namedArg = 146, - sym_nodeLike = 147, - sym_like = 148, - sym_map = 149, - sym_mapElement = 150, - sym_mapAccessor = 151, - sym_list = 152, - sym_listIndex = 153, - sym_dot = 154, - sym_some = 155, - sym_every = 156, - sym_dotdotdot = 157, - sym_regexPattern = 158, - sym_patternDefinitionBody = 159, - sym_patternDefinition = 160, - sym_predicateDefinitionBody = 161, - sym_predicateDefinition = 162, - sym_foreignLanguageCode = 163, - sym_foreignFunctionBody = 164, - sym_functionDefinitionBody = 165, - sym_functionDefinition = 166, - sym_foreignFunctionDefinition = 167, - sym__logMessage = 168, - sym__logVariable = 169, - sym_log = 170, - sym__start_line = 171, - sym__end_line = 172, - sym__start_column = 173, - sym__end_column = 174, - sym_range = 175, - sym__predicate = 176, - sym_predicateNot = 177, - sym_predicateMaybe = 178, - sym_predicateAnd = 179, - sym_predicateOr = 180, - sym_predicateAny = 181, - sym_predicateIfElse = 182, - sym_predicateRewrite = 183, - sym_predicateAssignment = 184, - sym_predicateAccumulate = 185, - sym_predicateGreater = 186, - sym_predicateLess = 187, - sym_predicateGreaterEqual = 188, - sym_predicateLessEqual = 189, - sym_predicateNotEqual = 190, - sym_predicateEqual = 191, - sym_predicateMatch = 192, - sym_predicateCall = 193, - sym_predicateReturn = 194, - sym_foreignLanguageName = 195, - sym_languageName = 196, - sym_languageSpecificSnippet = 197, - sym_codeSnippet = 198, - sym_snippetRegex = 199, - aux_sym_source_file_repeat1 = 200, - aux_sym_sequential_repeat1 = 201, - aux_sym__bubbleScope_repeat1 = 202, - aux_sym_nodeLike_repeat1 = 203, - aux_sym_map_repeat1 = 204, - aux_sym_list_repeat1 = 205, - aux_sym_predicateDefinitionBody_repeat1 = 206, - aux_sym_foreignLanguageCode_repeat1 = 207, + anon_sym_kotlin = 98, + sym_backtickSnippet = 99, + sym_rawBacktickSnippet = 100, + sym_doubleQuoteSnippet = 101, + sym_undefined = 102, + sym_top = 103, + sym_bottom = 104, + sym_intConstant = 105, + sym_signedIntConstant = 106, + sym_doubleConstant = 107, + sym_stringConstant = 108, + sym_regex = 109, + anon_sym_r = 110, + sym_annotation = 111, + sym_comment = 112, + sym_source_file = 113, + sym_sequential = 114, + sym_files = 115, + sym_definition = 116, + sym_version = 117, + sym_langdecl = 118, + sym__pattern = 119, + sym__container = 120, + sym_mulOperation = 121, + sym_divOperation = 122, + sym_modOperation = 123, + sym_addOperation = 124, + sym_subOperation = 125, + sym_patternAs = 126, + sym_patternLimit = 127, + sym_assignmentAsPattern = 128, + sym_patternAccumulate = 129, + sym_patternWhere = 130, + sym__literal = 131, + sym_patternNot = 132, + sym_patternOr = 133, + sym_patternOrElse = 134, + sym_patternAny = 135, + sym_patternAnd = 136, + sym_patternMaybe = 137, + sym_patternAfter = 138, + sym_patternBefore = 139, + sym_patternContains = 140, + sym_patternIncludes = 141, + sym_rewrite = 142, + sym_patternIfElse = 143, + sym_within = 144, + sym__bubbleScope = 145, + sym_bubble = 146, + sym_namedArg = 147, + sym_nodeLike = 148, + sym_like = 149, + sym_map = 150, + sym_mapElement = 151, + sym_mapAccessor = 152, + sym_list = 153, + sym_listIndex = 154, + sym_dot = 155, + sym_some = 156, + sym_every = 157, + sym_dotdotdot = 158, + sym_regexPattern = 159, + sym_patternDefinitionBody = 160, + sym_patternDefinition = 161, + sym_predicateDefinitionBody = 162, + sym_predicateDefinition = 163, + sym_foreignLanguageCode = 164, + sym_foreignFunctionBody = 165, + sym_functionDefinitionBody = 166, + sym_functionDefinition = 167, + sym_foreignFunctionDefinition = 168, + sym__logMessage = 169, + sym__logVariable = 170, + sym_log = 171, + sym__start_line = 172, + sym__end_line = 173, + sym__start_column = 174, + sym__end_column = 175, + sym_range = 176, + sym__predicate = 177, + sym_predicateNot = 178, + sym_predicateMaybe = 179, + sym_predicateAnd = 180, + sym_predicateOr = 181, + sym_predicateAny = 182, + sym_predicateIfElse = 183, + sym_predicateRewrite = 184, + sym_predicateAssignment = 185, + sym_predicateAccumulate = 186, + sym_predicateGreater = 187, + sym_predicateLess = 188, + sym_predicateGreaterEqual = 189, + sym_predicateLessEqual = 190, + sym_predicateNotEqual = 191, + sym_predicateEqual = 192, + sym_predicateMatch = 193, + sym_predicateCall = 194, + sym_predicateReturn = 195, + sym_foreignLanguageName = 196, + sym_languageName = 197, + sym_languageSpecificSnippet = 198, + sym_codeSnippet = 199, + sym_snippetRegex = 200, + aux_sym_source_file_repeat1 = 201, + aux_sym_sequential_repeat1 = 202, + aux_sym__bubbleScope_repeat1 = 203, + aux_sym_nodeLike_repeat1 = 204, + aux_sym_map_repeat1 = 205, + aux_sym_list_repeat1 = 206, + aux_sym_predicateDefinitionBody_repeat1 = 207, + aux_sym_foreignLanguageCode_repeat1 = 208, }; static const char * const ts_symbol_names[] = { @@ -324,6 +325,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_php] = "php", [anon_sym_c] = "c", [anon_sym_cpp] = "cpp", + [anon_sym_kotlin] = "kotlin", [sym_backtickSnippet] = "backtickSnippet", [sym_rawBacktickSnippet] = "rawBacktickSnippet", [sym_doubleQuoteSnippet] = "doubleQuoteSnippet", @@ -535,6 +537,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_php] = anon_sym_php, [anon_sym_c] = anon_sym_c, [anon_sym_cpp] = anon_sym_cpp, + [anon_sym_kotlin] = anon_sym_kotlin, [sym_backtickSnippet] = sym_backtickSnippet, [sym_rawBacktickSnippet] = sym_rawBacktickSnippet, [sym_doubleQuoteSnippet] = sym_doubleQuoteSnippet, @@ -1040,6 +1043,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_kotlin] = { + .visible = true, + .named = false, + }, [sym_backtickSnippet] = { .visible = true, .named = true, @@ -2986,83 +2993,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [22] = 22, [23] = 23, [24] = 24, - [25] = 24, + [25] = 21, [26] = 26, - [27] = 21, + [27] = 24, [28] = 26, - [29] = 22, - [30] = 30, - [31] = 30, + [29] = 29, + [30] = 29, + [31] = 22, [32] = 23, [33] = 33, - [34] = 34, + [34] = 33, [35] = 35, [36] = 36, - [37] = 35, + [37] = 37, [38] = 38, [39] = 39, - [40] = 33, + [40] = 40, [41] = 41, - [42] = 41, - [43] = 36, + [42] = 42, + [43] = 43, [44] = 44, [45] = 45, [46] = 46, [47] = 47, [48] = 48, - [49] = 49, + [49] = 47, [50] = 50, - [51] = 51, - [52] = 52, - [53] = 53, - [54] = 52, - [55] = 44, - [56] = 38, - [57] = 46, - [58] = 58, - [59] = 47, - [60] = 50, - [61] = 53, - [62] = 48, - [63] = 63, - [64] = 34, - [65] = 45, - [66] = 39, - [67] = 51, + [51] = 36, + [52] = 37, + [53] = 38, + [54] = 44, + [55] = 50, + [56] = 56, + [57] = 39, + [58] = 41, + [59] = 48, + [60] = 60, + [61] = 56, + [62] = 62, + [63] = 62, + [64] = 35, + [65] = 43, + [66] = 46, + [67] = 60, [68] = 68, [69] = 69, [70] = 70, - [71] = 71, + [71] = 68, [72] = 72, [73] = 73, - [74] = 69, + [74] = 74, [75] = 75, [76] = 76, [77] = 77, - [78] = 78, - [79] = 68, - [80] = 80, + [78] = 77, + [79] = 79, + [80] = 75, [81] = 81, [82] = 82, [83] = 83, - [84] = 83, - [85] = 85, - [86] = 86, - [87] = 82, - [88] = 70, + [84] = 84, + [85] = 84, + [86] = 74, + [87] = 76, + [88] = 81, [89] = 89, - [90] = 90, - [91] = 91, - [92] = 91, - [93] = 86, - [94] = 85, - [95] = 81, - [96] = 80, - [97] = 90, - [98] = 73, - [99] = 89, - [100] = 76, - [101] = 75, + [90] = 82, + [91] = 89, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 70, + [96] = 96, + [97] = 92, + [98] = 83, + [99] = 93, + [100] = 94, + [101] = 96, [102] = 102, [103] = 103, [104] = 104, @@ -3081,128 +3088,128 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [117] = 117, [118] = 118, [119] = 119, - [120] = 108, - [121] = 119, + [120] = 120, + [121] = 121, [122] = 122, - [123] = 115, + [123] = 123, [124] = 124, [125] = 125, [126] = 126, - [127] = 111, - [128] = 113, - [129] = 116, + [127] = 127, + [128] = 128, + [129] = 108, [130] = 130, - [131] = 118, + [131] = 131, [132] = 132, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, - [138] = 138, - [139] = 124, - [140] = 140, - [141] = 141, - [142] = 142, - [143] = 143, - [144] = 109, + [133] = 109, + [134] = 110, + [135] = 113, + [136] = 116, + [137] = 117, + [138] = 118, + [139] = 119, + [140] = 121, + [141] = 125, + [142] = 130, + [143] = 131, + [144] = 144, [145] = 145, [146] = 146, [147] = 147, [148] = 148, [149] = 149, [150] = 150, - [151] = 126, + [151] = 151, [152] = 152, - [153] = 102, - [154] = 154, - [155] = 142, - [156] = 134, - [157] = 157, + [153] = 106, + [154] = 103, + [155] = 104, + [156] = 111, + [157] = 112, [158] = 158, - [159] = 159, - [160] = 160, - [161] = 161, + [159] = 114, + [160] = 122, + [161] = 126, [162] = 162, - [163] = 125, - [164] = 110, - [165] = 145, - [166] = 130, - [167] = 107, - [168] = 106, - [169] = 105, - [170] = 104, - [171] = 154, - [172] = 149, - [173] = 152, - [174] = 159, - [175] = 143, - [176] = 117, - [177] = 132, - [178] = 133, - [179] = 161, - [180] = 136, - [181] = 150, - [182] = 138, - [183] = 140, - [184] = 147, - [185] = 114, - [186] = 135, - [187] = 112, - [188] = 148, - [189] = 158, - [190] = 141, - [191] = 122, - [192] = 160, - [193] = 162, - [194] = 146, + [163] = 163, + [164] = 164, + [165] = 105, + [166] = 107, + [167] = 162, + [168] = 168, + [169] = 169, + [170] = 168, + [171] = 169, + [172] = 163, + [173] = 144, + [174] = 127, + [175] = 128, + [176] = 176, + [177] = 177, + [178] = 145, + [179] = 146, + [180] = 147, + [181] = 148, + [182] = 149, + [183] = 150, + [184] = 151, + [185] = 152, + [186] = 164, + [187] = 102, + [188] = 123, + [189] = 132, + [190] = 158, + [191] = 176, + [192] = 115, + [193] = 177, + [194] = 194, [195] = 195, [196] = 195, [197] = 197, [198] = 198, [199] = 199, - [200] = 200, - [201] = 201, + [200] = 197, + [201] = 198, [202] = 202, [203] = 203, [204] = 204, [205] = 205, - [206] = 205, + [206] = 206, [207] = 207, [208] = 208, - [209] = 209, - [210] = 210, - [211] = 204, - [212] = 202, + [209] = 203, + [210] = 204, + [211] = 211, + [212] = 211, [213] = 213, - [214] = 207, - [215] = 208, - [216] = 209, + [214] = 205, + [215] = 202, + [216] = 216, [217] = 217, - [218] = 210, - [219] = 219, - [220] = 220, - [221] = 219, - [222] = 197, - [223] = 217, - [224] = 220, + [218] = 218, + [219] = 216, + [220] = 206, + [221] = 221, + [222] = 222, + [223] = 213, + [224] = 199, [225] = 225, [226] = 226, - [227] = 226, + [227] = 227, [228] = 228, - [229] = 229, + [229] = 228, [230] = 230, [231] = 231, [232] = 232, - [233] = 231, - [234] = 225, - [235] = 235, - [236] = 235, - [237] = 229, + [233] = 233, + [234] = 227, + [235] = 233, + [236] = 225, + [237] = 237, [238] = 230, - [239] = 239, + [239] = 226, [240] = 232, - [241] = 228, + [241] = 237, [242] = 242, [243] = 243, [244] = 244, @@ -3278,52 +3285,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [314] = 314, [315] = 315, [316] = 316, - [317] = 317, + [317] = 316, [318] = 318, [319] = 319, - [320] = 319, - [321] = 313, + [320] = 320, + [321] = 321, [322] = 322, [323] = 323, - [324] = 324, + [324] = 311, [325] = 325, [326] = 326, [327] = 327, [328] = 328, [329] = 329, - [330] = 322, - [331] = 331, + [330] = 330, + [331] = 310, [332] = 332, [333] = 333, [334] = 334, [335] = 335, [336] = 336, - [337] = 331, - [338] = 338, - [339] = 336, + [337] = 337, + [338] = 330, + [339] = 339, [340] = 340, [341] = 341, - [342] = 341, + [342] = 332, [343] = 343, [344] = 344, [345] = 345, - [346] = 346, - [347] = 338, - [348] = 335, + [346] = 344, + [347] = 347, + [348] = 336, [349] = 349, - [350] = 350, + [350] = 347, [351] = 351, - [352] = 352, - [353] = 346, - [354] = 350, - [355] = 351, - [356] = 349, - [357] = 332, - [358] = 358, - [359] = 344, - [360] = 333, - [361] = 343, - [362] = 358, + [352] = 335, + [353] = 353, + [354] = 341, + [355] = 343, + [356] = 353, + [357] = 357, + [358] = 333, + [359] = 351, + [360] = 337, + [361] = 357, + [362] = 345, [363] = 363, [364] = 364, [365] = 365, @@ -3383,11 +3390,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [419] = 419, [420] = 420, [421] = 421, - [422] = 334, - [423] = 352, + [422] = 422, + [423] = 423, [424] = 424, [425] = 425, - [426] = 426, + [426] = 349, [427] = 427, [428] = 428, [429] = 429, @@ -3396,7 +3403,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [432] = 432, [433] = 433, [434] = 434, - [435] = 340, + [435] = 435, [436] = 436, [437] = 437, [438] = 438, @@ -3481,20 +3488,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [517] = 517, [518] = 518, [519] = 519, - [520] = 520, + [520] = 334, [521] = 521, - [522] = 522, + [522] = 340, [523] = 523, [524] = 524, [525] = 525, - [526] = 526, + [526] = 339, [527] = 527, [528] = 528, [529] = 529, [530] = 530, [531] = 531, [532] = 532, - [533] = 533, + [533] = 529, [534] = 534, [535] = 535, [536] = 536, @@ -3532,7 +3539,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [568] = 568, [569] = 569, [570] = 570, - [571] = 345, + [571] = 571, [572] = 572, [573] = 573, [574] = 574, @@ -3549,20 +3556,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [585] = 585, [586] = 586, [587] = 587, - [588] = 439, + [588] = 588, [589] = 589, [590] = 590, [591] = 591, [592] = 592, [593] = 593, [594] = 594, - [595] = 595, + [595] = 519, [596] = 596, [597] = 597, [598] = 598, [599] = 599, [600] = 600, - [601] = 419, + [601] = 601, [602] = 602, [603] = 603, [604] = 604, @@ -3576,303 +3583,303 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [612] = 612, [613] = 613, [614] = 614, - [615] = 538, - [616] = 418, - [617] = 432, - [618] = 440, - [619] = 441, - [620] = 506, - [621] = 508, - [622] = 444, - [623] = 445, - [624] = 446, - [625] = 451, - [626] = 452, - [627] = 453, - [628] = 455, - [629] = 458, - [630] = 459, - [631] = 461, - [632] = 463, - [633] = 464, - [634] = 465, - [635] = 468, - [636] = 469, - [637] = 470, - [638] = 472, - [639] = 474, - [640] = 475, - [641] = 476, - [642] = 477, - [643] = 478, - [644] = 480, - [645] = 482, - [646] = 509, - [647] = 510, - [648] = 516, - [649] = 517, - [650] = 518, - [651] = 519, - [652] = 520, - [653] = 521, - [654] = 522, - [655] = 523, - [656] = 524, - [657] = 525, - [658] = 530, - [659] = 531, - [660] = 532, - [661] = 534, - [662] = 535, - [663] = 536, - [664] = 537, - [665] = 430, - [666] = 539, - [667] = 540, + [615] = 515, + [616] = 462, + [617] = 463, + [618] = 464, + [619] = 516, + [620] = 570, + [621] = 518, + [622] = 531, + [623] = 537, + [624] = 535, + [625] = 539, + [626] = 572, + [627] = 540, + [628] = 543, + [629] = 544, + [630] = 547, + [631] = 565, + [632] = 594, + [633] = 580, + [634] = 611, + [635] = 585, + [636] = 538, + [637] = 581, + [638] = 613, + [639] = 582, + [640] = 593, + [641] = 364, + [642] = 384, + [643] = 394, + [644] = 395, + [645] = 567, + [646] = 583, + [647] = 577, + [648] = 527, + [649] = 528, + [650] = 534, + [651] = 589, + [652] = 573, + [653] = 596, + [654] = 597, + [655] = 598, + [656] = 599, + [657] = 600, + [658] = 601, + [659] = 602, + [660] = 603, + [661] = 604, + [662] = 605, + [663] = 606, + [664] = 607, + [665] = 608, + [666] = 609, + [667] = 610, [668] = 541, - [669] = 542, - [670] = 568, - [671] = 545, - [672] = 569, - [673] = 555, - [674] = 570, - [675] = 578, - [676] = 572, - [677] = 579, - [678] = 573, - [679] = 574, - [680] = 514, - [681] = 429, - [682] = 582, - [683] = 428, - [684] = 427, - [685] = 431, - [686] = 426, - [687] = 425, - [688] = 595, - [689] = 424, - [690] = 600, - [691] = 613, - [692] = 608, - [693] = 614, - [694] = 567, - [695] = 566, - [696] = 603, - [697] = 610, - [698] = 565, - [699] = 602, - [700] = 611, - [701] = 607, - [702] = 564, - [703] = 577, - [704] = 612, - [705] = 609, - [706] = 606, - [707] = 605, - [708] = 563, - [709] = 604, - [710] = 575, - [711] = 526, - [712] = 554, - [713] = 553, - [714] = 552, - [715] = 562, - [716] = 551, - [717] = 550, - [718] = 409, - [719] = 548, - [720] = 546, - [721] = 513, - [722] = 407, - [723] = 507, - [724] = 505, - [725] = 503, - [726] = 501, - [727] = 499, - [728] = 497, - [729] = 495, - [730] = 493, - [731] = 491, - [732] = 489, - [733] = 487, - [734] = 485, - [735] = 483, - [736] = 481, - [737] = 479, - [738] = 405, - [739] = 401, - [740] = 448, - [741] = 399, - [742] = 398, - [743] = 397, - [744] = 395, - [745] = 394, - [746] = 393, - [747] = 390, - [748] = 528, - [749] = 533, - [750] = 420, - [751] = 543, - [752] = 416, - [753] = 414, - [754] = 389, - [755] = 410, - [756] = 404, - [757] = 403, - [758] = 400, - [759] = 366, - [760] = 391, - [761] = 378, - [762] = 371, - [763] = 386, - [764] = 413, - [765] = 417, - [766] = 421, - [767] = 433, - [768] = 434, - [769] = 436, - [770] = 437, - [771] = 438, - [772] = 388, - [773] = 385, - [774] = 383, - [775] = 576, - [776] = 363, - [777] = 580, - [778] = 380, - [779] = 583, - [780] = 544, - [781] = 379, - [782] = 442, - [783] = 443, - [784] = 447, - [785] = 449, - [786] = 406, - [787] = 547, - [788] = 454, - [789] = 456, - [790] = 457, - [791] = 460, - [792] = 466, - [793] = 473, - [794] = 450, - [795] = 486, - [796] = 488, - [797] = 490, - [798] = 492, - [799] = 494, - [800] = 496, + [669] = 367, + [670] = 424, + [671] = 465, + [672] = 521, + [673] = 523, + [674] = 524, + [675] = 525, + [676] = 530, + [677] = 542, + [678] = 546, + [679] = 561, + [680] = 584, + [681] = 587, + [682] = 586, + [683] = 566, + [684] = 571, + [685] = 366, + [686] = 363, + [687] = 368, + [688] = 369, + [689] = 370, + [690] = 371, + [691] = 372, + [692] = 373, + [693] = 374, + [694] = 375, + [695] = 376, + [696] = 377, + [697] = 378, + [698] = 379, + [699] = 380, + [700] = 591, + [701] = 383, + [702] = 592, + [703] = 382, + [704] = 390, + [705] = 397, + [706] = 430, + [707] = 517, + [708] = 391, + [709] = 548, + [710] = 392, + [711] = 393, + [712] = 399, + [713] = 400, + [714] = 401, + [715] = 402, + [716] = 403, + [717] = 404, + [718] = 405, + [719] = 406, + [720] = 407, + [721] = 408, + [722] = 409, + [723] = 410, + [724] = 411, + [725] = 412, + [726] = 413, + [727] = 414, + [728] = 415, + [729] = 416, + [730] = 417, + [731] = 418, + [732] = 419, + [733] = 420, + [734] = 421, + [735] = 422, + [736] = 532, + [737] = 545, + [738] = 576, + [739] = 549, + [740] = 574, + [741] = 550, + [742] = 433, + [743] = 434, + [744] = 435, + [745] = 436, + [746] = 437, + [747] = 461, + [748] = 439, + [749] = 440, + [750] = 441, + [751] = 442, + [752] = 443, + [753] = 444, + [754] = 445, + [755] = 446, + [756] = 447, + [757] = 448, + [758] = 449, + [759] = 450, + [760] = 451, + [761] = 452, + [762] = 453, + [763] = 454, + [764] = 455, + [765] = 456, + [766] = 568, + [767] = 551, + [768] = 457, + [769] = 458, + [770] = 466, + [771] = 467, + [772] = 468, + [773] = 469, + [774] = 470, + [775] = 471, + [776] = 472, + [777] = 473, + [778] = 474, + [779] = 475, + [780] = 476, + [781] = 477, + [782] = 478, + [783] = 479, + [784] = 480, + [785] = 481, + [786] = 482, + [787] = 483, + [788] = 484, + [789] = 485, + [790] = 486, + [791] = 487, + [792] = 488, + [793] = 489, + [794] = 491, + [795] = 492, + [796] = 493, + [797] = 494, + [798] = 495, + [799] = 496, + [800] = 497, [801] = 498, - [802] = 500, - [803] = 502, - [804] = 504, - [805] = 376, - [806] = 511, - [807] = 512, - [808] = 515, - [809] = 527, - [810] = 529, - [811] = 556, - [812] = 558, - [813] = 373, - [814] = 484, - [815] = 584, - [816] = 585, - [817] = 587, - [818] = 589, - [819] = 372, - [820] = 462, - [821] = 415, - [822] = 467, - [823] = 471, - [824] = 370, - [825] = 369, - [826] = 368, - [827] = 549, - [828] = 590, - [829] = 367, - [830] = 591, - [831] = 365, - [832] = 592, - [833] = 593, - [834] = 594, - [835] = 364, - [836] = 596, - [837] = 597, - [838] = 598, - [839] = 599, - [840] = 392, - [841] = 384, - [842] = 382, - [843] = 557, - [844] = 381, - [845] = 377, - [846] = 561, - [847] = 375, - [848] = 560, - [849] = 374, - [850] = 402, - [851] = 396, - [852] = 581, - [853] = 387, - [854] = 408, - [855] = 411, - [856] = 586, - [857] = 412, - [858] = 559, + [802] = 614, + [803] = 500, + [804] = 501, + [805] = 502, + [806] = 503, + [807] = 504, + [808] = 505, + [809] = 506, + [810] = 507, + [811] = 508, + [812] = 509, + [813] = 510, + [814] = 511, + [815] = 512, + [816] = 513, + [817] = 514, + [818] = 612, + [819] = 552, + [820] = 553, + [821] = 554, + [822] = 555, + [823] = 556, + [824] = 557, + [825] = 558, + [826] = 559, + [827] = 560, + [828] = 499, + [829] = 562, + [830] = 563, + [831] = 564, + [832] = 365, + [833] = 381, + [834] = 385, + [835] = 386, + [836] = 387, + [837] = 388, + [838] = 389, + [839] = 536, + [840] = 578, + [841] = 575, + [842] = 590, + [843] = 396, + [844] = 569, + [845] = 398, + [846] = 423, + [847] = 425, + [848] = 490, + [849] = 588, + [850] = 427, + [851] = 428, + [852] = 429, + [853] = 579, + [854] = 431, + [855] = 432, + [856] = 459, + [857] = 460, + [858] = 438, [859] = 859, [860] = 860, - [861] = 859, - [862] = 860, + [861] = 861, + [862] = 862, [863] = 863, - [864] = 864, - [865] = 865, + [864] = 859, + [865] = 862, [866] = 866, - [867] = 864, + [867] = 867, [868] = 868, - [869] = 866, - [870] = 870, - [871] = 863, - [872] = 872, - [873] = 865, - [874] = 868, - [875] = 872, + [869] = 869, + [870] = 867, + [871] = 861, + [872] = 860, + [873] = 868, + [874] = 866, + [875] = 869, [876] = 876, [877] = 877, - [878] = 876, + [878] = 878, [879] = 879, [880] = 880, [881] = 881, - [882] = 882, + [882] = 881, [883] = 883, [884] = 884, [885] = 885, [886] = 886, [887] = 887, - [888] = 888, + [888] = 885, [889] = 889, [890] = 890, [891] = 891, [892] = 892, [893] = 893, - [894] = 884, + [894] = 890, [895] = 895, - [896] = 896, + [896] = 884, [897] = 897, - [898] = 891, - [899] = 893, + [898] = 898, + [899] = 886, [900] = 892, - [901] = 885, - [902] = 888, - [903] = 886, + [901] = 893, + [902] = 887, + [903] = 903, [904] = 897, - [905] = 890, - [906] = 889, - [907] = 887, - [908] = 908, + [905] = 889, + [906] = 891, + [907] = 907, + [908] = 903, [909] = 909, - [910] = 908, - [911] = 909, + [910] = 909, + [911] = 898, [912] = 895, [913] = 913, [914] = 914, @@ -3913,13 +3920,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [949] = 949, [950] = 950, [951] = 951, - [952] = 935, + [952] = 952, [953] = 953, [954] = 954, [955] = 955, [956] = 956, [957] = 957, - [958] = 958, + [958] = 943, [959] = 959, [960] = 960, [961] = 961, @@ -3931,10 +3938,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [967] = 967, [968] = 968, [969] = 969, - [970] = 967, - [971] = 968, - [972] = 966, - [973] = 969, + [970] = 969, + [971] = 967, + [972] = 968, + [973] = 966, [974] = 974, [975] = 974, [976] = 976, @@ -3942,25 +3949,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [978] = 978, [979] = 979, [980] = 980, - [981] = 978, - [982] = 980, - [983] = 977, - [984] = 976, + [981] = 977, + [982] = 982, + [983] = 983, + [984] = 984, [985] = 985, [986] = 986, [987] = 987, [988] = 988, - [989] = 989, - [990] = 987, - [991] = 991, - [992] = 985, - [993] = 993, + [989] = 976, + [990] = 982, + [991] = 983, + [992] = 984, + [993] = 985, [994] = 986, - [995] = 988, - [996] = 989, - [997] = 993, + [995] = 987, + [996] = 988, + [997] = 978, [998] = 979, - [999] = 991, + [999] = 980, [1000] = 1000, [1001] = 1001, [1002] = 1002, @@ -3972,15 +3979,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1008] = 1008, [1009] = 1005, [1010] = 1010, - [1011] = 1011, + [1011] = 1000, [1012] = 1012, [1013] = 1013, [1014] = 1014, [1015] = 1015, - [1016] = 1011, - [1017] = 1017, + [1016] = 1016, + [1017] = 1016, [1018] = 1018, - [1019] = 1013, + [1019] = 1019, [1020] = 1020, [1021] = 1021, [1022] = 1022, @@ -3999,8 +4006,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1035] = 1035, [1036] = 1036, [1037] = 1037, - [1038] = 1028, - [1039] = 1039, + [1038] = 1038, + [1039] = 1022, [1040] = 1040, [1041] = 1041, [1042] = 1042, @@ -4023,7 +4030,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 1062, + [1062] = 299, [1063] = 1063, [1064] = 1064, [1065] = 1065, @@ -4038,14 +4045,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1074] = 1074, [1075] = 1075, [1076] = 1076, - [1077] = 1054, - [1078] = 1043, + [1077] = 1077, + [1078] = 1078, [1079] = 1079, [1080] = 1080, [1081] = 1081, [1082] = 1082, - [1083] = 1050, - [1084] = 1036, + [1083] = 1083, + [1084] = 1084, [1085] = 1085, [1086] = 1086, [1087] = 1087, @@ -4057,7 +4064,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1093] = 1093, [1094] = 1094, [1095] = 1095, - [1096] = 1033, + [1096] = 1096, [1097] = 1097, [1098] = 1098, [1099] = 1099, @@ -4069,117 +4076,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 1024, + [1108] = 1108, [1109] = 1109, [1110] = 1110, [1111] = 1111, [1112] = 1112, [1113] = 1113, [1114] = 1114, - [1115] = 1100, - [1116] = 1034, + [1115] = 1115, + [1116] = 1116, [1117] = 1117, [1118] = 1118, [1119] = 1119, - [1120] = 1120, + [1120] = 1060, [1121] = 1121, [1122] = 1122, - [1123] = 1070, - [1124] = 1072, - [1125] = 1125, - [1126] = 300, + [1123] = 1068, + [1124] = 1124, + [1125] = 1079, + [1126] = 1086, [1127] = 1127, [1128] = 1128, - [1129] = 1030, + [1129] = 1129, [1130] = 1130, - [1131] = 1023, - [1132] = 1132, - [1133] = 1128, - [1134] = 1134, - [1135] = 1132, - [1136] = 1136, - [1137] = 1082, + [1131] = 1131, + [1132] = 1026, + [1133] = 1133, + [1134] = 1071, + [1135] = 1073, + [1136] = 1076, + [1137] = 1137, [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1139, + [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 1068, - [1145] = 1062, - [1146] = 1032, - [1147] = 1119, - [1148] = 1114, - [1149] = 1061, - [1150] = 1150, + [1144] = 1122, + [1145] = 1023, + [1146] = 1029, + [1147] = 1147, + [1148] = 1099, + [1149] = 1102, + [1150] = 1105, [1151] = 1151, - [1152] = 1113, - [1153] = 1111, + [1152] = 1152, + [1153] = 1153, [1154] = 1154, - [1155] = 1155, - [1156] = 1156, + [1155] = 1025, + [1156] = 1137, [1157] = 1157, [1158] = 1158, - [1159] = 1159, + [1159] = 1139, [1160] = 1160, [1161] = 1161, - [1162] = 1109, - [1163] = 1163, + [1162] = 1162, + [1163] = 1103, [1164] = 1164, - [1165] = 1165, + [1165] = 1104, [1166] = 1166, - [1167] = 1167, - [1168] = 1051, + [1167] = 1106, + [1168] = 1110, [1169] = 1169, - [1170] = 1170, - [1171] = 1112, - [1172] = 1172, - [1173] = 1031, - [1174] = 1174, - [1175] = 1175, - [1176] = 1057, - [1177] = 1177, - [1178] = 1178, + [1170] = 1140, + [1171] = 1171, + [1172] = 1141, + [1173] = 1032, + [1174] = 1033, + [1175] = 1034, + [1176] = 1036, + [1177] = 1037, + [1178] = 1038, [1179] = 1179, - [1180] = 1180, - [1181] = 1069, - [1182] = 1182, - [1183] = 1183, - [1184] = 1142, - [1185] = 1107, - [1186] = 1105, - [1187] = 1103, - [1188] = 1101, - [1189] = 1099, - [1190] = 1097, - [1191] = 1095, - [1192] = 1093, - [1193] = 1091, - [1194] = 1089, - [1195] = 1087, - [1196] = 1085, - [1197] = 1081, - [1198] = 1079, - [1199] = 1071, - [1200] = 1067, - [1201] = 1065, - [1202] = 1063, - [1203] = 1060, - [1204] = 1140, - [1205] = 1205, - [1206] = 1044, - [1207] = 1118, - [1208] = 1208, - [1209] = 1048, + [1180] = 1040, + [1181] = 1041, + [1182] = 1043, + [1183] = 1044, + [1184] = 1045, + [1185] = 1046, + [1186] = 1047, + [1187] = 1049, + [1188] = 1050, + [1189] = 1051, + [1190] = 1052, + [1191] = 1053, + [1192] = 1054, + [1193] = 1055, + [1194] = 1057, + [1195] = 1058, + [1196] = 1059, + [1197] = 1197, + [1198] = 1198, + [1199] = 1151, + [1200] = 1200, + [1201] = 1119, + [1202] = 1152, + [1203] = 1142, + [1204] = 1153, + [1205] = 1113, + [1206] = 1154, + [1207] = 1207, + [1208] = 1143, + [1209] = 1209, [1210] = 1210, [1211] = 1211, [1212] = 1212, - [1213] = 1213, + [1213] = 274, [1214] = 1214, [1215] = 1215, [1216] = 1216, - [1217] = 1215, - [1218] = 1214, + [1217] = 1217, + [1218] = 1218, [1219] = 1219, [1220] = 1220, [1221] = 1221, @@ -4189,29 +4196,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1225] = 1225, [1226] = 1226, [1227] = 1227, - [1228] = 1210, + [1228] = 1228, [1229] = 1229, [1230] = 1230, - [1231] = 280, - [1232] = 1232, - [1233] = 1233, + [1231] = 1231, + [1232] = 1220, + [1233] = 1222, [1234] = 1234, [1235] = 1235, [1236] = 1236, [1237] = 1237, [1238] = 1238, [1239] = 1239, - [1240] = 1240, + [1240] = 1219, [1241] = 1241, [1242] = 1242, [1243] = 1243, - [1244] = 1244, + [1244] = 1234, [1245] = 1245, - [1246] = 299, + [1246] = 1235, [1247] = 1247, [1248] = 1248, - [1249] = 1249, - [1250] = 1250, + [1249] = 1236, + [1250] = 1237, [1251] = 1251, [1252] = 1252, [1253] = 1253, @@ -4221,7 +4228,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1257] = 1257, [1258] = 1258, [1259] = 1259, - [1260] = 1260, + [1260] = 301, [1261] = 1261, [1262] = 1262, [1263] = 1263, @@ -4245,131 +4252,131 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1281] = 1281, [1282] = 1282, [1283] = 1283, - [1284] = 1267, - [1285] = 1285, + [1284] = 1284, + [1285] = 1279, [1286] = 1286, - [1287] = 1286, + [1287] = 1287, [1288] = 1288, [1289] = 1289, [1290] = 1290, [1291] = 1291, [1292] = 1292, [1293] = 1293, - [1294] = 1292, + [1294] = 1294, [1295] = 1295, [1296] = 1296, [1297] = 1297, [1298] = 1298, [1299] = 1299, [1300] = 1300, - [1301] = 1301, + [1301] = 1212, [1302] = 1302, [1303] = 1303, - [1304] = 1283, - [1305] = 1282, - [1306] = 1281, + [1304] = 1304, + [1305] = 1305, + [1306] = 1306, [1307] = 1307, [1308] = 1308, [1309] = 1309, [1310] = 1310, [1311] = 1311, - [1312] = 1312, + [1312] = 1286, [1313] = 1313, [1314] = 1314, - [1315] = 1315, + [1315] = 1239, [1316] = 1316, [1317] = 1317, - [1318] = 1318, + [1318] = 1283, [1319] = 1319, - [1320] = 1320, - [1321] = 1227, + [1320] = 1273, + [1321] = 1321, [1322] = 1322, - [1323] = 1229, + [1323] = 1323, [1324] = 1324, - [1325] = 1230, + [1325] = 1325, [1326] = 1326, - [1327] = 1311, - [1328] = 1232, - [1329] = 1233, - [1330] = 1310, - [1331] = 1331, - [1332] = 1234, - [1333] = 1211, - [1334] = 1235, - [1335] = 1308, - [1336] = 1307, - [1337] = 1237, - [1338] = 1280, - [1339] = 1339, - [1340] = 1279, - [1341] = 1238, - [1342] = 1342, - [1343] = 1343, - [1344] = 1239, - [1345] = 1303, - [1346] = 1302, - [1347] = 1347, - [1348] = 1300, - [1349] = 1299, - [1350] = 1298, - [1351] = 1297, - [1352] = 1249, - [1353] = 1250, - [1354] = 1255, - [1355] = 1256, - [1356] = 1257, - [1357] = 1258, - [1358] = 1259, - [1359] = 1262, - [1360] = 1263, - [1361] = 1264, - [1362] = 1265, - [1363] = 1266, - [1364] = 1268, - [1365] = 1270, - [1366] = 1296, - [1367] = 1240, - [1368] = 1295, - [1369] = 1242, - [1370] = 1272, + [1327] = 1327, + [1328] = 1328, + [1329] = 1329, + [1330] = 1251, + [1331] = 1252, + [1332] = 1254, + [1333] = 1255, + [1334] = 1257, + [1335] = 1258, + [1336] = 1259, + [1337] = 1261, + [1338] = 1263, + [1339] = 1266, + [1340] = 1270, + [1341] = 1272, + [1342] = 1275, + [1343] = 1277, + [1344] = 1281, + [1345] = 1282, + [1346] = 1284, + [1347] = 1299, + [1348] = 1302, + [1349] = 1303, + [1350] = 1304, + [1351] = 1305, + [1352] = 1306, + [1353] = 1311, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, + [1357] = 1287, + [1358] = 1358, + [1359] = 1359, + [1360] = 1360, + [1361] = 1361, + [1362] = 1362, + [1363] = 1288, + [1364] = 1364, + [1365] = 1365, + [1366] = 1289, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 1290, [1371] = 1371, - [1372] = 1260, - [1373] = 1373, - [1374] = 1374, - [1375] = 1261, - [1376] = 1293, - [1377] = 1269, - [1378] = 1291, - [1379] = 1290, - [1380] = 1271, - [1381] = 1381, - [1382] = 1273, - [1383] = 1289, - [1384] = 1384, - [1385] = 1288, - [1386] = 1226, - [1387] = 1274, - [1388] = 1275, - [1389] = 1276, - [1390] = 1221, - [1391] = 1277, - [1392] = 1392, - [1393] = 1278, - [1394] = 1285, - [1395] = 1395, - [1396] = 1396, - [1397] = 1397, - [1398] = 1398, - [1399] = 1220, - [1400] = 1400, - [1401] = 1316, - [1402] = 1212, - [1403] = 1213, - [1404] = 1404, - [1405] = 1405, + [1372] = 1291, + [1373] = 1292, + [1374] = 1274, + [1375] = 1278, + [1376] = 1280, + [1377] = 1300, + [1378] = 1307, + [1379] = 1309, + [1380] = 1310, + [1381] = 1313, + [1382] = 1317, + [1383] = 1319, + [1384] = 1322, + [1385] = 1323, + [1386] = 1325, + [1387] = 1328, + [1388] = 1354, + [1389] = 1356, + [1390] = 1358, + [1391] = 1360, + [1392] = 1362, + [1393] = 1364, + [1394] = 1365, + [1395] = 1367, + [1396] = 1368, + [1397] = 1369, + [1398] = 1293, + [1399] = 1294, + [1400] = 1227, + [1401] = 1295, + [1402] = 1402, + [1403] = 1296, + [1404] = 1297, + [1405] = 1298, [1406] = 1406, - [1407] = 1219, - [1408] = 1216, + [1407] = 1407, + [1408] = 1407, [1409] = 1409, [1410] = 1410, [1411] = 1411, @@ -4380,8 +4387,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1416] = 1416, [1417] = 1417, [1418] = 1418, - [1419] = 1410, - [1420] = 1418, + [1419] = 1419, + [1420] = 1420, [1421] = 1421, [1422] = 1422, [1423] = 1423, @@ -4391,27 +4398,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1427] = 1427, [1428] = 1428, [1429] = 1429, - [1430] = 1430, + [1430] = 1410, [1431] = 1431, [1432] = 1432, [1433] = 1433, [1434] = 1434, [1435] = 1435, - [1436] = 1436, + [1436] = 1422, [1437] = 1437, [1438] = 1438, - [1439] = 1439, + [1439] = 300, [1440] = 1440, - [1441] = 1441, + [1441] = 1433, [1442] = 1442, - [1443] = 1421, + [1443] = 1443, [1444] = 1444, [1445] = 1445, - [1446] = 1446, + [1446] = 1425, [1447] = 1447, [1448] = 1448, - [1449] = 1449, - [1450] = 1432, + [1449] = 1412, + [1450] = 1434, [1451] = 1451, [1452] = 1452, [1453] = 1453, @@ -4419,7 +4426,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1455] = 1455, [1456] = 1456, [1457] = 1457, - [1458] = 1458, + [1458] = 1429, [1459] = 1459, [1460] = 1460, [1461] = 1461, @@ -4429,83 +4436,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1465] = 1465, [1466] = 1466, [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 1466, - [1471] = 1465, - [1472] = 1463, + [1468] = 1437, + [1469] = 1438, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, [1473] = 1473, - [1474] = 1412, - [1475] = 1414, + [1474] = 1461, + [1475] = 1475, [1476] = 1476, [1477] = 1477, [1478] = 1478, - [1479] = 1429, - [1480] = 1417, - [1481] = 1434, - [1482] = 1482, + [1479] = 1479, + [1480] = 1480, + [1481] = 1481, + [1482] = 1409, [1483] = 1483, [1484] = 1484, - [1485] = 1441, + [1485] = 1485, [1486] = 1486, [1487] = 1487, [1488] = 1488, [1489] = 1489, - [1490] = 1442, - [1491] = 1444, - [1492] = 1464, - [1493] = 1445, - [1494] = 1446, - [1495] = 1448, - [1496] = 1449, - [1497] = 1452, - [1498] = 1453, - [1499] = 1454, - [1500] = 1455, - [1501] = 1456, - [1502] = 1457, - [1503] = 1458, - [1504] = 1459, - [1505] = 1460, - [1506] = 1461, - [1507] = 1409, - [1508] = 1462, - [1509] = 1482, - [1510] = 1467, - [1511] = 1468, - [1512] = 1469, - [1513] = 1473, - [1514] = 1514, + [1490] = 1424, + [1491] = 1420, + [1492] = 1427, + [1493] = 1448, + [1494] = 1467, + [1495] = 1480, + [1496] = 1486, + [1497] = 1497, + [1498] = 1411, + [1499] = 1419, + [1500] = 1421, + [1501] = 1423, + [1502] = 1426, + [1503] = 1428, + [1504] = 1432, + [1505] = 1440, + [1506] = 1445, + [1507] = 1447, + [1508] = 1452, + [1509] = 1457, + [1510] = 1465, + [1511] = 1470, + [1512] = 1476, + [1513] = 1513, + [1514] = 1497, [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, + [1516] = 1413, + [1517] = 1489, + [1518] = 1415, [1519] = 1519, [1520] = 1520, - [1521] = 301, + [1521] = 1521, [1522] = 1522, [1523] = 1523, - [1524] = 1518, - [1525] = 1517, - [1526] = 1516, - [1527] = 1451, - [1528] = 1477, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1532, - [1533] = 1533, - [1534] = 1534, - [1535] = 1535, - [1536] = 1437, - [1537] = 1535, - [1538] = 1529, - [1539] = 1523, - [1540] = 1532, - [1541] = 1533, - [1542] = 1478, - [1543] = 1531, - [1544] = 1530, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1473, + [1528] = 1466, + [1529] = 1478, + [1530] = 1519, + [1531] = 1418, + [1532] = 1515, + [1533] = 1472, + [1534] = 1475, + [1535] = 1521, + [1536] = 1462, + [1537] = 1483, + [1538] = 1455, + [1539] = 1539, + [1540] = 1451, + [1541] = 1539, + [1542] = 1542, + [1543] = 1543, + [1544] = 1544, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5848,836 +5855,855 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 'h', 9, 'i', 10, 'j', 11, - 'l', 12, - 'm', 13, - 'n', 14, - 'o', 15, - 'p', 16, - 'r', 17, - 's', 18, - 't', 19, - 'u', 20, - 'v', 21, - 'w', 22, - 'y', 23, + 'k', 12, + 'l', 13, + 'm', 14, + 'n', 15, + 'o', 16, + 'p', 17, + 'r', 18, + 's', 19, + 't', 20, + 'u', 21, + 'v', 22, + 'w', 23, + 'y', 24, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0); END_STATE(); case 1: - if (lookahead == 'o') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); END_STATE(); case 2: - if (lookahead == 'o') ADVANCE(25); + if (lookahead == 'o') ADVANCE(26); END_STATE(); case 3: - if (lookahead == 'f') ADVANCE(26); - if (lookahead == 'n') ADVANCE(27); - if (lookahead == 's') ADVANCE(28); + if (lookahead == 'f') ADVANCE(27); + if (lookahead == 'n') ADVANCE(28); + if (lookahead == 's') ADVANCE(29); END_STATE(); case 4: - if (lookahead == 'e') ADVANCE(29); - if (lookahead == 'u') ADVANCE(30); + if (lookahead == 'e') ADVANCE(30); + if (lookahead == 'u') ADVANCE(31); END_STATE(); case 5: ACCEPT_TOKEN(anon_sym_c); - if (lookahead == 'o') ADVANCE(31); - if (lookahead == 'p') ADVANCE(32); - if (lookahead == 's') ADVANCE(33); + if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'p') ADVANCE(33); + if (lookahead == 's') ADVANCE(34); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(34); - if (lookahead == 'n') ADVANCE(35); - if (lookahead == 'v') ADVANCE(36); + if (lookahead == 'l') ADVANCE(35); + if (lookahead == 'n') ADVANCE(36); + if (lookahead == 'v') ADVANCE(37); END_STATE(); case 7: - if (lookahead == 'a') ADVANCE(37); + if (lookahead == 'a') ADVANCE(38); END_STATE(); case 8: - if (lookahead == 'o') ADVANCE(38); - if (lookahead == 'r') ADVANCE(39); + if (lookahead == 'o') ADVANCE(39); + if (lookahead == 'r') ADVANCE(40); END_STATE(); case 9: - if (lookahead == 'c') ADVANCE(40); - if (lookahead == 't') ADVANCE(41); + if (lookahead == 'c') ADVANCE(41); + if (lookahead == 't') ADVANCE(42); END_STATE(); case 10: - if (lookahead == 'f') ADVANCE(42); - if (lookahead == 'n') ADVANCE(43); + if (lookahead == 'f') ADVANCE(43); + if (lookahead == 'n') ADVANCE(44); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(44); - if (lookahead == 's') ADVANCE(45); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == 's') ADVANCE(46); END_STATE(); case 12: - if (lookahead == 'a') ADVANCE(46); - if (lookahead == 'i') ADVANCE(47); + if (lookahead == 'o') ADVANCE(47); END_STATE(); case 13: if (lookahead == 'a') ADVANCE(48); - if (lookahead == 'e') ADVANCE(49); - if (lookahead == 'u') ADVANCE(50); + if (lookahead == 'i') ADVANCE(49); END_STATE(); case 14: - if (lookahead == 'o') ADVANCE(51); + if (lookahead == 'a') ADVANCE(50); + if (lookahead == 'e') ADVANCE(51); + if (lookahead == 'u') ADVANCE(52); END_STATE(); case 15: - if (lookahead == 'r') ADVANCE(52); + if (lookahead == 'o') ADVANCE(53); END_STATE(); case 16: - if (lookahead == 'h') ADVANCE(53); if (lookahead == 'r') ADVANCE(54); - if (lookahead == 'y') ADVANCE(55); END_STATE(); case 17: - ACCEPT_TOKEN(anon_sym_r); - if (lookahead == 'e') ADVANCE(56); - if (lookahead == 'u') ADVANCE(57); + if (lookahead == 'h') ADVANCE(55); + if (lookahead == 'r') ADVANCE(56); + if (lookahead == 'y') ADVANCE(57); END_STATE(); case 18: + ACCEPT_TOKEN(anon_sym_r); if (lookahead == 'e') ADVANCE(58); - if (lookahead == 'o') ADVANCE(59); - if (lookahead == 'q') ADVANCE(60); - if (lookahead == 't') ADVANCE(61); + if (lookahead == 'u') ADVANCE(59); END_STATE(); case 19: - if (lookahead == 'o') ADVANCE(62); - if (lookahead == 'r') ADVANCE(63); + if (lookahead == 'e') ADVANCE(60); + if (lookahead == 'o') ADVANCE(61); + if (lookahead == 'q') ADVANCE(62); + if (lookahead == 't') ADVANCE(63); END_STATE(); case 20: - if (lookahead == 'n') ADVANCE(64); + if (lookahead == 'o') ADVANCE(64); + if (lookahead == 'r') ADVANCE(65); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(65); + if (lookahead == 'n') ADVANCE(66); END_STATE(); case 22: - if (lookahead == 'h') ADVANCE(66); - if (lookahead == 'i') ADVANCE(67); + if (lookahead == 'a') ADVANCE(67); END_STATE(); case 23: - if (lookahead == 'a') ADVANCE(68); + if (lookahead == 'h') ADVANCE(68); + if (lookahead == 'i') ADVANCE(69); END_STATE(); case 24: - if (lookahead == 't') ADVANCE(69); + if (lookahead == 'a') ADVANCE(70); END_STATE(); case 25: - if (lookahead == 'p') ADVANCE(70); + if (lookahead == 't') ADVANCE(71); END_STATE(); case 26: - if (lookahead == 't') ADVANCE(71); + if (lookahead == 'p') ADVANCE(72); END_STATE(); case 27: - if (lookahead == 'd') ADVANCE(72); - if (lookahead == 'y') ADVANCE(73); + if (lookahead == 't') ADVANCE(73); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 't') ADVANCE(74); + if (lookahead == 'd') ADVANCE(74); + if (lookahead == 'y') ADVANCE(75); END_STATE(); case 29: - if (lookahead == 'f') ADVANCE(75); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 't') ADVANCE(76); END_STATE(); case 30: - if (lookahead == 'b') ADVANCE(76); + if (lookahead == 'f') ADVANCE(77); END_STATE(); case 31: - if (lookahead == 'n') ADVANCE(77); + if (lookahead == 'b') ADVANCE(78); END_STATE(); case 32: - if (lookahead == 'p') ADVANCE(78); + if (lookahead == 'n') ADVANCE(79); END_STATE(); case 33: - if (lookahead == 'h') ADVANCE(79); - if (lookahead == 's') ADVANCE(80); + if (lookahead == 'p') ADVANCE(80); END_STATE(); case 34: - if (lookahead == 's') ADVANCE(81); + if (lookahead == 'h') ADVANCE(81); + if (lookahead == 's') ADVANCE(82); END_STATE(); case 35: - if (lookahead == 'd') ADVANCE(82); + if (lookahead == 's') ADVANCE(83); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(83); + if (lookahead == 'd') ADVANCE(84); END_STATE(); case 37: - if (lookahead == 'l') ADVANCE(84); + if (lookahead == 'e') ADVANCE(85); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_go); + if (lookahead == 'l') ADVANCE(86); END_STATE(); case 39: - if (lookahead == 'i') ADVANCE(85); + ACCEPT_TOKEN(anon_sym_go); END_STATE(); case 40: - if (lookahead == 'l') ADVANCE(86); + if (lookahead == 'i') ADVANCE(87); END_STATE(); case 41: - if (lookahead == 'm') ADVANCE(87); + if (lookahead == 'l') ADVANCE(88); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'm') ADVANCE(89); END_STATE(); case 43: - if (lookahead == 'c') ADVANCE(88); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 44: - if (lookahead == 'v') ADVANCE(89); + if (lookahead == 'c') ADVANCE(90); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_js); - if (lookahead == 'o') ADVANCE(90); + if (lookahead == 'v') ADVANCE(91); END_STATE(); case 46: - if (lookahead == 'n') ADVANCE(91); + ACCEPT_TOKEN(anon_sym_js); + if (lookahead == 'o') ADVANCE(92); END_STATE(); case 47: - if (lookahead == 'k') ADVANCE(92); - if (lookahead == 'm') ADVANCE(93); + if (lookahead == 't') ADVANCE(93); END_STATE(); case 48: - if (lookahead == 'r') ADVANCE(94); - if (lookahead == 'y') ADVANCE(95); + if (lookahead == 'n') ADVANCE(94); END_STATE(); case 49: - if (lookahead == 's') ADVANCE(96); + if (lookahead == 'k') ADVANCE(95); + if (lookahead == 'm') ADVANCE(96); END_STATE(); case 50: - if (lookahead == 'l') ADVANCE(97); + if (lookahead == 'r') ADVANCE(97); + if (lookahead == 'y') ADVANCE(98); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(98); + if (lookahead == 's') ADVANCE(99); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'l') ADVANCE(100); END_STATE(); case 53: - if (lookahead == 'p') ADVANCE(100); + if (lookahead == 't') ADVANCE(101); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(101); + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 55: - if (lookahead == 't') ADVANCE(102); + if (lookahead == 'p') ADVANCE(103); END_STATE(); case 56: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'i') ADVANCE(104); END_STATE(); case 57: - if (lookahead == 'b') ADVANCE(104); - if (lookahead == 's') ADVANCE(105); + if (lookahead == 't') ADVANCE(105); END_STATE(); case 58: - if (lookahead == 'q') ADVANCE(106); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 59: - if (lookahead == 'l') ADVANCE(107); - if (lookahead == 'm') ADVANCE(108); + if (lookahead == 'b') ADVANCE(107); + if (lookahead == 's') ADVANCE(108); END_STATE(); case 60: - if (lookahead == 'l') ADVANCE(109); + if (lookahead == 'q') ADVANCE(109); END_STATE(); case 61: - if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'l') ADVANCE(110); + if (lookahead == 'm') ADVANCE(111); END_STATE(); case 62: - if (lookahead == 'm') ADVANCE(111); + if (lookahead == 'l') ADVANCE(112); END_STATE(); case 63: - if (lookahead == 'u') ADVANCE(112); + if (lookahead == 'a') ADVANCE(113); END_STATE(); case 64: - if (lookahead == 'd') ADVANCE(113); - if (lookahead == 'i') ADVANCE(114); - if (lookahead == 't') ADVANCE(115); + if (lookahead == 'm') ADVANCE(114); END_STATE(); case 65: - if (lookahead == 'r') ADVANCE(116); + if (lookahead == 'u') ADVANCE(115); END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(117); + if (lookahead == 'd') ADVANCE(116); + if (lookahead == 'i') ADVANCE(117); + if (lookahead == 't') ADVANCE(118); END_STATE(); case 67: - if (lookahead == 't') ADVANCE(118); + if (lookahead == 'r') ADVANCE(119); END_STATE(); case 68: - if (lookahead == 'm') ADVANCE(119); + if (lookahead == 'e') ADVANCE(120); END_STATE(); case 69: - if (lookahead == 't') ADVANCE(120); + if (lookahead == 't') ADVANCE(121); END_STATE(); case 70: - ACCEPT_TOKEN(sym_top); + if (lookahead == 'm') ADVANCE(122); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(121); + if (lookahead == 't') ADVANCE(123); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(sym_top); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_any); + if (lookahead == 'e') ADVANCE(124); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_ast); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 75: - if (lookahead == 'o') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_any); END_STATE(); case 76: - if (lookahead == 'b') ADVANCE(123); + ACCEPT_TOKEN(anon_sym_ast); END_STATE(); case 77: - if (lookahead == 't') ADVANCE(124); + if (lookahead == 'o') ADVANCE(125); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_cpp); + if (lookahead == 'b') ADVANCE(126); END_STATE(); case 79: - if (lookahead == 'a') ADVANCE(125); + if (lookahead == 't') ADVANCE(127); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_css); + ACCEPT_TOKEN(anon_sym_cpp); END_STATE(); case 81: - if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'a') ADVANCE(128); END_STATE(); case 82: - if (lookahead == '_') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_css); END_STATE(); case 83: - if (lookahead == 'r') ADVANCE(128); + if (lookahead == 'e') ADVANCE(129); END_STATE(); case 84: - if (lookahead == 's') ADVANCE(129); + if (lookahead == '_') ADVANCE(130); END_STATE(); case 85: - if (lookahead == 't') ADVANCE(130); + if (lookahead == 'r') ADVANCE(131); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_hcl); + if (lookahead == 's') ADVANCE(132); END_STATE(); case 87: - if (lookahead == 'l') ADVANCE(131); + if (lookahead == 't') ADVANCE(133); END_STATE(); case 88: - if (lookahead == 'l') ADVANCE(132); + ACCEPT_TOKEN(anon_sym_hcl); END_STATE(); case 89: - if (lookahead == 'a') ADVANCE(133); + if (lookahead == 'l') ADVANCE(134); END_STATE(); case 90: - if (lookahead == 'n') ADVANCE(134); + if (lookahead == 'l') ADVANCE(135); END_STATE(); case 91: - if (lookahead == 'g') ADVANCE(135); + if (lookahead == 'a') ADVANCE(136); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(136); + if (lookahead == 'n') ADVANCE(137); END_STATE(); case 93: - if (lookahead == 'i') ADVANCE(137); + if (lookahead == 'l') ADVANCE(138); END_STATE(); case 94: - if (lookahead == 'k') ADVANCE(138); - if (lookahead == 'z') ADVANCE(139); + if (lookahead == 'g') ADVANCE(139); END_STATE(); case 95: - if (lookahead == 'b') ADVANCE(140); + if (lookahead == 'e') ADVANCE(140); END_STATE(); case 96: - if (lookahead == 's') ADVANCE(141); + if (lookahead == 'i') ADVANCE(141); END_STATE(); case 97: - if (lookahead == 't') ADVANCE(142); + if (lookahead == 'k') ADVANCE(142); + if (lookahead == 'z') ADVANCE(143); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_not); + if (lookahead == 'b') ADVANCE(144); END_STATE(); case 99: - if (lookahead == 'l') ADVANCE(143); + if (lookahead == 's') ADVANCE(145); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_php); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 101: - if (lookahead == 'v') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_not); END_STATE(); case 102: - if (lookahead == 'h') ADVANCE(145); + if (lookahead == 'l') ADVANCE(147); END_STATE(); case 103: - if (lookahead == 'u') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_php); END_STATE(); case 104: - if (lookahead == 'y') ADVANCE(147); + if (lookahead == 'v') ADVANCE(148); END_STATE(); case 105: - if (lookahead == 't') ADVANCE(148); + if (lookahead == 'h') ADVANCE(149); END_STATE(); case 106: - if (lookahead == 'u') ADVANCE(149); + if (lookahead == 'u') ADVANCE(150); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_sol); - if (lookahead == 'i') ADVANCE(150); + if (lookahead == 'y') ADVANCE(151); END_STATE(); case 108: - if (lookahead == 'e') ADVANCE(151); + if (lookahead == 't') ADVANCE(152); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_sql); + if (lookahead == 'u') ADVANCE(153); END_STATE(); case 110: - if (lookahead == 'r') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_sol); + if (lookahead == 'i') ADVANCE(154); END_STATE(); case 111: - if (lookahead == 'l') ADVANCE(153); + if (lookahead == 'e') ADVANCE(155); END_STATE(); case 112: - if (lookahead == 'e') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_sql); END_STATE(); case 113: - if (lookahead == 'e') ADVANCE(155); + if (lookahead == 'r') ADVANCE(156); END_STATE(); case 114: - if (lookahead == 'v') ADVANCE(156); + if (lookahead == 'l') ADVANCE(157); END_STATE(); case 115: - if (lookahead == 'i') ADVANCE(157); + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 116: - if (lookahead == 'i') ADVANCE(158); + if (lookahead == 'e') ADVANCE(159); END_STATE(); case 117: - if (lookahead == 'r') ADVANCE(159); + if (lookahead == 'v') ADVANCE(160); END_STATE(); case 118: - if (lookahead == 'h') ADVANCE(160); + if (lookahead == 'i') ADVANCE(161); END_STATE(); case 119: - if (lookahead == 'l') ADVANCE(161); + if (lookahead == 'i') ADVANCE(162); END_STATE(); case 120: - if (lookahead == 'o') ADVANCE(162); + if (lookahead == 'r') ADVANCE(163); END_STATE(); case 121: - if (lookahead == 'r') ADVANCE(163); + if (lookahead == 'h') ADVANCE(164); END_STATE(); case 122: - if (lookahead == 'r') ADVANCE(164); + if (lookahead == 'l') ADVANCE(165); END_STATE(); case 123: - if (lookahead == 'l') ADVANCE(165); + if (lookahead == 'o') ADVANCE(166); END_STATE(); case 124: - if (lookahead == 'a') ADVANCE(166); + if (lookahead == 'r') ADVANCE(167); END_STATE(); case 125: - if (lookahead == 'r') ADVANCE(167); + if (lookahead == 'r') ADVANCE(168); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'l') ADVANCE(169); END_STATE(); case 127: - if (lookahead == 'c') ADVANCE(168); - if (lookahead == 'l') ADVANCE(169); + if (lookahead == 'a') ADVANCE(170); END_STATE(); case 128: - if (lookahead == 'y') ADVANCE(170); + if (lookahead == 'r') ADVANCE(171); END_STATE(); case 129: - if (lookahead == 'e') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_grit); + if (lookahead == 'c') ADVANCE(172); + if (lookahead == 'l') ADVANCE(173); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_html); + if (lookahead == 'y') ADVANCE(174); END_STATE(); case 132: - if (lookahead == 'u') ADVANCE(171); + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_java); + ACCEPT_TOKEN(anon_sym_grit); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_json); + ACCEPT_TOKEN(anon_sym_html); END_STATE(); case 135: - if (lookahead == 'u') ADVANCE(172); + if (lookahead == 'u') ADVANCE(175); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_like); + ACCEPT_TOKEN(anon_sym_java); END_STATE(); case 137: - if (lookahead == 't') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_json); END_STATE(); case 138: - if (lookahead == 'd') ADVANCE(174); + if (lookahead == 'i') ADVANCE(176); END_STATE(); case 139: - if (lookahead == 'a') ADVANCE(175); + if (lookahead == 'u') ADVANCE(177); END_STATE(); case 140: - if (lookahead == 'e') ADVANCE(176); + ACCEPT_TOKEN(anon_sym_like); END_STATE(); case 141: - if (lookahead == 'a') ADVANCE(177); + if (lookahead == 't') ADVANCE(178); END_STATE(); case 142: - if (lookahead == 'i') ADVANCE(178); + if (lookahead == 'd') ADVANCE(179); END_STATE(); case 143: - if (lookahead == 's') ADVANCE(179); + if (lookahead == 'a') ADVANCE(180); END_STATE(); case 144: - if (lookahead == 'a') ADVANCE(180); + if (lookahead == 'e') ADVANCE(181); END_STATE(); case 145: - if (lookahead == 'o') ADVANCE(181); + if (lookahead == 'a') ADVANCE(182); END_STATE(); case 146: - if (lookahead == 'r') ADVANCE(182); + if (lookahead == 'i') ADVANCE(183); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_ruby); + if (lookahead == 's') ADVANCE(184); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_rust); + if (lookahead == 'a') ADVANCE(185); END_STATE(); case 149: - if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'o') ADVANCE(186); END_STATE(); case 150: - if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'r') ADVANCE(187); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_some); + ACCEPT_TOKEN(anon_sym_ruby); END_STATE(); case 152: - if (lookahead == 't') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_rust); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_toml); + if (lookahead == 'e') ADVANCE(188); END_STATE(); case 154: - ACCEPT_TOKEN(sym_booleanConstant); + if (lookahead == 'd') ADVANCE(189); END_STATE(); case 155: - if (lookahead == 'f') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_some); END_STATE(); case 156: - if (lookahead == 'e') ADVANCE(187); + if (lookahead == 't') ADVANCE(190); END_STATE(); case 157: - if (lookahead == 'l') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_toml); END_STATE(); case 158: - if (lookahead == 'a') ADVANCE(189); + ACCEPT_TOKEN(sym_booleanConstant); END_STATE(); case 159: - if (lookahead == 'e') ADVANCE(190); + if (lookahead == 'f') ADVANCE(191); END_STATE(); case 160: - if (lookahead == 'i') ADVANCE(191); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_yaml); + if (lookahead == 'l') ADVANCE(193); END_STATE(); case 162: - if (lookahead == 'm') ADVANCE(192); + if (lookahead == 'a') ADVANCE(194); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_after); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 164: - if (lookahead == 'e') ADVANCE(193); + if (lookahead == 'i') ADVANCE(196); END_STATE(); case 165: - if (lookahead == 'e') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_yaml); END_STATE(); case 166: - if (lookahead == 'i') ADVANCE(195); + if (lookahead == 'm') ADVANCE(197); END_STATE(); case 167: - if (lookahead == 'p') ADVANCE(196); + ACCEPT_TOKEN(anon_sym_after); END_STATE(); case 168: - if (lookahead == 'o') ADVANCE(197); + if (lookahead == 'e') ADVANCE(198); END_STATE(); case 169: - if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'e') ADVANCE(199); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_every); + if (lookahead == 'i') ADVANCE(200); END_STATE(); case 171: - if (lookahead == 'd') ADVANCE(199); + if (lookahead == 'p') ADVANCE(201); END_STATE(); case 172: - if (lookahead == 'a') ADVANCE(200); + if (lookahead == 'o') ADVANCE(202); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_limit); + if (lookahead == 'i') ADVANCE(203); END_STATE(); case 174: - if (lookahead == 'o') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_every); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'd') ADVANCE(204); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_maybe); + if (lookahead == 'n') ADVANCE(205); END_STATE(); case 177: - if (lookahead == 'g') ADVANCE(203); + if (lookahead == 'a') ADVANCE(206); END_STATE(); case 178: - if (lookahead == 'f') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_limit); END_STATE(); case 179: - if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'o') ADVANCE(207); END_STATE(); case 180: - if (lookahead == 't') ADVANCE(206); + if (lookahead == 'n') ADVANCE(208); END_STATE(); case 181: - if (lookahead == 'n') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_maybe); END_STATE(); case 182: - if (lookahead == 'n') ADVANCE(208); + if (lookahead == 'g') ADVANCE(209); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(209); + if (lookahead == 'f') ADVANCE(210); END_STATE(); case 184: - if (lookahead == 'i') ADVANCE(210); + if (lookahead == 'e') ADVANCE(211); END_STATE(); case 185: - if (lookahead == '_') ADVANCE(211); + if (lookahead == 't') ADVANCE(212); END_STATE(); case 186: - if (lookahead == 'i') ADVANCE(212); + if (lookahead == 'n') ADVANCE(213); END_STATE(); case 187: - if (lookahead == 'r') ADVANCE(213); + if (lookahead == 'n') ADVANCE(214); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_until); + if (lookahead == 'n') ADVANCE(215); END_STATE(); case 189: - if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'i') ADVANCE(216); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_where); + if (lookahead == '_') ADVANCE(217); END_STATE(); case 191: - if (lookahead == 'n') ADVANCE(215); + if (lookahead == 'i') ADVANCE(218); END_STATE(); case 192: - ACCEPT_TOKEN(sym_bottom); + if (lookahead == 'r') ADVANCE(219); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_before); + ACCEPT_TOKEN(anon_sym_until); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_bubble); + if (lookahead == 'b') ADVANCE(220); END_STATE(); case 195: - if (lookahead == 'n') ADVANCE(216); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_csharp); + if (lookahead == 'n') ADVANCE(221); END_STATE(); case 197: - if (lookahead == 'l') ADVANCE(217); + ACCEPT_TOKEN(sym_bottom); END_STATE(); case 198: - if (lookahead == 'n') ADVANCE(218); + ACCEPT_TOKEN(anon_sym_before); END_STATE(); case 199: - if (lookahead == 'e') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_bubble); END_STATE(); case 200: - if (lookahead == 'g') ADVANCE(220); + if (lookahead == 'n') ADVANCE(222); END_STATE(); case 201: - if (lookahead == 'w') ADVANCE(221); + ACCEPT_TOKEN(anon_sym_csharp); END_STATE(); case 202: - if (lookahead == 'o') ADVANCE(222); + if (lookahead == 'l') ADVANCE(223); END_STATE(); case 203: - if (lookahead == 'e') ADVANCE(223); + if (lookahead == 'n') ADVANCE(224); END_STATE(); case 204: - if (lookahead == 'i') ADVANCE(224); + if (lookahead == 'e') ADVANCE(225); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_orelse); + ACCEPT_TOKEN(anon_sym_kotlin); END_STATE(); case 206: - if (lookahead == 'e') ADVANCE(225); + if (lookahead == 'g') ADVANCE(226); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_python); + if (lookahead == 'w') ADVANCE(227); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'o') ADVANCE(228); END_STATE(); case 209: - if (lookahead == 't') ADVANCE(226); + if (lookahead == 'e') ADVANCE(229); END_STATE(); case 210: - if (lookahead == 't') ADVANCE(227); + if (lookahead == 'i') ADVANCE(230); END_STATE(); case 211: - if (lookahead == 'c') ADVANCE(228); - if (lookahead == 'l') ADVANCE(229); + ACCEPT_TOKEN(anon_sym_orelse); END_STATE(); case 212: - if (lookahead == 'n') ADVANCE(230); + if (lookahead == 'e') ADVANCE(231); END_STATE(); case 213: - if (lookahead == 's') ADVANCE(231); + ACCEPT_TOKEN(anon_sym_python); END_STATE(); case 214: - if (lookahead == 'l') ADVANCE(232); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_within); + if (lookahead == 't') ADVANCE(232); END_STATE(); case 216: - if (lookahead == 's') ADVANCE(233); + if (lookahead == 't') ADVANCE(233); END_STATE(); case 217: - if (lookahead == 'u') ADVANCE(234); + if (lookahead == 'c') ADVANCE(234); + if (lookahead == 'l') ADVANCE(235); END_STATE(); case 218: - if (lookahead == 'e') ADVANCE(235); + if (lookahead == 'n') ADVANCE(236); END_STATE(); case 219: - if (lookahead == 's') ADVANCE(236); + if (lookahead == 's') ADVANCE(237); END_STATE(); case 220: - if (lookahead == 'e') ADVANCE(237); + if (lookahead == 'l') ADVANCE(238); END_STATE(); case 221: - if (lookahead == 'n') ADVANCE(238); + ACCEPT_TOKEN(anon_sym_within); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_marzano); + if (lookahead == 's') ADVANCE(239); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_message); + if (lookahead == 'u') ADVANCE(240); END_STATE(); case 224: - if (lookahead == 'l') ADVANCE(239); + if (lookahead == 'e') ADVANCE(241); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_private); + if (lookahead == 's') ADVANCE(242); END_STATE(); case 226: - if (lookahead == 'i') ADVANCE(240); + if (lookahead == 'e') ADVANCE(243); END_STATE(); case 227: - if (lookahead == 'y') ADVANCE(241); + if (lookahead == 'n') ADVANCE(244); END_STATE(); case 228: - if (lookahead == 'o') ADVANCE(242); + ACCEPT_TOKEN(anon_sym_marzano); END_STATE(); case 229: - if (lookahead == 'i') ADVANCE(243); + ACCEPT_TOKEN(anon_sym_message); END_STATE(); case 230: - if (lookahead == 'e') ADVANCE(244); + if (lookahead == 'l') ADVANCE(245); END_STATE(); case 231: - if (lookahead == 'a') ADVANCE(245); + ACCEPT_TOKEN(anon_sym_private); END_STATE(); case 232: - if (lookahead == 'e') ADVANCE(246); + if (lookahead == 'i') ADVANCE(246); END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_contains); + if (lookahead == 'y') ADVANCE(247); END_STATE(); case 234: - if (lookahead == 'm') ADVANCE(247); + if (lookahead == 'o') ADVANCE(248); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_end_line); + if (lookahead == 'i') ADVANCE(249); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_includes); + if (lookahead == 'e') ADVANCE(250); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_language); + if (lookahead == 'a') ADVANCE(251); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_markdown); + if (lookahead == 'e') ADVANCE(252); END_STATE(); case 239: - if (lookahead == 'e') ADVANCE(248); + ACCEPT_TOKEN(anon_sym_contains); END_STATE(); case 240: - if (lookahead == 'a') ADVANCE(249); + if (lookahead == 'm') ADVANCE(253); END_STATE(); case 241: - ACCEPT_TOKEN(anon_sym_solidity); + ACCEPT_TOKEN(anon_sym_end_line); END_STATE(); case 242: - if (lookahead == 'l') ADVANCE(250); + ACCEPT_TOKEN(anon_sym_includes); END_STATE(); case 243: - if (lookahead == 'n') ADVANCE(251); + ACCEPT_TOKEN(anon_sym_language); END_STATE(); case 244: - if (lookahead == 'd') ADVANCE(252); + ACCEPT_TOKEN(anon_sym_markdown); END_STATE(); case 245: - if (lookahead == 'l') ADVANCE(253); + if (lookahead == 'e') ADVANCE(254); END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_variable); + if (lookahead == 'a') ADVANCE(255); END_STATE(); case 247: - if (lookahead == 'n') ADVANCE(254); + ACCEPT_TOKEN(anon_sym_solidity); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_multifile); + if (lookahead == 'l') ADVANCE(256); END_STATE(); case 249: - if (lookahead == 'l') ADVANCE(255); + if (lookahead == 'n') ADVANCE(257); END_STATE(); case 250: - if (lookahead == 'u') ADVANCE(256); + if (lookahead == 'd') ADVANCE(258); END_STATE(); case 251: - if (lookahead == 'e') ADVANCE(257); + if (lookahead == 'l') ADVANCE(259); END_STATE(); case 252: - ACCEPT_TOKEN(sym_undefined); + ACCEPT_TOKEN(anon_sym_variable); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_universal); + if (lookahead == 'n') ADVANCE(260); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_end_column); + ACCEPT_TOKEN(anon_sym_multifile); END_STATE(); case 255: - ACCEPT_TOKEN(anon_sym_sequential); + if (lookahead == 'l') ADVANCE(261); END_STATE(); case 256: - if (lookahead == 'm') ADVANCE(258); + if (lookahead == 'u') ADVANCE(262); END_STATE(); case 257: - ACCEPT_TOKEN(anon_sym_start_line); + if (lookahead == 'e') ADVANCE(263); END_STATE(); case 258: - if (lookahead == 'n') ADVANCE(259); + ACCEPT_TOKEN(sym_undefined); END_STATE(); case 259: + ACCEPT_TOKEN(anon_sym_universal); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_end_column); + END_STATE(); + case 261: + ACCEPT_TOKEN(anon_sym_sequential); + END_STATE(); + case 262: + if (lookahead == 'm') ADVANCE(264); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_start_line); + END_STATE(); + case 264: + if (lookahead == 'n') ADVANCE(265); + END_STATE(); + case 265: ACCEPT_TOKEN(anon_sym_start_column); END_STATE(); default: @@ -6689,9 +6715,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 95}, [2] = {.lex_state = 93}, - [3] = {.lex_state = 93}, + [3] = {.lex_state = 94}, [4] = {.lex_state = 93}, - [5] = {.lex_state = 94}, + [5] = {.lex_state = 93}, [6] = {.lex_state = 93}, [7] = {.lex_state = 93}, [8] = {.lex_state = 93}, @@ -6728,14 +6754,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [39] = {.lex_state = 2}, [40] = {.lex_state = 2}, [41] = {.lex_state = 2}, - [42] = {.lex_state = 2}, + [42] = {.lex_state = 3}, [43] = {.lex_state = 2}, [44] = {.lex_state = 2}, [45] = {.lex_state = 2}, [46] = {.lex_state = 2}, [47] = {.lex_state = 2}, [48] = {.lex_state = 2}, - [49] = {.lex_state = 3}, + [49] = {.lex_state = 2}, [50] = {.lex_state = 2}, [51] = {.lex_state = 2}, [52] = {.lex_state = 2}, @@ -6956,7 +6982,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [267] = {.lex_state = 93}, [268] = {.lex_state = 93}, [269] = {.lex_state = 93}, - [270] = {.lex_state = 93}, + [270] = {.lex_state = 94}, [271] = {.lex_state = 93}, [272] = {.lex_state = 93}, [273] = {.lex_state = 93}, @@ -6966,7 +6992,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [277] = {.lex_state = 93}, [278] = {.lex_state = 93}, [279] = {.lex_state = 93}, - [280] = {.lex_state = 94}, + [280] = {.lex_state = 93}, [281] = {.lex_state = 93}, [282] = {.lex_state = 93}, [283] = {.lex_state = 93}, @@ -7003,52 +7029,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [314] = {.lex_state = 96}, [315] = {.lex_state = 96}, [316] = {.lex_state = 96}, - [317] = {.lex_state = 96}, + [317] = {.lex_state = 4}, [318] = {.lex_state = 96}, [319] = {.lex_state = 96}, - [320] = {.lex_state = 4}, - [321] = {.lex_state = 4}, + [320] = {.lex_state = 96}, + [321] = {.lex_state = 96}, [322] = {.lex_state = 96}, [323] = {.lex_state = 96}, - [324] = {.lex_state = 96}, + [324] = {.lex_state = 4}, [325] = {.lex_state = 96}, [326] = {.lex_state = 96}, [327] = {.lex_state = 96}, [328] = {.lex_state = 96}, [329] = {.lex_state = 96}, - [330] = {.lex_state = 4}, - [331] = {.lex_state = 96}, - [332] = {.lex_state = 96}, - [333] = {.lex_state = 4}, + [330] = {.lex_state = 96}, + [331] = {.lex_state = 4}, + [332] = {.lex_state = 4}, + [333] = {.lex_state = 96}, [334] = {.lex_state = 96}, [335] = {.lex_state = 96}, - [336] = {.lex_state = 4}, - [337] = {.lex_state = 4}, - [338] = {.lex_state = 96}, + [336] = {.lex_state = 96}, + [337] = {.lex_state = 96}, + [338] = {.lex_state = 4}, [339] = {.lex_state = 96}, [340] = {.lex_state = 96}, - [341] = {.lex_state = 4}, + [341] = {.lex_state = 96}, [342] = {.lex_state = 96}, - [343] = {.lex_state = 4}, - [344] = {.lex_state = 96}, - [345] = {.lex_state = 96}, + [343] = {.lex_state = 96}, + [344] = {.lex_state = 4}, + [345] = {.lex_state = 4}, [346] = {.lex_state = 96}, - [347] = {.lex_state = 4}, + [347] = {.lex_state = 96}, [348] = {.lex_state = 4}, [349] = {.lex_state = 96}, [350] = {.lex_state = 4}, [351] = {.lex_state = 4}, - [352] = {.lex_state = 96}, - [353] = {.lex_state = 4}, - [354] = {.lex_state = 96}, - [355] = {.lex_state = 96}, + [352] = {.lex_state = 4}, + [353] = {.lex_state = 96}, + [354] = {.lex_state = 4}, + [355] = {.lex_state = 4}, [356] = {.lex_state = 4}, [357] = {.lex_state = 4}, - [358] = {.lex_state = 96}, - [359] = {.lex_state = 4}, - [360] = {.lex_state = 96}, + [358] = {.lex_state = 4}, + [359] = {.lex_state = 96}, + [360] = {.lex_state = 4}, [361] = {.lex_state = 96}, - [362] = {.lex_state = 4}, + [362] = {.lex_state = 96}, [363] = {.lex_state = 96}, [364] = {.lex_state = 96}, [365] = {.lex_state = 96}, @@ -7105,14 +7131,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [416] = {.lex_state = 96}, [417] = {.lex_state = 96}, [418] = {.lex_state = 96}, - [419] = {.lex_state = 4}, + [419] = {.lex_state = 96}, [420] = {.lex_state = 96}, [421] = {.lex_state = 96}, - [422] = {.lex_state = 4}, - [423] = {.lex_state = 4}, + [422] = {.lex_state = 96}, + [423] = {.lex_state = 96}, [424] = {.lex_state = 96}, [425] = {.lex_state = 96}, - [426] = {.lex_state = 96}, + [426] = {.lex_state = 4}, [427] = {.lex_state = 96}, [428] = {.lex_state = 96}, [429] = {.lex_state = 96}, @@ -7121,11 +7147,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [432] = {.lex_state = 96}, [433] = {.lex_state = 96}, [434] = {.lex_state = 96}, - [435] = {.lex_state = 4}, + [435] = {.lex_state = 96}, [436] = {.lex_state = 96}, [437] = {.lex_state = 96}, [438] = {.lex_state = 96}, - [439] = {.lex_state = 4}, + [439] = {.lex_state = 96}, [440] = {.lex_state = 96}, [441] = {.lex_state = 96}, [442] = {.lex_state = 96}, @@ -7205,17 +7231,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [516] = {.lex_state = 96}, [517] = {.lex_state = 96}, [518] = {.lex_state = 96}, - [519] = {.lex_state = 96}, - [520] = {.lex_state = 96}, + [519] = {.lex_state = 4}, + [520] = {.lex_state = 4}, [521] = {.lex_state = 96}, - [522] = {.lex_state = 96}, + [522] = {.lex_state = 4}, [523] = {.lex_state = 96}, [524] = {.lex_state = 96}, [525] = {.lex_state = 96}, - [526] = {.lex_state = 96}, + [526] = {.lex_state = 4}, [527] = {.lex_state = 96}, [528] = {.lex_state = 96}, - [529] = {.lex_state = 96}, + [529] = {.lex_state = 4}, [530] = {.lex_state = 96}, [531] = {.lex_state = 96}, [532] = {.lex_state = 96}, @@ -7257,7 +7283,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [568] = {.lex_state = 96}, [569] = {.lex_state = 96}, [570] = {.lex_state = 96}, - [571] = {.lex_state = 4}, + [571] = {.lex_state = 96}, [572] = {.lex_state = 96}, [573] = {.lex_state = 96}, [574] = {.lex_state = 96}, @@ -7621,7 +7647,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [932] = {.lex_state = 96}, [933] = {.lex_state = 96}, [934] = {.lex_state = 96}, - [935] = {.lex_state = 11}, + [935] = {.lex_state = 96}, [936] = {.lex_state = 96}, [937] = {.lex_state = 96}, [938] = {.lex_state = 96}, @@ -7629,7 +7655,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [940] = {.lex_state = 96}, [941] = {.lex_state = 96}, [942] = {.lex_state = 96}, - [943] = {.lex_state = 96}, + [943] = {.lex_state = 11}, [944] = {.lex_state = 96}, [945] = {.lex_state = 96}, [946] = {.lex_state = 96}, @@ -7638,13 +7664,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [949] = {.lex_state = 96}, [950] = {.lex_state = 96}, [951] = {.lex_state = 96}, - [952] = {.lex_state = 11}, + [952] = {.lex_state = 96}, [953] = {.lex_state = 96}, [954] = {.lex_state = 96}, [955] = {.lex_state = 96}, [956] = {.lex_state = 96}, [957] = {.lex_state = 96}, - [958] = {.lex_state = 96}, + [958] = {.lex_state = 11}, [959] = {.lex_state = 96}, [960] = {.lex_state = 96}, [961] = {.lex_state = 96}, @@ -7686,80 +7712,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [997] = {.lex_state = 4}, [998] = {.lex_state = 4}, [999] = {.lex_state = 4}, - [1000] = {.lex_state = 4}, + [1000] = {.lex_state = 0}, [1001] = {.lex_state = 4}, [1002] = {.lex_state = 4}, [1003] = {.lex_state = 4}, [1004] = {.lex_state = 4}, - [1005] = {.lex_state = 0}, + [1005] = {.lex_state = 4}, [1006] = {.lex_state = 4}, - [1007] = {.lex_state = 10}, - [1008] = {.lex_state = 4}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 10}, - [1011] = {.lex_state = 11}, + [1007] = {.lex_state = 4}, + [1008] = {.lex_state = 10}, + [1009] = {.lex_state = 4}, + [1010] = {.lex_state = 4}, + [1011] = {.lex_state = 0}, [1012] = {.lex_state = 4}, [1013] = {.lex_state = 4}, [1014] = {.lex_state = 4}, - [1015] = {.lex_state = 10}, + [1015] = {.lex_state = 4}, [1016] = {.lex_state = 11}, - [1017] = {.lex_state = 10}, - [1018] = {.lex_state = 4}, - [1019] = {.lex_state = 4}, - [1020] = {.lex_state = 4}, + [1017] = {.lex_state = 11}, + [1018] = {.lex_state = 10}, + [1019] = {.lex_state = 10}, + [1020] = {.lex_state = 10}, [1021] = {.lex_state = 4}, - [1022] = {.lex_state = 0}, + [1022] = {.lex_state = 4}, [1023] = {.lex_state = 0}, - [1024] = {.lex_state = 4}, + [1024] = {.lex_state = 0}, [1025] = {.lex_state = 0}, [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 93}, + [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, [1029] = {.lex_state = 0}, [1030] = {.lex_state = 0}, [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 93}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 93}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 93}, - [1040] = {.lex_state = 93}, - [1041] = {.lex_state = 93}, - [1042] = {.lex_state = 93}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 93}, - [1046] = {.lex_state = 93}, - [1047] = {.lex_state = 93}, + [1032] = {.lex_state = 4}, + [1033] = {.lex_state = 4}, + [1034] = {.lex_state = 4}, + [1035] = {.lex_state = 0}, + [1036] = {.lex_state = 4}, + [1037] = {.lex_state = 4}, + [1038] = {.lex_state = 4}, + [1039] = {.lex_state = 4}, + [1040] = {.lex_state = 4}, + [1041] = {.lex_state = 4}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 4}, + [1044] = {.lex_state = 4}, + [1045] = {.lex_state = 4}, + [1046] = {.lex_state = 4}, + [1047] = {.lex_state = 4}, [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 93}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 93}, - [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 93}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 93}, - [1059] = {.lex_state = 93}, - [1060] = {.lex_state = 4}, - [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 4}, + [1049] = {.lex_state = 4}, + [1050] = {.lex_state = 4}, + [1051] = {.lex_state = 4}, + [1052] = {.lex_state = 4}, + [1053] = {.lex_state = 4}, + [1054] = {.lex_state = 4}, + [1055] = {.lex_state = 4}, + [1056] = {.lex_state = 0}, + [1057] = {.lex_state = 4}, + [1058] = {.lex_state = 4}, + [1059] = {.lex_state = 4}, + [1060] = {.lex_state = 0}, + [1061] = {.lex_state = 93}, + [1062] = {.lex_state = 4}, + [1063] = {.lex_state = 93}, [1064] = {.lex_state = 93}, - [1065] = {.lex_state = 4}, + [1065] = {.lex_state = 93}, [1066] = {.lex_state = 93}, - [1067] = {.lex_state = 4}, + [1067] = {.lex_state = 93}, [1068] = {.lex_state = 0}, [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 4}, + [1071] = {.lex_state = 0}, [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 93}, + [1073] = {.lex_state = 0}, [1074] = {.lex_state = 0}, [1075] = {.lex_state = 0}, [1076] = {.lex_state = 0}, @@ -7767,109 +7793,109 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1078] = {.lex_state = 0}, [1079] = {.lex_state = 4}, [1080] = {.lex_state = 93}, - [1081] = {.lex_state = 4}, - [1082] = {.lex_state = 4}, - [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 4}, - [1086] = {.lex_state = 93}, - [1087] = {.lex_state = 4}, - [1088] = {.lex_state = 0}, - [1089] = {.lex_state = 4}, + [1081] = {.lex_state = 93}, + [1082] = {.lex_state = 93}, + [1083] = {.lex_state = 93}, + [1084] = {.lex_state = 93}, + [1085] = {.lex_state = 93}, + [1086] = {.lex_state = 0}, + [1087] = {.lex_state = 93}, + [1088] = {.lex_state = 93}, + [1089] = {.lex_state = 93}, [1090] = {.lex_state = 93}, - [1091] = {.lex_state = 4}, + [1091] = {.lex_state = 93}, [1092] = {.lex_state = 93}, - [1093] = {.lex_state = 4}, + [1093] = {.lex_state = 93}, [1094] = {.lex_state = 93}, - [1095] = {.lex_state = 4}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 4}, - [1098] = {.lex_state = 93}, - [1099] = {.lex_state = 4}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 4}, + [1095] = {.lex_state = 93}, + [1096] = {.lex_state = 93}, + [1097] = {.lex_state = 93}, + [1098] = {.lex_state = 10}, + [1099] = {.lex_state = 0}, + [1100] = {.lex_state = 93}, + [1101] = {.lex_state = 0}, [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 4}, - [1104] = {.lex_state = 93}, - [1105] = {.lex_state = 4}, - [1106] = {.lex_state = 93}, - [1107] = {.lex_state = 4}, - [1108] = {.lex_state = 4}, - [1109] = {.lex_state = 4}, - [1110] = {.lex_state = 93}, - [1111] = {.lex_state = 4}, - [1112] = {.lex_state = 0}, + [1103] = {.lex_state = 0}, + [1104] = {.lex_state = 0}, + [1105] = {.lex_state = 0}, + [1106] = {.lex_state = 0}, + [1107] = {.lex_state = 93}, + [1108] = {.lex_state = 93}, + [1109] = {.lex_state = 93}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 93}, + [1112] = {.lex_state = 93}, [1113] = {.lex_state = 4}, - [1114] = {.lex_state = 4}, + [1114] = {.lex_state = 93}, [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 0}, + [1116] = {.lex_state = 93}, + [1117] = {.lex_state = 93}, [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 4}, + [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 0}, + [1121] = {.lex_state = 93}, [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 4}, - [1127] = {.lex_state = 93}, - [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 0}, + [1125] = {.lex_state = 4}, + [1126] = {.lex_state = 0}, + [1127] = {.lex_state = 0}, + [1128] = {.lex_state = 93}, + [1129] = {.lex_state = 93}, + [1130] = {.lex_state = 93}, + [1131] = {.lex_state = 93}, [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 0}, + [1133] = {.lex_state = 93}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 10}, - [1137] = {.lex_state = 4}, - [1138] = {.lex_state = 0}, + [1136] = {.lex_state = 0}, + [1137] = {.lex_state = 0}, + [1138] = {.lex_state = 93}, [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 0}, + [1140] = {.lex_state = 4}, [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 4}, - [1143] = {.lex_state = 93}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 4}, - [1148] = {.lex_state = 4}, + [1147] = {.lex_state = 93}, + [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 93}, - [1152] = {.lex_state = 4}, - [1153] = {.lex_state = 4}, + [1151] = {.lex_state = 0}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 93}, - [1156] = {.lex_state = 93}, - [1157] = {.lex_state = 93}, + [1155] = {.lex_state = 0}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 0}, [1158] = {.lex_state = 93}, - [1159] = {.lex_state = 93}, + [1159] = {.lex_state = 0}, [1160] = {.lex_state = 93}, [1161] = {.lex_state = 93}, - [1162] = {.lex_state = 4}, - [1163] = {.lex_state = 93}, + [1162] = {.lex_state = 93}, + [1163] = {.lex_state = 0}, [1164] = {.lex_state = 93}, - [1165] = {.lex_state = 93}, + [1165] = {.lex_state = 0}, [1166] = {.lex_state = 93}, - [1167] = {.lex_state = 93}, + [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, [1169] = {.lex_state = 93}, - [1170] = {.lex_state = 93}, + [1170] = {.lex_state = 4}, [1171] = {.lex_state = 0}, - [1172] = {.lex_state = 93}, - [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 93}, - [1175] = {.lex_state = 93}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 93}, - [1178] = {.lex_state = 0}, + [1172] = {.lex_state = 0}, + [1173] = {.lex_state = 4}, + [1174] = {.lex_state = 4}, + [1175] = {.lex_state = 4}, + [1176] = {.lex_state = 4}, + [1177] = {.lex_state = 4}, + [1178] = {.lex_state = 4}, [1179] = {.lex_state = 93}, - [1180] = {.lex_state = 93}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 93}, + [1180] = {.lex_state = 4}, + [1181] = {.lex_state = 4}, + [1182] = {.lex_state = 4}, + [1183] = {.lex_state = 4}, [1184] = {.lex_state = 4}, [1185] = {.lex_state = 4}, [1186] = {.lex_state = 4}, @@ -7883,39 +7909,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1194] = {.lex_state = 4}, [1195] = {.lex_state = 4}, [1196] = {.lex_state = 4}, - [1197] = {.lex_state = 4}, - [1198] = {.lex_state = 4}, - [1199] = {.lex_state = 4}, - [1200] = {.lex_state = 4}, - [1201] = {.lex_state = 4}, - [1202] = {.lex_state = 4}, - [1203] = {.lex_state = 4}, + [1197] = {.lex_state = 93}, + [1198] = {.lex_state = 93}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 93}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 93}, + [1205] = {.lex_state = 4}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 0}, + [1209] = {.lex_state = 93}, + [1210] = {.lex_state = 1}, [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 0}, + [1212] = {.lex_state = 1}, [1213] = {.lex_state = 0}, [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 0}, + [1216] = {.lex_state = 1}, + [1217] = {.lex_state = 1}, [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 0}, + [1219] = {.lex_state = 11}, [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 1}, - [1223] = {.lex_state = 1}, - [1224] = {.lex_state = 1}, + [1221] = {.lex_state = 1}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 0}, [1225] = {.lex_state = 1}, - [1226] = {.lex_state = 0}, + [1226] = {.lex_state = 1}, [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 0}, + [1229] = {.lex_state = 1}, [1230] = {.lex_state = 0}, [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, @@ -7925,21 +7951,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 0}, + [1239] = {.lex_state = 1}, + [1240] = {.lex_state = 11}, [1241] = {.lex_state = 1}, [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 1}, + [1243] = {.lex_state = 1}, + [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0}, + [1248] = {.lex_state = 1}, [1249] = {.lex_state = 0}, [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0}, + [1253] = {.lex_state = 1}, [1254] = {.lex_state = 0}, [1255] = {.lex_state = 0}, [1256] = {.lex_state = 0}, @@ -7958,11 +7984,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1269] = {.lex_state = 0}, [1270] = {.lex_state = 0}, [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 1}, - [1273] = {.lex_state = 0}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 1}, [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, + [1276] = {.lex_state = 1}, [1277] = {.lex_state = 0}, [1278] = {.lex_state = 0}, [1279] = {.lex_state = 0}, @@ -7972,22 +7998,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1283] = {.lex_state = 0}, [1284] = {.lex_state = 0}, [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 1}, - [1287] = {.lex_state = 1}, + [1286] = {.lex_state = 0}, + [1287] = {.lex_state = 0}, [1288] = {.lex_state = 0}, [1289] = {.lex_state = 0}, [1290] = {.lex_state = 0}, [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 11}, + [1292] = {.lex_state = 0}, [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 11}, + [1294] = {.lex_state = 0}, [1295] = {.lex_state = 0}, [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, [1298] = {.lex_state = 0}, [1299] = {.lex_state = 0}, [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 4}, + [1301] = {.lex_state = 1}, [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, [1304] = {.lex_state = 0}, @@ -7998,21 +8024,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 1}, + [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 1}, - [1315] = {.lex_state = 0}, + [1314] = {.lex_state = 4}, + [1315] = {.lex_state = 1}, [1316] = {.lex_state = 1}, - [1317] = {.lex_state = 1}, + [1317] = {.lex_state = 0}, [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 1}, - [1320] = {.lex_state = 0}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 1}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, [1324] = {.lex_state = 0}, [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 1}, + [1326] = {.lex_state = 0}, [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, [1329] = {.lex_state = 0}, @@ -8029,7 +8055,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1340] = {.lex_state = 0}, [1341] = {.lex_state = 0}, [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 1}, + [1343] = {.lex_state = 0}, [1344] = {.lex_state = 0}, [1345] = {.lex_state = 0}, [1346] = {.lex_state = 0}, @@ -8045,9 +8071,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1356] = {.lex_state = 0}, [1357] = {.lex_state = 0}, [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 0}, + [1359] = {.lex_state = 1}, [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, + [1361] = {.lex_state = 1}, [1362] = {.lex_state = 0}, [1363] = {.lex_state = 0}, [1364] = {.lex_state = 0}, @@ -8056,11 +8082,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1367] = {.lex_state = 0}, [1368] = {.lex_state = 0}, [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 1}, + [1370] = {.lex_state = 0}, [1371] = {.lex_state = 1}, [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 1}, + [1374] = {.lex_state = 0}, [1375] = {.lex_state = 0}, [1376] = {.lex_state = 0}, [1377] = {.lex_state = 0}, @@ -8070,7 +8096,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1381] = {.lex_state = 0}, [1382] = {.lex_state = 0}, [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 1}, + [1384] = {.lex_state = 0}, [1385] = {.lex_state = 0}, [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, @@ -8082,12 +8108,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0}, [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 1}, + [1396] = {.lex_state = 0}, [1397] = {.lex_state = 0}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 1}, + [1401] = {.lex_state = 0}, [1402] = {.lex_state = 0}, [1403] = {.lex_state = 0}, [1404] = {.lex_state = 0}, @@ -8102,7 +8128,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1413] = {.lex_state = 0}, [1414] = {.lex_state = 0}, [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 1}, + [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, [1419] = {.lex_state = 0}, @@ -8111,7 +8137,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1422] = {.lex_state = 0}, [1423] = {.lex_state = 0}, [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 4}, + [1425] = {.lex_state = 0}, [1426] = {.lex_state = 0}, [1427] = {.lex_state = 0}, [1428] = {.lex_state = 0}, @@ -8119,15 +8145,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1430] = {.lex_state = 0}, [1431] = {.lex_state = 0}, [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 0}, + [1433] = {.lex_state = 1}, [1434] = {.lex_state = 0}, [1435] = {.lex_state = 0}, [1436] = {.lex_state = 0}, [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 4}, - [1439] = {.lex_state = 4}, - [1440] = {.lex_state = 4}, - [1441] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 1}, [1442] = {.lex_state = 0}, [1443] = {.lex_state = 0}, [1444] = {.lex_state = 0}, @@ -8135,7 +8161,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1446] = {.lex_state = 0}, [1447] = {.lex_state = 0}, [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 0}, + [1449] = {.lex_state = 4}, [1450] = {.lex_state = 0}, [1451] = {.lex_state = 0}, [1452] = {.lex_state = 0}, @@ -8145,25 +8171,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1456] = {.lex_state = 0}, [1457] = {.lex_state = 0}, [1458] = {.lex_state = 0}, - [1459] = {.lex_state = 0}, + [1459] = {.lex_state = 4}, [1460] = {.lex_state = 0}, [1461] = {.lex_state = 0}, [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 0}, + [1463] = {.lex_state = 4}, [1464] = {.lex_state = 0}, [1465] = {.lex_state = 0}, - [1466] = {.lex_state = 1}, + [1466] = {.lex_state = 0}, [1467] = {.lex_state = 0}, [1468] = {.lex_state = 0}, [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 1}, + [1470] = {.lex_state = 0}, [1471] = {.lex_state = 0}, [1472] = {.lex_state = 0}, - [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 4}, + [1473] = {.lex_state = 20}, + [1474] = {.lex_state = 0}, [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 95}, - [1477] = {.lex_state = 20}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 1}, [1478] = {.lex_state = 0}, [1479] = {.lex_state = 0}, [1480] = {.lex_state = 0}, @@ -8171,10 +8197,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1482] = {.lex_state = 0}, [1483] = {.lex_state = 0}, [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 0}, + [1485] = {.lex_state = 4}, [1486] = {.lex_state = 0}, [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 0}, + [1488] = {.lex_state = 1}, [1489] = {.lex_state = 0}, [1490] = {.lex_state = 0}, [1491] = {.lex_state = 0}, @@ -8205,22 +8231,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1516] = {.lex_state = 0}, [1517] = {.lex_state = 0}, [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 1}, + [1519] = {.lex_state = 0}, [1520] = {.lex_state = 0}, [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 0}, + [1522] = {.lex_state = 4}, [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 0}, + [1524] = {.lex_state = 4}, [1525] = {.lex_state = 0}, [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 20}, + [1527] = {.lex_state = 20}, + [1528] = {.lex_state = 0}, [1529] = {.lex_state = 0}, [1530] = {.lex_state = 0}, [1531] = {.lex_state = 0}, [1532] = {.lex_state = 0}, [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 4}, + [1534] = {.lex_state = 0}, [1535] = {.lex_state = 0}, [1536] = {.lex_state = 0}, [1537] = {.lex_state = 0}, @@ -8228,7 +8254,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1539] = {.lex_state = 0}, [1540] = {.lex_state = 0}, [1541] = {.lex_state = 0}, - [1542] = {.lex_state = 0}, + [1542] = {.lex_state = 95}, [1543] = {.lex_state = 0}, [1544] = {.lex_state = 0}, }; @@ -8330,6 +8356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1), [anon_sym_c] = ACTIONS(1), [anon_sym_cpp] = ACTIONS(1), + [anon_sym_kotlin] = ACTIONS(1), [sym_backtickSnippet] = ACTIONS(1), [sym_rawBacktickSnippet] = ACTIONS(1), [sym_doubleQuoteSnippet] = ACTIONS(1), @@ -8344,59 +8371,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(1413), - [sym_sequential] = STATE(326), - [sym_files] = STATE(326), - [sym_definition] = STATE(4), - [sym_version] = STATE(5), - [sym_langdecl] = STATE(18), - [sym__pattern] = STATE(326), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(326), - [sym_divOperation] = STATE(326), - [sym_modOperation] = STATE(326), - [sym_addOperation] = STATE(326), - [sym_subOperation] = STATE(326), - [sym_patternAs] = STATE(326), - [sym_patternLimit] = STATE(326), - [sym_assignmentAsPattern] = STATE(326), - [sym_patternAccumulate] = STATE(326), - [sym_patternWhere] = STATE(326), - [sym__literal] = STATE(326), - [sym_patternNot] = STATE(326), - [sym_patternOr] = STATE(326), - [sym_patternOrElse] = STATE(326), - [sym_patternAny] = STATE(326), - [sym_patternAnd] = STATE(326), - [sym_patternMaybe] = STATE(326), - [sym_patternAfter] = STATE(326), - [sym_patternBefore] = STATE(326), - [sym_patternContains] = STATE(326), - [sym_patternIncludes] = STATE(326), - [sym_rewrite] = STATE(326), - [sym_patternIfElse] = STATE(326), - [sym_within] = STATE(326), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(326), - [sym_nodeLike] = STATE(326), - [sym_like] = STATE(326), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(326), - [sym_some] = STATE(326), - [sym_every] = STATE(326), - [sym_regexPattern] = STATE(326), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(326), - [sym_range] = STATE(326), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(326), + [sym_source_file] = STATE(1442), + [sym_sequential] = STATE(327), + [sym_files] = STATE(327), + [sym_definition] = STATE(2), + [sym_version] = STATE(3), + [sym_langdecl] = STATE(13), + [sym__pattern] = STATE(327), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(327), + [sym_divOperation] = STATE(327), + [sym_modOperation] = STATE(327), + [sym_addOperation] = STATE(327), + [sym_subOperation] = STATE(327), + [sym_patternAs] = STATE(327), + [sym_patternLimit] = STATE(327), + [sym_assignmentAsPattern] = STATE(327), + [sym_patternAccumulate] = STATE(327), + [sym_patternWhere] = STATE(327), + [sym__literal] = STATE(327), + [sym_patternNot] = STATE(327), + [sym_patternOr] = STATE(327), + [sym_patternOrElse] = STATE(327), + [sym_patternAny] = STATE(327), + [sym_patternAnd] = STATE(327), + [sym_patternMaybe] = STATE(327), + [sym_patternAfter] = STATE(327), + [sym_patternBefore] = STATE(327), + [sym_patternContains] = STATE(327), + [sym_patternIncludes] = STATE(327), + [sym_rewrite] = STATE(327), + [sym_patternIfElse] = STATE(327), + [sym_within] = STATE(327), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(327), + [sym_nodeLike] = STATE(327), + [sym_like] = STATE(327), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(327), + [sym_some] = STATE(327), + [sym_every] = STATE(327), + [sym_regexPattern] = STATE(327), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(327), + [sym_range] = STATE(327), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(327), [sym_snippetRegex] = STATE(334), [ts_builtin_sym_end] = ACTIONS(5), [sym_name] = ACTIONS(7), @@ -8457,6 +8484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(59), @@ -8470,58 +8498,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_sequential] = STATE(310), - [sym_files] = STATE(310), - [sym_definition] = STATE(1163), - [sym__pattern] = STATE(310), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(310), - [sym_divOperation] = STATE(310), - [sym_modOperation] = STATE(310), - [sym_addOperation] = STATE(310), - [sym_subOperation] = STATE(310), - [sym_patternAs] = STATE(310), - [sym_patternLimit] = STATE(310), - [sym_assignmentAsPattern] = STATE(310), - [sym_patternAccumulate] = STATE(310), - [sym_patternWhere] = STATE(310), - [sym__literal] = STATE(310), - [sym_patternNot] = STATE(310), - [sym_patternOr] = STATE(310), - [sym_patternOrElse] = STATE(310), - [sym_patternAny] = STATE(310), - [sym_patternAnd] = STATE(310), - [sym_patternMaybe] = STATE(310), - [sym_patternAfter] = STATE(310), - [sym_patternBefore] = STATE(310), - [sym_patternContains] = STATE(310), - [sym_patternIncludes] = STATE(310), - [sym_rewrite] = STATE(310), - [sym_patternIfElse] = STATE(310), - [sym_within] = STATE(310), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(310), - [sym_nodeLike] = STATE(310), - [sym_like] = STATE(310), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(310), - [sym_some] = STATE(310), - [sym_every] = STATE(310), - [sym_regexPattern] = STATE(310), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(310), - [sym_range] = STATE(310), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(310), + [sym_sequential] = STATE(309), + [sym_files] = STATE(309), + [sym_definition] = STATE(1200), + [sym__pattern] = STATE(309), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(309), + [sym_divOperation] = STATE(309), + [sym_modOperation] = STATE(309), + [sym_addOperation] = STATE(309), + [sym_subOperation] = STATE(309), + [sym_patternAs] = STATE(309), + [sym_patternLimit] = STATE(309), + [sym_assignmentAsPattern] = STATE(309), + [sym_patternAccumulate] = STATE(309), + [sym_patternWhere] = STATE(309), + [sym__literal] = STATE(309), + [sym_patternNot] = STATE(309), + [sym_patternOr] = STATE(309), + [sym_patternOrElse] = STATE(309), + [sym_patternAny] = STATE(309), + [sym_patternAnd] = STATE(309), + [sym_patternMaybe] = STATE(309), + [sym_patternAfter] = STATE(309), + [sym_patternBefore] = STATE(309), + [sym_patternContains] = STATE(309), + [sym_patternIncludes] = STATE(309), + [sym_rewrite] = STATE(309), + [sym_patternIfElse] = STATE(309), + [sym_within] = STATE(309), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(309), + [sym_nodeLike] = STATE(309), + [sym_like] = STATE(309), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(309), + [sym_some] = STATE(309), + [sym_every] = STATE(309), + [sym_regexPattern] = STATE(309), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(309), + [sym_range] = STATE(309), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(309), [sym_snippetRegex] = STATE(334), - [aux_sym_source_file_repeat1] = STATE(250), + [aux_sym_source_file_repeat1] = STATE(6), [ts_builtin_sym_end] = ACTIONS(85), [sym_name] = ACTIONS(7), [anon_sym_LF] = ACTIONS(87), @@ -8580,6 +8608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(97), @@ -8593,66 +8622,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [3] = { - [sym_sequential] = STATE(316), - [sym_files] = STATE(316), - [sym_definition] = STATE(1042), - [sym__pattern] = STATE(316), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(316), - [sym_divOperation] = STATE(316), - [sym_modOperation] = STATE(316), - [sym_addOperation] = STATE(316), - [sym_subOperation] = STATE(316), - [sym_patternAs] = STATE(316), - [sym_patternLimit] = STATE(316), - [sym_assignmentAsPattern] = STATE(316), - [sym_patternAccumulate] = STATE(316), - [sym_patternWhere] = STATE(316), - [sym__literal] = STATE(316), - [sym_patternNot] = STATE(316), - [sym_patternOr] = STATE(316), - [sym_patternOrElse] = STATE(316), - [sym_patternAny] = STATE(316), - [sym_patternAnd] = STATE(316), - [sym_patternMaybe] = STATE(316), - [sym_patternAfter] = STATE(316), - [sym_patternBefore] = STATE(316), - [sym_patternContains] = STATE(316), - [sym_patternIncludes] = STATE(316), - [sym_rewrite] = STATE(316), - [sym_patternIfElse] = STATE(316), - [sym_within] = STATE(316), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(316), - [sym_nodeLike] = STATE(316), - [sym_like] = STATE(316), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(316), - [sym_some] = STATE(316), - [sym_every] = STATE(316), - [sym_regexPattern] = STATE(316), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(316), - [sym_range] = STATE(316), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(316), + [sym_sequential] = STATE(314), + [sym_files] = STATE(314), + [sym_definition] = STATE(4), + [sym_langdecl] = STATE(12), + [sym__pattern] = STATE(314), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(314), + [sym_divOperation] = STATE(314), + [sym_modOperation] = STATE(314), + [sym_addOperation] = STATE(314), + [sym_subOperation] = STATE(314), + [sym_patternAs] = STATE(314), + [sym_patternLimit] = STATE(314), + [sym_assignmentAsPattern] = STATE(314), + [sym_patternAccumulate] = STATE(314), + [sym_patternWhere] = STATE(314), + [sym__literal] = STATE(314), + [sym_patternNot] = STATE(314), + [sym_patternOr] = STATE(314), + [sym_patternOrElse] = STATE(314), + [sym_patternAny] = STATE(314), + [sym_patternAnd] = STATE(314), + [sym_patternMaybe] = STATE(314), + [sym_patternAfter] = STATE(314), + [sym_patternBefore] = STATE(314), + [sym_patternContains] = STATE(314), + [sym_patternIncludes] = STATE(314), + [sym_rewrite] = STATE(314), + [sym_patternIfElse] = STATE(314), + [sym_within] = STATE(314), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(314), + [sym_nodeLike] = STATE(314), + [sym_like] = STATE(314), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(314), + [sym_some] = STATE(314), + [sym_every] = STATE(314), + [sym_regexPattern] = STATE(314), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(314), + [sym_range] = STATE(314), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(314), [sym_snippetRegex] = STATE(334), - [aux_sym_source_file_repeat1] = STATE(2), [ts_builtin_sym_end] = ACTIONS(115), [sym_name] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(117), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(11), [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_language] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_not] = ACTIONS(23), [anon_sym_or] = ACTIONS(25), [anon_sym_orelse] = ACTIONS(27), @@ -8667,18 +8696,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(119), + [sym_underscore] = ACTIONS(117), [anon_sym_private] = ACTIONS(61), - [anon_sym_pattern] = ACTIONS(99), - [anon_sym_predicate] = ACTIONS(101), - [anon_sym_function] = ACTIONS(103), - [anon_sym_log_LPAREN] = ACTIONS(105), - [anon_sym_range_LPAREN] = ACTIONS(107), - [sym_booleanConstant] = ACTIONS(119), + [anon_sym_pattern] = ACTIONS(63), + [anon_sym_predicate] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(117), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -8703,69 +8732,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(109), - [sym_rawBacktickSnippet] = ACTIONS(109), - [sym_undefined] = ACTIONS(119), - [sym_top] = ACTIONS(119), - [sym_bottom] = ACTIONS(119), - [sym_intConstant] = ACTIONS(119), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(117), + [sym_top] = ACTIONS(117), + [sym_bottom] = ACTIONS(117), + [sym_intConstant] = ACTIONS(117), [sym_doubleConstant] = ACTIONS(119), [sym_stringConstant] = ACTIONS(119), - [sym_regex] = ACTIONS(111), + [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), - [sym_comment] = ACTIONS(113), + [sym_comment] = ACTIONS(3), }, [4] = { - [sym_sequential] = STATE(309), - [sym_files] = STATE(309), - [sym_definition] = STATE(1177), - [sym__pattern] = STATE(309), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(309), - [sym_divOperation] = STATE(309), - [sym_modOperation] = STATE(309), - [sym_addOperation] = STATE(309), - [sym_subOperation] = STATE(309), - [sym_patternAs] = STATE(309), - [sym_patternLimit] = STATE(309), - [sym_assignmentAsPattern] = STATE(309), - [sym_patternAccumulate] = STATE(309), - [sym_patternWhere] = STATE(309), - [sym__literal] = STATE(309), - [sym_patternNot] = STATE(309), - [sym_patternOr] = STATE(309), - [sym_patternOrElse] = STATE(309), - [sym_patternAny] = STATE(309), - [sym_patternAnd] = STATE(309), - [sym_patternMaybe] = STATE(309), - [sym_patternAfter] = STATE(309), - [sym_patternBefore] = STATE(309), - [sym_patternContains] = STATE(309), - [sym_patternIncludes] = STATE(309), - [sym_rewrite] = STATE(309), - [sym_patternIfElse] = STATE(309), - [sym_within] = STATE(309), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(309), - [sym_nodeLike] = STATE(309), - [sym_like] = STATE(309), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(309), - [sym_some] = STATE(309), - [sym_every] = STATE(309), - [sym_regexPattern] = STATE(309), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(309), - [sym_range] = STATE(309), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(309), + [sym_sequential] = STATE(329), + [sym_files] = STATE(329), + [sym_definition] = STATE(1100), + [sym__pattern] = STATE(329), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(329), + [sym_divOperation] = STATE(329), + [sym_modOperation] = STATE(329), + [sym_addOperation] = STATE(329), + [sym_subOperation] = STATE(329), + [sym_patternAs] = STATE(329), + [sym_patternLimit] = STATE(329), + [sym_assignmentAsPattern] = STATE(329), + [sym_patternAccumulate] = STATE(329), + [sym_patternWhere] = STATE(329), + [sym__literal] = STATE(329), + [sym_patternNot] = STATE(329), + [sym_patternOr] = STATE(329), + [sym_patternOrElse] = STATE(329), + [sym_patternAny] = STATE(329), + [sym_patternAnd] = STATE(329), + [sym_patternMaybe] = STATE(329), + [sym_patternAfter] = STATE(329), + [sym_patternBefore] = STATE(329), + [sym_patternContains] = STATE(329), + [sym_patternIncludes] = STATE(329), + [sym_rewrite] = STATE(329), + [sym_patternIfElse] = STATE(329), + [sym_within] = STATE(329), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(329), + [sym_nodeLike] = STATE(329), + [sym_like] = STATE(329), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(329), + [sym_some] = STATE(329), + [sym_every] = STATE(329), + [sym_regexPattern] = STATE(329), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(329), + [sym_range] = STATE(329), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(329), [sym_snippetRegex] = STATE(334), [aux_sym_source_file_repeat1] = STATE(7), [ts_builtin_sym_end] = ACTIONS(121), @@ -8826,6 +8856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(125), @@ -8839,66 +8870,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [5] = { - [sym_sequential] = STATE(327), - [sym_files] = STATE(327), - [sym_definition] = STATE(3), - [sym_langdecl] = STATE(13), - [sym__pattern] = STATE(327), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(327), - [sym_divOperation] = STATE(327), - [sym_modOperation] = STATE(327), - [sym_addOperation] = STATE(327), - [sym_subOperation] = STATE(327), - [sym_patternAs] = STATE(327), - [sym_patternLimit] = STATE(327), - [sym_assignmentAsPattern] = STATE(327), - [sym_patternAccumulate] = STATE(327), - [sym_patternWhere] = STATE(327), - [sym__literal] = STATE(327), - [sym_patternNot] = STATE(327), - [sym_patternOr] = STATE(327), - [sym_patternOrElse] = STATE(327), - [sym_patternAny] = STATE(327), - [sym_patternAnd] = STATE(327), - [sym_patternMaybe] = STATE(327), - [sym_patternAfter] = STATE(327), - [sym_patternBefore] = STATE(327), - [sym_patternContains] = STATE(327), - [sym_patternIncludes] = STATE(327), - [sym_rewrite] = STATE(327), - [sym_patternIfElse] = STATE(327), - [sym_within] = STATE(327), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(327), - [sym_nodeLike] = STATE(327), - [sym_like] = STATE(327), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(327), - [sym_some] = STATE(327), - [sym_every] = STATE(327), - [sym_regexPattern] = STATE(327), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(327), - [sym_range] = STATE(327), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(327), + [sym_sequential] = STATE(328), + [sym_files] = STATE(328), + [sym_definition] = STATE(1112), + [sym__pattern] = STATE(328), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(328), + [sym_divOperation] = STATE(328), + [sym_modOperation] = STATE(328), + [sym_addOperation] = STATE(328), + [sym_subOperation] = STATE(328), + [sym_patternAs] = STATE(328), + [sym_patternLimit] = STATE(328), + [sym_assignmentAsPattern] = STATE(328), + [sym_patternAccumulate] = STATE(328), + [sym_patternWhere] = STATE(328), + [sym__literal] = STATE(328), + [sym_patternNot] = STATE(328), + [sym_patternOr] = STATE(328), + [sym_patternOrElse] = STATE(328), + [sym_patternAny] = STATE(328), + [sym_patternAnd] = STATE(328), + [sym_patternMaybe] = STATE(328), + [sym_patternAfter] = STATE(328), + [sym_patternBefore] = STATE(328), + [sym_patternContains] = STATE(328), + [sym_patternIncludes] = STATE(328), + [sym_rewrite] = STATE(328), + [sym_patternIfElse] = STATE(328), + [sym_within] = STATE(328), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(328), + [sym_nodeLike] = STATE(328), + [sym_like] = STATE(328), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(328), + [sym_some] = STATE(328), + [sym_every] = STATE(328), + [sym_regexPattern] = STATE(328), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(328), + [sym_range] = STATE(328), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(328), [sym_snippetRegex] = STATE(334), + [aux_sym_source_file_repeat1] = STATE(10), [ts_builtin_sym_end] = ACTIONS(127), [sym_name] = ACTIONS(7), + [anon_sym_LF] = ACTIONS(129), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(89), [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_language] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(23), [anon_sym_not] = ACTIONS(23), [anon_sym_or] = ACTIONS(25), [anon_sym_orelse] = ACTIONS(27), @@ -8913,18 +8944,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_DOT] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(95), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(129), + [sym_underscore] = ACTIONS(131), [anon_sym_private] = ACTIONS(61), - [anon_sym_pattern] = ACTIONS(63), - [anon_sym_predicate] = ACTIONS(65), - [anon_sym_function] = ACTIONS(67), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(129), + [anon_sym_pattern] = ACTIONS(99), + [anon_sym_predicate] = ACTIONS(101), + [anon_sym_function] = ACTIONS(103), + [anon_sym_log_LPAREN] = ACTIONS(105), + [anon_sym_range_LPAREN] = ACTIONS(107), + [sym_booleanConstant] = ACTIONS(131), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -8949,71 +8980,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(129), - [sym_top] = ACTIONS(129), - [sym_bottom] = ACTIONS(129), - [sym_intConstant] = ACTIONS(129), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(109), + [sym_rawBacktickSnippet] = ACTIONS(109), + [sym_undefined] = ACTIONS(131), + [sym_top] = ACTIONS(131), + [sym_bottom] = ACTIONS(131), + [sym_intConstant] = ACTIONS(131), [sym_doubleConstant] = ACTIONS(131), [sym_stringConstant] = ACTIONS(131), - [sym_regex] = ACTIONS(81), + [sym_regex] = ACTIONS(111), [anon_sym_r] = ACTIONS(83), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(113), }, [6] = { - [sym_sequential] = STATE(324), - [sym_files] = STATE(324), - [sym_definition] = STATE(1094), - [sym__pattern] = STATE(324), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(324), - [sym_divOperation] = STATE(324), - [sym_modOperation] = STATE(324), - [sym_addOperation] = STATE(324), - [sym_subOperation] = STATE(324), - [sym_patternAs] = STATE(324), - [sym_patternLimit] = STATE(324), - [sym_assignmentAsPattern] = STATE(324), - [sym_patternAccumulate] = STATE(324), - [sym_patternWhere] = STATE(324), - [sym__literal] = STATE(324), - [sym_patternNot] = STATE(324), - [sym_patternOr] = STATE(324), - [sym_patternOrElse] = STATE(324), - [sym_patternAny] = STATE(324), - [sym_patternAnd] = STATE(324), - [sym_patternMaybe] = STATE(324), - [sym_patternAfter] = STATE(324), - [sym_patternBefore] = STATE(324), - [sym_patternContains] = STATE(324), - [sym_patternIncludes] = STATE(324), - [sym_rewrite] = STATE(324), - [sym_patternIfElse] = STATE(324), - [sym_within] = STATE(324), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(324), - [sym_nodeLike] = STATE(324), - [sym_like] = STATE(324), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(324), - [sym_some] = STATE(324), - [sym_every] = STATE(324), - [sym_regexPattern] = STATE(324), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(324), - [sym_range] = STATE(324), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(324), + [sym_sequential] = STATE(313), + [sym_files] = STATE(313), + [sym_definition] = STATE(1097), + [sym__pattern] = STATE(313), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(313), + [sym_divOperation] = STATE(313), + [sym_modOperation] = STATE(313), + [sym_addOperation] = STATE(313), + [sym_subOperation] = STATE(313), + [sym_patternAs] = STATE(313), + [sym_patternLimit] = STATE(313), + [sym_assignmentAsPattern] = STATE(313), + [sym_patternAccumulate] = STATE(313), + [sym_patternWhere] = STATE(313), + [sym__literal] = STATE(313), + [sym_patternNot] = STATE(313), + [sym_patternOr] = STATE(313), + [sym_patternOrElse] = STATE(313), + [sym_patternAny] = STATE(313), + [sym_patternAnd] = STATE(313), + [sym_patternMaybe] = STATE(313), + [sym_patternAfter] = STATE(313), + [sym_patternBefore] = STATE(313), + [sym_patternContains] = STATE(313), + [sym_patternIncludes] = STATE(313), + [sym_rewrite] = STATE(313), + [sym_patternIfElse] = STATE(313), + [sym_within] = STATE(313), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(313), + [sym_nodeLike] = STATE(313), + [sym_like] = STATE(313), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(313), + [sym_some] = STATE(313), + [sym_every] = STATE(313), + [sym_regexPattern] = STATE(313), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(313), + [sym_range] = STATE(313), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(313), [sym_snippetRegex] = STATE(334), - [aux_sym_source_file_repeat1] = STATE(250), + [aux_sym_source_file_repeat1] = STATE(247), [ts_builtin_sym_end] = ACTIONS(133), [sym_name] = ACTIONS(7), [anon_sym_LF] = ACTIONS(135), @@ -9072,6 +9104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(137), @@ -9085,58 +9118,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [7] = { - [sym_sequential] = STATE(315), - [sym_files] = STATE(315), - [sym_definition] = STATE(1046), - [sym__pattern] = STATE(315), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(315), - [sym_divOperation] = STATE(315), - [sym_modOperation] = STATE(315), - [sym_addOperation] = STATE(315), - [sym_subOperation] = STATE(315), - [sym_patternAs] = STATE(315), - [sym_patternLimit] = STATE(315), - [sym_assignmentAsPattern] = STATE(315), - [sym_patternAccumulate] = STATE(315), - [sym_patternWhere] = STATE(315), - [sym__literal] = STATE(315), - [sym_patternNot] = STATE(315), - [sym_patternOr] = STATE(315), - [sym_patternOrElse] = STATE(315), - [sym_patternAny] = STATE(315), - [sym_patternAnd] = STATE(315), - [sym_patternMaybe] = STATE(315), - [sym_patternAfter] = STATE(315), - [sym_patternBefore] = STATE(315), - [sym_patternContains] = STATE(315), - [sym_patternIncludes] = STATE(315), - [sym_rewrite] = STATE(315), - [sym_patternIfElse] = STATE(315), - [sym_within] = STATE(315), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(315), - [sym_nodeLike] = STATE(315), - [sym_like] = STATE(315), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(315), - [sym_some] = STATE(315), - [sym_every] = STATE(315), - [sym_regexPattern] = STATE(315), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(315), - [sym_range] = STATE(315), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(315), + [sym_sequential] = STATE(323), + [sym_files] = STATE(323), + [sym_definition] = STATE(1121), + [sym__pattern] = STATE(323), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(323), + [sym_divOperation] = STATE(323), + [sym_modOperation] = STATE(323), + [sym_addOperation] = STATE(323), + [sym_subOperation] = STATE(323), + [sym_patternAs] = STATE(323), + [sym_patternLimit] = STATE(323), + [sym_assignmentAsPattern] = STATE(323), + [sym_patternAccumulate] = STATE(323), + [sym_patternWhere] = STATE(323), + [sym__literal] = STATE(323), + [sym_patternNot] = STATE(323), + [sym_patternOr] = STATE(323), + [sym_patternOrElse] = STATE(323), + [sym_patternAny] = STATE(323), + [sym_patternAnd] = STATE(323), + [sym_patternMaybe] = STATE(323), + [sym_patternAfter] = STATE(323), + [sym_patternBefore] = STATE(323), + [sym_patternContains] = STATE(323), + [sym_patternIncludes] = STATE(323), + [sym_rewrite] = STATE(323), + [sym_patternIfElse] = STATE(323), + [sym_within] = STATE(323), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(323), + [sym_nodeLike] = STATE(323), + [sym_like] = STATE(323), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(323), + [sym_some] = STATE(323), + [sym_every] = STATE(323), + [sym_regexPattern] = STATE(323), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(323), + [sym_range] = STATE(323), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(323), [sym_snippetRegex] = STATE(334), - [aux_sym_source_file_repeat1] = STATE(250), + [aux_sym_source_file_repeat1] = STATE(247), [ts_builtin_sym_end] = ACTIONS(139), [sym_name] = ACTIONS(7), [anon_sym_LF] = ACTIONS(141), @@ -9195,6 +9228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(143), @@ -9208,58 +9242,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [8] = { - [sym_sequential] = STATE(311), - [sym_files] = STATE(311), - [sym_definition] = STATE(1183), - [sym__pattern] = STATE(311), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(311), - [sym_divOperation] = STATE(311), - [sym_modOperation] = STATE(311), - [sym_addOperation] = STATE(311), - [sym_subOperation] = STATE(311), - [sym_patternAs] = STATE(311), - [sym_patternLimit] = STATE(311), - [sym_assignmentAsPattern] = STATE(311), - [sym_patternAccumulate] = STATE(311), - [sym_patternWhere] = STATE(311), - [sym__literal] = STATE(311), - [sym_patternNot] = STATE(311), - [sym_patternOr] = STATE(311), - [sym_patternOrElse] = STATE(311), - [sym_patternAny] = STATE(311), - [sym_patternAnd] = STATE(311), - [sym_patternMaybe] = STATE(311), - [sym_patternAfter] = STATE(311), - [sym_patternBefore] = STATE(311), - [sym_patternContains] = STATE(311), - [sym_patternIncludes] = STATE(311), - [sym_rewrite] = STATE(311), - [sym_patternIfElse] = STATE(311), - [sym_within] = STATE(311), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(311), - [sym_nodeLike] = STATE(311), - [sym_like] = STATE(311), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(311), - [sym_some] = STATE(311), - [sym_every] = STATE(311), - [sym_regexPattern] = STATE(311), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(311), - [sym_range] = STATE(311), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(311), + [sym_sequential] = STATE(320), + [sym_files] = STATE(320), + [sym_definition] = STATE(1209), + [sym__pattern] = STATE(320), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(320), + [sym_divOperation] = STATE(320), + [sym_modOperation] = STATE(320), + [sym_addOperation] = STATE(320), + [sym_subOperation] = STATE(320), + [sym_patternAs] = STATE(320), + [sym_patternLimit] = STATE(320), + [sym_assignmentAsPattern] = STATE(320), + [sym_patternAccumulate] = STATE(320), + [sym_patternWhere] = STATE(320), + [sym__literal] = STATE(320), + [sym_patternNot] = STATE(320), + [sym_patternOr] = STATE(320), + [sym_patternOrElse] = STATE(320), + [sym_patternAny] = STATE(320), + [sym_patternAnd] = STATE(320), + [sym_patternMaybe] = STATE(320), + [sym_patternAfter] = STATE(320), + [sym_patternBefore] = STATE(320), + [sym_patternContains] = STATE(320), + [sym_patternIncludes] = STATE(320), + [sym_rewrite] = STATE(320), + [sym_patternIfElse] = STATE(320), + [sym_within] = STATE(320), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(320), + [sym_nodeLike] = STATE(320), + [sym_like] = STATE(320), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(320), + [sym_some] = STATE(320), + [sym_every] = STATE(320), + [sym_regexPattern] = STATE(320), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(320), + [sym_range] = STATE(320), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(320), [sym_snippetRegex] = STATE(334), - [aux_sym_source_file_repeat1] = STATE(250), + [aux_sym_source_file_repeat1] = STATE(9), [ts_builtin_sym_end] = ACTIONS(145), [sym_name] = ACTIONS(7), [anon_sym_LF] = ACTIONS(147), @@ -9318,6 +9352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(149), @@ -9331,58 +9366,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [9] = { - [sym_sequential] = STATE(325), - [sym_files] = STATE(325), - [sym_definition] = STATE(1040), - [sym__pattern] = STATE(325), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(325), - [sym_divOperation] = STATE(325), - [sym_modOperation] = STATE(325), - [sym_addOperation] = STATE(325), - [sym_subOperation] = STATE(325), - [sym_patternAs] = STATE(325), - [sym_patternLimit] = STATE(325), - [sym_assignmentAsPattern] = STATE(325), - [sym_patternAccumulate] = STATE(325), - [sym_patternWhere] = STATE(325), - [sym__literal] = STATE(325), - [sym_patternNot] = STATE(325), - [sym_patternOr] = STATE(325), - [sym_patternOrElse] = STATE(325), - [sym_patternAny] = STATE(325), - [sym_patternAnd] = STATE(325), - [sym_patternMaybe] = STATE(325), - [sym_patternAfter] = STATE(325), - [sym_patternBefore] = STATE(325), - [sym_patternContains] = STATE(325), - [sym_patternIncludes] = STATE(325), - [sym_rewrite] = STATE(325), - [sym_patternIfElse] = STATE(325), - [sym_within] = STATE(325), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(325), - [sym_nodeLike] = STATE(325), - [sym_like] = STATE(325), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(325), - [sym_some] = STATE(325), - [sym_every] = STATE(325), - [sym_regexPattern] = STATE(325), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(325), - [sym_range] = STATE(325), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(325), + [sym_sequential] = STATE(319), + [sym_files] = STATE(319), + [sym_definition] = STATE(1089), + [sym__pattern] = STATE(319), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(319), + [sym_divOperation] = STATE(319), + [sym_modOperation] = STATE(319), + [sym_addOperation] = STATE(319), + [sym_subOperation] = STATE(319), + [sym_patternAs] = STATE(319), + [sym_patternLimit] = STATE(319), + [sym_assignmentAsPattern] = STATE(319), + [sym_patternAccumulate] = STATE(319), + [sym_patternWhere] = STATE(319), + [sym__literal] = STATE(319), + [sym_patternNot] = STATE(319), + [sym_patternOr] = STATE(319), + [sym_patternOrElse] = STATE(319), + [sym_patternAny] = STATE(319), + [sym_patternAnd] = STATE(319), + [sym_patternMaybe] = STATE(319), + [sym_patternAfter] = STATE(319), + [sym_patternBefore] = STATE(319), + [sym_patternContains] = STATE(319), + [sym_patternIncludes] = STATE(319), + [sym_rewrite] = STATE(319), + [sym_patternIfElse] = STATE(319), + [sym_within] = STATE(319), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(319), + [sym_nodeLike] = STATE(319), + [sym_like] = STATE(319), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(319), + [sym_some] = STATE(319), + [sym_every] = STATE(319), + [sym_regexPattern] = STATE(319), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(319), + [sym_range] = STATE(319), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(319), [sym_snippetRegex] = STATE(334), - [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(247), [ts_builtin_sym_end] = ACTIONS(151), [sym_name] = ACTIONS(7), [anon_sym_LF] = ACTIONS(153), @@ -9441,6 +9476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(155), @@ -9454,58 +9490,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [10] = { - [sym_sequential] = STATE(312), - [sym_files] = STATE(312), - [sym_definition] = STATE(1165), - [sym__pattern] = STATE(312), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(312), - [sym_divOperation] = STATE(312), - [sym_modOperation] = STATE(312), - [sym_addOperation] = STATE(312), - [sym_subOperation] = STATE(312), - [sym_patternAs] = STATE(312), - [sym_patternLimit] = STATE(312), - [sym_assignmentAsPattern] = STATE(312), - [sym_patternAccumulate] = STATE(312), - [sym_patternWhere] = STATE(312), - [sym__literal] = STATE(312), - [sym_patternNot] = STATE(312), - [sym_patternOr] = STATE(312), - [sym_patternOrElse] = STATE(312), - [sym_patternAny] = STATE(312), - [sym_patternAnd] = STATE(312), - [sym_patternMaybe] = STATE(312), - [sym_patternAfter] = STATE(312), - [sym_patternBefore] = STATE(312), - [sym_patternContains] = STATE(312), - [sym_patternIncludes] = STATE(312), - [sym_rewrite] = STATE(312), - [sym_patternIfElse] = STATE(312), - [sym_within] = STATE(312), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(312), - [sym_nodeLike] = STATE(312), - [sym_like] = STATE(312), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(312), - [sym_some] = STATE(312), - [sym_every] = STATE(312), - [sym_regexPattern] = STATE(312), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(312), - [sym_range] = STATE(312), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(312), + [sym_sequential] = STATE(326), + [sym_files] = STATE(326), + [sym_definition] = STATE(1133), + [sym__pattern] = STATE(326), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(326), + [sym_divOperation] = STATE(326), + [sym_modOperation] = STATE(326), + [sym_addOperation] = STATE(326), + [sym_subOperation] = STATE(326), + [sym_patternAs] = STATE(326), + [sym_patternLimit] = STATE(326), + [sym_assignmentAsPattern] = STATE(326), + [sym_patternAccumulate] = STATE(326), + [sym_patternWhere] = STATE(326), + [sym__literal] = STATE(326), + [sym_patternNot] = STATE(326), + [sym_patternOr] = STATE(326), + [sym_patternOrElse] = STATE(326), + [sym_patternAny] = STATE(326), + [sym_patternAnd] = STATE(326), + [sym_patternMaybe] = STATE(326), + [sym_patternAfter] = STATE(326), + [sym_patternBefore] = STATE(326), + [sym_patternContains] = STATE(326), + [sym_patternIncludes] = STATE(326), + [sym_rewrite] = STATE(326), + [sym_patternIfElse] = STATE(326), + [sym_within] = STATE(326), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(326), + [sym_nodeLike] = STATE(326), + [sym_like] = STATE(326), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(326), + [sym_some] = STATE(326), + [sym_every] = STATE(326), + [sym_regexPattern] = STATE(326), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(326), + [sym_range] = STATE(326), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(326), [sym_snippetRegex] = STATE(334), - [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_source_file_repeat1] = STATE(247), [ts_builtin_sym_end] = ACTIONS(157), [sym_name] = ACTIONS(7), [anon_sym_LF] = ACTIONS(159), @@ -9564,6 +9600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(109), [sym_rawBacktickSnippet] = ACTIONS(109), [sym_undefined] = ACTIONS(161), @@ -9577,58 +9614,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [11] = { - [sym_sequential] = STATE(310), - [sym_files] = STATE(310), - [sym_definition] = STATE(246), - [sym__pattern] = STATE(310), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(310), - [sym_divOperation] = STATE(310), - [sym_modOperation] = STATE(310), - [sym_addOperation] = STATE(310), - [sym_subOperation] = STATE(310), - [sym_patternAs] = STATE(310), - [sym_patternLimit] = STATE(310), - [sym_assignmentAsPattern] = STATE(310), - [sym_patternAccumulate] = STATE(310), - [sym_patternWhere] = STATE(310), - [sym__literal] = STATE(310), - [sym_patternNot] = STATE(310), - [sym_patternOr] = STATE(310), - [sym_patternOrElse] = STATE(310), - [sym_patternAny] = STATE(310), - [sym_patternAnd] = STATE(310), - [sym_patternMaybe] = STATE(310), - [sym_patternAfter] = STATE(310), - [sym_patternBefore] = STATE(310), - [sym_patternContains] = STATE(310), - [sym_patternIncludes] = STATE(310), - [sym_rewrite] = STATE(310), - [sym_patternIfElse] = STATE(310), - [sym_within] = STATE(310), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(310), - [sym_nodeLike] = STATE(310), - [sym_like] = STATE(310), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(310), - [sym_some] = STATE(310), - [sym_every] = STATE(310), - [sym_regexPattern] = STATE(310), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(310), - [sym_range] = STATE(310), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(310), + [sym_sequential] = STATE(313), + [sym_files] = STATE(313), + [sym_definition] = STATE(242), + [sym__pattern] = STATE(313), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(313), + [sym_divOperation] = STATE(313), + [sym_modOperation] = STATE(313), + [sym_addOperation] = STATE(313), + [sym_subOperation] = STATE(313), + [sym_patternAs] = STATE(313), + [sym_patternLimit] = STATE(313), + [sym_assignmentAsPattern] = STATE(313), + [sym_patternAccumulate] = STATE(313), + [sym_patternWhere] = STATE(313), + [sym__literal] = STATE(313), + [sym_patternNot] = STATE(313), + [sym_patternOr] = STATE(313), + [sym_patternOrElse] = STATE(313), + [sym_patternAny] = STATE(313), + [sym_patternAnd] = STATE(313), + [sym_patternMaybe] = STATE(313), + [sym_patternAfter] = STATE(313), + [sym_patternBefore] = STATE(313), + [sym_patternContains] = STATE(313), + [sym_patternIncludes] = STATE(313), + [sym_rewrite] = STATE(313), + [sym_patternIfElse] = STATE(313), + [sym_within] = STATE(313), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(313), + [sym_nodeLike] = STATE(313), + [sym_like] = STATE(313), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(313), + [sym_some] = STATE(313), + [sym_every] = STATE(313), + [sym_regexPattern] = STATE(313), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(313), + [sym_range] = STATE(313), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(313), [sym_snippetRegex] = STATE(334), - [ts_builtin_sym_end] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(133), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), @@ -9653,14 +9690,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(97), + [sym_underscore] = ACTIONS(137), [anon_sym_private] = ACTIONS(61), [anon_sym_pattern] = ACTIONS(63), [anon_sym_predicate] = ACTIONS(65), [anon_sym_function] = ACTIONS(67), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(97), + [sym_booleanConstant] = ACTIONS(137), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -9685,12 +9722,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(97), - [sym_top] = ACTIONS(97), - [sym_bottom] = ACTIONS(97), - [sym_intConstant] = ACTIONS(97), + [sym_undefined] = ACTIONS(137), + [sym_top] = ACTIONS(137), + [sym_bottom] = ACTIONS(137), + [sym_intConstant] = ACTIONS(137), [sym_doubleConstant] = ACTIONS(163), [sym_stringConstant] = ACTIONS(163), [sym_regex] = ACTIONS(81), @@ -9698,56 +9736,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [sym_sequential] = STATE(329), - [sym_files] = STATE(329), - [sym_definition] = STATE(247), - [sym__pattern] = STATE(329), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(329), - [sym_divOperation] = STATE(329), - [sym_modOperation] = STATE(329), - [sym_addOperation] = STATE(329), - [sym_subOperation] = STATE(329), - [sym_patternAs] = STATE(329), - [sym_patternLimit] = STATE(329), - [sym_assignmentAsPattern] = STATE(329), - [sym_patternAccumulate] = STATE(329), - [sym_patternWhere] = STATE(329), - [sym__literal] = STATE(329), - [sym_patternNot] = STATE(329), - [sym_patternOr] = STATE(329), - [sym_patternOrElse] = STATE(329), - [sym_patternAny] = STATE(329), - [sym_patternAnd] = STATE(329), - [sym_patternMaybe] = STATE(329), - [sym_patternAfter] = STATE(329), - [sym_patternBefore] = STATE(329), - [sym_patternContains] = STATE(329), - [sym_patternIncludes] = STATE(329), - [sym_rewrite] = STATE(329), - [sym_patternIfElse] = STATE(329), - [sym_within] = STATE(329), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(329), - [sym_nodeLike] = STATE(329), - [sym_like] = STATE(329), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(329), - [sym_some] = STATE(329), - [sym_every] = STATE(329), - [sym_regexPattern] = STATE(329), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(329), - [sym_range] = STATE(329), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(329), + [sym_sequential] = STATE(322), + [sym_files] = STATE(322), + [sym_definition] = STATE(8), + [sym__pattern] = STATE(322), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(322), + [sym_divOperation] = STATE(322), + [sym_modOperation] = STATE(322), + [sym_addOperation] = STATE(322), + [sym_subOperation] = STATE(322), + [sym_patternAs] = STATE(322), + [sym_patternLimit] = STATE(322), + [sym_assignmentAsPattern] = STATE(322), + [sym_patternAccumulate] = STATE(322), + [sym_patternWhere] = STATE(322), + [sym__literal] = STATE(322), + [sym_patternNot] = STATE(322), + [sym_patternOr] = STATE(322), + [sym_patternOrElse] = STATE(322), + [sym_patternAny] = STATE(322), + [sym_patternAnd] = STATE(322), + [sym_patternMaybe] = STATE(322), + [sym_patternAfter] = STATE(322), + [sym_patternBefore] = STATE(322), + [sym_patternContains] = STATE(322), + [sym_patternIncludes] = STATE(322), + [sym_rewrite] = STATE(322), + [sym_patternIfElse] = STATE(322), + [sym_within] = STATE(322), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(322), + [sym_nodeLike] = STATE(322), + [sym_like] = STATE(322), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(322), + [sym_some] = STATE(322), + [sym_every] = STATE(322), + [sym_regexPattern] = STATE(322), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(322), + [sym_range] = STATE(322), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(322), [sym_snippetRegex] = STATE(334), [ts_builtin_sym_end] = ACTIONS(165), [sym_name] = ACTIONS(7), @@ -9806,6 +9844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(167), @@ -9819,56 +9858,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [13] = { - [sym_sequential] = STATE(323), - [sym_files] = STATE(323), - [sym_definition] = STATE(10), - [sym__pattern] = STATE(323), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(323), - [sym_divOperation] = STATE(323), - [sym_modOperation] = STATE(323), - [sym_addOperation] = STATE(323), - [sym_subOperation] = STATE(323), - [sym_patternAs] = STATE(323), - [sym_patternLimit] = STATE(323), - [sym_assignmentAsPattern] = STATE(323), - [sym_patternAccumulate] = STATE(323), - [sym_patternWhere] = STATE(323), - [sym__literal] = STATE(323), - [sym_patternNot] = STATE(323), - [sym_patternOr] = STATE(323), - [sym_patternOrElse] = STATE(323), - [sym_patternAny] = STATE(323), - [sym_patternAnd] = STATE(323), - [sym_patternMaybe] = STATE(323), - [sym_patternAfter] = STATE(323), - [sym_patternBefore] = STATE(323), - [sym_patternContains] = STATE(323), - [sym_patternIncludes] = STATE(323), - [sym_rewrite] = STATE(323), - [sym_patternIfElse] = STATE(323), - [sym_within] = STATE(323), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(323), - [sym_nodeLike] = STATE(323), - [sym_like] = STATE(323), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(323), - [sym_some] = STATE(323), - [sym_every] = STATE(323), - [sym_regexPattern] = STATE(323), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(323), - [sym_range] = STATE(323), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(323), + [sym_sequential] = STATE(325), + [sym_files] = STATE(325), + [sym_definition] = STATE(5), + [sym__pattern] = STATE(325), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(325), + [sym_divOperation] = STATE(325), + [sym_modOperation] = STATE(325), + [sym_addOperation] = STATE(325), + [sym_subOperation] = STATE(325), + [sym_patternAs] = STATE(325), + [sym_patternLimit] = STATE(325), + [sym_assignmentAsPattern] = STATE(325), + [sym_patternAccumulate] = STATE(325), + [sym_patternWhere] = STATE(325), + [sym__literal] = STATE(325), + [sym_patternNot] = STATE(325), + [sym_patternOr] = STATE(325), + [sym_patternOrElse] = STATE(325), + [sym_patternAny] = STATE(325), + [sym_patternAnd] = STATE(325), + [sym_patternMaybe] = STATE(325), + [sym_patternAfter] = STATE(325), + [sym_patternBefore] = STATE(325), + [sym_patternContains] = STATE(325), + [sym_patternIncludes] = STATE(325), + [sym_rewrite] = STATE(325), + [sym_patternIfElse] = STATE(325), + [sym_within] = STATE(325), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(325), + [sym_nodeLike] = STATE(325), + [sym_like] = STATE(325), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(325), + [sym_some] = STATE(325), + [sym_every] = STATE(325), + [sym_regexPattern] = STATE(325), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(325), + [sym_range] = STATE(325), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(325), [sym_snippetRegex] = STATE(334), [ts_builtin_sym_end] = ACTIONS(171), [sym_name] = ACTIONS(7), @@ -9927,6 +9966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(173), @@ -9940,56 +9980,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [14] = { - [sym_sequential] = STATE(318), - [sym_files] = STATE(318), - [sym_definition] = STATE(244), - [sym__pattern] = STATE(318), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(318), - [sym_divOperation] = STATE(318), - [sym_modOperation] = STATE(318), - [sym_addOperation] = STATE(318), - [sym_subOperation] = STATE(318), - [sym_patternAs] = STATE(318), - [sym_patternLimit] = STATE(318), - [sym_assignmentAsPattern] = STATE(318), - [sym_patternAccumulate] = STATE(318), - [sym_patternWhere] = STATE(318), - [sym__literal] = STATE(318), - [sym_patternNot] = STATE(318), - [sym_patternOr] = STATE(318), - [sym_patternOrElse] = STATE(318), - [sym_patternAny] = STATE(318), - [sym_patternAnd] = STATE(318), - [sym_patternMaybe] = STATE(318), - [sym_patternAfter] = STATE(318), - [sym_patternBefore] = STATE(318), - [sym_patternContains] = STATE(318), - [sym_patternIncludes] = STATE(318), - [sym_rewrite] = STATE(318), - [sym_patternIfElse] = STATE(318), - [sym_within] = STATE(318), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(318), - [sym_nodeLike] = STATE(318), - [sym_like] = STATE(318), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(318), - [sym_some] = STATE(318), - [sym_every] = STATE(318), - [sym_regexPattern] = STATE(318), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(318), - [sym_range] = STATE(318), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(318), + [sym_sequential] = STATE(321), + [sym_files] = STATE(321), + [sym_definition] = STATE(250), + [sym__pattern] = STATE(321), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(321), + [sym_divOperation] = STATE(321), + [sym_modOperation] = STATE(321), + [sym_addOperation] = STATE(321), + [sym_subOperation] = STATE(321), + [sym_patternAs] = STATE(321), + [sym_patternLimit] = STATE(321), + [sym_assignmentAsPattern] = STATE(321), + [sym_patternAccumulate] = STATE(321), + [sym_patternWhere] = STATE(321), + [sym__literal] = STATE(321), + [sym_patternNot] = STATE(321), + [sym_patternOr] = STATE(321), + [sym_patternOrElse] = STATE(321), + [sym_patternAny] = STATE(321), + [sym_patternAnd] = STATE(321), + [sym_patternMaybe] = STATE(321), + [sym_patternAfter] = STATE(321), + [sym_patternBefore] = STATE(321), + [sym_patternContains] = STATE(321), + [sym_patternIncludes] = STATE(321), + [sym_rewrite] = STATE(321), + [sym_patternIfElse] = STATE(321), + [sym_within] = STATE(321), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(321), + [sym_nodeLike] = STATE(321), + [sym_like] = STATE(321), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(321), + [sym_some] = STATE(321), + [sym_every] = STATE(321), + [sym_regexPattern] = STATE(321), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(321), + [sym_range] = STATE(321), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(321), [sym_snippetRegex] = STATE(334), [ts_builtin_sym_end] = ACTIONS(177), [sym_name] = ACTIONS(7), @@ -10048,6 +10088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), [sym_undefined] = ACTIONS(179), @@ -10061,58 +10102,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [15] = { - [sym_sequential] = STATE(317), - [sym_files] = STATE(317), - [sym_definition] = STATE(242), - [sym__pattern] = STATE(317), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(317), - [sym_divOperation] = STATE(317), - [sym_modOperation] = STATE(317), - [sym_addOperation] = STATE(317), - [sym_subOperation] = STATE(317), - [sym_patternAs] = STATE(317), - [sym_patternLimit] = STATE(317), - [sym_assignmentAsPattern] = STATE(317), - [sym_patternAccumulate] = STATE(317), - [sym_patternWhere] = STATE(317), - [sym__literal] = STATE(317), - [sym_patternNot] = STATE(317), - [sym_patternOr] = STATE(317), - [sym_patternOrElse] = STATE(317), - [sym_patternAny] = STATE(317), - [sym_patternAnd] = STATE(317), - [sym_patternMaybe] = STATE(317), - [sym_patternAfter] = STATE(317), - [sym_patternBefore] = STATE(317), - [sym_patternContains] = STATE(317), - [sym_patternIncludes] = STATE(317), - [sym_rewrite] = STATE(317), - [sym_patternIfElse] = STATE(317), - [sym_within] = STATE(317), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(317), - [sym_nodeLike] = STATE(317), - [sym_like] = STATE(317), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(317), - [sym_some] = STATE(317), - [sym_every] = STATE(317), - [sym_regexPattern] = STATE(317), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(317), - [sym_range] = STATE(317), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(317), + [sym_sequential] = STATE(323), + [sym_files] = STATE(323), + [sym_definition] = STATE(249), + [sym__pattern] = STATE(323), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(323), + [sym_divOperation] = STATE(323), + [sym_modOperation] = STATE(323), + [sym_addOperation] = STATE(323), + [sym_subOperation] = STATE(323), + [sym_patternAs] = STATE(323), + [sym_patternLimit] = STATE(323), + [sym_assignmentAsPattern] = STATE(323), + [sym_patternAccumulate] = STATE(323), + [sym_patternWhere] = STATE(323), + [sym__literal] = STATE(323), + [sym_patternNot] = STATE(323), + [sym_patternOr] = STATE(323), + [sym_patternOrElse] = STATE(323), + [sym_patternAny] = STATE(323), + [sym_patternAnd] = STATE(323), + [sym_patternMaybe] = STATE(323), + [sym_patternAfter] = STATE(323), + [sym_patternBefore] = STATE(323), + [sym_patternContains] = STATE(323), + [sym_patternIncludes] = STATE(323), + [sym_rewrite] = STATE(323), + [sym_patternIfElse] = STATE(323), + [sym_within] = STATE(323), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(323), + [sym_nodeLike] = STATE(323), + [sym_like] = STATE(323), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(323), + [sym_some] = STATE(323), + [sym_every] = STATE(323), + [sym_regexPattern] = STATE(323), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(323), + [sym_range] = STATE(323), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(323), [sym_snippetRegex] = STATE(334), - [ts_builtin_sym_end] = ACTIONS(183), + [ts_builtin_sym_end] = ACTIONS(139), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), @@ -10137,14 +10178,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(185), + [sym_underscore] = ACTIONS(143), [anon_sym_private] = ACTIONS(61), [anon_sym_pattern] = ACTIONS(63), [anon_sym_predicate] = ACTIONS(65), [anon_sym_function] = ACTIONS(67), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(185), + [sym_booleanConstant] = ACTIONS(143), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -10169,71 +10210,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(185), - [sym_top] = ACTIONS(185), - [sym_bottom] = ACTIONS(185), - [sym_intConstant] = ACTIONS(185), - [sym_doubleConstant] = ACTIONS(187), - [sym_stringConstant] = ACTIONS(187), + [sym_undefined] = ACTIONS(143), + [sym_top] = ACTIONS(143), + [sym_bottom] = ACTIONS(143), + [sym_intConstant] = ACTIONS(143), + [sym_doubleConstant] = ACTIONS(183), + [sym_stringConstant] = ACTIONS(183), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, [16] = { - [sym_sequential] = STATE(311), - [sym_files] = STATE(311), + [sym_sequential] = STATE(326), + [sym_files] = STATE(326), [sym_definition] = STATE(248), - [sym__pattern] = STATE(311), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(311), - [sym_divOperation] = STATE(311), - [sym_modOperation] = STATE(311), - [sym_addOperation] = STATE(311), - [sym_subOperation] = STATE(311), - [sym_patternAs] = STATE(311), - [sym_patternLimit] = STATE(311), - [sym_assignmentAsPattern] = STATE(311), - [sym_patternAccumulate] = STATE(311), - [sym_patternWhere] = STATE(311), - [sym__literal] = STATE(311), - [sym_patternNot] = STATE(311), - [sym_patternOr] = STATE(311), - [sym_patternOrElse] = STATE(311), - [sym_patternAny] = STATE(311), - [sym_patternAnd] = STATE(311), - [sym_patternMaybe] = STATE(311), - [sym_patternAfter] = STATE(311), - [sym_patternBefore] = STATE(311), - [sym_patternContains] = STATE(311), - [sym_patternIncludes] = STATE(311), - [sym_rewrite] = STATE(311), - [sym_patternIfElse] = STATE(311), - [sym_within] = STATE(311), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(311), - [sym_nodeLike] = STATE(311), - [sym_like] = STATE(311), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(311), - [sym_some] = STATE(311), - [sym_every] = STATE(311), - [sym_regexPattern] = STATE(311), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(311), - [sym_range] = STATE(311), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(311), + [sym__pattern] = STATE(326), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(326), + [sym_divOperation] = STATE(326), + [sym_modOperation] = STATE(326), + [sym_addOperation] = STATE(326), + [sym_subOperation] = STATE(326), + [sym_patternAs] = STATE(326), + [sym_patternLimit] = STATE(326), + [sym_assignmentAsPattern] = STATE(326), + [sym_patternAccumulate] = STATE(326), + [sym_patternWhere] = STATE(326), + [sym__literal] = STATE(326), + [sym_patternNot] = STATE(326), + [sym_patternOr] = STATE(326), + [sym_patternOrElse] = STATE(326), + [sym_patternAny] = STATE(326), + [sym_patternAnd] = STATE(326), + [sym_patternMaybe] = STATE(326), + [sym_patternAfter] = STATE(326), + [sym_patternBefore] = STATE(326), + [sym_patternContains] = STATE(326), + [sym_patternIncludes] = STATE(326), + [sym_rewrite] = STATE(326), + [sym_patternIfElse] = STATE(326), + [sym_within] = STATE(326), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(326), + [sym_nodeLike] = STATE(326), + [sym_like] = STATE(326), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(326), + [sym_some] = STATE(326), + [sym_every] = STATE(326), + [sym_regexPattern] = STATE(326), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(326), + [sym_range] = STATE(326), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(326), [sym_snippetRegex] = STATE(334), - [ts_builtin_sym_end] = ACTIONS(145), + [ts_builtin_sym_end] = ACTIONS(157), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), @@ -10258,14 +10300,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(149), + [sym_underscore] = ACTIONS(161), [anon_sym_private] = ACTIONS(61), [anon_sym_pattern] = ACTIONS(63), [anon_sym_predicate] = ACTIONS(65), [anon_sym_function] = ACTIONS(67), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(149), + [sym_booleanConstant] = ACTIONS(161), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -10290,71 +10332,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(149), - [sym_top] = ACTIONS(149), - [sym_bottom] = ACTIONS(149), - [sym_intConstant] = ACTIONS(149), - [sym_doubleConstant] = ACTIONS(189), - [sym_stringConstant] = ACTIONS(189), + [sym_undefined] = ACTIONS(161), + [sym_top] = ACTIONS(161), + [sym_bottom] = ACTIONS(161), + [sym_intConstant] = ACTIONS(161), + [sym_doubleConstant] = ACTIONS(185), + [sym_stringConstant] = ACTIONS(185), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, [17] = { - [sym_sequential] = STATE(314), - [sym_files] = STATE(314), - [sym_definition] = STATE(249), - [sym__pattern] = STATE(314), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(314), - [sym_divOperation] = STATE(314), - [sym_modOperation] = STATE(314), - [sym_addOperation] = STATE(314), - [sym_subOperation] = STATE(314), - [sym_patternAs] = STATE(314), - [sym_patternLimit] = STATE(314), - [sym_assignmentAsPattern] = STATE(314), - [sym_patternAccumulate] = STATE(314), - [sym_patternWhere] = STATE(314), - [sym__literal] = STATE(314), - [sym_patternNot] = STATE(314), - [sym_patternOr] = STATE(314), - [sym_patternOrElse] = STATE(314), - [sym_patternAny] = STATE(314), - [sym_patternAnd] = STATE(314), - [sym_patternMaybe] = STATE(314), - [sym_patternAfter] = STATE(314), - [sym_patternBefore] = STATE(314), - [sym_patternContains] = STATE(314), - [sym_patternIncludes] = STATE(314), - [sym_rewrite] = STATE(314), - [sym_patternIfElse] = STATE(314), - [sym_within] = STATE(314), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(314), - [sym_nodeLike] = STATE(314), - [sym_like] = STATE(314), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(314), - [sym_some] = STATE(314), - [sym_every] = STATE(314), - [sym_regexPattern] = STATE(314), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(314), - [sym_range] = STATE(314), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(314), + [sym_sequential] = STATE(312), + [sym_files] = STATE(312), + [sym_definition] = STATE(243), + [sym__pattern] = STATE(312), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(312), + [sym_divOperation] = STATE(312), + [sym_modOperation] = STATE(312), + [sym_addOperation] = STATE(312), + [sym_subOperation] = STATE(312), + [sym_patternAs] = STATE(312), + [sym_patternLimit] = STATE(312), + [sym_assignmentAsPattern] = STATE(312), + [sym_patternAccumulate] = STATE(312), + [sym_patternWhere] = STATE(312), + [sym__literal] = STATE(312), + [sym_patternNot] = STATE(312), + [sym_patternOr] = STATE(312), + [sym_patternOrElse] = STATE(312), + [sym_patternAny] = STATE(312), + [sym_patternAnd] = STATE(312), + [sym_patternMaybe] = STATE(312), + [sym_patternAfter] = STATE(312), + [sym_patternBefore] = STATE(312), + [sym_patternContains] = STATE(312), + [sym_patternIncludes] = STATE(312), + [sym_rewrite] = STATE(312), + [sym_patternIfElse] = STATE(312), + [sym_within] = STATE(312), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(312), + [sym_nodeLike] = STATE(312), + [sym_like] = STATE(312), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(312), + [sym_some] = STATE(312), + [sym_every] = STATE(312), + [sym_regexPattern] = STATE(312), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(312), + [sym_range] = STATE(312), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(312), [sym_snippetRegex] = STATE(334), - [ts_builtin_sym_end] = ACTIONS(191), + [ts_builtin_sym_end] = ACTIONS(187), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), @@ -10379,14 +10422,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(193), + [sym_underscore] = ACTIONS(189), [anon_sym_private] = ACTIONS(61), [anon_sym_pattern] = ACTIONS(63), [anon_sym_predicate] = ACTIONS(65), [anon_sym_function] = ACTIONS(67), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(193), + [sym_booleanConstant] = ACTIONS(189), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -10411,71 +10454,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(193), - [sym_top] = ACTIONS(193), - [sym_bottom] = ACTIONS(193), - [sym_intConstant] = ACTIONS(193), - [sym_doubleConstant] = ACTIONS(195), - [sym_stringConstant] = ACTIONS(195), + [sym_undefined] = ACTIONS(189), + [sym_top] = ACTIONS(189), + [sym_bottom] = ACTIONS(189), + [sym_intConstant] = ACTIONS(189), + [sym_doubleConstant] = ACTIONS(191), + [sym_stringConstant] = ACTIONS(191), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, [18] = { - [sym_sequential] = STATE(328), - [sym_files] = STATE(328), - [sym_definition] = STATE(9), - [sym__pattern] = STATE(328), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(328), - [sym_divOperation] = STATE(328), - [sym_modOperation] = STATE(328), - [sym_addOperation] = STATE(328), - [sym_subOperation] = STATE(328), - [sym_patternAs] = STATE(328), - [sym_patternLimit] = STATE(328), - [sym_assignmentAsPattern] = STATE(328), - [sym_patternAccumulate] = STATE(328), - [sym_patternWhere] = STATE(328), - [sym__literal] = STATE(328), - [sym_patternNot] = STATE(328), - [sym_patternOr] = STATE(328), - [sym_patternOrElse] = STATE(328), - [sym_patternAny] = STATE(328), - [sym_patternAnd] = STATE(328), - [sym_patternMaybe] = STATE(328), - [sym_patternAfter] = STATE(328), - [sym_patternBefore] = STATE(328), - [sym_patternContains] = STATE(328), - [sym_patternIncludes] = STATE(328), - [sym_rewrite] = STATE(328), - [sym_patternIfElse] = STATE(328), - [sym_within] = STATE(328), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(328), - [sym_nodeLike] = STATE(328), - [sym_like] = STATE(328), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(328), - [sym_some] = STATE(328), - [sym_every] = STATE(328), - [sym_regexPattern] = STATE(328), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(328), - [sym_range] = STATE(328), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(328), + [sym_sequential] = STATE(319), + [sym_files] = STATE(319), + [sym_definition] = STATE(246), + [sym__pattern] = STATE(319), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(319), + [sym_divOperation] = STATE(319), + [sym_modOperation] = STATE(319), + [sym_addOperation] = STATE(319), + [sym_subOperation] = STATE(319), + [sym_patternAs] = STATE(319), + [sym_patternLimit] = STATE(319), + [sym_assignmentAsPattern] = STATE(319), + [sym_patternAccumulate] = STATE(319), + [sym_patternWhere] = STATE(319), + [sym__literal] = STATE(319), + [sym_patternNot] = STATE(319), + [sym_patternOr] = STATE(319), + [sym_patternOrElse] = STATE(319), + [sym_patternAny] = STATE(319), + [sym_patternAnd] = STATE(319), + [sym_patternMaybe] = STATE(319), + [sym_patternAfter] = STATE(319), + [sym_patternBefore] = STATE(319), + [sym_patternContains] = STATE(319), + [sym_patternIncludes] = STATE(319), + [sym_rewrite] = STATE(319), + [sym_patternIfElse] = STATE(319), + [sym_within] = STATE(319), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(319), + [sym_nodeLike] = STATE(319), + [sym_like] = STATE(319), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(319), + [sym_some] = STATE(319), + [sym_every] = STATE(319), + [sym_regexPattern] = STATE(319), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(319), + [sym_range] = STATE(319), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(319), [sym_snippetRegex] = STATE(334), - [ts_builtin_sym_end] = ACTIONS(197), + [ts_builtin_sym_end] = ACTIONS(151), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), @@ -10500,14 +10544,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(199), + [sym_underscore] = ACTIONS(155), [anon_sym_private] = ACTIONS(61), [anon_sym_pattern] = ACTIONS(63), [anon_sym_predicate] = ACTIONS(65), [anon_sym_function] = ACTIONS(67), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(199), + [sym_booleanConstant] = ACTIONS(155), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -10532,71 +10576,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(199), - [sym_top] = ACTIONS(199), - [sym_bottom] = ACTIONS(199), - [sym_intConstant] = ACTIONS(199), - [sym_doubleConstant] = ACTIONS(201), - [sym_stringConstant] = ACTIONS(201), + [sym_undefined] = ACTIONS(155), + [sym_top] = ACTIONS(155), + [sym_bottom] = ACTIONS(155), + [sym_intConstant] = ACTIONS(155), + [sym_doubleConstant] = ACTIONS(193), + [sym_stringConstant] = ACTIONS(193), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, [19] = { - [sym_sequential] = STATE(324), - [sym_files] = STATE(324), - [sym_definition] = STATE(243), - [sym__pattern] = STATE(324), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(324), - [sym_divOperation] = STATE(324), - [sym_modOperation] = STATE(324), - [sym_addOperation] = STATE(324), - [sym_subOperation] = STATE(324), - [sym_patternAs] = STATE(324), - [sym_patternLimit] = STATE(324), - [sym_assignmentAsPattern] = STATE(324), - [sym_patternAccumulate] = STATE(324), - [sym_patternWhere] = STATE(324), - [sym__literal] = STATE(324), - [sym_patternNot] = STATE(324), - [sym_patternOr] = STATE(324), - [sym_patternOrElse] = STATE(324), - [sym_patternAny] = STATE(324), - [sym_patternAnd] = STATE(324), - [sym_patternMaybe] = STATE(324), - [sym_patternAfter] = STATE(324), - [sym_patternBefore] = STATE(324), - [sym_patternContains] = STATE(324), - [sym_patternIncludes] = STATE(324), - [sym_rewrite] = STATE(324), - [sym_patternIfElse] = STATE(324), - [sym_within] = STATE(324), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(324), - [sym_nodeLike] = STATE(324), - [sym_like] = STATE(324), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(324), - [sym_some] = STATE(324), - [sym_every] = STATE(324), - [sym_regexPattern] = STATE(324), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), - [sym_log] = STATE(324), - [sym_range] = STATE(324), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(324), + [sym_sequential] = STATE(318), + [sym_files] = STATE(318), + [sym_definition] = STATE(244), + [sym__pattern] = STATE(318), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(318), + [sym_divOperation] = STATE(318), + [sym_modOperation] = STATE(318), + [sym_addOperation] = STATE(318), + [sym_subOperation] = STATE(318), + [sym_patternAs] = STATE(318), + [sym_patternLimit] = STATE(318), + [sym_assignmentAsPattern] = STATE(318), + [sym_patternAccumulate] = STATE(318), + [sym_patternWhere] = STATE(318), + [sym__literal] = STATE(318), + [sym_patternNot] = STATE(318), + [sym_patternOr] = STATE(318), + [sym_patternOrElse] = STATE(318), + [sym_patternAny] = STATE(318), + [sym_patternAnd] = STATE(318), + [sym_patternMaybe] = STATE(318), + [sym_patternAfter] = STATE(318), + [sym_patternBefore] = STATE(318), + [sym_patternContains] = STATE(318), + [sym_patternIncludes] = STATE(318), + [sym_rewrite] = STATE(318), + [sym_patternIfElse] = STATE(318), + [sym_within] = STATE(318), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(318), + [sym_nodeLike] = STATE(318), + [sym_like] = STATE(318), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(318), + [sym_some] = STATE(318), + [sym_every] = STATE(318), + [sym_regexPattern] = STATE(318), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), + [sym_log] = STATE(318), + [sym_range] = STATE(318), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(318), [sym_snippetRegex] = STATE(334), - [ts_builtin_sym_end] = ACTIONS(133), + [ts_builtin_sym_end] = ACTIONS(195), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), @@ -10621,14 +10666,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(137), + [sym_underscore] = ACTIONS(197), [anon_sym_private] = ACTIONS(61), [anon_sym_pattern] = ACTIONS(63), [anon_sym_predicate] = ACTIONS(65), [anon_sym_function] = ACTIONS(67), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(137), + [sym_booleanConstant] = ACTIONS(197), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -10653,14 +10698,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(137), - [sym_top] = ACTIONS(137), - [sym_bottom] = ACTIONS(137), - [sym_intConstant] = ACTIONS(137), - [sym_doubleConstant] = ACTIONS(203), - [sym_stringConstant] = ACTIONS(203), + [sym_undefined] = ACTIONS(197), + [sym_top] = ACTIONS(197), + [sym_bottom] = ACTIONS(197), + [sym_intConstant] = ACTIONS(197), + [sym_doubleConstant] = ACTIONS(199), + [sym_stringConstant] = ACTIONS(199), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -10670,7 +10716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_files] = STATE(315), [sym_definition] = STATE(245), [sym__pattern] = STATE(315), - [sym__container] = STATE(1032), + [sym__container] = STATE(1201), [sym_mulOperation] = STATE(315), [sym_divOperation] = STATE(315), [sym_modOperation] = STATE(315), @@ -10695,29 +10741,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_rewrite] = STATE(315), [sym_patternIfElse] = STATE(315), [sym_within] = STATE(315), - [sym__bubbleScope] = STATE(119), + [sym__bubbleScope] = STATE(108), [sym_bubble] = STATE(315), [sym_nodeLike] = STATE(315), [sym_like] = STATE(315), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), [sym_dot] = STATE(315), [sym_some] = STATE(315), [sym_every] = STATE(315), [sym_regexPattern] = STATE(315), - [sym_patternDefinition] = STATE(288), - [sym_predicateDefinition] = STATE(289), - [sym_functionDefinition] = STATE(290), - [sym_foreignFunctionDefinition] = STATE(251), + [sym_patternDefinition] = STATE(275), + [sym_predicateDefinition] = STATE(261), + [sym_functionDefinition] = STATE(262), + [sym_foreignFunctionDefinition] = STATE(279), [sym_log] = STATE(315), [sym_range] = STATE(315), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), [sym_codeSnippet] = STATE(315), [sym_snippetRegex] = STATE(334), - [ts_builtin_sym_end] = ACTIONS(139), + [ts_builtin_sym_end] = ACTIONS(201), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), @@ -10742,14 +10788,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(143), + [sym_underscore] = ACTIONS(203), [anon_sym_private] = ACTIONS(61), [anon_sym_pattern] = ACTIONS(63), [anon_sym_predicate] = ACTIONS(65), [anon_sym_function] = ACTIONS(67), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(143), + [sym_booleanConstant] = ACTIONS(203), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -10774,12 +10820,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(143), - [sym_top] = ACTIONS(143), - [sym_bottom] = ACTIONS(143), - [sym_intConstant] = ACTIONS(143), + [sym_undefined] = ACTIONS(203), + [sym_top] = ACTIONS(203), + [sym_bottom] = ACTIONS(203), + [sym_intConstant] = ACTIONS(203), [sym_doubleConstant] = ACTIONS(205), [sym_stringConstant] = ACTIONS(205), [sym_regex] = ACTIONS(81), @@ -10787,53 +10834,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [sym_sequential] = STATE(877), - [sym_files] = STATE(877), - [sym__pattern] = STATE(877), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(877), - [sym_divOperation] = STATE(877), - [sym_modOperation] = STATE(877), - [sym_addOperation] = STATE(877), - [sym_subOperation] = STATE(877), - [sym_patternAs] = STATE(877), - [sym_patternLimit] = STATE(877), - [sym_assignmentAsPattern] = STATE(877), - [sym_patternAccumulate] = STATE(877), - [sym_patternWhere] = STATE(877), - [sym__literal] = STATE(877), - [sym_patternNot] = STATE(877), - [sym_patternOr] = STATE(877), - [sym_patternOrElse] = STATE(877), - [sym_patternAny] = STATE(877), - [sym_patternAnd] = STATE(877), - [sym_patternMaybe] = STATE(877), - [sym_patternAfter] = STATE(877), - [sym_patternBefore] = STATE(877), - [sym_patternContains] = STATE(877), - [sym_patternIncludes] = STATE(877), - [sym_rewrite] = STATE(877), - [sym_patternIfElse] = STATE(877), - [sym_within] = STATE(877), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(877), - [sym_nodeLike] = STATE(877), - [sym_like] = STATE(877), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(877), - [sym_some] = STATE(877), - [sym_every] = STATE(877), - [sym_dotdotdot] = STATE(1243), - [sym_regexPattern] = STATE(877), - [sym_log] = STATE(877), - [sym_range] = STATE(877), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(877), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(878), + [sym_files] = STATE(878), + [sym__pattern] = STATE(878), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(878), + [sym_divOperation] = STATE(878), + [sym_modOperation] = STATE(878), + [sym_addOperation] = STATE(878), + [sym_subOperation] = STATE(878), + [sym_patternAs] = STATE(878), + [sym_patternLimit] = STATE(878), + [sym_assignmentAsPattern] = STATE(878), + [sym_patternAccumulate] = STATE(878), + [sym_patternWhere] = STATE(878), + [sym__literal] = STATE(878), + [sym_patternNot] = STATE(878), + [sym_patternOr] = STATE(878), + [sym_patternOrElse] = STATE(878), + [sym_patternAny] = STATE(878), + [sym_patternAnd] = STATE(878), + [sym_patternMaybe] = STATE(878), + [sym_patternAfter] = STATE(878), + [sym_patternBefore] = STATE(878), + [sym_patternContains] = STATE(878), + [sym_patternIncludes] = STATE(878), + [sym_rewrite] = STATE(878), + [sym_patternIfElse] = STATE(878), + [sym_within] = STATE(878), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(878), + [sym_nodeLike] = STATE(878), + [sym_like] = STATE(878), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(878), + [sym_some] = STATE(878), + [sym_every] = STATE(878), + [sym_dotdotdot] = STATE(1231), + [sym_regexPattern] = STATE(878), + [sym_log] = STATE(878), + [sym_range] = STATE(878), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(878), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -10888,6 +10935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -10901,53 +10949,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [22] = { - [sym_sequential] = STATE(877), - [sym_files] = STATE(877), - [sym__pattern] = STATE(877), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(877), - [sym_divOperation] = STATE(877), - [sym_modOperation] = STATE(877), - [sym_addOperation] = STATE(877), - [sym_subOperation] = STATE(877), - [sym_patternAs] = STATE(877), - [sym_patternLimit] = STATE(877), - [sym_assignmentAsPattern] = STATE(877), - [sym_patternAccumulate] = STATE(877), - [sym_patternWhere] = STATE(877), - [sym__literal] = STATE(877), - [sym_patternNot] = STATE(877), - [sym_patternOr] = STATE(877), - [sym_patternOrElse] = STATE(877), - [sym_patternAny] = STATE(877), - [sym_patternAnd] = STATE(877), - [sym_patternMaybe] = STATE(877), - [sym_patternAfter] = STATE(877), - [sym_patternBefore] = STATE(877), - [sym_patternContains] = STATE(877), - [sym_patternIncludes] = STATE(877), - [sym_rewrite] = STATE(877), - [sym_patternIfElse] = STATE(877), - [sym_within] = STATE(877), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(877), - [sym_nodeLike] = STATE(877), - [sym_like] = STATE(877), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(877), - [sym_some] = STATE(877), - [sym_every] = STATE(877), - [sym_dotdotdot] = STATE(1243), - [sym_regexPattern] = STATE(877), - [sym_log] = STATE(877), - [sym_range] = STATE(877), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(877), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(878), + [sym_files] = STATE(878), + [sym__pattern] = STATE(878), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(878), + [sym_divOperation] = STATE(878), + [sym_modOperation] = STATE(878), + [sym_addOperation] = STATE(878), + [sym_subOperation] = STATE(878), + [sym_patternAs] = STATE(878), + [sym_patternLimit] = STATE(878), + [sym_assignmentAsPattern] = STATE(878), + [sym_patternAccumulate] = STATE(878), + [sym_patternWhere] = STATE(878), + [sym__literal] = STATE(878), + [sym_patternNot] = STATE(878), + [sym_patternOr] = STATE(878), + [sym_patternOrElse] = STATE(878), + [sym_patternAny] = STATE(878), + [sym_patternAnd] = STATE(878), + [sym_patternMaybe] = STATE(878), + [sym_patternAfter] = STATE(878), + [sym_patternBefore] = STATE(878), + [sym_patternContains] = STATE(878), + [sym_patternIncludes] = STATE(878), + [sym_rewrite] = STATE(878), + [sym_patternIfElse] = STATE(878), + [sym_within] = STATE(878), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(878), + [sym_nodeLike] = STATE(878), + [sym_like] = STATE(878), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(878), + [sym_some] = STATE(878), + [sym_every] = STATE(878), + [sym_dotdotdot] = STATE(1231), + [sym_regexPattern] = STATE(878), + [sym_log] = STATE(878), + [sym_range] = STATE(878), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(878), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -11002,6 +11050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -11015,10 +11064,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { + [sym_sequential] = STATE(878), + [sym_files] = STATE(878), + [sym__pattern] = STATE(878), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(878), + [sym_divOperation] = STATE(878), + [sym_modOperation] = STATE(878), + [sym_addOperation] = STATE(878), + [sym_subOperation] = STATE(878), + [sym_patternAs] = STATE(878), + [sym_patternLimit] = STATE(878), + [sym_assignmentAsPattern] = STATE(878), + [sym_patternAccumulate] = STATE(878), + [sym_patternWhere] = STATE(878), + [sym__literal] = STATE(878), + [sym_patternNot] = STATE(878), + [sym_patternOr] = STATE(878), + [sym_patternOrElse] = STATE(878), + [sym_patternAny] = STATE(878), + [sym_patternAnd] = STATE(878), + [sym_patternMaybe] = STATE(878), + [sym_patternAfter] = STATE(878), + [sym_patternBefore] = STATE(878), + [sym_patternContains] = STATE(878), + [sym_patternIncludes] = STATE(878), + [sym_rewrite] = STATE(878), + [sym_patternIfElse] = STATE(878), + [sym_within] = STATE(878), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(878), + [sym_nodeLike] = STATE(878), + [sym_like] = STATE(878), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(878), + [sym_some] = STATE(878), + [sym_every] = STATE(878), + [sym_dotdotdot] = STATE(1231), + [sym_regexPattern] = STATE(878), + [sym_log] = STATE(878), + [sym_range] = STATE(878), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(878), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(245), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_RBRACK] = ACTIONS(275), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [aux_sym_dotdotdot_token1] = ACTIONS(255), + [sym_underscore] = ACTIONS(257), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(257), + [sym_variable] = ACTIONS(263), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(257), + [sym_top] = ACTIONS(257), + [sym_bottom] = ACTIONS(257), + [sym_intConstant] = ACTIONS(257), + [sym_doubleConstant] = ACTIONS(267), + [sym_stringConstant] = ACTIONS(267), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), + [sym_comment] = ACTIONS(3), + }, + [24] = { [sym_sequential] = STATE(861), [sym_files] = STATE(861), [sym__pattern] = STATE(861), - [sym__container] = STATE(1146), + [sym__container] = STATE(1119), [sym_mulOperation] = STATE(861), [sym_divOperation] = STATE(861), [sym_modOperation] = STATE(861), @@ -11043,25 +11207,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_rewrite] = STATE(861), [sym_patternIfElse] = STATE(861), [sym_within] = STATE(861), - [sym__bubbleScope] = STATE(121), + [sym__bubbleScope] = STATE(129), [sym_bubble] = STATE(861), [sym_nodeLike] = STATE(861), [sym_like] = STATE(861), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), [sym_dot] = STATE(861), [sym_some] = STATE(861), [sym_every] = STATE(861), - [sym_dotdotdot] = STATE(1057), + [sym_dotdotdot] = STATE(1073), [sym_regexPattern] = STATE(861), [sym_log] = STATE(861), [sym_range] = STATE(861), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), [sym_codeSnippet] = STATE(861), - [sym_snippetRegex] = STATE(422), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -11084,14 +11248,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like] = ACTIONS(243), [anon_sym_DOT] = ACTIONS(245), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(275), + [anon_sym_RBRACK] = ACTIONS(277), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), [aux_sym_dotdotdot_token1] = ACTIONS(255), - [sym_underscore] = ACTIONS(277), + [sym_underscore] = ACTIONS(279), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(277), + [sym_booleanConstant] = ACTIONS(279), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -11116,66 +11280,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(277), - [sym_top] = ACTIONS(277), - [sym_bottom] = ACTIONS(277), - [sym_intConstant] = ACTIONS(277), - [sym_doubleConstant] = ACTIONS(279), - [sym_stringConstant] = ACTIONS(279), + [sym_undefined] = ACTIONS(279), + [sym_top] = ACTIONS(279), + [sym_bottom] = ACTIONS(279), + [sym_intConstant] = ACTIONS(279), + [sym_doubleConstant] = ACTIONS(281), + [sym_stringConstant] = ACTIONS(281), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [24] = { - [sym_sequential] = STATE(877), - [sym_files] = STATE(877), - [sym__pattern] = STATE(877), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(877), - [sym_divOperation] = STATE(877), - [sym_modOperation] = STATE(877), - [sym_addOperation] = STATE(877), - [sym_subOperation] = STATE(877), - [sym_patternAs] = STATE(877), - [sym_patternLimit] = STATE(877), - [sym_assignmentAsPattern] = STATE(877), - [sym_patternAccumulate] = STATE(877), - [sym_patternWhere] = STATE(877), - [sym__literal] = STATE(877), - [sym_patternNot] = STATE(877), - [sym_patternOr] = STATE(877), - [sym_patternOrElse] = STATE(877), - [sym_patternAny] = STATE(877), - [sym_patternAnd] = STATE(877), - [sym_patternMaybe] = STATE(877), - [sym_patternAfter] = STATE(877), - [sym_patternBefore] = STATE(877), - [sym_patternContains] = STATE(877), - [sym_patternIncludes] = STATE(877), - [sym_rewrite] = STATE(877), - [sym_patternIfElse] = STATE(877), - [sym_within] = STATE(877), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(877), - [sym_nodeLike] = STATE(877), - [sym_like] = STATE(877), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(877), - [sym_some] = STATE(877), - [sym_every] = STATE(877), - [sym_dotdotdot] = STATE(1243), - [sym_regexPattern] = STATE(877), - [sym_log] = STATE(877), - [sym_range] = STATE(877), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(877), - [sym_snippetRegex] = STATE(422), + [25] = { + [sym_sequential] = STATE(878), + [sym_files] = STATE(878), + [sym__pattern] = STATE(878), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(878), + [sym_divOperation] = STATE(878), + [sym_modOperation] = STATE(878), + [sym_addOperation] = STATE(878), + [sym_subOperation] = STATE(878), + [sym_patternAs] = STATE(878), + [sym_patternLimit] = STATE(878), + [sym_assignmentAsPattern] = STATE(878), + [sym_patternAccumulate] = STATE(878), + [sym_patternWhere] = STATE(878), + [sym__literal] = STATE(878), + [sym_patternNot] = STATE(878), + [sym_patternOr] = STATE(878), + [sym_patternOrElse] = STATE(878), + [sym_patternAny] = STATE(878), + [sym_patternAnd] = STATE(878), + [sym_patternMaybe] = STATE(878), + [sym_patternAfter] = STATE(878), + [sym_patternBefore] = STATE(878), + [sym_patternContains] = STATE(878), + [sym_patternIncludes] = STATE(878), + [sym_rewrite] = STATE(878), + [sym_patternIfElse] = STATE(878), + [sym_within] = STATE(878), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(878), + [sym_nodeLike] = STATE(878), + [sym_like] = STATE(878), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(878), + [sym_some] = STATE(878), + [sym_every] = STATE(878), + [sym_dotdotdot] = STATE(1231), + [sym_regexPattern] = STATE(878), + [sym_log] = STATE(878), + [sym_range] = STATE(878), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(878), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -11198,7 +11363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like] = ACTIONS(243), [anon_sym_DOT] = ACTIONS(245), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(283), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), [aux_sym_dotdotdot_token1] = ACTIONS(255), @@ -11230,6 +11395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -11242,54 +11408,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [25] = { - [sym_sequential] = STATE(877), - [sym_files] = STATE(877), - [sym__pattern] = STATE(877), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(877), - [sym_divOperation] = STATE(877), - [sym_modOperation] = STATE(877), - [sym_addOperation] = STATE(877), - [sym_subOperation] = STATE(877), - [sym_patternAs] = STATE(877), - [sym_patternLimit] = STATE(877), - [sym_assignmentAsPattern] = STATE(877), - [sym_patternAccumulate] = STATE(877), - [sym_patternWhere] = STATE(877), - [sym__literal] = STATE(877), - [sym_patternNot] = STATE(877), - [sym_patternOr] = STATE(877), - [sym_patternOrElse] = STATE(877), - [sym_patternAny] = STATE(877), - [sym_patternAnd] = STATE(877), - [sym_patternMaybe] = STATE(877), - [sym_patternAfter] = STATE(877), - [sym_patternBefore] = STATE(877), - [sym_patternContains] = STATE(877), - [sym_patternIncludes] = STATE(877), - [sym_rewrite] = STATE(877), - [sym_patternIfElse] = STATE(877), - [sym_within] = STATE(877), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(877), - [sym_nodeLike] = STATE(877), - [sym_like] = STATE(877), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(877), - [sym_some] = STATE(877), - [sym_every] = STATE(877), - [sym_dotdotdot] = STATE(1243), - [sym_regexPattern] = STATE(877), - [sym_log] = STATE(877), - [sym_range] = STATE(877), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(877), - [sym_snippetRegex] = STATE(422), + [26] = { + [sym_sequential] = STATE(860), + [sym_files] = STATE(860), + [sym__pattern] = STATE(860), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(860), + [sym_divOperation] = STATE(860), + [sym_modOperation] = STATE(860), + [sym_addOperation] = STATE(860), + [sym_subOperation] = STATE(860), + [sym_patternAs] = STATE(860), + [sym_patternLimit] = STATE(860), + [sym_assignmentAsPattern] = STATE(860), + [sym_patternAccumulate] = STATE(860), + [sym_patternWhere] = STATE(860), + [sym__literal] = STATE(860), + [sym_patternNot] = STATE(860), + [sym_patternOr] = STATE(860), + [sym_patternOrElse] = STATE(860), + [sym_patternAny] = STATE(860), + [sym_patternAnd] = STATE(860), + [sym_patternMaybe] = STATE(860), + [sym_patternAfter] = STATE(860), + [sym_patternBefore] = STATE(860), + [sym_patternContains] = STATE(860), + [sym_patternIncludes] = STATE(860), + [sym_rewrite] = STATE(860), + [sym_patternIfElse] = STATE(860), + [sym_within] = STATE(860), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(860), + [sym_nodeLike] = STATE(860), + [sym_like] = STATE(860), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(860), + [sym_some] = STATE(860), + [sym_every] = STATE(860), + [sym_dotdotdot] = STATE(1123), + [sym_regexPattern] = STATE(860), + [sym_log] = STATE(860), + [sym_range] = STATE(860), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(860), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -11312,14 +11478,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like] = ACTIONS(243), [anon_sym_DOT] = ACTIONS(245), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(283), + [anon_sym_RBRACK] = ACTIONS(285), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), [aux_sym_dotdotdot_token1] = ACTIONS(255), - [sym_underscore] = ACTIONS(257), + [sym_underscore] = ACTIONS(287), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(257), + [sym_booleanConstant] = ACTIONS(287), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -11344,66 +11510,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(257), - [sym_top] = ACTIONS(257), - [sym_bottom] = ACTIONS(257), - [sym_intConstant] = ACTIONS(257), - [sym_doubleConstant] = ACTIONS(267), - [sym_stringConstant] = ACTIONS(267), + [sym_undefined] = ACTIONS(287), + [sym_top] = ACTIONS(287), + [sym_bottom] = ACTIONS(287), + [sym_intConstant] = ACTIONS(287), + [sym_doubleConstant] = ACTIONS(289), + [sym_stringConstant] = ACTIONS(289), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [26] = { - [sym_sequential] = STATE(865), - [sym_files] = STATE(865), - [sym__pattern] = STATE(865), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(865), - [sym_divOperation] = STATE(865), - [sym_modOperation] = STATE(865), - [sym_addOperation] = STATE(865), - [sym_subOperation] = STATE(865), - [sym_patternAs] = STATE(865), - [sym_patternLimit] = STATE(865), - [sym_assignmentAsPattern] = STATE(865), - [sym_patternAccumulate] = STATE(865), - [sym_patternWhere] = STATE(865), - [sym__literal] = STATE(865), - [sym_patternNot] = STATE(865), - [sym_patternOr] = STATE(865), - [sym_patternOrElse] = STATE(865), - [sym_patternAny] = STATE(865), - [sym_patternAnd] = STATE(865), - [sym_patternMaybe] = STATE(865), - [sym_patternAfter] = STATE(865), - [sym_patternBefore] = STATE(865), - [sym_patternContains] = STATE(865), - [sym_patternIncludes] = STATE(865), - [sym_rewrite] = STATE(865), - [sym_patternIfElse] = STATE(865), - [sym_within] = STATE(865), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(865), - [sym_nodeLike] = STATE(865), - [sym_like] = STATE(865), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(865), - [sym_some] = STATE(865), - [sym_every] = STATE(865), - [sym_dotdotdot] = STATE(1070), - [sym_regexPattern] = STATE(865), - [sym_log] = STATE(865), - [sym_range] = STATE(865), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(865), - [sym_snippetRegex] = STATE(422), + [27] = { + [sym_sequential] = STATE(871), + [sym_files] = STATE(871), + [sym__pattern] = STATE(871), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(871), + [sym_divOperation] = STATE(871), + [sym_modOperation] = STATE(871), + [sym_addOperation] = STATE(871), + [sym_subOperation] = STATE(871), + [sym_patternAs] = STATE(871), + [sym_patternLimit] = STATE(871), + [sym_assignmentAsPattern] = STATE(871), + [sym_patternAccumulate] = STATE(871), + [sym_patternWhere] = STATE(871), + [sym__literal] = STATE(871), + [sym_patternNot] = STATE(871), + [sym_patternOr] = STATE(871), + [sym_patternOrElse] = STATE(871), + [sym_patternAny] = STATE(871), + [sym_patternAnd] = STATE(871), + [sym_patternMaybe] = STATE(871), + [sym_patternAfter] = STATE(871), + [sym_patternBefore] = STATE(871), + [sym_patternContains] = STATE(871), + [sym_patternIncludes] = STATE(871), + [sym_rewrite] = STATE(871), + [sym_patternIfElse] = STATE(871), + [sym_within] = STATE(871), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(871), + [sym_nodeLike] = STATE(871), + [sym_like] = STATE(871), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(871), + [sym_some] = STATE(871), + [sym_every] = STATE(871), + [sym_dotdotdot] = STATE(1135), + [sym_regexPattern] = STATE(871), + [sym_log] = STATE(871), + [sym_range] = STATE(871), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(871), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -11426,14 +11593,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like] = ACTIONS(243), [anon_sym_DOT] = ACTIONS(245), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(285), + [anon_sym_RBRACK] = ACTIONS(291), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), [aux_sym_dotdotdot_token1] = ACTIONS(255), - [sym_underscore] = ACTIONS(287), + [sym_underscore] = ACTIONS(293), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(287), + [sym_booleanConstant] = ACTIONS(293), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -11458,66 +11625,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(287), - [sym_top] = ACTIONS(287), - [sym_bottom] = ACTIONS(287), - [sym_intConstant] = ACTIONS(287), - [sym_doubleConstant] = ACTIONS(289), - [sym_stringConstant] = ACTIONS(289), + [sym_undefined] = ACTIONS(293), + [sym_top] = ACTIONS(293), + [sym_bottom] = ACTIONS(293), + [sym_intConstant] = ACTIONS(293), + [sym_doubleConstant] = ACTIONS(295), + [sym_stringConstant] = ACTIONS(295), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [27] = { - [sym_sequential] = STATE(877), - [sym_files] = STATE(877), - [sym__pattern] = STATE(877), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(877), - [sym_divOperation] = STATE(877), - [sym_modOperation] = STATE(877), - [sym_addOperation] = STATE(877), - [sym_subOperation] = STATE(877), - [sym_patternAs] = STATE(877), - [sym_patternLimit] = STATE(877), - [sym_assignmentAsPattern] = STATE(877), - [sym_patternAccumulate] = STATE(877), - [sym_patternWhere] = STATE(877), - [sym__literal] = STATE(877), - [sym_patternNot] = STATE(877), - [sym_patternOr] = STATE(877), - [sym_patternOrElse] = STATE(877), - [sym_patternAny] = STATE(877), - [sym_patternAnd] = STATE(877), - [sym_patternMaybe] = STATE(877), - [sym_patternAfter] = STATE(877), - [sym_patternBefore] = STATE(877), - [sym_patternContains] = STATE(877), - [sym_patternIncludes] = STATE(877), - [sym_rewrite] = STATE(877), - [sym_patternIfElse] = STATE(877), - [sym_within] = STATE(877), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(877), - [sym_nodeLike] = STATE(877), - [sym_like] = STATE(877), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(877), - [sym_some] = STATE(877), - [sym_every] = STATE(877), - [sym_dotdotdot] = STATE(1243), - [sym_regexPattern] = STATE(877), - [sym_log] = STATE(877), - [sym_range] = STATE(877), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(877), - [sym_snippetRegex] = STATE(422), + [28] = { + [sym_sequential] = STATE(872), + [sym_files] = STATE(872), + [sym__pattern] = STATE(872), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(872), + [sym_divOperation] = STATE(872), + [sym_modOperation] = STATE(872), + [sym_addOperation] = STATE(872), + [sym_subOperation] = STATE(872), + [sym_patternAs] = STATE(872), + [sym_patternLimit] = STATE(872), + [sym_assignmentAsPattern] = STATE(872), + [sym_patternAccumulate] = STATE(872), + [sym_patternWhere] = STATE(872), + [sym__literal] = STATE(872), + [sym_patternNot] = STATE(872), + [sym_patternOr] = STATE(872), + [sym_patternOrElse] = STATE(872), + [sym_patternAny] = STATE(872), + [sym_patternAnd] = STATE(872), + [sym_patternMaybe] = STATE(872), + [sym_patternAfter] = STATE(872), + [sym_patternBefore] = STATE(872), + [sym_patternContains] = STATE(872), + [sym_patternIncludes] = STATE(872), + [sym_rewrite] = STATE(872), + [sym_patternIfElse] = STATE(872), + [sym_within] = STATE(872), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(872), + [sym_nodeLike] = STATE(872), + [sym_like] = STATE(872), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(872), + [sym_some] = STATE(872), + [sym_every] = STATE(872), + [sym_dotdotdot] = STATE(1068), + [sym_regexPattern] = STATE(872), + [sym_log] = STATE(872), + [sym_range] = STATE(872), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(872), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -11540,14 +11708,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like] = ACTIONS(243), [anon_sym_DOT] = ACTIONS(245), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(291), + [anon_sym_RBRACK] = ACTIONS(297), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), [aux_sym_dotdotdot_token1] = ACTIONS(255), - [sym_underscore] = ACTIONS(257), + [sym_underscore] = ACTIONS(299), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(257), + [sym_booleanConstant] = ACTIONS(299), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -11572,66 +11740,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(257), - [sym_top] = ACTIONS(257), - [sym_bottom] = ACTIONS(257), - [sym_intConstant] = ACTIONS(257), - [sym_doubleConstant] = ACTIONS(267), - [sym_stringConstant] = ACTIONS(267), + [sym_undefined] = ACTIONS(299), + [sym_top] = ACTIONS(299), + [sym_bottom] = ACTIONS(299), + [sym_intConstant] = ACTIONS(299), + [sym_doubleConstant] = ACTIONS(301), + [sym_stringConstant] = ACTIONS(301), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [28] = { - [sym_sequential] = STATE(873), - [sym_files] = STATE(873), - [sym__pattern] = STATE(873), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(873), - [sym_divOperation] = STATE(873), - [sym_modOperation] = STATE(873), - [sym_addOperation] = STATE(873), - [sym_subOperation] = STATE(873), - [sym_patternAs] = STATE(873), - [sym_patternLimit] = STATE(873), - [sym_assignmentAsPattern] = STATE(873), - [sym_patternAccumulate] = STATE(873), - [sym_patternWhere] = STATE(873), - [sym__literal] = STATE(873), - [sym_patternNot] = STATE(873), - [sym_patternOr] = STATE(873), - [sym_patternOrElse] = STATE(873), - [sym_patternAny] = STATE(873), - [sym_patternAnd] = STATE(873), - [sym_patternMaybe] = STATE(873), - [sym_patternAfter] = STATE(873), - [sym_patternBefore] = STATE(873), - [sym_patternContains] = STATE(873), - [sym_patternIncludes] = STATE(873), - [sym_rewrite] = STATE(873), - [sym_patternIfElse] = STATE(873), - [sym_within] = STATE(873), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(873), - [sym_nodeLike] = STATE(873), - [sym_like] = STATE(873), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(873), - [sym_some] = STATE(873), - [sym_every] = STATE(873), - [sym_dotdotdot] = STATE(1123), - [sym_regexPattern] = STATE(873), - [sym_log] = STATE(873), - [sym_range] = STATE(873), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(873), - [sym_snippetRegex] = STATE(422), + [29] = { + [sym_sequential] = STATE(878), + [sym_files] = STATE(878), + [sym__pattern] = STATE(878), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(878), + [sym_divOperation] = STATE(878), + [sym_modOperation] = STATE(878), + [sym_addOperation] = STATE(878), + [sym_subOperation] = STATE(878), + [sym_patternAs] = STATE(878), + [sym_patternLimit] = STATE(878), + [sym_assignmentAsPattern] = STATE(878), + [sym_patternAccumulate] = STATE(878), + [sym_patternWhere] = STATE(878), + [sym__literal] = STATE(878), + [sym_patternNot] = STATE(878), + [sym_patternOr] = STATE(878), + [sym_patternOrElse] = STATE(878), + [sym_patternAny] = STATE(878), + [sym_patternAnd] = STATE(878), + [sym_patternMaybe] = STATE(878), + [sym_patternAfter] = STATE(878), + [sym_patternBefore] = STATE(878), + [sym_patternContains] = STATE(878), + [sym_patternIncludes] = STATE(878), + [sym_rewrite] = STATE(878), + [sym_patternIfElse] = STATE(878), + [sym_within] = STATE(878), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(878), + [sym_nodeLike] = STATE(878), + [sym_like] = STATE(878), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(878), + [sym_some] = STATE(878), + [sym_every] = STATE(878), + [sym_dotdotdot] = STATE(1231), + [sym_regexPattern] = STATE(878), + [sym_log] = STATE(878), + [sym_range] = STATE(878), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(878), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -11654,14 +11823,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like] = ACTIONS(243), [anon_sym_DOT] = ACTIONS(245), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(303), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), [aux_sym_dotdotdot_token1] = ACTIONS(255), - [sym_underscore] = ACTIONS(295), + [sym_underscore] = ACTIONS(257), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(295), + [sym_booleanConstant] = ACTIONS(257), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -11686,66 +11855,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(295), - [sym_top] = ACTIONS(295), - [sym_bottom] = ACTIONS(295), - [sym_intConstant] = ACTIONS(295), - [sym_doubleConstant] = ACTIONS(297), - [sym_stringConstant] = ACTIONS(297), + [sym_undefined] = ACTIONS(257), + [sym_top] = ACTIONS(257), + [sym_bottom] = ACTIONS(257), + [sym_intConstant] = ACTIONS(257), + [sym_doubleConstant] = ACTIONS(267), + [sym_stringConstant] = ACTIONS(267), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [29] = { - [sym_sequential] = STATE(877), - [sym_files] = STATE(877), - [sym__pattern] = STATE(877), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(877), - [sym_divOperation] = STATE(877), - [sym_modOperation] = STATE(877), - [sym_addOperation] = STATE(877), - [sym_subOperation] = STATE(877), - [sym_patternAs] = STATE(877), - [sym_patternLimit] = STATE(877), - [sym_assignmentAsPattern] = STATE(877), - [sym_patternAccumulate] = STATE(877), - [sym_patternWhere] = STATE(877), - [sym__literal] = STATE(877), - [sym_patternNot] = STATE(877), - [sym_patternOr] = STATE(877), - [sym_patternOrElse] = STATE(877), - [sym_patternAny] = STATE(877), - [sym_patternAnd] = STATE(877), - [sym_patternMaybe] = STATE(877), - [sym_patternAfter] = STATE(877), - [sym_patternBefore] = STATE(877), - [sym_patternContains] = STATE(877), - [sym_patternIncludes] = STATE(877), - [sym_rewrite] = STATE(877), - [sym_patternIfElse] = STATE(877), - [sym_within] = STATE(877), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(877), - [sym_nodeLike] = STATE(877), - [sym_like] = STATE(877), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(877), - [sym_some] = STATE(877), - [sym_every] = STATE(877), - [sym_dotdotdot] = STATE(1243), - [sym_regexPattern] = STATE(877), - [sym_log] = STATE(877), - [sym_range] = STATE(877), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(877), - [sym_snippetRegex] = STATE(422), + [30] = { + [sym_sequential] = STATE(878), + [sym_files] = STATE(878), + [sym__pattern] = STATE(878), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(878), + [sym_divOperation] = STATE(878), + [sym_modOperation] = STATE(878), + [sym_addOperation] = STATE(878), + [sym_subOperation] = STATE(878), + [sym_patternAs] = STATE(878), + [sym_patternLimit] = STATE(878), + [sym_assignmentAsPattern] = STATE(878), + [sym_patternAccumulate] = STATE(878), + [sym_patternWhere] = STATE(878), + [sym__literal] = STATE(878), + [sym_patternNot] = STATE(878), + [sym_patternOr] = STATE(878), + [sym_patternOrElse] = STATE(878), + [sym_patternAny] = STATE(878), + [sym_patternAnd] = STATE(878), + [sym_patternMaybe] = STATE(878), + [sym_patternAfter] = STATE(878), + [sym_patternBefore] = STATE(878), + [sym_patternContains] = STATE(878), + [sym_patternIncludes] = STATE(878), + [sym_rewrite] = STATE(878), + [sym_patternIfElse] = STATE(878), + [sym_within] = STATE(878), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(878), + [sym_nodeLike] = STATE(878), + [sym_like] = STATE(878), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(878), + [sym_some] = STATE(878), + [sym_every] = STATE(878), + [sym_dotdotdot] = STATE(1231), + [sym_regexPattern] = STATE(878), + [sym_log] = STATE(878), + [sym_range] = STATE(878), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(878), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -11768,7 +11938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like] = ACTIONS(243), [anon_sym_DOT] = ACTIONS(245), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(299), + [anon_sym_RBRACK] = ACTIONS(305), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), [aux_sym_dotdotdot_token1] = ACTIONS(255), @@ -11800,6 +11970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -11812,54 +11983,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [30] = { - [sym_sequential] = STATE(877), - [sym_files] = STATE(877), - [sym__pattern] = STATE(877), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(877), - [sym_divOperation] = STATE(877), - [sym_modOperation] = STATE(877), - [sym_addOperation] = STATE(877), - [sym_subOperation] = STATE(877), - [sym_patternAs] = STATE(877), - [sym_patternLimit] = STATE(877), - [sym_assignmentAsPattern] = STATE(877), - [sym_patternAccumulate] = STATE(877), - [sym_patternWhere] = STATE(877), - [sym__literal] = STATE(877), - [sym_patternNot] = STATE(877), - [sym_patternOr] = STATE(877), - [sym_patternOrElse] = STATE(877), - [sym_patternAny] = STATE(877), - [sym_patternAnd] = STATE(877), - [sym_patternMaybe] = STATE(877), - [sym_patternAfter] = STATE(877), - [sym_patternBefore] = STATE(877), - [sym_patternContains] = STATE(877), - [sym_patternIncludes] = STATE(877), - [sym_rewrite] = STATE(877), - [sym_patternIfElse] = STATE(877), - [sym_within] = STATE(877), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(877), - [sym_nodeLike] = STATE(877), - [sym_like] = STATE(877), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(877), - [sym_some] = STATE(877), - [sym_every] = STATE(877), - [sym_dotdotdot] = STATE(1243), - [sym_regexPattern] = STATE(877), - [sym_log] = STATE(877), - [sym_range] = STATE(877), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(877), - [sym_snippetRegex] = STATE(422), + [31] = { + [sym_sequential] = STATE(878), + [sym_files] = STATE(878), + [sym__pattern] = STATE(878), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(878), + [sym_divOperation] = STATE(878), + [sym_modOperation] = STATE(878), + [sym_addOperation] = STATE(878), + [sym_subOperation] = STATE(878), + [sym_patternAs] = STATE(878), + [sym_patternLimit] = STATE(878), + [sym_assignmentAsPattern] = STATE(878), + [sym_patternAccumulate] = STATE(878), + [sym_patternWhere] = STATE(878), + [sym__literal] = STATE(878), + [sym_patternNot] = STATE(878), + [sym_patternOr] = STATE(878), + [sym_patternOrElse] = STATE(878), + [sym_patternAny] = STATE(878), + [sym_patternAnd] = STATE(878), + [sym_patternMaybe] = STATE(878), + [sym_patternAfter] = STATE(878), + [sym_patternBefore] = STATE(878), + [sym_patternContains] = STATE(878), + [sym_patternIncludes] = STATE(878), + [sym_rewrite] = STATE(878), + [sym_patternIfElse] = STATE(878), + [sym_within] = STATE(878), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(878), + [sym_nodeLike] = STATE(878), + [sym_like] = STATE(878), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(878), + [sym_some] = STATE(878), + [sym_every] = STATE(878), + [sym_dotdotdot] = STATE(1231), + [sym_regexPattern] = STATE(878), + [sym_log] = STATE(878), + [sym_range] = STATE(878), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(878), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -11882,7 +12053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like] = ACTIONS(243), [anon_sym_DOT] = ACTIONS(245), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(301), + [anon_sym_RBRACK] = ACTIONS(307), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), [aux_sym_dotdotdot_token1] = ACTIONS(255), @@ -11914,6 +12085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -11926,54 +12098,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [31] = { - [sym_sequential] = STATE(877), - [sym_files] = STATE(877), - [sym__pattern] = STATE(877), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(877), - [sym_divOperation] = STATE(877), - [sym_modOperation] = STATE(877), - [sym_addOperation] = STATE(877), - [sym_subOperation] = STATE(877), - [sym_patternAs] = STATE(877), - [sym_patternLimit] = STATE(877), - [sym_assignmentAsPattern] = STATE(877), - [sym_patternAccumulate] = STATE(877), - [sym_patternWhere] = STATE(877), - [sym__literal] = STATE(877), - [sym_patternNot] = STATE(877), - [sym_patternOr] = STATE(877), - [sym_patternOrElse] = STATE(877), - [sym_patternAny] = STATE(877), - [sym_patternAnd] = STATE(877), - [sym_patternMaybe] = STATE(877), - [sym_patternAfter] = STATE(877), - [sym_patternBefore] = STATE(877), - [sym_patternContains] = STATE(877), - [sym_patternIncludes] = STATE(877), - [sym_rewrite] = STATE(877), - [sym_patternIfElse] = STATE(877), - [sym_within] = STATE(877), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(877), - [sym_nodeLike] = STATE(877), - [sym_like] = STATE(877), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(877), - [sym_some] = STATE(877), - [sym_every] = STATE(877), - [sym_dotdotdot] = STATE(1243), - [sym_regexPattern] = STATE(877), - [sym_log] = STATE(877), - [sym_range] = STATE(877), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(877), - [sym_snippetRegex] = STATE(422), + [32] = { + [sym_sequential] = STATE(878), + [sym_files] = STATE(878), + [sym__pattern] = STATE(878), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(878), + [sym_divOperation] = STATE(878), + [sym_modOperation] = STATE(878), + [sym_addOperation] = STATE(878), + [sym_subOperation] = STATE(878), + [sym_patternAs] = STATE(878), + [sym_patternLimit] = STATE(878), + [sym_assignmentAsPattern] = STATE(878), + [sym_patternAccumulate] = STATE(878), + [sym_patternWhere] = STATE(878), + [sym__literal] = STATE(878), + [sym_patternNot] = STATE(878), + [sym_patternOr] = STATE(878), + [sym_patternOrElse] = STATE(878), + [sym_patternAny] = STATE(878), + [sym_patternAnd] = STATE(878), + [sym_patternMaybe] = STATE(878), + [sym_patternAfter] = STATE(878), + [sym_patternBefore] = STATE(878), + [sym_patternContains] = STATE(878), + [sym_patternIncludes] = STATE(878), + [sym_rewrite] = STATE(878), + [sym_patternIfElse] = STATE(878), + [sym_within] = STATE(878), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(878), + [sym_nodeLike] = STATE(878), + [sym_like] = STATE(878), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(878), + [sym_some] = STATE(878), + [sym_every] = STATE(878), + [sym_dotdotdot] = STATE(1231), + [sym_regexPattern] = STATE(878), + [sym_log] = STATE(878), + [sym_range] = STATE(878), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(878), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -11996,7 +12168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like] = ACTIONS(243), [anon_sym_DOT] = ACTIONS(245), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(309), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), [aux_sym_dotdotdot_token1] = ACTIONS(255), @@ -12028,6 +12200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(257), @@ -12040,59 +12213,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [32] = { - [sym_sequential] = STATE(859), - [sym_files] = STATE(859), - [sym__pattern] = STATE(859), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(859), - [sym_divOperation] = STATE(859), - [sym_modOperation] = STATE(859), - [sym_addOperation] = STATE(859), - [sym_subOperation] = STATE(859), - [sym_patternAs] = STATE(859), - [sym_patternLimit] = STATE(859), - [sym_assignmentAsPattern] = STATE(859), - [sym_patternAccumulate] = STATE(859), - [sym_patternWhere] = STATE(859), - [sym__literal] = STATE(859), - [sym_patternNot] = STATE(859), - [sym_patternOr] = STATE(859), - [sym_patternOrElse] = STATE(859), - [sym_patternAny] = STATE(859), - [sym_patternAnd] = STATE(859), - [sym_patternMaybe] = STATE(859), - [sym_patternAfter] = STATE(859), - [sym_patternBefore] = STATE(859), - [sym_patternContains] = STATE(859), - [sym_patternIncludes] = STATE(859), - [sym_rewrite] = STATE(859), - [sym_patternIfElse] = STATE(859), - [sym_within] = STATE(859), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(859), - [sym_nodeLike] = STATE(859), - [sym_like] = STATE(859), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(859), - [sym_some] = STATE(859), - [sym_every] = STATE(859), - [sym_dotdotdot] = STATE(1176), - [sym_regexPattern] = STATE(859), - [sym_log] = STATE(859), - [sym_range] = STATE(859), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(859), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), + [33] = { + [sym_sequential] = STATE(880), + [sym_files] = STATE(880), + [sym__pattern] = STATE(880), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(880), + [sym_divOperation] = STATE(880), + [sym_modOperation] = STATE(880), + [sym_addOperation] = STATE(880), + [sym_subOperation] = STATE(880), + [sym_patternAs] = STATE(880), + [sym_patternLimit] = STATE(880), + [sym_assignmentAsPattern] = STATE(880), + [sym_patternAccumulate] = STATE(880), + [sym_patternWhere] = STATE(880), + [sym__literal] = STATE(880), + [sym_patternNot] = STATE(880), + [sym_patternOr] = STATE(880), + [sym_patternOrElse] = STATE(880), + [sym_patternAny] = STATE(880), + [sym_patternAnd] = STATE(880), + [sym_patternMaybe] = STATE(880), + [sym_patternAfter] = STATE(880), + [sym_patternBefore] = STATE(880), + [sym_patternContains] = STATE(880), + [sym_patternIncludes] = STATE(880), + [sym_rewrite] = STATE(880), + [sym_patternIfElse] = STATE(880), + [sym_within] = STATE(880), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(880), + [sym_namedArg] = STATE(1155), + [sym_nodeLike] = STATE(880), + [sym_like] = STATE(880), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(880), + [sym_some] = STATE(880), + [sym_every] = STATE(880), + [sym_regexPattern] = STATE(880), + [sym_log] = STATE(880), + [sym_range] = STATE(880), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(880), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(313), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -12108,16 +12282,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(315), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(305), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [aux_sym_dotdotdot_token1] = ACTIONS(255), - [sym_underscore] = ACTIONS(307), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(307), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -12142,72 +12314,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(307), - [sym_top] = ACTIONS(307), - [sym_bottom] = ACTIONS(307), - [sym_intConstant] = ACTIONS(307), - [sym_doubleConstant] = ACTIONS(309), - [sym_stringConstant] = ACTIONS(309), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [33] = { - [sym_sequential] = STATE(912), - [sym_files] = STATE(912), - [sym__pattern] = STATE(912), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(912), - [sym_divOperation] = STATE(912), - [sym_modOperation] = STATE(912), - [sym_addOperation] = STATE(912), - [sym_subOperation] = STATE(912), - [sym_patternAs] = STATE(912), - [sym_patternLimit] = STATE(912), - [sym_assignmentAsPattern] = STATE(912), - [sym_patternAccumulate] = STATE(912), - [sym_patternWhere] = STATE(912), - [sym__literal] = STATE(912), - [sym_patternNot] = STATE(912), - [sym_patternOr] = STATE(912), - [sym_patternOrElse] = STATE(912), - [sym_patternAny] = STATE(912), - [sym_patternAnd] = STATE(912), - [sym_patternMaybe] = STATE(912), - [sym_patternAfter] = STATE(912), - [sym_patternBefore] = STATE(912), - [sym_patternContains] = STATE(912), - [sym_patternIncludes] = STATE(912), - [sym_rewrite] = STATE(912), - [sym_patternIfElse] = STATE(912), - [sym_within] = STATE(912), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(912), - [sym_nodeLike] = STATE(912), - [sym_like] = STATE(912), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1051), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(912), - [sym_some] = STATE(912), - [sym_every] = STATE(912), - [sym_regexPattern] = STATE(912), - [sym_log] = STATE(912), - [sym_range] = STATE(912), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(912), - [sym_snippetRegex] = STATE(422), + [34] = { + [sym_sequential] = STATE(880), + [sym_files] = STATE(880), + [sym__pattern] = STATE(880), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(880), + [sym_divOperation] = STATE(880), + [sym_modOperation] = STATE(880), + [sym_addOperation] = STATE(880), + [sym_subOperation] = STATE(880), + [sym_patternAs] = STATE(880), + [sym_patternLimit] = STATE(880), + [sym_assignmentAsPattern] = STATE(880), + [sym_patternAccumulate] = STATE(880), + [sym_patternWhere] = STATE(880), + [sym__literal] = STATE(880), + [sym_patternNot] = STATE(880), + [sym_patternOr] = STATE(880), + [sym_patternOrElse] = STATE(880), + [sym_patternAny] = STATE(880), + [sym_patternAnd] = STATE(880), + [sym_patternMaybe] = STATE(880), + [sym_patternAfter] = STATE(880), + [sym_patternBefore] = STATE(880), + [sym_patternContains] = STATE(880), + [sym_patternIncludes] = STATE(880), + [sym_rewrite] = STATE(880), + [sym_patternIfElse] = STATE(880), + [sym_within] = STATE(880), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(880), + [sym_namedArg] = STATE(1025), + [sym_nodeLike] = STATE(880), + [sym_like] = STATE(880), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(880), + [sym_some] = STATE(880), + [sym_every] = STATE(880), + [sym_regexPattern] = STATE(880), + [sym_log] = STATE(880), + [sym_range] = STATE(880), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(880), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(321), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -12255,6 +12428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(317), @@ -12267,60 +12441,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [34] = { - [sym_sequential] = STATE(888), - [sym_files] = STATE(888), - [sym__pattern] = STATE(888), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(888), - [sym_divOperation] = STATE(888), - [sym_modOperation] = STATE(888), - [sym_addOperation] = STATE(888), - [sym_subOperation] = STATE(888), - [sym_patternAs] = STATE(888), - [sym_patternLimit] = STATE(888), - [sym_assignmentAsPattern] = STATE(888), - [sym_patternAccumulate] = STATE(888), - [sym_patternWhere] = STATE(888), - [sym__literal] = STATE(888), - [sym_patternNot] = STATE(888), - [sym_patternOr] = STATE(888), - [sym_patternOrElse] = STATE(888), - [sym_patternAny] = STATE(888), - [sym_patternAnd] = STATE(888), - [sym_patternMaybe] = STATE(888), - [sym_patternAfter] = STATE(888), - [sym_patternBefore] = STATE(888), - [sym_patternContains] = STATE(888), - [sym_patternIncludes] = STATE(888), - [sym_rewrite] = STATE(888), - [sym_patternIfElse] = STATE(888), - [sym_within] = STATE(888), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(888), - [sym_nodeLike] = STATE(888), - [sym_like] = STATE(888), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(888), - [sym_some] = STATE(888), - [sym_every] = STATE(888), - [sym_regexPattern] = STATE(888), - [sym_log] = STATE(888), - [sym_range] = STATE(888), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(888), - [sym_snippetRegex] = STATE(422), + [35] = { + [sym_sequential] = STATE(880), + [sym_files] = STATE(880), + [sym__pattern] = STATE(880), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(880), + [sym_divOperation] = STATE(880), + [sym_modOperation] = STATE(880), + [sym_addOperation] = STATE(880), + [sym_subOperation] = STATE(880), + [sym_patternAs] = STATE(880), + [sym_patternLimit] = STATE(880), + [sym_assignmentAsPattern] = STATE(880), + [sym_patternAccumulate] = STATE(880), + [sym_patternWhere] = STATE(880), + [sym__literal] = STATE(880), + [sym_patternNot] = STATE(880), + [sym_patternOr] = STATE(880), + [sym_patternOrElse] = STATE(880), + [sym_patternAny] = STATE(880), + [sym_patternAnd] = STATE(880), + [sym_patternMaybe] = STATE(880), + [sym_patternAfter] = STATE(880), + [sym_patternBefore] = STATE(880), + [sym_patternContains] = STATE(880), + [sym_patternIncludes] = STATE(880), + [sym_rewrite] = STATE(880), + [sym_patternIfElse] = STATE(880), + [sym_within] = STATE(880), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(880), + [sym_namedArg] = STATE(1262), + [sym_nodeLike] = STATE(880), + [sym_like] = STATE(880), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(880), + [sym_some] = STATE(880), + [sym_every] = STATE(880), + [sym_regexPattern] = STATE(880), + [sym_log] = STATE(880), + [sym_range] = STATE(880), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(880), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(323), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -12340,10 +12514,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(323), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(323), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -12368,70 +12542,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(323), - [sym_top] = ACTIONS(323), - [sym_bottom] = ACTIONS(323), - [sym_intConstant] = ACTIONS(323), - [sym_doubleConstant] = ACTIONS(325), - [sym_stringConstant] = ACTIONS(325), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [35] = { - [sym_sequential] = STATE(900), - [sym_files] = STATE(900), - [sym__pattern] = STATE(900), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(900), - [sym_divOperation] = STATE(900), - [sym_modOperation] = STATE(900), - [sym_addOperation] = STATE(900), - [sym_subOperation] = STATE(900), - [sym_patternAs] = STATE(900), - [sym_patternLimit] = STATE(900), - [sym_assignmentAsPattern] = STATE(900), - [sym_patternAccumulate] = STATE(900), - [sym_patternWhere] = STATE(900), - [sym__literal] = STATE(900), - [sym_patternNot] = STATE(900), - [sym_patternOr] = STATE(900), - [sym_patternOrElse] = STATE(900), - [sym_patternAny] = STATE(900), - [sym_patternAnd] = STATE(900), - [sym_patternMaybe] = STATE(900), - [sym_patternAfter] = STATE(900), - [sym_patternBefore] = STATE(900), - [sym_patternContains] = STATE(900), - [sym_patternIncludes] = STATE(900), - [sym_rewrite] = STATE(900), - [sym_patternIfElse] = STATE(900), - [sym_within] = STATE(900), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(900), - [sym_nodeLike] = STATE(900), - [sym_like] = STATE(900), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(900), - [sym_some] = STATE(900), - [sym_every] = STATE(900), - [sym_regexPattern] = STATE(900), - [sym_log] = STATE(900), - [sym_range] = STATE(900), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(900), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), + [36] = { + [sym_sequential] = STATE(912), + [sym_files] = STATE(912), + [sym__pattern] = STATE(912), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(912), + [sym_divOperation] = STATE(912), + [sym_modOperation] = STATE(912), + [sym_addOperation] = STATE(912), + [sym_subOperation] = STATE(912), + [sym_patternAs] = STATE(912), + [sym_patternLimit] = STATE(912), + [sym_assignmentAsPattern] = STATE(912), + [sym_patternAccumulate] = STATE(912), + [sym_patternWhere] = STATE(912), + [sym__literal] = STATE(912), + [sym_patternNot] = STATE(912), + [sym_patternOr] = STATE(912), + [sym_patternOrElse] = STATE(912), + [sym_patternAny] = STATE(912), + [sym_patternAnd] = STATE(912), + [sym_patternMaybe] = STATE(912), + [sym_patternAfter] = STATE(912), + [sym_patternBefore] = STATE(912), + [sym_patternContains] = STATE(912), + [sym_patternIncludes] = STATE(912), + [sym_rewrite] = STATE(912), + [sym_patternIfElse] = STATE(912), + [sym_within] = STATE(912), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(912), + [sym_nodeLike] = STATE(912), + [sym_like] = STATE(912), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1060), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(912), + [sym_some] = STATE(912), + [sym_every] = STATE(912), + [sym_regexPattern] = STATE(912), + [sym_log] = STATE(912), + [sym_range] = STATE(912), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(912), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -12453,10 +12628,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(327), + [sym_underscore] = ACTIONS(329), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(327), + [sym_booleanConstant] = ACTIONS(329), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -12481,72 +12656,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(327), - [sym_top] = ACTIONS(327), - [sym_bottom] = ACTIONS(327), - [sym_intConstant] = ACTIONS(327), - [sym_doubleConstant] = ACTIONS(329), - [sym_stringConstant] = ACTIONS(329), + [sym_undefined] = ACTIONS(329), + [sym_top] = ACTIONS(329), + [sym_bottom] = ACTIONS(329), + [sym_intConstant] = ACTIONS(329), + [sym_doubleConstant] = ACTIONS(331), + [sym_stringConstant] = ACTIONS(331), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [36] = { - [sym_sequential] = STATE(880), - [sym_files] = STATE(880), - [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(880), - [sym_divOperation] = STATE(880), - [sym_modOperation] = STATE(880), - [sym_addOperation] = STATE(880), - [sym_subOperation] = STATE(880), - [sym_patternAs] = STATE(880), - [sym_patternLimit] = STATE(880), - [sym_assignmentAsPattern] = STATE(880), - [sym_patternAccumulate] = STATE(880), - [sym_patternWhere] = STATE(880), - [sym__literal] = STATE(880), - [sym_patternNot] = STATE(880), - [sym_patternOr] = STATE(880), - [sym_patternOrElse] = STATE(880), - [sym_patternAny] = STATE(880), - [sym_patternAnd] = STATE(880), - [sym_patternMaybe] = STATE(880), - [sym_patternAfter] = STATE(880), - [sym_patternBefore] = STATE(880), - [sym_patternContains] = STATE(880), - [sym_patternIncludes] = STATE(880), - [sym_rewrite] = STATE(880), - [sym_patternIfElse] = STATE(880), - [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1398), - [sym_nodeLike] = STATE(880), - [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(880), - [sym_some] = STATE(880), - [sym_every] = STATE(880), - [sym_regexPattern] = STATE(880), - [sym_log] = STATE(880), - [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [37] = { + [sym_sequential] = STATE(896), + [sym_files] = STATE(896), + [sym__pattern] = STATE(896), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(896), + [sym_divOperation] = STATE(896), + [sym_modOperation] = STATE(896), + [sym_addOperation] = STATE(896), + [sym_subOperation] = STATE(896), + [sym_patternAs] = STATE(896), + [sym_patternLimit] = STATE(896), + [sym_assignmentAsPattern] = STATE(896), + [sym_patternAccumulate] = STATE(896), + [sym_patternWhere] = STATE(896), + [sym__literal] = STATE(896), + [sym_patternNot] = STATE(896), + [sym_patternOr] = STATE(896), + [sym_patternOrElse] = STATE(896), + [sym_patternAny] = STATE(896), + [sym_patternAnd] = STATE(896), + [sym_patternMaybe] = STATE(896), + [sym_patternAfter] = STATE(896), + [sym_patternBefore] = STATE(896), + [sym_patternContains] = STATE(896), + [sym_patternIncludes] = STATE(896), + [sym_rewrite] = STATE(896), + [sym_patternIfElse] = STATE(896), + [sym_within] = STATE(896), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(896), + [sym_nodeLike] = STATE(896), + [sym_like] = STATE(896), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1060), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(896), + [sym_some] = STATE(896), + [sym_every] = STATE(896), + [sym_regexPattern] = STATE(896), + [sym_log] = STATE(896), + [sym_range] = STATE(896), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(896), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(333), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -12566,10 +12742,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(333), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(333), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -12594,185 +12770,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), - [sym_comment] = ACTIONS(3), - }, - [37] = { - [sym_sequential] = STATE(892), - [sym_files] = STATE(892), - [sym__pattern] = STATE(892), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(892), - [sym_divOperation] = STATE(892), - [sym_modOperation] = STATE(892), - [sym_addOperation] = STATE(892), - [sym_subOperation] = STATE(892), - [sym_patternAs] = STATE(892), - [sym_patternLimit] = STATE(892), - [sym_assignmentAsPattern] = STATE(892), - [sym_patternAccumulate] = STATE(892), - [sym_patternWhere] = STATE(892), - [sym__literal] = STATE(892), - [sym_patternNot] = STATE(892), - [sym_patternOr] = STATE(892), - [sym_patternOrElse] = STATE(892), - [sym_patternAny] = STATE(892), - [sym_patternAnd] = STATE(892), - [sym_patternMaybe] = STATE(892), - [sym_patternAfter] = STATE(892), - [sym_patternBefore] = STATE(892), - [sym_patternContains] = STATE(892), - [sym_patternIncludes] = STATE(892), - [sym_rewrite] = STATE(892), - [sym_patternIfElse] = STATE(892), - [sym_within] = STATE(892), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(892), - [sym_nodeLike] = STATE(892), - [sym_like] = STATE(892), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1051), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(892), - [sym_some] = STATE(892), - [sym_every] = STATE(892), - [sym_regexPattern] = STATE(892), - [sym_log] = STATE(892), - [sym_range] = STATE(892), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(892), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(313), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(339), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(339), - [sym_variable] = ACTIONS(263), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(339), - [sym_top] = ACTIONS(339), - [sym_bottom] = ACTIONS(339), - [sym_intConstant] = ACTIONS(339), - [sym_doubleConstant] = ACTIONS(341), - [sym_stringConstant] = ACTIONS(341), + [sym_undefined] = ACTIONS(333), + [sym_top] = ACTIONS(333), + [sym_bottom] = ACTIONS(333), + [sym_intConstant] = ACTIONS(333), + [sym_doubleConstant] = ACTIONS(335), + [sym_stringConstant] = ACTIONS(335), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [38] = { - [sym_sequential] = STATE(880), - [sym_files] = STATE(880), - [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(880), - [sym_divOperation] = STATE(880), - [sym_modOperation] = STATE(880), - [sym_addOperation] = STATE(880), - [sym_subOperation] = STATE(880), - [sym_patternAs] = STATE(880), - [sym_patternLimit] = STATE(880), - [sym_assignmentAsPattern] = STATE(880), - [sym_patternAccumulate] = STATE(880), - [sym_patternWhere] = STATE(880), - [sym__literal] = STATE(880), - [sym_patternNot] = STATE(880), - [sym_patternOr] = STATE(880), - [sym_patternOrElse] = STATE(880), - [sym_patternAny] = STATE(880), - [sym_patternAnd] = STATE(880), - [sym_patternMaybe] = STATE(880), - [sym_patternAfter] = STATE(880), - [sym_patternBefore] = STATE(880), - [sym_patternContains] = STATE(880), - [sym_patternIncludes] = STATE(880), - [sym_rewrite] = STATE(880), - [sym_patternIfElse] = STATE(880), - [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1398), - [sym_nodeLike] = STATE(880), - [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(880), - [sym_some] = STATE(880), - [sym_every] = STATE(880), - [sym_regexPattern] = STATE(880), - [sym_log] = STATE(880), - [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [sym_sequential] = STATE(904), + [sym_files] = STATE(904), + [sym__pattern] = STATE(904), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(904), + [sym_divOperation] = STATE(904), + [sym_modOperation] = STATE(904), + [sym_addOperation] = STATE(904), + [sym_subOperation] = STATE(904), + [sym_patternAs] = STATE(904), + [sym_patternLimit] = STATE(904), + [sym_assignmentAsPattern] = STATE(904), + [sym_patternAccumulate] = STATE(904), + [sym_patternWhere] = STATE(904), + [sym__literal] = STATE(904), + [sym_patternNot] = STATE(904), + [sym_patternOr] = STATE(904), + [sym_patternOrElse] = STATE(904), + [sym_patternAny] = STATE(904), + [sym_patternAnd] = STATE(904), + [sym_patternMaybe] = STATE(904), + [sym_patternAfter] = STATE(904), + [sym_patternBefore] = STATE(904), + [sym_patternContains] = STATE(904), + [sym_patternIncludes] = STATE(904), + [sym_rewrite] = STATE(904), + [sym_patternIfElse] = STATE(904), + [sym_within] = STATE(904), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(904), + [sym_nodeLike] = STATE(904), + [sym_like] = STATE(904), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1060), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(904), + [sym_some] = STATE(904), + [sym_every] = STATE(904), + [sym_regexPattern] = STATE(904), + [sym_log] = STATE(904), + [sym_range] = STATE(904), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(904), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(343), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -12792,10 +12856,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(337), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(337), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -12820,70 +12884,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(337), + [sym_top] = ACTIONS(337), + [sym_bottom] = ACTIONS(337), + [sym_intConstant] = ACTIONS(337), + [sym_doubleConstant] = ACTIONS(339), + [sym_stringConstant] = ACTIONS(339), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [39] = { - [sym_sequential] = STATE(909), - [sym_files] = STATE(909), - [sym__pattern] = STATE(909), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(909), - [sym_divOperation] = STATE(909), - [sym_modOperation] = STATE(909), - [sym_addOperation] = STATE(909), - [sym_subOperation] = STATE(909), - [sym_patternAs] = STATE(909), - [sym_patternLimit] = STATE(909), - [sym_assignmentAsPattern] = STATE(909), - [sym_patternAccumulate] = STATE(909), - [sym_patternWhere] = STATE(909), - [sym__literal] = STATE(909), - [sym_patternNot] = STATE(909), - [sym_patternOr] = STATE(909), - [sym_patternOrElse] = STATE(909), - [sym_patternAny] = STATE(909), - [sym_patternAnd] = STATE(909), - [sym_patternMaybe] = STATE(909), - [sym_patternAfter] = STATE(909), - [sym_patternBefore] = STATE(909), - [sym_patternContains] = STATE(909), - [sym_patternIncludes] = STATE(909), - [sym_rewrite] = STATE(909), - [sym_patternIfElse] = STATE(909), - [sym_within] = STATE(909), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(909), - [sym_nodeLike] = STATE(909), - [sym_like] = STATE(909), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1051), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(909), - [sym_some] = STATE(909), - [sym_every] = STATE(909), - [sym_regexPattern] = STATE(909), - [sym_log] = STATE(909), - [sym_range] = STATE(909), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(909), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), + [sym_sequential] = STATE(887), + [sym_files] = STATE(887), + [sym__pattern] = STATE(887), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(887), + [sym_divOperation] = STATE(887), + [sym_modOperation] = STATE(887), + [sym_addOperation] = STATE(887), + [sym_subOperation] = STATE(887), + [sym_patternAs] = STATE(887), + [sym_patternLimit] = STATE(887), + [sym_assignmentAsPattern] = STATE(887), + [sym_patternAccumulate] = STATE(887), + [sym_patternWhere] = STATE(887), + [sym__literal] = STATE(887), + [sym_patternNot] = STATE(887), + [sym_patternOr] = STATE(887), + [sym_patternOrElse] = STATE(887), + [sym_patternAny] = STATE(887), + [sym_patternAnd] = STATE(887), + [sym_patternMaybe] = STATE(887), + [sym_patternAfter] = STATE(887), + [sym_patternBefore] = STATE(887), + [sym_patternContains] = STATE(887), + [sym_patternIncludes] = STATE(887), + [sym_rewrite] = STATE(887), + [sym_patternIfElse] = STATE(887), + [sym_within] = STATE(887), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(887), + [sym_nodeLike] = STATE(887), + [sym_like] = STATE(887), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1060), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(887), + [sym_some] = STATE(887), + [sym_every] = STATE(887), + [sym_regexPattern] = STATE(887), + [sym_log] = STATE(887), + [sym_range] = STATE(887), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(887), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -12905,10 +12970,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(345), + [sym_underscore] = ACTIONS(341), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(345), + [sym_booleanConstant] = ACTIONS(341), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -12933,70 +12998,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(345), - [sym_top] = ACTIONS(345), - [sym_bottom] = ACTIONS(345), - [sym_intConstant] = ACTIONS(345), - [sym_doubleConstant] = ACTIONS(347), - [sym_stringConstant] = ACTIONS(347), + [sym_undefined] = ACTIONS(341), + [sym_top] = ACTIONS(341), + [sym_bottom] = ACTIONS(341), + [sym_intConstant] = ACTIONS(341), + [sym_doubleConstant] = ACTIONS(343), + [sym_stringConstant] = ACTIONS(343), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [40] = { - [sym_sequential] = STATE(895), - [sym_files] = STATE(895), - [sym__pattern] = STATE(895), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(895), - [sym_divOperation] = STATE(895), - [sym_modOperation] = STATE(895), - [sym_addOperation] = STATE(895), - [sym_subOperation] = STATE(895), - [sym_patternAs] = STATE(895), - [sym_patternLimit] = STATE(895), - [sym_assignmentAsPattern] = STATE(895), - [sym_patternAccumulate] = STATE(895), - [sym_patternWhere] = STATE(895), - [sym__literal] = STATE(895), - [sym_patternNot] = STATE(895), - [sym_patternOr] = STATE(895), - [sym_patternOrElse] = STATE(895), - [sym_patternAny] = STATE(895), - [sym_patternAnd] = STATE(895), - [sym_patternMaybe] = STATE(895), - [sym_patternAfter] = STATE(895), - [sym_patternBefore] = STATE(895), - [sym_patternContains] = STATE(895), - [sym_patternIncludes] = STATE(895), - [sym_rewrite] = STATE(895), - [sym_patternIfElse] = STATE(895), - [sym_within] = STATE(895), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(895), - [sym_nodeLike] = STATE(895), - [sym_like] = STATE(895), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(895), - [sym_some] = STATE(895), - [sym_every] = STATE(895), - [sym_regexPattern] = STATE(895), - [sym_log] = STATE(895), - [sym_range] = STATE(895), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(895), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), + [sym_sequential] = STATE(907), + [sym_files] = STATE(907), + [sym__pattern] = STATE(907), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(907), + [sym_divOperation] = STATE(907), + [sym_modOperation] = STATE(907), + [sym_addOperation] = STATE(907), + [sym_subOperation] = STATE(907), + [sym_patternAs] = STATE(907), + [sym_patternLimit] = STATE(907), + [sym_assignmentAsPattern] = STATE(907), + [sym_patternAccumulate] = STATE(907), + [sym_patternWhere] = STATE(907), + [sym__literal] = STATE(907), + [sym_patternNot] = STATE(907), + [sym_patternOr] = STATE(907), + [sym_patternOrElse] = STATE(907), + [sym_patternAny] = STATE(907), + [sym_patternAnd] = STATE(907), + [sym_patternMaybe] = STATE(907), + [sym_patternAfter] = STATE(907), + [sym_patternBefore] = STATE(907), + [sym_patternContains] = STATE(907), + [sym_patternIncludes] = STATE(907), + [sym_rewrite] = STATE(907), + [sym_patternIfElse] = STATE(907), + [sym_within] = STATE(907), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(907), + [sym_nodeLike] = STATE(907), + [sym_like] = STATE(907), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(907), + [sym_some] = STATE(907), + [sym_every] = STATE(907), + [sym_regexPattern] = STATE(907), + [sym_log] = STATE(907), + [sym_range] = STATE(907), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(907), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -13018,10 +13084,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(349), + [sym_underscore] = ACTIONS(347), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(349), + [sym_booleanConstant] = ACTIONS(347), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -13046,72 +13112,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(349), - [sym_top] = ACTIONS(349), - [sym_bottom] = ACTIONS(349), - [sym_intConstant] = ACTIONS(349), - [sym_doubleConstant] = ACTIONS(351), - [sym_stringConstant] = ACTIONS(351), + [sym_undefined] = ACTIONS(347), + [sym_top] = ACTIONS(347), + [sym_bottom] = ACTIONS(347), + [sym_intConstant] = ACTIONS(347), + [sym_doubleConstant] = ACTIONS(349), + [sym_stringConstant] = ACTIONS(349), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [41] = { - [sym_sequential] = STATE(880), - [sym_files] = STATE(880), - [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(880), - [sym_divOperation] = STATE(880), - [sym_modOperation] = STATE(880), - [sym_addOperation] = STATE(880), - [sym_subOperation] = STATE(880), - [sym_patternAs] = STATE(880), - [sym_patternLimit] = STATE(880), - [sym_assignmentAsPattern] = STATE(880), - [sym_patternAccumulate] = STATE(880), - [sym_patternWhere] = STATE(880), - [sym__literal] = STATE(880), - [sym_patternNot] = STATE(880), - [sym_patternOr] = STATE(880), - [sym_patternOrElse] = STATE(880), - [sym_patternAny] = STATE(880), - [sym_patternAnd] = STATE(880), - [sym_patternMaybe] = STATE(880), - [sym_patternAfter] = STATE(880), - [sym_patternBefore] = STATE(880), - [sym_patternContains] = STATE(880), - [sym_patternIncludes] = STATE(880), - [sym_rewrite] = STATE(880), - [sym_patternIfElse] = STATE(880), - [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1398), - [sym_nodeLike] = STATE(880), - [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(880), - [sym_some] = STATE(880), - [sym_every] = STATE(880), - [sym_regexPattern] = STATE(880), - [sym_log] = STATE(880), - [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [sym_sequential] = STATE(889), + [sym_files] = STATE(889), + [sym__pattern] = STATE(889), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(889), + [sym_divOperation] = STATE(889), + [sym_modOperation] = STATE(889), + [sym_addOperation] = STATE(889), + [sym_subOperation] = STATE(889), + [sym_patternAs] = STATE(889), + [sym_patternLimit] = STATE(889), + [sym_assignmentAsPattern] = STATE(889), + [sym_patternAccumulate] = STATE(889), + [sym_patternWhere] = STATE(889), + [sym__literal] = STATE(889), + [sym_patternNot] = STATE(889), + [sym_patternOr] = STATE(889), + [sym_patternOrElse] = STATE(889), + [sym_patternAny] = STATE(889), + [sym_patternAnd] = STATE(889), + [sym_patternMaybe] = STATE(889), + [sym_patternAfter] = STATE(889), + [sym_patternBefore] = STATE(889), + [sym_patternContains] = STATE(889), + [sym_patternIncludes] = STATE(889), + [sym_rewrite] = STATE(889), + [sym_patternIfElse] = STATE(889), + [sym_within] = STATE(889), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(889), + [sym_nodeLike] = STATE(889), + [sym_like] = STATE(889), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1060), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(889), + [sym_some] = STATE(889), + [sym_every] = STATE(889), + [sym_regexPattern] = STATE(889), + [sym_log] = STATE(889), + [sym_range] = STATE(889), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(889), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(353), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -13131,10 +13198,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(351), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(351), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -13159,72 +13226,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(351), + [sym_top] = ACTIONS(351), + [sym_bottom] = ACTIONS(351), + [sym_intConstant] = ACTIONS(351), + [sym_doubleConstant] = ACTIONS(353), + [sym_stringConstant] = ACTIONS(353), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [42] = { - [sym_sequential] = STATE(880), - [sym_files] = STATE(880), - [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(880), - [sym_divOperation] = STATE(880), - [sym_modOperation] = STATE(880), - [sym_addOperation] = STATE(880), - [sym_subOperation] = STATE(880), - [sym_patternAs] = STATE(880), - [sym_patternLimit] = STATE(880), - [sym_assignmentAsPattern] = STATE(880), - [sym_patternAccumulate] = STATE(880), - [sym_patternWhere] = STATE(880), - [sym__literal] = STATE(880), - [sym_patternNot] = STATE(880), - [sym_patternOr] = STATE(880), - [sym_patternOrElse] = STATE(880), - [sym_patternAny] = STATE(880), - [sym_patternAnd] = STATE(880), - [sym_patternMaybe] = STATE(880), - [sym_patternAfter] = STATE(880), - [sym_patternBefore] = STATE(880), - [sym_patternContains] = STATE(880), - [sym_patternIncludes] = STATE(880), - [sym_rewrite] = STATE(880), - [sym_patternIfElse] = STATE(880), - [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1398), - [sym_nodeLike] = STATE(880), - [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(880), - [sym_some] = STATE(880), - [sym_every] = STATE(880), - [sym_regexPattern] = STATE(880), - [sym_log] = STATE(880), - [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [sym_sequential] = STATE(878), + [sym_files] = STATE(878), + [sym__pattern] = STATE(878), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(878), + [sym_divOperation] = STATE(878), + [sym_modOperation] = STATE(878), + [sym_addOperation] = STATE(878), + [sym_subOperation] = STATE(878), + [sym_patternAs] = STATE(878), + [sym_patternLimit] = STATE(878), + [sym_assignmentAsPattern] = STATE(878), + [sym_patternAccumulate] = STATE(878), + [sym_patternWhere] = STATE(878), + [sym__literal] = STATE(878), + [sym_patternNot] = STATE(878), + [sym_patternOr] = STATE(878), + [sym_patternOrElse] = STATE(878), + [sym_patternAny] = STATE(878), + [sym_patternAnd] = STATE(878), + [sym_patternMaybe] = STATE(878), + [sym_patternAfter] = STATE(878), + [sym_patternBefore] = STATE(878), + [sym_patternContains] = STATE(878), + [sym_patternIncludes] = STATE(878), + [sym_rewrite] = STATE(878), + [sym_patternIfElse] = STATE(878), + [sym_within] = STATE(878), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(878), + [sym_nodeLike] = STATE(878), + [sym_like] = STATE(878), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(878), + [sym_some] = STATE(878), + [sym_every] = STATE(878), + [sym_dotdotdot] = STATE(1231), + [sym_regexPattern] = STATE(878), + [sym_log] = STATE(878), + [sym_range] = STATE(878), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(878), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(355), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -13240,14 +13307,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), + [anon_sym_DOT] = ACTIONS(245), [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [aux_sym_dotdotdot_token1] = ACTIONS(255), + [sym_underscore] = ACTIONS(257), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(257), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -13272,14 +13340,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(257), + [sym_top] = ACTIONS(257), + [sym_bottom] = ACTIONS(257), + [sym_intConstant] = ACTIONS(257), + [sym_doubleConstant] = ACTIONS(267), + [sym_stringConstant] = ACTIONS(267), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), @@ -13288,7 +13357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_sequential] = STATE(880), [sym_files] = STATE(880), [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), + [sym__container] = STATE(1119), [sym_mulOperation] = STATE(880), [sym_divOperation] = STATE(880), [sym_modOperation] = STATE(880), @@ -13313,31 +13382,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_rewrite] = STATE(880), [sym_patternIfElse] = STATE(880), [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), + [sym__bubbleScope] = STATE(129), [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1398), + [sym_namedArg] = STATE(1262), [sym_nodeLike] = STATE(880), [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), [sym_dot] = STATE(880), [sym_some] = STATE(880), [sym_every] = STATE(880), [sym_regexPattern] = STATE(880), [sym_log] = STATE(880), [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(355), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -13357,10 +13426,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -13385,70 +13454,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [44] = { - [sym_sequential] = STATE(891), - [sym_files] = STATE(891), - [sym__pattern] = STATE(891), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(891), - [sym_divOperation] = STATE(891), - [sym_modOperation] = STATE(891), - [sym_addOperation] = STATE(891), - [sym_subOperation] = STATE(891), - [sym_patternAs] = STATE(891), - [sym_patternLimit] = STATE(891), - [sym_assignmentAsPattern] = STATE(891), - [sym_patternAccumulate] = STATE(891), - [sym_patternWhere] = STATE(891), - [sym__literal] = STATE(891), - [sym_patternNot] = STATE(891), - [sym_patternOr] = STATE(891), - [sym_patternOrElse] = STATE(891), - [sym_patternAny] = STATE(891), - [sym_patternAnd] = STATE(891), - [sym_patternMaybe] = STATE(891), - [sym_patternAfter] = STATE(891), - [sym_patternBefore] = STATE(891), - [sym_patternContains] = STATE(891), - [sym_patternIncludes] = STATE(891), - [sym_rewrite] = STATE(891), - [sym_patternIfElse] = STATE(891), - [sym_within] = STATE(891), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(891), - [sym_nodeLike] = STATE(891), - [sym_like] = STATE(891), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1051), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(891), - [sym_some] = STATE(891), - [sym_every] = STATE(891), - [sym_regexPattern] = STATE(891), - [sym_log] = STATE(891), - [sym_range] = STATE(891), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(891), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), + [sym_sequential] = STATE(911), + [sym_files] = STATE(911), + [sym__pattern] = STATE(911), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(911), + [sym_divOperation] = STATE(911), + [sym_modOperation] = STATE(911), + [sym_addOperation] = STATE(911), + [sym_subOperation] = STATE(911), + [sym_patternAs] = STATE(911), + [sym_patternLimit] = STATE(911), + [sym_assignmentAsPattern] = STATE(911), + [sym_patternAccumulate] = STATE(911), + [sym_patternWhere] = STATE(911), + [sym__literal] = STATE(911), + [sym_patternNot] = STATE(911), + [sym_patternOr] = STATE(911), + [sym_patternOrElse] = STATE(911), + [sym_patternAny] = STATE(911), + [sym_patternAnd] = STATE(911), + [sym_patternMaybe] = STATE(911), + [sym_patternAfter] = STATE(911), + [sym_patternBefore] = STATE(911), + [sym_patternContains] = STATE(911), + [sym_patternIncludes] = STATE(911), + [sym_rewrite] = STATE(911), + [sym_patternIfElse] = STATE(911), + [sym_within] = STATE(911), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(911), + [sym_nodeLike] = STATE(911), + [sym_like] = STATE(911), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1060), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(911), + [sym_some] = STATE(911), + [sym_every] = STATE(911), + [sym_regexPattern] = STATE(911), + [sym_log] = STATE(911), + [sym_range] = STATE(911), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(911), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -13470,10 +13540,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(359), + [sym_underscore] = ACTIONS(357), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(359), + [sym_booleanConstant] = ACTIONS(357), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -13498,70 +13568,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(359), - [sym_top] = ACTIONS(359), - [sym_bottom] = ACTIONS(359), - [sym_intConstant] = ACTIONS(359), - [sym_doubleConstant] = ACTIONS(361), - [sym_stringConstant] = ACTIONS(361), + [sym_undefined] = ACTIONS(357), + [sym_top] = ACTIONS(357), + [sym_bottom] = ACTIONS(357), + [sym_intConstant] = ACTIONS(357), + [sym_doubleConstant] = ACTIONS(359), + [sym_stringConstant] = ACTIONS(359), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [45] = { - [sym_sequential] = STATE(889), - [sym_files] = STATE(889), - [sym__pattern] = STATE(889), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(889), - [sym_divOperation] = STATE(889), - [sym_modOperation] = STATE(889), - [sym_addOperation] = STATE(889), - [sym_subOperation] = STATE(889), - [sym_patternAs] = STATE(889), - [sym_patternLimit] = STATE(889), - [sym_assignmentAsPattern] = STATE(889), - [sym_patternAccumulate] = STATE(889), - [sym_patternWhere] = STATE(889), - [sym__literal] = STATE(889), - [sym_patternNot] = STATE(889), - [sym_patternOr] = STATE(889), - [sym_patternOrElse] = STATE(889), - [sym_patternAny] = STATE(889), - [sym_patternAnd] = STATE(889), - [sym_patternMaybe] = STATE(889), - [sym_patternAfter] = STATE(889), - [sym_patternBefore] = STATE(889), - [sym_patternContains] = STATE(889), - [sym_patternIncludes] = STATE(889), - [sym_rewrite] = STATE(889), - [sym_patternIfElse] = STATE(889), - [sym_within] = STATE(889), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(889), - [sym_nodeLike] = STATE(889), - [sym_like] = STATE(889), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(889), - [sym_some] = STATE(889), - [sym_every] = STATE(889), - [sym_regexPattern] = STATE(889), - [sym_log] = STATE(889), - [sym_range] = STATE(889), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(889), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), + [sym_sequential] = STATE(876), + [sym_files] = STATE(876), + [sym__pattern] = STATE(876), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(876), + [sym_divOperation] = STATE(876), + [sym_modOperation] = STATE(876), + [sym_addOperation] = STATE(876), + [sym_subOperation] = STATE(876), + [sym_patternAs] = STATE(876), + [sym_patternLimit] = STATE(876), + [sym_assignmentAsPattern] = STATE(876), + [sym_patternAccumulate] = STATE(876), + [sym_patternWhere] = STATE(876), + [sym__literal] = STATE(876), + [sym_patternNot] = STATE(876), + [sym_patternOr] = STATE(876), + [sym_patternOrElse] = STATE(876), + [sym_patternAny] = STATE(876), + [sym_patternAnd] = STATE(876), + [sym_patternMaybe] = STATE(876), + [sym_patternAfter] = STATE(876), + [sym_patternBefore] = STATE(876), + [sym_patternContains] = STATE(876), + [sym_patternIncludes] = STATE(876), + [sym_rewrite] = STATE(876), + [sym_patternIfElse] = STATE(876), + [sym_within] = STATE(876), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(876), + [sym_nodeLike] = STATE(876), + [sym_like] = STATE(876), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(876), + [sym_some] = STATE(876), + [sym_every] = STATE(876), + [sym_regexPattern] = STATE(876), + [sym_log] = STATE(876), + [sym_range] = STATE(876), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(876), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_COMMA] = ACTIONS(363), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -13581,12 +13651,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like] = ACTIONS(243), [anon_sym_DOT] = ACTIONS(315), [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_RBRACK] = ACTIONS(363), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(363), + [sym_underscore] = ACTIONS(365), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(363), + [sym_booleanConstant] = ACTIONS(365), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -13611,72 +13682,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(363), - [sym_top] = ACTIONS(363), - [sym_bottom] = ACTIONS(363), - [sym_intConstant] = ACTIONS(363), - [sym_doubleConstant] = ACTIONS(365), - [sym_stringConstant] = ACTIONS(365), + [sym_undefined] = ACTIONS(365), + [sym_top] = ACTIONS(365), + [sym_bottom] = ACTIONS(365), + [sym_intConstant] = ACTIONS(365), + [sym_doubleConstant] = ACTIONS(367), + [sym_stringConstant] = ACTIONS(367), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [46] = { - [sym_sequential] = STATE(887), - [sym_files] = STATE(887), - [sym__pattern] = STATE(887), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(887), - [sym_divOperation] = STATE(887), - [sym_modOperation] = STATE(887), - [sym_addOperation] = STATE(887), - [sym_subOperation] = STATE(887), - [sym_patternAs] = STATE(887), - [sym_patternLimit] = STATE(887), - [sym_assignmentAsPattern] = STATE(887), - [sym_patternAccumulate] = STATE(887), - [sym_patternWhere] = STATE(887), - [sym__literal] = STATE(887), - [sym_patternNot] = STATE(887), - [sym_patternOr] = STATE(887), - [sym_patternOrElse] = STATE(887), - [sym_patternAny] = STATE(887), - [sym_patternAnd] = STATE(887), - [sym_patternMaybe] = STATE(887), - [sym_patternAfter] = STATE(887), - [sym_patternBefore] = STATE(887), - [sym_patternContains] = STATE(887), - [sym_patternIncludes] = STATE(887), - [sym_rewrite] = STATE(887), - [sym_patternIfElse] = STATE(887), - [sym_within] = STATE(887), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(887), - [sym_nodeLike] = STATE(887), - [sym_like] = STATE(887), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(887), - [sym_some] = STATE(887), - [sym_every] = STATE(887), - [sym_regexPattern] = STATE(887), - [sym_log] = STATE(887), - [sym_range] = STATE(887), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(887), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(880), + [sym_files] = STATE(880), + [sym__pattern] = STATE(880), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(880), + [sym_divOperation] = STATE(880), + [sym_modOperation] = STATE(880), + [sym_addOperation] = STATE(880), + [sym_subOperation] = STATE(880), + [sym_patternAs] = STATE(880), + [sym_patternLimit] = STATE(880), + [sym_assignmentAsPattern] = STATE(880), + [sym_patternAccumulate] = STATE(880), + [sym_patternWhere] = STATE(880), + [sym__literal] = STATE(880), + [sym_patternNot] = STATE(880), + [sym_patternOr] = STATE(880), + [sym_patternOrElse] = STATE(880), + [sym_patternAny] = STATE(880), + [sym_patternAnd] = STATE(880), + [sym_patternMaybe] = STATE(880), + [sym_patternAfter] = STATE(880), + [sym_patternBefore] = STATE(880), + [sym_patternContains] = STATE(880), + [sym_patternIncludes] = STATE(880), + [sym_rewrite] = STATE(880), + [sym_patternIfElse] = STATE(880), + [sym_within] = STATE(880), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(880), + [sym_namedArg] = STATE(1262), + [sym_nodeLike] = STATE(880), + [sym_like] = STATE(880), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(880), + [sym_some] = STATE(880), + [sym_every] = STATE(880), + [sym_regexPattern] = STATE(880), + [sym_log] = STATE(880), + [sym_range] = STATE(880), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(880), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(369), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -13696,10 +13768,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(367), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(367), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -13724,72 +13796,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(367), - [sym_top] = ACTIONS(367), - [sym_bottom] = ACTIONS(367), - [sym_intConstant] = ACTIONS(367), - [sym_doubleConstant] = ACTIONS(369), - [sym_stringConstant] = ACTIONS(369), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [47] = { - [sym_sequential] = STATE(899), - [sym_files] = STATE(899), - [sym__pattern] = STATE(899), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(899), - [sym_divOperation] = STATE(899), - [sym_modOperation] = STATE(899), - [sym_addOperation] = STATE(899), - [sym_subOperation] = STATE(899), - [sym_patternAs] = STATE(899), - [sym_patternLimit] = STATE(899), - [sym_assignmentAsPattern] = STATE(899), - [sym_patternAccumulate] = STATE(899), - [sym_patternWhere] = STATE(899), - [sym__literal] = STATE(899), - [sym_patternNot] = STATE(899), - [sym_patternOr] = STATE(899), - [sym_patternOrElse] = STATE(899), - [sym_patternAny] = STATE(899), - [sym_patternAnd] = STATE(899), - [sym_patternMaybe] = STATE(899), - [sym_patternAfter] = STATE(899), - [sym_patternBefore] = STATE(899), - [sym_patternContains] = STATE(899), - [sym_patternIncludes] = STATE(899), - [sym_rewrite] = STATE(899), - [sym_patternIfElse] = STATE(899), - [sym_within] = STATE(899), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(899), - [sym_nodeLike] = STATE(899), - [sym_like] = STATE(899), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(899), - [sym_some] = STATE(899), - [sym_every] = STATE(899), - [sym_regexPattern] = STATE(899), - [sym_log] = STATE(899), - [sym_range] = STATE(899), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(899), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(880), + [sym_files] = STATE(880), + [sym__pattern] = STATE(880), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(880), + [sym_divOperation] = STATE(880), + [sym_modOperation] = STATE(880), + [sym_addOperation] = STATE(880), + [sym_subOperation] = STATE(880), + [sym_patternAs] = STATE(880), + [sym_patternLimit] = STATE(880), + [sym_assignmentAsPattern] = STATE(880), + [sym_patternAccumulate] = STATE(880), + [sym_patternWhere] = STATE(880), + [sym__literal] = STATE(880), + [sym_patternNot] = STATE(880), + [sym_patternOr] = STATE(880), + [sym_patternOrElse] = STATE(880), + [sym_patternAny] = STATE(880), + [sym_patternAnd] = STATE(880), + [sym_patternMaybe] = STATE(880), + [sym_patternAfter] = STATE(880), + [sym_patternBefore] = STATE(880), + [sym_patternContains] = STATE(880), + [sym_patternIncludes] = STATE(880), + [sym_rewrite] = STATE(880), + [sym_patternIfElse] = STATE(880), + [sym_within] = STATE(880), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(880), + [sym_namedArg] = STATE(1262), + [sym_nodeLike] = STATE(880), + [sym_like] = STATE(880), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(880), + [sym_some] = STATE(880), + [sym_every] = STATE(880), + [sym_regexPattern] = STATE(880), + [sym_log] = STATE(880), + [sym_range] = STATE(880), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(880), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(371), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -13809,10 +13882,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(371), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(371), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -13837,70 +13910,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(371), - [sym_top] = ACTIONS(371), - [sym_bottom] = ACTIONS(371), - [sym_intConstant] = ACTIONS(371), - [sym_doubleConstant] = ACTIONS(373), - [sym_stringConstant] = ACTIONS(373), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [48] = { - [sym_sequential] = STATE(890), - [sym_files] = STATE(890), - [sym__pattern] = STATE(890), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(890), - [sym_divOperation] = STATE(890), - [sym_modOperation] = STATE(890), - [sym_addOperation] = STATE(890), - [sym_subOperation] = STATE(890), - [sym_patternAs] = STATE(890), - [sym_patternLimit] = STATE(890), - [sym_assignmentAsPattern] = STATE(890), - [sym_patternAccumulate] = STATE(890), - [sym_patternWhere] = STATE(890), - [sym__literal] = STATE(890), - [sym_patternNot] = STATE(890), - [sym_patternOr] = STATE(890), - [sym_patternOrElse] = STATE(890), - [sym_patternAny] = STATE(890), - [sym_patternAnd] = STATE(890), - [sym_patternMaybe] = STATE(890), - [sym_patternAfter] = STATE(890), - [sym_patternBefore] = STATE(890), - [sym_patternContains] = STATE(890), - [sym_patternIncludes] = STATE(890), - [sym_rewrite] = STATE(890), - [sym_patternIfElse] = STATE(890), - [sym_within] = STATE(890), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(890), - [sym_nodeLike] = STATE(890), - [sym_like] = STATE(890), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(890), - [sym_some] = STATE(890), - [sym_every] = STATE(890), - [sym_regexPattern] = STATE(890), - [sym_log] = STATE(890), - [sym_range] = STATE(890), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(890), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), + [sym_sequential] = STATE(903), + [sym_files] = STATE(903), + [sym__pattern] = STATE(903), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(903), + [sym_divOperation] = STATE(903), + [sym_modOperation] = STATE(903), + [sym_addOperation] = STATE(903), + [sym_subOperation] = STATE(903), + [sym_patternAs] = STATE(903), + [sym_patternLimit] = STATE(903), + [sym_assignmentAsPattern] = STATE(903), + [sym_patternAccumulate] = STATE(903), + [sym_patternWhere] = STATE(903), + [sym__literal] = STATE(903), + [sym_patternNot] = STATE(903), + [sym_patternOr] = STATE(903), + [sym_patternOrElse] = STATE(903), + [sym_patternAny] = STATE(903), + [sym_patternAnd] = STATE(903), + [sym_patternMaybe] = STATE(903), + [sym_patternAfter] = STATE(903), + [sym_patternBefore] = STATE(903), + [sym_patternContains] = STATE(903), + [sym_patternIncludes] = STATE(903), + [sym_rewrite] = STATE(903), + [sym_patternIfElse] = STATE(903), + [sym_within] = STATE(903), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(903), + [sym_nodeLike] = STATE(903), + [sym_like] = STATE(903), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1060), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(903), + [sym_some] = STATE(903), + [sym_every] = STATE(903), + [sym_regexPattern] = STATE(903), + [sym_log] = STATE(903), + [sym_range] = STATE(903), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(903), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -13922,10 +13996,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(375), + [sym_underscore] = ACTIONS(373), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(375), + [sym_booleanConstant] = ACTIONS(373), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -13950,136 +14024,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(375), - [sym_top] = ACTIONS(375), - [sym_bottom] = ACTIONS(375), - [sym_intConstant] = ACTIONS(375), - [sym_doubleConstant] = ACTIONS(377), - [sym_stringConstant] = ACTIONS(377), + [sym_undefined] = ACTIONS(373), + [sym_top] = ACTIONS(373), + [sym_bottom] = ACTIONS(373), + [sym_intConstant] = ACTIONS(373), + [sym_doubleConstant] = ACTIONS(375), + [sym_stringConstant] = ACTIONS(375), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [49] = { - [sym_sequential] = STATE(877), - [sym_files] = STATE(877), - [sym__pattern] = STATE(877), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(877), - [sym_divOperation] = STATE(877), - [sym_modOperation] = STATE(877), - [sym_addOperation] = STATE(877), - [sym_subOperation] = STATE(877), - [sym_patternAs] = STATE(877), - [sym_patternLimit] = STATE(877), - [sym_assignmentAsPattern] = STATE(877), - [sym_patternAccumulate] = STATE(877), - [sym_patternWhere] = STATE(877), - [sym__literal] = STATE(877), - [sym_patternNot] = STATE(877), - [sym_patternOr] = STATE(877), - [sym_patternOrElse] = STATE(877), - [sym_patternAny] = STATE(877), - [sym_patternAnd] = STATE(877), - [sym_patternMaybe] = STATE(877), - [sym_patternAfter] = STATE(877), - [sym_patternBefore] = STATE(877), - [sym_patternContains] = STATE(877), - [sym_patternIncludes] = STATE(877), - [sym_rewrite] = STATE(877), - [sym_patternIfElse] = STATE(877), - [sym_within] = STATE(877), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(877), - [sym_nodeLike] = STATE(877), - [sym_like] = STATE(877), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(877), - [sym_some] = STATE(877), - [sym_every] = STATE(877), - [sym_dotdotdot] = STATE(1243), - [sym_regexPattern] = STATE(877), - [sym_log] = STATE(877), - [sym_range] = STATE(877), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(877), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [aux_sym_dotdotdot_token1] = ACTIONS(255), - [sym_underscore] = ACTIONS(257), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(257), - [sym_variable] = ACTIONS(263), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(257), - [sym_top] = ACTIONS(257), - [sym_bottom] = ACTIONS(257), - [sym_intConstant] = ACTIONS(257), - [sym_doubleConstant] = ACTIONS(267), - [sym_stringConstant] = ACTIONS(267), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), - [sym_comment] = ACTIONS(3), - }, - [50] = { [sym_sequential] = STATE(880), [sym_files] = STATE(880), [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), + [sym__container] = STATE(1119), [sym_mulOperation] = STATE(880), [sym_divOperation] = STATE(880), [sym_modOperation] = STATE(880), @@ -14104,31 +14066,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_rewrite] = STATE(880), [sym_patternIfElse] = STATE(880), [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), + [sym__bubbleScope] = STATE(129), [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1030), + [sym_namedArg] = STATE(1262), [sym_nodeLike] = STATE(880), [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), [sym_dot] = STATE(880), [sym_some] = STATE(880), [sym_every] = STATE(880), [sym_regexPattern] = STATE(880), [sym_log] = STATE(880), [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -14148,10 +14110,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -14176,70 +14138,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [51] = { - [sym_sequential] = STATE(885), - [sym_files] = STATE(885), - [sym__pattern] = STATE(885), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(885), - [sym_divOperation] = STATE(885), - [sym_modOperation] = STATE(885), - [sym_addOperation] = STATE(885), - [sym_subOperation] = STATE(885), - [sym_patternAs] = STATE(885), - [sym_patternLimit] = STATE(885), - [sym_assignmentAsPattern] = STATE(885), - [sym_patternAccumulate] = STATE(885), - [sym_patternWhere] = STATE(885), - [sym__literal] = STATE(885), - [sym_patternNot] = STATE(885), - [sym_patternOr] = STATE(885), - [sym_patternOrElse] = STATE(885), - [sym_patternAny] = STATE(885), - [sym_patternAnd] = STATE(885), - [sym_patternMaybe] = STATE(885), - [sym_patternAfter] = STATE(885), - [sym_patternBefore] = STATE(885), - [sym_patternContains] = STATE(885), - [sym_patternIncludes] = STATE(885), - [sym_rewrite] = STATE(885), - [sym_patternIfElse] = STATE(885), - [sym_within] = STATE(885), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(885), - [sym_nodeLike] = STATE(885), - [sym_like] = STATE(885), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(885), - [sym_some] = STATE(885), - [sym_every] = STATE(885), - [sym_regexPattern] = STATE(885), - [sym_log] = STATE(885), - [sym_range] = STATE(885), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(885), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), + [50] = { + [sym_sequential] = STATE(892), + [sym_files] = STATE(892), + [sym__pattern] = STATE(892), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(892), + [sym_divOperation] = STATE(892), + [sym_modOperation] = STATE(892), + [sym_addOperation] = STATE(892), + [sym_subOperation] = STATE(892), + [sym_patternAs] = STATE(892), + [sym_patternLimit] = STATE(892), + [sym_assignmentAsPattern] = STATE(892), + [sym_patternAccumulate] = STATE(892), + [sym_patternWhere] = STATE(892), + [sym__literal] = STATE(892), + [sym_patternNot] = STATE(892), + [sym_patternOr] = STATE(892), + [sym_patternOrElse] = STATE(892), + [sym_patternAny] = STATE(892), + [sym_patternAnd] = STATE(892), + [sym_patternMaybe] = STATE(892), + [sym_patternAfter] = STATE(892), + [sym_patternBefore] = STATE(892), + [sym_patternContains] = STATE(892), + [sym_patternIncludes] = STATE(892), + [sym_rewrite] = STATE(892), + [sym_patternIfElse] = STATE(892), + [sym_within] = STATE(892), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(892), + [sym_nodeLike] = STATE(892), + [sym_like] = STATE(892), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1060), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(892), + [sym_some] = STATE(892), + [sym_every] = STATE(892), + [sym_regexPattern] = STATE(892), + [sym_log] = STATE(892), + [sym_range] = STATE(892), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(892), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -14261,10 +14224,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(381), + [sym_underscore] = ACTIONS(379), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(381), + [sym_booleanConstant] = ACTIONS(379), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -14289,72 +14252,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(381), - [sym_top] = ACTIONS(381), - [sym_bottom] = ACTIONS(381), - [sym_intConstant] = ACTIONS(381), - [sym_doubleConstant] = ACTIONS(383), - [sym_stringConstant] = ACTIONS(383), + [sym_undefined] = ACTIONS(379), + [sym_top] = ACTIONS(379), + [sym_bottom] = ACTIONS(379), + [sym_intConstant] = ACTIONS(379), + [sym_doubleConstant] = ACTIONS(381), + [sym_stringConstant] = ACTIONS(381), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [52] = { - [sym_sequential] = STATE(880), - [sym_files] = STATE(880), - [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(880), - [sym_divOperation] = STATE(880), - [sym_modOperation] = STATE(880), - [sym_addOperation] = STATE(880), - [sym_subOperation] = STATE(880), - [sym_patternAs] = STATE(880), - [sym_patternLimit] = STATE(880), - [sym_assignmentAsPattern] = STATE(880), - [sym_patternAccumulate] = STATE(880), - [sym_patternWhere] = STATE(880), - [sym__literal] = STATE(880), - [sym_patternNot] = STATE(880), - [sym_patternOr] = STATE(880), - [sym_patternOrElse] = STATE(880), - [sym_patternAny] = STATE(880), - [sym_patternAnd] = STATE(880), - [sym_patternMaybe] = STATE(880), - [sym_patternAfter] = STATE(880), - [sym_patternBefore] = STATE(880), - [sym_patternContains] = STATE(880), - [sym_patternIncludes] = STATE(880), - [sym_rewrite] = STATE(880), - [sym_patternIfElse] = STATE(880), - [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1124), - [sym_nodeLike] = STATE(880), - [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(880), - [sym_some] = STATE(880), - [sym_every] = STATE(880), - [sym_regexPattern] = STATE(880), - [sym_log] = STATE(880), - [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [51] = { + [sym_sequential] = STATE(895), + [sym_files] = STATE(895), + [sym__pattern] = STATE(895), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(895), + [sym_divOperation] = STATE(895), + [sym_modOperation] = STATE(895), + [sym_addOperation] = STATE(895), + [sym_subOperation] = STATE(895), + [sym_patternAs] = STATE(895), + [sym_patternLimit] = STATE(895), + [sym_assignmentAsPattern] = STATE(895), + [sym_patternAccumulate] = STATE(895), + [sym_patternWhere] = STATE(895), + [sym__literal] = STATE(895), + [sym_patternNot] = STATE(895), + [sym_patternOr] = STATE(895), + [sym_patternOrElse] = STATE(895), + [sym_patternAny] = STATE(895), + [sym_patternAnd] = STATE(895), + [sym_patternMaybe] = STATE(895), + [sym_patternAfter] = STATE(895), + [sym_patternBefore] = STATE(895), + [sym_patternContains] = STATE(895), + [sym_patternIncludes] = STATE(895), + [sym_rewrite] = STATE(895), + [sym_patternIfElse] = STATE(895), + [sym_within] = STATE(895), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(895), + [sym_nodeLike] = STATE(895), + [sym_like] = STATE(895), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(895), + [sym_some] = STATE(895), + [sym_every] = STATE(895), + [sym_regexPattern] = STATE(895), + [sym_log] = STATE(895), + [sym_range] = STATE(895), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(895), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(385), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -14374,10 +14338,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(383), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(383), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -14402,72 +14366,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(383), + [sym_top] = ACTIONS(383), + [sym_bottom] = ACTIONS(383), + [sym_intConstant] = ACTIONS(383), + [sym_doubleConstant] = ACTIONS(385), + [sym_stringConstant] = ACTIONS(385), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym_sequential] = STATE(880), - [sym_files] = STATE(880), - [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(880), - [sym_divOperation] = STATE(880), - [sym_modOperation] = STATE(880), - [sym_addOperation] = STATE(880), - [sym_subOperation] = STATE(880), - [sym_patternAs] = STATE(880), - [sym_patternLimit] = STATE(880), - [sym_assignmentAsPattern] = STATE(880), - [sym_patternAccumulate] = STATE(880), - [sym_patternWhere] = STATE(880), - [sym__literal] = STATE(880), - [sym_patternNot] = STATE(880), - [sym_patternOr] = STATE(880), - [sym_patternOrElse] = STATE(880), - [sym_patternAny] = STATE(880), - [sym_patternAnd] = STATE(880), - [sym_patternMaybe] = STATE(880), - [sym_patternAfter] = STATE(880), - [sym_patternBefore] = STATE(880), - [sym_patternContains] = STATE(880), - [sym_patternIncludes] = STATE(880), - [sym_rewrite] = STATE(880), - [sym_patternIfElse] = STATE(880), - [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1398), - [sym_nodeLike] = STATE(880), - [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(880), - [sym_some] = STATE(880), - [sym_every] = STATE(880), - [sym_regexPattern] = STATE(880), - [sym_log] = STATE(880), - [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [52] = { + [sym_sequential] = STATE(884), + [sym_files] = STATE(884), + [sym__pattern] = STATE(884), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(884), + [sym_divOperation] = STATE(884), + [sym_modOperation] = STATE(884), + [sym_addOperation] = STATE(884), + [sym_subOperation] = STATE(884), + [sym_patternAs] = STATE(884), + [sym_patternLimit] = STATE(884), + [sym_assignmentAsPattern] = STATE(884), + [sym_patternAccumulate] = STATE(884), + [sym_patternWhere] = STATE(884), + [sym__literal] = STATE(884), + [sym_patternNot] = STATE(884), + [sym_patternOr] = STATE(884), + [sym_patternOrElse] = STATE(884), + [sym_patternAny] = STATE(884), + [sym_patternAnd] = STATE(884), + [sym_patternMaybe] = STATE(884), + [sym_patternAfter] = STATE(884), + [sym_patternBefore] = STATE(884), + [sym_patternContains] = STATE(884), + [sym_patternIncludes] = STATE(884), + [sym_rewrite] = STATE(884), + [sym_patternIfElse] = STATE(884), + [sym_within] = STATE(884), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(884), + [sym_nodeLike] = STATE(884), + [sym_like] = STATE(884), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(884), + [sym_some] = STATE(884), + [sym_every] = STATE(884), + [sym_regexPattern] = STATE(884), + [sym_log] = STATE(884), + [sym_range] = STATE(884), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(884), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(387), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -14487,10 +14452,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(387), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(387), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -14515,72 +14480,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(387), + [sym_top] = ACTIONS(387), + [sym_bottom] = ACTIONS(387), + [sym_intConstant] = ACTIONS(387), + [sym_doubleConstant] = ACTIONS(389), + [sym_stringConstant] = ACTIONS(389), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [54] = { - [sym_sequential] = STATE(880), - [sym_files] = STATE(880), - [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(880), - [sym_divOperation] = STATE(880), - [sym_modOperation] = STATE(880), - [sym_addOperation] = STATE(880), - [sym_subOperation] = STATE(880), - [sym_patternAs] = STATE(880), - [sym_patternLimit] = STATE(880), - [sym_assignmentAsPattern] = STATE(880), - [sym_patternAccumulate] = STATE(880), - [sym_patternWhere] = STATE(880), - [sym__literal] = STATE(880), - [sym_patternNot] = STATE(880), - [sym_patternOr] = STATE(880), - [sym_patternOrElse] = STATE(880), - [sym_patternAny] = STATE(880), - [sym_patternAnd] = STATE(880), - [sym_patternMaybe] = STATE(880), - [sym_patternAfter] = STATE(880), - [sym_patternBefore] = STATE(880), - [sym_patternContains] = STATE(880), - [sym_patternIncludes] = STATE(880), - [sym_rewrite] = STATE(880), - [sym_patternIfElse] = STATE(880), - [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1072), - [sym_nodeLike] = STATE(880), - [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(880), - [sym_some] = STATE(880), - [sym_every] = STATE(880), - [sym_regexPattern] = STATE(880), - [sym_log] = STATE(880), - [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [53] = { + [sym_sequential] = STATE(897), + [sym_files] = STATE(897), + [sym__pattern] = STATE(897), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(897), + [sym_divOperation] = STATE(897), + [sym_modOperation] = STATE(897), + [sym_addOperation] = STATE(897), + [sym_subOperation] = STATE(897), + [sym_patternAs] = STATE(897), + [sym_patternLimit] = STATE(897), + [sym_assignmentAsPattern] = STATE(897), + [sym_patternAccumulate] = STATE(897), + [sym_patternWhere] = STATE(897), + [sym__literal] = STATE(897), + [sym_patternNot] = STATE(897), + [sym_patternOr] = STATE(897), + [sym_patternOrElse] = STATE(897), + [sym_patternAny] = STATE(897), + [sym_patternAnd] = STATE(897), + [sym_patternMaybe] = STATE(897), + [sym_patternAfter] = STATE(897), + [sym_patternBefore] = STATE(897), + [sym_patternContains] = STATE(897), + [sym_patternIncludes] = STATE(897), + [sym_rewrite] = STATE(897), + [sym_patternIfElse] = STATE(897), + [sym_within] = STATE(897), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(897), + [sym_nodeLike] = STATE(897), + [sym_like] = STATE(897), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(897), + [sym_some] = STATE(897), + [sym_every] = STATE(897), + [sym_regexPattern] = STATE(897), + [sym_log] = STATE(897), + [sym_range] = STATE(897), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(897), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -14600,10 +14566,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(391), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(391), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -14628,23 +14594,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(391), + [sym_top] = ACTIONS(391), + [sym_bottom] = ACTIONS(391), + [sym_intConstant] = ACTIONS(391), + [sym_doubleConstant] = ACTIONS(393), + [sym_stringConstant] = ACTIONS(393), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [55] = { + [54] = { [sym_sequential] = STATE(898), [sym_files] = STATE(898), [sym__pattern] = STATE(898), - [sym__container] = STATE(1146), + [sym__container] = STATE(1119), [sym_mulOperation] = STATE(898), [sym_divOperation] = STATE(898), [sym_modOperation] = STATE(898), @@ -14669,29 +14636,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_rewrite] = STATE(898), [sym_patternIfElse] = STATE(898), [sym_within] = STATE(898), - [sym__bubbleScope] = STATE(121), + [sym__bubbleScope] = STATE(129), [sym_bubble] = STATE(898), [sym_nodeLike] = STATE(898), [sym_like] = STATE(898), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), [sym_dot] = STATE(898), [sym_some] = STATE(898), [sym_every] = STATE(898), [sym_regexPattern] = STATE(898), [sym_log] = STATE(898), [sym_range] = STATE(898), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), [sym_codeSnippet] = STATE(898), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -14713,10 +14680,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(391), + [sym_underscore] = ACTIONS(395), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(391), + [sym_booleanConstant] = ACTIONS(395), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -14741,72 +14708,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(391), - [sym_top] = ACTIONS(391), - [sym_bottom] = ACTIONS(391), - [sym_intConstant] = ACTIONS(391), - [sym_doubleConstant] = ACTIONS(393), - [sym_stringConstant] = ACTIONS(393), + [sym_undefined] = ACTIONS(395), + [sym_top] = ACTIONS(395), + [sym_bottom] = ACTIONS(395), + [sym_intConstant] = ACTIONS(395), + [sym_doubleConstant] = ACTIONS(397), + [sym_stringConstant] = ACTIONS(397), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_sequential] = STATE(880), - [sym_files] = STATE(880), - [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(880), - [sym_divOperation] = STATE(880), - [sym_modOperation] = STATE(880), - [sym_addOperation] = STATE(880), - [sym_subOperation] = STATE(880), - [sym_patternAs] = STATE(880), - [sym_patternLimit] = STATE(880), - [sym_assignmentAsPattern] = STATE(880), - [sym_patternAccumulate] = STATE(880), - [sym_patternWhere] = STATE(880), - [sym__literal] = STATE(880), - [sym_patternNot] = STATE(880), - [sym_patternOr] = STATE(880), - [sym_patternOrElse] = STATE(880), - [sym_patternAny] = STATE(880), - [sym_patternAnd] = STATE(880), - [sym_patternMaybe] = STATE(880), - [sym_patternAfter] = STATE(880), - [sym_patternBefore] = STATE(880), - [sym_patternContains] = STATE(880), - [sym_patternIncludes] = STATE(880), - [sym_rewrite] = STATE(880), - [sym_patternIfElse] = STATE(880), - [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1398), - [sym_nodeLike] = STATE(880), - [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(880), - [sym_some] = STATE(880), - [sym_every] = STATE(880), - [sym_regexPattern] = STATE(880), - [sym_log] = STATE(880), - [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [55] = { + [sym_sequential] = STATE(900), + [sym_files] = STATE(900), + [sym__pattern] = STATE(900), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(900), + [sym_divOperation] = STATE(900), + [sym_modOperation] = STATE(900), + [sym_addOperation] = STATE(900), + [sym_subOperation] = STATE(900), + [sym_patternAs] = STATE(900), + [sym_patternLimit] = STATE(900), + [sym_assignmentAsPattern] = STATE(900), + [sym_patternAccumulate] = STATE(900), + [sym_patternWhere] = STATE(900), + [sym__literal] = STATE(900), + [sym_patternNot] = STATE(900), + [sym_patternOr] = STATE(900), + [sym_patternOrElse] = STATE(900), + [sym_patternAny] = STATE(900), + [sym_patternAnd] = STATE(900), + [sym_patternMaybe] = STATE(900), + [sym_patternAfter] = STATE(900), + [sym_patternBefore] = STATE(900), + [sym_patternContains] = STATE(900), + [sym_patternIncludes] = STATE(900), + [sym_rewrite] = STATE(900), + [sym_patternIfElse] = STATE(900), + [sym_within] = STATE(900), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(900), + [sym_nodeLike] = STATE(900), + [sym_like] = STATE(900), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(900), + [sym_some] = STATE(900), + [sym_every] = STATE(900), + [sym_regexPattern] = STATE(900), + [sym_log] = STATE(900), + [sym_range] = STATE(900), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(900), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(395), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -14826,10 +14794,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(399), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(399), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -14854,70 +14822,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(399), + [sym_top] = ACTIONS(399), + [sym_bottom] = ACTIONS(399), + [sym_intConstant] = ACTIONS(399), + [sym_doubleConstant] = ACTIONS(401), + [sym_stringConstant] = ACTIONS(401), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_sequential] = STATE(907), - [sym_files] = STATE(907), - [sym__pattern] = STATE(907), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(907), - [sym_divOperation] = STATE(907), - [sym_modOperation] = STATE(907), - [sym_addOperation] = STATE(907), - [sym_subOperation] = STATE(907), - [sym_patternAs] = STATE(907), - [sym_patternLimit] = STATE(907), - [sym_assignmentAsPattern] = STATE(907), - [sym_patternAccumulate] = STATE(907), - [sym_patternWhere] = STATE(907), - [sym__literal] = STATE(907), - [sym_patternNot] = STATE(907), - [sym_patternOr] = STATE(907), - [sym_patternOrElse] = STATE(907), - [sym_patternAny] = STATE(907), - [sym_patternAnd] = STATE(907), - [sym_patternMaybe] = STATE(907), - [sym_patternAfter] = STATE(907), - [sym_patternBefore] = STATE(907), - [sym_patternContains] = STATE(907), - [sym_patternIncludes] = STATE(907), - [sym_rewrite] = STATE(907), - [sym_patternIfElse] = STATE(907), - [sym_within] = STATE(907), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(907), - [sym_nodeLike] = STATE(907), - [sym_like] = STATE(907), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1051), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(907), - [sym_some] = STATE(907), - [sym_every] = STATE(907), - [sym_regexPattern] = STATE(907), - [sym_log] = STATE(907), - [sym_range] = STATE(907), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(907), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), + [56] = { + [sym_sequential] = STATE(901), + [sym_files] = STATE(901), + [sym__pattern] = STATE(901), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(901), + [sym_divOperation] = STATE(901), + [sym_modOperation] = STATE(901), + [sym_addOperation] = STATE(901), + [sym_subOperation] = STATE(901), + [sym_patternAs] = STATE(901), + [sym_patternLimit] = STATE(901), + [sym_assignmentAsPattern] = STATE(901), + [sym_patternAccumulate] = STATE(901), + [sym_patternWhere] = STATE(901), + [sym__literal] = STATE(901), + [sym_patternNot] = STATE(901), + [sym_patternOr] = STATE(901), + [sym_patternOrElse] = STATE(901), + [sym_patternAny] = STATE(901), + [sym_patternAnd] = STATE(901), + [sym_patternMaybe] = STATE(901), + [sym_patternAfter] = STATE(901), + [sym_patternBefore] = STATE(901), + [sym_patternContains] = STATE(901), + [sym_patternIncludes] = STATE(901), + [sym_rewrite] = STATE(901), + [sym_patternIfElse] = STATE(901), + [sym_within] = STATE(901), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(901), + [sym_nodeLike] = STATE(901), + [sym_like] = STATE(901), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(901), + [sym_some] = STATE(901), + [sym_every] = STATE(901), + [sym_regexPattern] = STATE(901), + [sym_log] = STATE(901), + [sym_range] = STATE(901), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(901), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -14939,10 +14908,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(397), + [sym_underscore] = ACTIONS(403), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(397), + [sym_booleanConstant] = ACTIONS(403), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -14967,69 +14936,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(397), - [sym_top] = ACTIONS(397), - [sym_bottom] = ACTIONS(397), - [sym_intConstant] = ACTIONS(397), - [sym_doubleConstant] = ACTIONS(399), - [sym_stringConstant] = ACTIONS(399), + [sym_undefined] = ACTIONS(403), + [sym_top] = ACTIONS(403), + [sym_bottom] = ACTIONS(403), + [sym_intConstant] = ACTIONS(403), + [sym_doubleConstant] = ACTIONS(405), + [sym_stringConstant] = ACTIONS(405), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_sequential] = STATE(879), - [sym_files] = STATE(879), - [sym__pattern] = STATE(879), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(879), - [sym_divOperation] = STATE(879), - [sym_modOperation] = STATE(879), - [sym_addOperation] = STATE(879), - [sym_subOperation] = STATE(879), - [sym_patternAs] = STATE(879), - [sym_patternLimit] = STATE(879), - [sym_assignmentAsPattern] = STATE(879), - [sym_patternAccumulate] = STATE(879), - [sym_patternWhere] = STATE(879), - [sym__literal] = STATE(879), - [sym_patternNot] = STATE(879), - [sym_patternOr] = STATE(879), - [sym_patternOrElse] = STATE(879), - [sym_patternAny] = STATE(879), - [sym_patternAnd] = STATE(879), - [sym_patternMaybe] = STATE(879), - [sym_patternAfter] = STATE(879), - [sym_patternBefore] = STATE(879), - [sym_patternContains] = STATE(879), - [sym_patternIncludes] = STATE(879), - [sym_rewrite] = STATE(879), - [sym_patternIfElse] = STATE(879), - [sym_within] = STATE(879), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(879), - [sym_nodeLike] = STATE(879), - [sym_like] = STATE(879), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(879), - [sym_some] = STATE(879), - [sym_every] = STATE(879), - [sym_regexPattern] = STATE(879), - [sym_log] = STATE(879), - [sym_range] = STATE(879), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(879), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), + [57] = { + [sym_sequential] = STATE(902), + [sym_files] = STATE(902), + [sym__pattern] = STATE(902), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(902), + [sym_divOperation] = STATE(902), + [sym_modOperation] = STATE(902), + [sym_addOperation] = STATE(902), + [sym_subOperation] = STATE(902), + [sym_patternAs] = STATE(902), + [sym_patternLimit] = STATE(902), + [sym_assignmentAsPattern] = STATE(902), + [sym_patternAccumulate] = STATE(902), + [sym_patternWhere] = STATE(902), + [sym__literal] = STATE(902), + [sym_patternNot] = STATE(902), + [sym_patternOr] = STATE(902), + [sym_patternOrElse] = STATE(902), + [sym_patternAny] = STATE(902), + [sym_patternAnd] = STATE(902), + [sym_patternMaybe] = STATE(902), + [sym_patternAfter] = STATE(902), + [sym_patternBefore] = STATE(902), + [sym_patternContains] = STATE(902), + [sym_patternIncludes] = STATE(902), + [sym_rewrite] = STATE(902), + [sym_patternIfElse] = STATE(902), + [sym_within] = STATE(902), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(902), + [sym_nodeLike] = STATE(902), + [sym_like] = STATE(902), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(902), + [sym_some] = STATE(902), + [sym_every] = STATE(902), + [sym_regexPattern] = STATE(902), + [sym_log] = STATE(902), + [sym_range] = STATE(902), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(902), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -15049,13 +15020,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like] = ACTIONS(243), [anon_sym_DOT] = ACTIONS(315), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_RBRACK] = ACTIONS(403), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(405), + [sym_underscore] = ACTIONS(407), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(405), + [sym_booleanConstant] = ACTIONS(407), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -15080,70 +15050,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(405), - [sym_top] = ACTIONS(405), - [sym_bottom] = ACTIONS(405), - [sym_intConstant] = ACTIONS(405), - [sym_doubleConstant] = ACTIONS(407), - [sym_stringConstant] = ACTIONS(407), + [sym_undefined] = ACTIONS(407), + [sym_top] = ACTIONS(407), + [sym_bottom] = ACTIONS(407), + [sym_intConstant] = ACTIONS(407), + [sym_doubleConstant] = ACTIONS(409), + [sym_stringConstant] = ACTIONS(409), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [59] = { - [sym_sequential] = STATE(893), - [sym_files] = STATE(893), - [sym__pattern] = STATE(893), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(893), - [sym_divOperation] = STATE(893), - [sym_modOperation] = STATE(893), - [sym_addOperation] = STATE(893), - [sym_subOperation] = STATE(893), - [sym_patternAs] = STATE(893), - [sym_patternLimit] = STATE(893), - [sym_assignmentAsPattern] = STATE(893), - [sym_patternAccumulate] = STATE(893), - [sym_patternWhere] = STATE(893), - [sym__literal] = STATE(893), - [sym_patternNot] = STATE(893), - [sym_patternOr] = STATE(893), - [sym_patternOrElse] = STATE(893), - [sym_patternAny] = STATE(893), - [sym_patternAnd] = STATE(893), - [sym_patternMaybe] = STATE(893), - [sym_patternAfter] = STATE(893), - [sym_patternBefore] = STATE(893), - [sym_patternContains] = STATE(893), - [sym_patternIncludes] = STATE(893), - [sym_rewrite] = STATE(893), - [sym_patternIfElse] = STATE(893), - [sym_within] = STATE(893), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(893), - [sym_nodeLike] = STATE(893), - [sym_like] = STATE(893), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1051), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(893), - [sym_some] = STATE(893), - [sym_every] = STATE(893), - [sym_regexPattern] = STATE(893), - [sym_log] = STATE(893), - [sym_range] = STATE(893), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(893), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), + [58] = { + [sym_sequential] = STATE(905), + [sym_files] = STATE(905), + [sym__pattern] = STATE(905), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(905), + [sym_divOperation] = STATE(905), + [sym_modOperation] = STATE(905), + [sym_addOperation] = STATE(905), + [sym_subOperation] = STATE(905), + [sym_patternAs] = STATE(905), + [sym_patternLimit] = STATE(905), + [sym_assignmentAsPattern] = STATE(905), + [sym_patternAccumulate] = STATE(905), + [sym_patternWhere] = STATE(905), + [sym__literal] = STATE(905), + [sym_patternNot] = STATE(905), + [sym_patternOr] = STATE(905), + [sym_patternOrElse] = STATE(905), + [sym_patternAny] = STATE(905), + [sym_patternAnd] = STATE(905), + [sym_patternMaybe] = STATE(905), + [sym_patternAfter] = STATE(905), + [sym_patternBefore] = STATE(905), + [sym_patternContains] = STATE(905), + [sym_patternIncludes] = STATE(905), + [sym_rewrite] = STATE(905), + [sym_patternIfElse] = STATE(905), + [sym_within] = STATE(905), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(905), + [sym_nodeLike] = STATE(905), + [sym_like] = STATE(905), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(905), + [sym_some] = STATE(905), + [sym_every] = STATE(905), + [sym_regexPattern] = STATE(905), + [sym_log] = STATE(905), + [sym_range] = STATE(905), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(905), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -15165,10 +15136,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(409), + [sym_underscore] = ACTIONS(411), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(409), + [sym_booleanConstant] = ACTIONS(411), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -15193,72 +15164,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(409), - [sym_top] = ACTIONS(409), - [sym_bottom] = ACTIONS(409), - [sym_intConstant] = ACTIONS(409), - [sym_doubleConstant] = ACTIONS(411), - [sym_stringConstant] = ACTIONS(411), + [sym_undefined] = ACTIONS(411), + [sym_top] = ACTIONS(411), + [sym_bottom] = ACTIONS(411), + [sym_intConstant] = ACTIONS(411), + [sym_doubleConstant] = ACTIONS(413), + [sym_stringConstant] = ACTIONS(413), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_sequential] = STATE(880), - [sym_files] = STATE(880), - [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(880), - [sym_divOperation] = STATE(880), - [sym_modOperation] = STATE(880), - [sym_addOperation] = STATE(880), - [sym_subOperation] = STATE(880), - [sym_patternAs] = STATE(880), - [sym_patternLimit] = STATE(880), - [sym_assignmentAsPattern] = STATE(880), - [sym_patternAccumulate] = STATE(880), - [sym_patternWhere] = STATE(880), - [sym__literal] = STATE(880), - [sym_patternNot] = STATE(880), - [sym_patternOr] = STATE(880), - [sym_patternOrElse] = STATE(880), - [sym_patternAny] = STATE(880), - [sym_patternAnd] = STATE(880), - [sym_patternMaybe] = STATE(880), - [sym_patternAfter] = STATE(880), - [sym_patternBefore] = STATE(880), - [sym_patternContains] = STATE(880), - [sym_patternIncludes] = STATE(880), - [sym_rewrite] = STATE(880), - [sym_patternIfElse] = STATE(880), - [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1129), - [sym_nodeLike] = STATE(880), - [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(880), - [sym_some] = STATE(880), - [sym_every] = STATE(880), - [sym_regexPattern] = STATE(880), - [sym_log] = STATE(880), - [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [59] = { + [sym_sequential] = STATE(908), + [sym_files] = STATE(908), + [sym__pattern] = STATE(908), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(908), + [sym_divOperation] = STATE(908), + [sym_modOperation] = STATE(908), + [sym_addOperation] = STATE(908), + [sym_subOperation] = STATE(908), + [sym_patternAs] = STATE(908), + [sym_patternLimit] = STATE(908), + [sym_assignmentAsPattern] = STATE(908), + [sym_patternAccumulate] = STATE(908), + [sym_patternWhere] = STATE(908), + [sym__literal] = STATE(908), + [sym_patternNot] = STATE(908), + [sym_patternOr] = STATE(908), + [sym_patternOrElse] = STATE(908), + [sym_patternAny] = STATE(908), + [sym_patternAnd] = STATE(908), + [sym_patternMaybe] = STATE(908), + [sym_patternAfter] = STATE(908), + [sym_patternBefore] = STATE(908), + [sym_patternContains] = STATE(908), + [sym_patternIncludes] = STATE(908), + [sym_rewrite] = STATE(908), + [sym_patternIfElse] = STATE(908), + [sym_within] = STATE(908), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(908), + [sym_nodeLike] = STATE(908), + [sym_like] = STATE(908), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(908), + [sym_some] = STATE(908), + [sym_every] = STATE(908), + [sym_regexPattern] = STATE(908), + [sym_log] = STATE(908), + [sym_range] = STATE(908), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(908), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(413), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -15278,10 +15250,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(415), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(415), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -15306,72 +15278,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(415), + [sym_top] = ACTIONS(415), + [sym_bottom] = ACTIONS(415), + [sym_intConstant] = ACTIONS(415), + [sym_doubleConstant] = ACTIONS(417), + [sym_stringConstant] = ACTIONS(417), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_sequential] = STATE(880), - [sym_files] = STATE(880), - [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(880), - [sym_divOperation] = STATE(880), - [sym_modOperation] = STATE(880), - [sym_addOperation] = STATE(880), - [sym_subOperation] = STATE(880), - [sym_patternAs] = STATE(880), - [sym_patternLimit] = STATE(880), - [sym_assignmentAsPattern] = STATE(880), - [sym_patternAccumulate] = STATE(880), - [sym_patternWhere] = STATE(880), - [sym__literal] = STATE(880), - [sym_patternNot] = STATE(880), - [sym_patternOr] = STATE(880), - [sym_patternOrElse] = STATE(880), - [sym_patternAny] = STATE(880), - [sym_patternAnd] = STATE(880), - [sym_patternMaybe] = STATE(880), - [sym_patternAfter] = STATE(880), - [sym_patternBefore] = STATE(880), - [sym_patternContains] = STATE(880), - [sym_patternIncludes] = STATE(880), - [sym_rewrite] = STATE(880), - [sym_patternIfElse] = STATE(880), - [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1398), - [sym_nodeLike] = STATE(880), - [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(880), - [sym_some] = STATE(880), - [sym_every] = STATE(880), - [sym_regexPattern] = STATE(880), - [sym_log] = STATE(880), - [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [60] = { + [sym_sequential] = STATE(909), + [sym_files] = STATE(909), + [sym__pattern] = STATE(909), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(909), + [sym_divOperation] = STATE(909), + [sym_modOperation] = STATE(909), + [sym_addOperation] = STATE(909), + [sym_subOperation] = STATE(909), + [sym_patternAs] = STATE(909), + [sym_patternLimit] = STATE(909), + [sym_assignmentAsPattern] = STATE(909), + [sym_patternAccumulate] = STATE(909), + [sym_patternWhere] = STATE(909), + [sym__literal] = STATE(909), + [sym_patternNot] = STATE(909), + [sym_patternOr] = STATE(909), + [sym_patternOrElse] = STATE(909), + [sym_patternAny] = STATE(909), + [sym_patternAnd] = STATE(909), + [sym_patternMaybe] = STATE(909), + [sym_patternAfter] = STATE(909), + [sym_patternBefore] = STATE(909), + [sym_patternContains] = STATE(909), + [sym_patternIncludes] = STATE(909), + [sym_rewrite] = STATE(909), + [sym_patternIfElse] = STATE(909), + [sym_within] = STATE(909), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(909), + [sym_nodeLike] = STATE(909), + [sym_like] = STATE(909), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(909), + [sym_some] = STATE(909), + [sym_every] = STATE(909), + [sym_regexPattern] = STATE(909), + [sym_log] = STATE(909), + [sym_range] = STATE(909), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(909), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(415), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -15391,10 +15364,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(419), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(419), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -15419,70 +15392,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(419), + [sym_top] = ACTIONS(419), + [sym_bottom] = ACTIONS(419), + [sym_intConstant] = ACTIONS(419), + [sym_doubleConstant] = ACTIONS(421), + [sym_stringConstant] = ACTIONS(421), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_sequential] = STATE(905), - [sym_files] = STATE(905), - [sym__pattern] = STATE(905), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(905), - [sym_divOperation] = STATE(905), - [sym_modOperation] = STATE(905), - [sym_addOperation] = STATE(905), - [sym_subOperation] = STATE(905), - [sym_patternAs] = STATE(905), - [sym_patternLimit] = STATE(905), - [sym_assignmentAsPattern] = STATE(905), - [sym_patternAccumulate] = STATE(905), - [sym_patternWhere] = STATE(905), - [sym__literal] = STATE(905), - [sym_patternNot] = STATE(905), - [sym_patternOr] = STATE(905), - [sym_patternOrElse] = STATE(905), - [sym_patternAny] = STATE(905), - [sym_patternAnd] = STATE(905), - [sym_patternMaybe] = STATE(905), - [sym_patternAfter] = STATE(905), - [sym_patternBefore] = STATE(905), - [sym_patternContains] = STATE(905), - [sym_patternIncludes] = STATE(905), - [sym_rewrite] = STATE(905), - [sym_patternIfElse] = STATE(905), - [sym_within] = STATE(905), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(905), - [sym_nodeLike] = STATE(905), - [sym_like] = STATE(905), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1051), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(905), - [sym_some] = STATE(905), - [sym_every] = STATE(905), - [sym_regexPattern] = STATE(905), - [sym_log] = STATE(905), - [sym_range] = STATE(905), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(905), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), + [61] = { + [sym_sequential] = STATE(893), + [sym_files] = STATE(893), + [sym__pattern] = STATE(893), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(893), + [sym_divOperation] = STATE(893), + [sym_modOperation] = STATE(893), + [sym_addOperation] = STATE(893), + [sym_subOperation] = STATE(893), + [sym_patternAs] = STATE(893), + [sym_patternLimit] = STATE(893), + [sym_assignmentAsPattern] = STATE(893), + [sym_patternAccumulate] = STATE(893), + [sym_patternWhere] = STATE(893), + [sym__literal] = STATE(893), + [sym_patternNot] = STATE(893), + [sym_patternOr] = STATE(893), + [sym_patternOrElse] = STATE(893), + [sym_patternAny] = STATE(893), + [sym_patternAnd] = STATE(893), + [sym_patternMaybe] = STATE(893), + [sym_patternAfter] = STATE(893), + [sym_patternBefore] = STATE(893), + [sym_patternContains] = STATE(893), + [sym_patternIncludes] = STATE(893), + [sym_rewrite] = STATE(893), + [sym_patternIfElse] = STATE(893), + [sym_within] = STATE(893), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(893), + [sym_nodeLike] = STATE(893), + [sym_like] = STATE(893), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1060), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(893), + [sym_some] = STATE(893), + [sym_every] = STATE(893), + [sym_regexPattern] = STATE(893), + [sym_log] = STATE(893), + [sym_range] = STATE(893), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(893), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -15504,10 +15478,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(417), + [sym_underscore] = ACTIONS(423), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(417), + [sym_booleanConstant] = ACTIONS(423), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -15532,72 +15506,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(417), - [sym_top] = ACTIONS(417), - [sym_bottom] = ACTIONS(417), - [sym_intConstant] = ACTIONS(417), - [sym_doubleConstant] = ACTIONS(419), - [sym_stringConstant] = ACTIONS(419), + [sym_undefined] = ACTIONS(423), + [sym_top] = ACTIONS(423), + [sym_bottom] = ACTIONS(423), + [sym_intConstant] = ACTIONS(423), + [sym_doubleConstant] = ACTIONS(425), + [sym_stringConstant] = ACTIONS(425), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [63] = { - [sym_sequential] = STATE(896), - [sym_files] = STATE(896), - [sym__pattern] = STATE(896), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(896), - [sym_divOperation] = STATE(896), - [sym_modOperation] = STATE(896), - [sym_addOperation] = STATE(896), - [sym_subOperation] = STATE(896), - [sym_patternAs] = STATE(896), - [sym_patternLimit] = STATE(896), - [sym_assignmentAsPattern] = STATE(896), - [sym_patternAccumulate] = STATE(896), - [sym_patternWhere] = STATE(896), - [sym__literal] = STATE(896), - [sym_patternNot] = STATE(896), - [sym_patternOr] = STATE(896), - [sym_patternOrElse] = STATE(896), - [sym_patternAny] = STATE(896), - [sym_patternAnd] = STATE(896), - [sym_patternMaybe] = STATE(896), - [sym_patternAfter] = STATE(896), - [sym_patternBefore] = STATE(896), - [sym_patternContains] = STATE(896), - [sym_patternIncludes] = STATE(896), - [sym_rewrite] = STATE(896), - [sym_patternIfElse] = STATE(896), - [sym_within] = STATE(896), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(896), - [sym_nodeLike] = STATE(896), - [sym_like] = STATE(896), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(896), - [sym_some] = STATE(896), - [sym_every] = STATE(896), - [sym_regexPattern] = STATE(896), - [sym_log] = STATE(896), - [sym_range] = STATE(896), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(896), - [sym_snippetRegex] = STATE(422), + [62] = { + [sym_sequential] = STATE(880), + [sym_files] = STATE(880), + [sym__pattern] = STATE(880), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(880), + [sym_divOperation] = STATE(880), + [sym_modOperation] = STATE(880), + [sym_addOperation] = STATE(880), + [sym_subOperation] = STATE(880), + [sym_patternAs] = STATE(880), + [sym_patternLimit] = STATE(880), + [sym_assignmentAsPattern] = STATE(880), + [sym_patternAccumulate] = STATE(880), + [sym_patternWhere] = STATE(880), + [sym__literal] = STATE(880), + [sym_patternNot] = STATE(880), + [sym_patternOr] = STATE(880), + [sym_patternOrElse] = STATE(880), + [sym_patternAny] = STATE(880), + [sym_patternAnd] = STATE(880), + [sym_patternMaybe] = STATE(880), + [sym_patternAfter] = STATE(880), + [sym_patternBefore] = STATE(880), + [sym_patternContains] = STATE(880), + [sym_patternIncludes] = STATE(880), + [sym_rewrite] = STATE(880), + [sym_patternIfElse] = STATE(880), + [sym_within] = STATE(880), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(880), + [sym_namedArg] = STATE(1134), + [sym_nodeLike] = STATE(880), + [sym_like] = STATE(880), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(880), + [sym_some] = STATE(880), + [sym_every] = STATE(880), + [sym_regexPattern] = STATE(880), + [sym_log] = STATE(880), + [sym_range] = STATE(880), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(880), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(427), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -15617,10 +15592,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(421), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(421), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -15645,72 +15620,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(421), - [sym_top] = ACTIONS(421), - [sym_bottom] = ACTIONS(421), - [sym_intConstant] = ACTIONS(421), - [sym_doubleConstant] = ACTIONS(423), - [sym_stringConstant] = ACTIONS(423), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_sequential] = STATE(902), - [sym_files] = STATE(902), - [sym__pattern] = STATE(902), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(902), - [sym_divOperation] = STATE(902), - [sym_modOperation] = STATE(902), - [sym_addOperation] = STATE(902), - [sym_subOperation] = STATE(902), - [sym_patternAs] = STATE(902), - [sym_patternLimit] = STATE(902), - [sym_assignmentAsPattern] = STATE(902), - [sym_patternAccumulate] = STATE(902), - [sym_patternWhere] = STATE(902), - [sym__literal] = STATE(902), - [sym_patternNot] = STATE(902), - [sym_patternOr] = STATE(902), - [sym_patternOrElse] = STATE(902), - [sym_patternAny] = STATE(902), - [sym_patternAnd] = STATE(902), - [sym_patternMaybe] = STATE(902), - [sym_patternAfter] = STATE(902), - [sym_patternBefore] = STATE(902), - [sym_patternContains] = STATE(902), - [sym_patternIncludes] = STATE(902), - [sym_rewrite] = STATE(902), - [sym_patternIfElse] = STATE(902), - [sym_within] = STATE(902), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(902), - [sym_nodeLike] = STATE(902), - [sym_like] = STATE(902), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1051), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(902), - [sym_some] = STATE(902), - [sym_every] = STATE(902), - [sym_regexPattern] = STATE(902), - [sym_log] = STATE(902), - [sym_range] = STATE(902), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(902), - [sym_snippetRegex] = STATE(422), + [63] = { + [sym_sequential] = STATE(880), + [sym_files] = STATE(880), + [sym__pattern] = STATE(880), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(880), + [sym_divOperation] = STATE(880), + [sym_modOperation] = STATE(880), + [sym_addOperation] = STATE(880), + [sym_subOperation] = STATE(880), + [sym_patternAs] = STATE(880), + [sym_patternLimit] = STATE(880), + [sym_assignmentAsPattern] = STATE(880), + [sym_patternAccumulate] = STATE(880), + [sym_patternWhere] = STATE(880), + [sym__literal] = STATE(880), + [sym_patternNot] = STATE(880), + [sym_patternOr] = STATE(880), + [sym_patternOrElse] = STATE(880), + [sym_patternAny] = STATE(880), + [sym_patternAnd] = STATE(880), + [sym_patternMaybe] = STATE(880), + [sym_patternAfter] = STATE(880), + [sym_patternBefore] = STATE(880), + [sym_patternContains] = STATE(880), + [sym_patternIncludes] = STATE(880), + [sym_rewrite] = STATE(880), + [sym_patternIfElse] = STATE(880), + [sym_within] = STATE(880), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(880), + [sym_namedArg] = STATE(1071), + [sym_nodeLike] = STATE(880), + [sym_like] = STATE(880), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(880), + [sym_some] = STATE(880), + [sym_every] = STATE(880), + [sym_regexPattern] = STATE(880), + [sym_log] = STATE(880), + [sym_range] = STATE(880), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(880), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(429), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -15730,10 +15706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(425), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(425), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -15758,72 +15734,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(425), - [sym_top] = ACTIONS(425), - [sym_bottom] = ACTIONS(425), - [sym_intConstant] = ACTIONS(425), - [sym_doubleConstant] = ACTIONS(427), - [sym_stringConstant] = ACTIONS(427), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [65] = { - [sym_sequential] = STATE(906), - [sym_files] = STATE(906), - [sym__pattern] = STATE(906), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(906), - [sym_divOperation] = STATE(906), - [sym_modOperation] = STATE(906), - [sym_addOperation] = STATE(906), - [sym_subOperation] = STATE(906), - [sym_patternAs] = STATE(906), - [sym_patternLimit] = STATE(906), - [sym_assignmentAsPattern] = STATE(906), - [sym_patternAccumulate] = STATE(906), - [sym_patternWhere] = STATE(906), - [sym__literal] = STATE(906), - [sym_patternNot] = STATE(906), - [sym_patternOr] = STATE(906), - [sym_patternOrElse] = STATE(906), - [sym_patternAny] = STATE(906), - [sym_patternAnd] = STATE(906), - [sym_patternMaybe] = STATE(906), - [sym_patternAfter] = STATE(906), - [sym_patternBefore] = STATE(906), - [sym_patternContains] = STATE(906), - [sym_patternIncludes] = STATE(906), - [sym_rewrite] = STATE(906), - [sym_patternIfElse] = STATE(906), - [sym_within] = STATE(906), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(906), - [sym_nodeLike] = STATE(906), - [sym_like] = STATE(906), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1051), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(906), - [sym_some] = STATE(906), - [sym_every] = STATE(906), - [sym_regexPattern] = STATE(906), - [sym_log] = STATE(906), - [sym_range] = STATE(906), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(906), - [sym_snippetRegex] = STATE(422), + [64] = { + [sym_sequential] = STATE(880), + [sym_files] = STATE(880), + [sym__pattern] = STATE(880), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(880), + [sym_divOperation] = STATE(880), + [sym_modOperation] = STATE(880), + [sym_addOperation] = STATE(880), + [sym_subOperation] = STATE(880), + [sym_patternAs] = STATE(880), + [sym_patternLimit] = STATE(880), + [sym_assignmentAsPattern] = STATE(880), + [sym_patternAccumulate] = STATE(880), + [sym_patternWhere] = STATE(880), + [sym__literal] = STATE(880), + [sym_patternNot] = STATE(880), + [sym_patternOr] = STATE(880), + [sym_patternOrElse] = STATE(880), + [sym_patternAny] = STATE(880), + [sym_patternAnd] = STATE(880), + [sym_patternMaybe] = STATE(880), + [sym_patternAfter] = STATE(880), + [sym_patternBefore] = STATE(880), + [sym_patternContains] = STATE(880), + [sym_patternIncludes] = STATE(880), + [sym_rewrite] = STATE(880), + [sym_patternIfElse] = STATE(880), + [sym_within] = STATE(880), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(880), + [sym_namedArg] = STATE(1262), + [sym_nodeLike] = STATE(880), + [sym_like] = STATE(880), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(880), + [sym_some] = STATE(880), + [sym_every] = STATE(880), + [sym_regexPattern] = STATE(880), + [sym_log] = STATE(880), + [sym_range] = STATE(880), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(880), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(431), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -15843,10 +15820,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(429), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(429), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -15871,185 +15848,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(429), - [sym_top] = ACTIONS(429), - [sym_bottom] = ACTIONS(429), - [sym_intConstant] = ACTIONS(429), - [sym_doubleConstant] = ACTIONS(431), - [sym_stringConstant] = ACTIONS(431), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_sequential] = STATE(911), - [sym_files] = STATE(911), - [sym__pattern] = STATE(911), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(911), - [sym_divOperation] = STATE(911), - [sym_modOperation] = STATE(911), - [sym_addOperation] = STATE(911), - [sym_subOperation] = STATE(911), - [sym_patternAs] = STATE(911), - [sym_patternLimit] = STATE(911), - [sym_assignmentAsPattern] = STATE(911), - [sym_patternAccumulate] = STATE(911), - [sym_patternWhere] = STATE(911), - [sym__literal] = STATE(911), - [sym_patternNot] = STATE(911), - [sym_patternOr] = STATE(911), - [sym_patternOrElse] = STATE(911), - [sym_patternAny] = STATE(911), - [sym_patternAnd] = STATE(911), - [sym_patternMaybe] = STATE(911), - [sym_patternAfter] = STATE(911), - [sym_patternBefore] = STATE(911), - [sym_patternContains] = STATE(911), - [sym_patternIncludes] = STATE(911), - [sym_rewrite] = STATE(911), - [sym_patternIfElse] = STATE(911), - [sym_within] = STATE(911), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(911), - [sym_nodeLike] = STATE(911), - [sym_like] = STATE(911), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(911), - [sym_some] = STATE(911), - [sym_every] = STATE(911), - [sym_regexPattern] = STATE(911), - [sym_log] = STATE(911), - [sym_range] = STATE(911), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(911), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(311), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(433), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(433), - [sym_variable] = ACTIONS(263), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(433), - [sym_top] = ACTIONS(433), - [sym_bottom] = ACTIONS(433), - [sym_intConstant] = ACTIONS(433), - [sym_doubleConstant] = ACTIONS(435), - [sym_stringConstant] = ACTIONS(435), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), - [sym_comment] = ACTIONS(3), - }, - [67] = { - [sym_sequential] = STATE(901), - [sym_files] = STATE(901), - [sym__pattern] = STATE(901), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(901), - [sym_divOperation] = STATE(901), - [sym_modOperation] = STATE(901), - [sym_addOperation] = STATE(901), - [sym_subOperation] = STATE(901), - [sym_patternAs] = STATE(901), - [sym_patternLimit] = STATE(901), - [sym_assignmentAsPattern] = STATE(901), - [sym_patternAccumulate] = STATE(901), - [sym_patternWhere] = STATE(901), - [sym__literal] = STATE(901), - [sym_patternNot] = STATE(901), - [sym_patternOr] = STATE(901), - [sym_patternOrElse] = STATE(901), - [sym_patternAny] = STATE(901), - [sym_patternAnd] = STATE(901), - [sym_patternMaybe] = STATE(901), - [sym_patternAfter] = STATE(901), - [sym_patternBefore] = STATE(901), - [sym_patternContains] = STATE(901), - [sym_patternIncludes] = STATE(901), - [sym_rewrite] = STATE(901), - [sym_patternIfElse] = STATE(901), - [sym_within] = STATE(901), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(901), - [sym_nodeLike] = STATE(901), - [sym_like] = STATE(901), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1051), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(901), - [sym_some] = STATE(901), - [sym_every] = STATE(901), - [sym_regexPattern] = STATE(901), - [sym_log] = STATE(901), - [sym_range] = STATE(901), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(901), - [sym_snippetRegex] = STATE(422), + [65] = { + [sym_sequential] = STATE(880), + [sym_files] = STATE(880), + [sym__pattern] = STATE(880), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(880), + [sym_divOperation] = STATE(880), + [sym_modOperation] = STATE(880), + [sym_addOperation] = STATE(880), + [sym_subOperation] = STATE(880), + [sym_patternAs] = STATE(880), + [sym_patternLimit] = STATE(880), + [sym_assignmentAsPattern] = STATE(880), + [sym_patternAccumulate] = STATE(880), + [sym_patternWhere] = STATE(880), + [sym__literal] = STATE(880), + [sym_patternNot] = STATE(880), + [sym_patternOr] = STATE(880), + [sym_patternOrElse] = STATE(880), + [sym_patternAny] = STATE(880), + [sym_patternAnd] = STATE(880), + [sym_patternMaybe] = STATE(880), + [sym_patternAfter] = STATE(880), + [sym_patternBefore] = STATE(880), + [sym_patternContains] = STATE(880), + [sym_patternIncludes] = STATE(880), + [sym_rewrite] = STATE(880), + [sym_patternIfElse] = STATE(880), + [sym_within] = STATE(880), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(880), + [sym_namedArg] = STATE(1262), + [sym_nodeLike] = STATE(880), + [sym_like] = STATE(880), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(880), + [sym_some] = STATE(880), + [sym_every] = STATE(880), + [sym_regexPattern] = STATE(880), + [sym_log] = STATE(880), + [sym_range] = STATE(880), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(880), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(433), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -16069,10 +15934,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(437), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(437), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -16097,71 +15962,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(437), - [sym_top] = ACTIONS(437), - [sym_bottom] = ACTIONS(437), - [sym_intConstant] = ACTIONS(437), - [sym_doubleConstant] = ACTIONS(439), - [sym_stringConstant] = ACTIONS(439), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [68] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), + [66] = { + [sym_sequential] = STATE(880), + [sym_files] = STATE(880), + [sym__pattern] = STATE(880), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(880), + [sym_divOperation] = STATE(880), + [sym_modOperation] = STATE(880), + [sym_addOperation] = STATE(880), + [sym_subOperation] = STATE(880), + [sym_patternAs] = STATE(880), + [sym_patternLimit] = STATE(880), + [sym_assignmentAsPattern] = STATE(880), + [sym_patternAccumulate] = STATE(880), + [sym_patternWhere] = STATE(880), + [sym__literal] = STATE(880), + [sym_patternNot] = STATE(880), + [sym_patternOr] = STATE(880), + [sym_patternOrElse] = STATE(880), + [sym_patternAny] = STATE(880), + [sym_patternAnd] = STATE(880), + [sym_patternMaybe] = STATE(880), + [sym_patternAfter] = STATE(880), + [sym_patternBefore] = STATE(880), + [sym_patternContains] = STATE(880), + [sym_patternIncludes] = STATE(880), + [sym_rewrite] = STATE(880), + [sym_patternIfElse] = STATE(880), + [sym_within] = STATE(880), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(880), + [sym_namedArg] = STATE(1262), + [sym_nodeLike] = STATE(880), + [sym_like] = STATE(880), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(880), + [sym_some] = STATE(880), + [sym_every] = STATE(880), + [sym_regexPattern] = STATE(880), + [sym_log] = STATE(880), + [sym_range] = STATE(880), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(880), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(441), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(435), [anon_sym_BANG] = ACTIONS(217), [anon_sym_not] = ACTIONS(219), [anon_sym_or] = ACTIONS(221), @@ -16181,10 +16048,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(443), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(443), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -16209,69 +16076,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(443), - [sym_top] = ACTIONS(443), - [sym_bottom] = ACTIONS(443), - [sym_intConstant] = ACTIONS(443), - [sym_doubleConstant] = ACTIONS(445), - [sym_stringConstant] = ACTIONS(445), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [69] = { - [sym_sequential] = STATE(863), - [sym_files] = STATE(863), - [sym__pattern] = STATE(863), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(863), - [sym_divOperation] = STATE(863), - [sym_modOperation] = STATE(863), - [sym_addOperation] = STATE(863), - [sym_subOperation] = STATE(863), - [sym_patternAs] = STATE(863), - [sym_patternLimit] = STATE(863), - [sym_assignmentAsPattern] = STATE(863), - [sym_patternAccumulate] = STATE(863), - [sym_patternWhere] = STATE(863), - [sym__literal] = STATE(863), - [sym_patternNot] = STATE(863), - [sym_patternOr] = STATE(863), - [sym_patternOrElse] = STATE(863), - [sym_patternAny] = STATE(863), - [sym_patternAnd] = STATE(863), - [sym_patternMaybe] = STATE(863), - [sym_patternAfter] = STATE(863), - [sym_patternBefore] = STATE(863), - [sym_patternContains] = STATE(863), - [sym_patternIncludes] = STATE(863), - [sym_rewrite] = STATE(863), - [sym_patternIfElse] = STATE(863), - [sym_within] = STATE(863), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(863), - [sym_nodeLike] = STATE(863), - [sym_like] = STATE(863), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(863), - [sym_some] = STATE(863), - [sym_every] = STATE(863), - [sym_regexPattern] = STATE(863), - [sym_log] = STATE(863), - [sym_range] = STATE(863), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(863), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), + [67] = { + [sym_sequential] = STATE(910), + [sym_files] = STATE(910), + [sym__pattern] = STATE(910), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(910), + [sym_divOperation] = STATE(910), + [sym_modOperation] = STATE(910), + [sym_addOperation] = STATE(910), + [sym_subOperation] = STATE(910), + [sym_patternAs] = STATE(910), + [sym_patternLimit] = STATE(910), + [sym_assignmentAsPattern] = STATE(910), + [sym_patternAccumulate] = STATE(910), + [sym_patternWhere] = STATE(910), + [sym__literal] = STATE(910), + [sym_patternNot] = STATE(910), + [sym_patternOr] = STATE(910), + [sym_patternOrElse] = STATE(910), + [sym_patternAny] = STATE(910), + [sym_patternAnd] = STATE(910), + [sym_patternMaybe] = STATE(910), + [sym_patternAfter] = STATE(910), + [sym_patternBefore] = STATE(910), + [sym_patternContains] = STATE(910), + [sym_patternIncludes] = STATE(910), + [sym_rewrite] = STATE(910), + [sym_patternIfElse] = STATE(910), + [sym_within] = STATE(910), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(910), + [sym_nodeLike] = STATE(910), + [sym_like] = STATE(910), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1060), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(910), + [sym_some] = STATE(910), + [sym_every] = STATE(910), + [sym_regexPattern] = STATE(910), + [sym_log] = STATE(910), + [sym_range] = STATE(910), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(910), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(325), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -16293,10 +16162,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(449), + [sym_underscore] = ACTIONS(437), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(449), + [sym_booleanConstant] = ACTIONS(437), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -16321,69 +16190,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(449), - [sym_top] = ACTIONS(449), - [sym_bottom] = ACTIONS(449), - [sym_intConstant] = ACTIONS(449), - [sym_doubleConstant] = ACTIONS(451), - [sym_stringConstant] = ACTIONS(451), + [sym_undefined] = ACTIONS(437), + [sym_top] = ACTIONS(437), + [sym_bottom] = ACTIONS(437), + [sym_intConstant] = ACTIONS(437), + [sym_doubleConstant] = ACTIONS(439), + [sym_stringConstant] = ACTIONS(439), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [68] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(441), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -16433,6 +16303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -16445,57 +16316,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [71] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), + [69] = { + [sym_sequential] = STATE(880), + [sym_files] = STATE(880), + [sym__pattern] = STATE(880), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(880), + [sym_divOperation] = STATE(880), + [sym_modOperation] = STATE(880), + [sym_addOperation] = STATE(880), + [sym_subOperation] = STATE(880), + [sym_patternAs] = STATE(880), + [sym_patternLimit] = STATE(880), + [sym_assignmentAsPattern] = STATE(880), + [sym_patternAccumulate] = STATE(880), + [sym_patternWhere] = STATE(880), + [sym__literal] = STATE(880), + [sym_patternNot] = STATE(880), + [sym_patternOr] = STATE(880), + [sym_patternOrElse] = STATE(880), + [sym_patternAny] = STATE(880), + [sym_patternAnd] = STATE(880), + [sym_patternMaybe] = STATE(880), + [sym_patternAfter] = STATE(880), + [sym_patternBefore] = STATE(880), + [sym_patternContains] = STATE(880), + [sym_patternIncludes] = STATE(880), + [sym_rewrite] = STATE(880), + [sym_patternIfElse] = STATE(880), + [sym_within] = STATE(880), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(880), + [sym_namedArg] = STATE(1262), + [sym_nodeLike] = STATE(880), + [sym_like] = STATE(880), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(880), + [sym_some] = STATE(880), + [sym_every] = STATE(880), + [sym_regexPattern] = STATE(880), + [sym_log] = STATE(880), + [sym_range] = STATE(880), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(880), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(311), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(455), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -16517,10 +16388,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(443), + [sym_underscore] = ACTIONS(317), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(443), + [sym_booleanConstant] = ACTIONS(317), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -16545,69 +16416,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(443), - [sym_top] = ACTIONS(443), - [sym_bottom] = ACTIONS(443), - [sym_intConstant] = ACTIONS(443), - [sym_doubleConstant] = ACTIONS(445), - [sym_stringConstant] = ACTIONS(445), + [sym_undefined] = ACTIONS(317), + [sym_top] = ACTIONS(317), + [sym_bottom] = ACTIONS(317), + [sym_intConstant] = ACTIONS(317), + [sym_doubleConstant] = ACTIONS(319), + [sym_stringConstant] = ACTIONS(319), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [72] = { - [sym_sequential] = STATE(880), - [sym_files] = STATE(880), - [sym__pattern] = STATE(880), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(880), - [sym_divOperation] = STATE(880), - [sym_modOperation] = STATE(880), - [sym_addOperation] = STATE(880), - [sym_subOperation] = STATE(880), - [sym_patternAs] = STATE(880), - [sym_patternLimit] = STATE(880), - [sym_assignmentAsPattern] = STATE(880), - [sym_patternAccumulate] = STATE(880), - [sym_patternWhere] = STATE(880), - [sym__literal] = STATE(880), - [sym_patternNot] = STATE(880), - [sym_patternOr] = STATE(880), - [sym_patternOrElse] = STATE(880), - [sym_patternAny] = STATE(880), - [sym_patternAnd] = STATE(880), - [sym_patternMaybe] = STATE(880), - [sym_patternAfter] = STATE(880), - [sym_patternBefore] = STATE(880), - [sym_patternContains] = STATE(880), - [sym_patternIncludes] = STATE(880), - [sym_rewrite] = STATE(880), - [sym_patternIfElse] = STATE(880), - [sym_within] = STATE(880), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(880), - [sym_namedArg] = STATE(1398), - [sym_nodeLike] = STATE(880), - [sym_like] = STATE(880), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(880), - [sym_some] = STATE(880), - [sym_every] = STATE(880), - [sym_regexPattern] = STATE(880), - [sym_log] = STATE(880), - [sym_range] = STATE(880), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(880), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(331), + [70] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(447), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -16629,10 +16501,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(335), + [sym_underscore] = ACTIONS(443), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(335), + [sym_booleanConstant] = ACTIONS(443), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -16657,69 +16529,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(335), - [sym_top] = ACTIONS(335), - [sym_bottom] = ACTIONS(335), - [sym_intConstant] = ACTIONS(335), - [sym_doubleConstant] = ACTIONS(337), - [sym_stringConstant] = ACTIONS(337), + [sym_undefined] = ACTIONS(443), + [sym_top] = ACTIONS(443), + [sym_bottom] = ACTIONS(443), + [sym_intConstant] = ACTIONS(443), + [sym_doubleConstant] = ACTIONS(445), + [sym_stringConstant] = ACTIONS(445), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [73] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [71] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(457), + [anon_sym_RBRACE] = ACTIONS(449), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -16769,6 +16642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -16781,57 +16655,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [74] = { - [sym_sequential] = STATE(871), - [sym_files] = STATE(871), - [sym__pattern] = STATE(871), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(871), - [sym_divOperation] = STATE(871), - [sym_modOperation] = STATE(871), - [sym_addOperation] = STATE(871), - [sym_subOperation] = STATE(871), - [sym_patternAs] = STATE(871), - [sym_patternLimit] = STATE(871), - [sym_assignmentAsPattern] = STATE(871), - [sym_patternAccumulate] = STATE(871), - [sym_patternWhere] = STATE(871), - [sym__literal] = STATE(871), - [sym_patternNot] = STATE(871), - [sym_patternOr] = STATE(871), - [sym_patternOrElse] = STATE(871), - [sym_patternAny] = STATE(871), - [sym_patternAnd] = STATE(871), - [sym_patternMaybe] = STATE(871), - [sym_patternAfter] = STATE(871), - [sym_patternBefore] = STATE(871), - [sym_patternContains] = STATE(871), - [sym_patternIncludes] = STATE(871), - [sym_rewrite] = STATE(871), - [sym_patternIfElse] = STATE(871), - [sym_within] = STATE(871), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(871), - [sym_nodeLike] = STATE(871), - [sym_like] = STATE(871), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(871), - [sym_some] = STATE(871), - [sym_every] = STATE(871), - [sym_regexPattern] = STATE(871), - [sym_log] = STATE(871), - [sym_range] = STATE(871), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(871), - [sym_snippetRegex] = STATE(422), + [72] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(451), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -16853,10 +16727,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(461), + [sym_underscore] = ACTIONS(443), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(461), + [sym_booleanConstant] = ACTIONS(443), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -16881,69 +16755,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(461), - [sym_top] = ACTIONS(461), - [sym_bottom] = ACTIONS(461), - [sym_intConstant] = ACTIONS(461), - [sym_doubleConstant] = ACTIONS(463), - [sym_stringConstant] = ACTIONS(463), + [sym_undefined] = ACTIONS(443), + [sym_top] = ACTIONS(443), + [sym_bottom] = ACTIONS(443), + [sym_intConstant] = ACTIONS(443), + [sym_doubleConstant] = ACTIONS(445), + [sym_stringConstant] = ACTIONS(445), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [75] = { - [sym_sequential] = STATE(875), - [sym_files] = STATE(875), - [sym__pattern] = STATE(875), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(875), - [sym_divOperation] = STATE(875), - [sym_modOperation] = STATE(875), - [sym_addOperation] = STATE(875), - [sym_subOperation] = STATE(875), - [sym_patternAs] = STATE(875), - [sym_patternLimit] = STATE(875), - [sym_assignmentAsPattern] = STATE(875), - [sym_patternAccumulate] = STATE(875), - [sym_patternWhere] = STATE(875), - [sym__literal] = STATE(875), - [sym_patternNot] = STATE(875), - [sym_patternOr] = STATE(875), - [sym_patternOrElse] = STATE(875), - [sym_patternAny] = STATE(875), - [sym_patternAnd] = STATE(875), - [sym_patternMaybe] = STATE(875), - [sym_patternAfter] = STATE(875), - [sym_patternBefore] = STATE(875), - [sym_patternContains] = STATE(875), - [sym_patternIncludes] = STATE(875), - [sym_rewrite] = STATE(875), - [sym_patternIfElse] = STATE(875), - [sym_within] = STATE(875), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(875), - [sym_nodeLike] = STATE(875), - [sym_like] = STATE(875), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(875), - [sym_some] = STATE(875), - [sym_every] = STATE(875), - [sym_regexPattern] = STATE(875), - [sym_log] = STATE(875), - [sym_range] = STATE(875), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(875), - [sym_snippetRegex] = STATE(422), + [73] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(453), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -16965,10 +16840,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(467), + [sym_underscore] = ACTIONS(443), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(467), + [sym_booleanConstant] = ACTIONS(443), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -16993,69 +16868,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(467), - [sym_top] = ACTIONS(467), - [sym_bottom] = ACTIONS(467), - [sym_intConstant] = ACTIONS(467), - [sym_doubleConstant] = ACTIONS(469), - [sym_stringConstant] = ACTIONS(469), + [sym_undefined] = ACTIONS(443), + [sym_top] = ACTIONS(443), + [sym_bottom] = ACTIONS(443), + [sym_intConstant] = ACTIONS(443), + [sym_doubleConstant] = ACTIONS(445), + [sym_stringConstant] = ACTIONS(445), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [76] = { - [sym_sequential] = STATE(874), - [sym_files] = STATE(874), - [sym__pattern] = STATE(874), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(874), - [sym_divOperation] = STATE(874), - [sym_modOperation] = STATE(874), - [sym_addOperation] = STATE(874), - [sym_subOperation] = STATE(874), - [sym_patternAs] = STATE(874), - [sym_patternLimit] = STATE(874), - [sym_assignmentAsPattern] = STATE(874), - [sym_patternAccumulate] = STATE(874), - [sym_patternWhere] = STATE(874), - [sym__literal] = STATE(874), - [sym_patternNot] = STATE(874), - [sym_patternOr] = STATE(874), - [sym_patternOrElse] = STATE(874), - [sym_patternAny] = STATE(874), - [sym_patternAnd] = STATE(874), - [sym_patternMaybe] = STATE(874), - [sym_patternAfter] = STATE(874), - [sym_patternBefore] = STATE(874), - [sym_patternContains] = STATE(874), - [sym_patternIncludes] = STATE(874), - [sym_rewrite] = STATE(874), - [sym_patternIfElse] = STATE(874), - [sym_within] = STATE(874), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(874), - [sym_nodeLike] = STATE(874), - [sym_like] = STATE(874), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(874), - [sym_some] = STATE(874), - [sym_every] = STATE(874), - [sym_regexPattern] = STATE(874), - [sym_log] = STATE(874), - [sym_range] = STATE(874), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(874), - [sym_snippetRegex] = STATE(422), + [74] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(455), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -17077,10 +16953,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(473), + [sym_underscore] = ACTIONS(443), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(473), + [sym_booleanConstant] = ACTIONS(443), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -17105,69 +16981,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(473), - [sym_top] = ACTIONS(473), - [sym_bottom] = ACTIONS(473), - [sym_intConstant] = ACTIONS(473), - [sym_doubleConstant] = ACTIONS(475), - [sym_stringConstant] = ACTIONS(475), + [sym_undefined] = ACTIONS(443), + [sym_top] = ACTIONS(443), + [sym_bottom] = ACTIONS(443), + [sym_intConstant] = ACTIONS(443), + [sym_doubleConstant] = ACTIONS(445), + [sym_stringConstant] = ACTIONS(445), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [77] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [75] = { + [sym_sequential] = STATE(867), + [sym_files] = STATE(867), + [sym__pattern] = STATE(867), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(867), + [sym_divOperation] = STATE(867), + [sym_modOperation] = STATE(867), + [sym_addOperation] = STATE(867), + [sym_subOperation] = STATE(867), + [sym_patternAs] = STATE(867), + [sym_patternLimit] = STATE(867), + [sym_assignmentAsPattern] = STATE(867), + [sym_patternAccumulate] = STATE(867), + [sym_patternWhere] = STATE(867), + [sym__literal] = STATE(867), + [sym_patternNot] = STATE(867), + [sym_patternOr] = STATE(867), + [sym_patternOrElse] = STATE(867), + [sym_patternAny] = STATE(867), + [sym_patternAnd] = STATE(867), + [sym_patternMaybe] = STATE(867), + [sym_patternAfter] = STATE(867), + [sym_patternBefore] = STATE(867), + [sym_patternContains] = STATE(867), + [sym_patternIncludes] = STATE(867), + [sym_rewrite] = STATE(867), + [sym_patternIfElse] = STATE(867), + [sym_within] = STATE(867), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(867), + [sym_nodeLike] = STATE(867), + [sym_like] = STATE(867), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(867), + [sym_some] = STATE(867), + [sym_every] = STATE(867), + [sym_regexPattern] = STATE(867), + [sym_log] = STATE(867), + [sym_range] = STATE(867), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(867), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(457), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -17189,10 +17066,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(443), + [sym_underscore] = ACTIONS(459), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(443), + [sym_booleanConstant] = ACTIONS(459), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -17217,69 +17094,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(443), - [sym_top] = ACTIONS(443), - [sym_bottom] = ACTIONS(443), - [sym_intConstant] = ACTIONS(443), - [sym_doubleConstant] = ACTIONS(445), - [sym_stringConstant] = ACTIONS(445), + [sym_undefined] = ACTIONS(459), + [sym_top] = ACTIONS(459), + [sym_bottom] = ACTIONS(459), + [sym_intConstant] = ACTIONS(459), + [sym_doubleConstant] = ACTIONS(461), + [sym_stringConstant] = ACTIONS(461), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [78] = { - [sym_sequential] = STATE(870), - [sym_files] = STATE(870), - [sym__pattern] = STATE(870), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(870), - [sym_divOperation] = STATE(870), - [sym_modOperation] = STATE(870), - [sym_addOperation] = STATE(870), - [sym_subOperation] = STATE(870), - [sym_patternAs] = STATE(870), - [sym_patternLimit] = STATE(870), - [sym_assignmentAsPattern] = STATE(870), - [sym_patternAccumulate] = STATE(870), - [sym_patternWhere] = STATE(870), - [sym__literal] = STATE(870), - [sym_patternNot] = STATE(870), - [sym_patternOr] = STATE(870), - [sym_patternOrElse] = STATE(870), - [sym_patternAny] = STATE(870), - [sym_patternAnd] = STATE(870), - [sym_patternMaybe] = STATE(870), - [sym_patternAfter] = STATE(870), - [sym_patternBefore] = STATE(870), - [sym_patternContains] = STATE(870), - [sym_patternIncludes] = STATE(870), - [sym_rewrite] = STATE(870), - [sym_patternIfElse] = STATE(870), - [sym_within] = STATE(870), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(870), - [sym_nodeLike] = STATE(870), - [sym_like] = STATE(870), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(870), - [sym_some] = STATE(870), - [sym_every] = STATE(870), - [sym_regexPattern] = STATE(870), - [sym_log] = STATE(870), - [sym_range] = STATE(870), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(870), - [sym_snippetRegex] = STATE(422), + [76] = { + [sym_sequential] = STATE(868), + [sym_files] = STATE(868), + [sym__pattern] = STATE(868), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(868), + [sym_divOperation] = STATE(868), + [sym_modOperation] = STATE(868), + [sym_addOperation] = STATE(868), + [sym_subOperation] = STATE(868), + [sym_patternAs] = STATE(868), + [sym_patternLimit] = STATE(868), + [sym_assignmentAsPattern] = STATE(868), + [sym_patternAccumulate] = STATE(868), + [sym_patternWhere] = STATE(868), + [sym__literal] = STATE(868), + [sym_patternNot] = STATE(868), + [sym_patternOr] = STATE(868), + [sym_patternOrElse] = STATE(868), + [sym_patternAny] = STATE(868), + [sym_patternAnd] = STATE(868), + [sym_patternMaybe] = STATE(868), + [sym_patternAfter] = STATE(868), + [sym_patternBefore] = STATE(868), + [sym_patternContains] = STATE(868), + [sym_patternIncludes] = STATE(868), + [sym_rewrite] = STATE(868), + [sym_patternIfElse] = STATE(868), + [sym_within] = STATE(868), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(868), + [sym_nodeLike] = STATE(868), + [sym_like] = STATE(868), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(868), + [sym_some] = STATE(868), + [sym_every] = STATE(868), + [sym_regexPattern] = STATE(868), + [sym_log] = STATE(868), + [sym_range] = STATE(868), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(868), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_RBRACE] = ACTIONS(463), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -17301,10 +17179,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(481), + [sym_underscore] = ACTIONS(465), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(481), + [sym_booleanConstant] = ACTIONS(465), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -17329,69 +17207,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(481), - [sym_top] = ACTIONS(481), - [sym_bottom] = ACTIONS(481), - [sym_intConstant] = ACTIONS(481), - [sym_doubleConstant] = ACTIONS(483), - [sym_stringConstant] = ACTIONS(483), + [sym_undefined] = ACTIONS(465), + [sym_top] = ACTIONS(465), + [sym_bottom] = ACTIONS(465), + [sym_intConstant] = ACTIONS(465), + [sym_doubleConstant] = ACTIONS(467), + [sym_stringConstant] = ACTIONS(467), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [79] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [77] = { + [sym_sequential] = STATE(869), + [sym_files] = STATE(869), + [sym__pattern] = STATE(869), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(869), + [sym_divOperation] = STATE(869), + [sym_modOperation] = STATE(869), + [sym_addOperation] = STATE(869), + [sym_subOperation] = STATE(869), + [sym_patternAs] = STATE(869), + [sym_patternLimit] = STATE(869), + [sym_assignmentAsPattern] = STATE(869), + [sym_patternAccumulate] = STATE(869), + [sym_patternWhere] = STATE(869), + [sym__literal] = STATE(869), + [sym_patternNot] = STATE(869), + [sym_patternOr] = STATE(869), + [sym_patternOrElse] = STATE(869), + [sym_patternAny] = STATE(869), + [sym_patternAnd] = STATE(869), + [sym_patternMaybe] = STATE(869), + [sym_patternAfter] = STATE(869), + [sym_patternBefore] = STATE(869), + [sym_patternContains] = STATE(869), + [sym_patternIncludes] = STATE(869), + [sym_rewrite] = STATE(869), + [sym_patternIfElse] = STATE(869), + [sym_within] = STATE(869), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(869), + [sym_nodeLike] = STATE(869), + [sym_like] = STATE(869), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(869), + [sym_some] = STATE(869), + [sym_every] = STATE(869), + [sym_regexPattern] = STATE(869), + [sym_log] = STATE(869), + [sym_range] = STATE(869), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(869), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(469), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -17413,10 +17292,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(443), + [sym_underscore] = ACTIONS(471), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(443), + [sym_booleanConstant] = ACTIONS(471), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -17441,69 +17320,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(443), - [sym_top] = ACTIONS(443), - [sym_bottom] = ACTIONS(443), - [sym_intConstant] = ACTIONS(443), - [sym_doubleConstant] = ACTIONS(445), - [sym_stringConstant] = ACTIONS(445), + [sym_undefined] = ACTIONS(471), + [sym_top] = ACTIONS(471), + [sym_bottom] = ACTIONS(471), + [sym_intConstant] = ACTIONS(471), + [sym_doubleConstant] = ACTIONS(473), + [sym_stringConstant] = ACTIONS(473), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [80] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [78] = { + [sym_sequential] = STATE(875), + [sym_files] = STATE(875), + [sym__pattern] = STATE(875), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(875), + [sym_divOperation] = STATE(875), + [sym_modOperation] = STATE(875), + [sym_addOperation] = STATE(875), + [sym_subOperation] = STATE(875), + [sym_patternAs] = STATE(875), + [sym_patternLimit] = STATE(875), + [sym_assignmentAsPattern] = STATE(875), + [sym_patternAccumulate] = STATE(875), + [sym_patternWhere] = STATE(875), + [sym__literal] = STATE(875), + [sym_patternNot] = STATE(875), + [sym_patternOr] = STATE(875), + [sym_patternOrElse] = STATE(875), + [sym_patternAny] = STATE(875), + [sym_patternAnd] = STATE(875), + [sym_patternMaybe] = STATE(875), + [sym_patternAfter] = STATE(875), + [sym_patternBefore] = STATE(875), + [sym_patternContains] = STATE(875), + [sym_patternIncludes] = STATE(875), + [sym_rewrite] = STATE(875), + [sym_patternIfElse] = STATE(875), + [sym_within] = STATE(875), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(875), + [sym_nodeLike] = STATE(875), + [sym_like] = STATE(875), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(875), + [sym_some] = STATE(875), + [sym_every] = STATE(875), + [sym_regexPattern] = STATE(875), + [sym_log] = STATE(875), + [sym_range] = STATE(875), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(875), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_RBRACE] = ACTIONS(475), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -17525,10 +17405,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(443), + [sym_underscore] = ACTIONS(477), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(443), + [sym_booleanConstant] = ACTIONS(477), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -17553,181 +17433,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(443), - [sym_top] = ACTIONS(443), - [sym_bottom] = ACTIONS(443), - [sym_intConstant] = ACTIONS(443), - [sym_doubleConstant] = ACTIONS(445), - [sym_stringConstant] = ACTIONS(445), + [sym_undefined] = ACTIONS(477), + [sym_top] = ACTIONS(477), + [sym_bottom] = ACTIONS(477), + [sym_intConstant] = ACTIONS(477), + [sym_doubleConstant] = ACTIONS(479), + [sym_stringConstant] = ACTIONS(479), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [81] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(443), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(443), - [sym_variable] = ACTIONS(263), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(443), - [sym_top] = ACTIONS(443), - [sym_bottom] = ACTIONS(443), - [sym_intConstant] = ACTIONS(443), - [sym_doubleConstant] = ACTIONS(445), - [sym_stringConstant] = ACTIONS(445), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), - [sym_comment] = ACTIONS(3), - }, - [82] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [79] = { + [sym_sequential] = STATE(863), + [sym_files] = STATE(863), + [sym__pattern] = STATE(863), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(863), + [sym_divOperation] = STATE(863), + [sym_modOperation] = STATE(863), + [sym_addOperation] = STATE(863), + [sym_subOperation] = STATE(863), + [sym_patternAs] = STATE(863), + [sym_patternLimit] = STATE(863), + [sym_assignmentAsPattern] = STATE(863), + [sym_patternAccumulate] = STATE(863), + [sym_patternWhere] = STATE(863), + [sym__literal] = STATE(863), + [sym_patternNot] = STATE(863), + [sym_patternOr] = STATE(863), + [sym_patternOrElse] = STATE(863), + [sym_patternAny] = STATE(863), + [sym_patternAnd] = STATE(863), + [sym_patternMaybe] = STATE(863), + [sym_patternAfter] = STATE(863), + [sym_patternBefore] = STATE(863), + [sym_patternContains] = STATE(863), + [sym_patternIncludes] = STATE(863), + [sym_rewrite] = STATE(863), + [sym_patternIfElse] = STATE(863), + [sym_within] = STATE(863), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(863), + [sym_nodeLike] = STATE(863), + [sym_like] = STATE(863), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(863), + [sym_some] = STATE(863), + [sym_every] = STATE(863), + [sym_regexPattern] = STATE(863), + [sym_log] = STATE(863), + [sym_range] = STATE(863), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(863), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(491), + [anon_sym_RBRACE] = ACTIONS(481), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -17749,10 +17518,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(443), + [sym_underscore] = ACTIONS(483), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(443), + [sym_booleanConstant] = ACTIONS(483), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -17777,69 +17546,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(443), - [sym_top] = ACTIONS(443), - [sym_bottom] = ACTIONS(443), - [sym_intConstant] = ACTIONS(443), - [sym_doubleConstant] = ACTIONS(445), - [sym_stringConstant] = ACTIONS(445), + [sym_undefined] = ACTIONS(483), + [sym_top] = ACTIONS(483), + [sym_bottom] = ACTIONS(483), + [sym_intConstant] = ACTIONS(483), + [sym_doubleConstant] = ACTIONS(485), + [sym_stringConstant] = ACTIONS(485), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [83] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [80] = { + [sym_sequential] = STATE(870), + [sym_files] = STATE(870), + [sym__pattern] = STATE(870), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(870), + [sym_divOperation] = STATE(870), + [sym_modOperation] = STATE(870), + [sym_addOperation] = STATE(870), + [sym_subOperation] = STATE(870), + [sym_patternAs] = STATE(870), + [sym_patternLimit] = STATE(870), + [sym_assignmentAsPattern] = STATE(870), + [sym_patternAccumulate] = STATE(870), + [sym_patternWhere] = STATE(870), + [sym__literal] = STATE(870), + [sym_patternNot] = STATE(870), + [sym_patternOr] = STATE(870), + [sym_patternOrElse] = STATE(870), + [sym_patternAny] = STATE(870), + [sym_patternAnd] = STATE(870), + [sym_patternMaybe] = STATE(870), + [sym_patternAfter] = STATE(870), + [sym_patternBefore] = STATE(870), + [sym_patternContains] = STATE(870), + [sym_patternIncludes] = STATE(870), + [sym_rewrite] = STATE(870), + [sym_patternIfElse] = STATE(870), + [sym_within] = STATE(870), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(870), + [sym_nodeLike] = STATE(870), + [sym_like] = STATE(870), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(870), + [sym_some] = STATE(870), + [sym_every] = STATE(870), + [sym_regexPattern] = STATE(870), + [sym_log] = STATE(870), + [sym_range] = STATE(870), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(870), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(487), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -17861,10 +17631,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(443), + [sym_underscore] = ACTIONS(489), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(443), + [sym_booleanConstant] = ACTIONS(489), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -17889,69 +17659,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(443), - [sym_top] = ACTIONS(443), - [sym_bottom] = ACTIONS(443), - [sym_intConstant] = ACTIONS(443), - [sym_doubleConstant] = ACTIONS(445), - [sym_stringConstant] = ACTIONS(445), + [sym_undefined] = ACTIONS(489), + [sym_top] = ACTIONS(489), + [sym_bottom] = ACTIONS(489), + [sym_intConstant] = ACTIONS(489), + [sym_doubleConstant] = ACTIONS(491), + [sym_stringConstant] = ACTIONS(491), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [84] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [81] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(495), + [anon_sym_RBRACE] = ACTIONS(493), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -18001,6 +17772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18013,57 +17785,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [85] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [82] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(495), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -18113,6 +17885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18125,57 +17898,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [86] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [83] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(497), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -18225,6 +17998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18237,57 +18011,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [87] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [84] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(499), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -18337,6 +18111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18349,57 +18124,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [88] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [85] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(503), + [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -18449,6 +18224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18461,57 +18237,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [89] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [86] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(505), + [anon_sym_RBRACE] = ACTIONS(503), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -18561,6 +18337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18573,57 +18350,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [90] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [87] = { + [sym_sequential] = STATE(873), + [sym_files] = STATE(873), + [sym__pattern] = STATE(873), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(873), + [sym_divOperation] = STATE(873), + [sym_modOperation] = STATE(873), + [sym_addOperation] = STATE(873), + [sym_subOperation] = STATE(873), + [sym_patternAs] = STATE(873), + [sym_patternLimit] = STATE(873), + [sym_assignmentAsPattern] = STATE(873), + [sym_patternAccumulate] = STATE(873), + [sym_patternWhere] = STATE(873), + [sym__literal] = STATE(873), + [sym_patternNot] = STATE(873), + [sym_patternOr] = STATE(873), + [sym_patternOrElse] = STATE(873), + [sym_patternAny] = STATE(873), + [sym_patternAnd] = STATE(873), + [sym_patternMaybe] = STATE(873), + [sym_patternAfter] = STATE(873), + [sym_patternBefore] = STATE(873), + [sym_patternContains] = STATE(873), + [sym_patternIncludes] = STATE(873), + [sym_rewrite] = STATE(873), + [sym_patternIfElse] = STATE(873), + [sym_within] = STATE(873), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(873), + [sym_nodeLike] = STATE(873), + [sym_like] = STATE(873), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(873), + [sym_some] = STATE(873), + [sym_every] = STATE(873), + [sym_regexPattern] = STATE(873), + [sym_log] = STATE(873), + [sym_range] = STATE(873), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(873), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(505), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -18645,10 +18422,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(443), + [sym_underscore] = ACTIONS(507), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(443), + [sym_booleanConstant] = ACTIONS(507), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -18673,69 +18450,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(443), - [sym_top] = ACTIONS(443), - [sym_bottom] = ACTIONS(443), - [sym_intConstant] = ACTIONS(443), - [sym_doubleConstant] = ACTIONS(445), - [sym_stringConstant] = ACTIONS(445), + [sym_undefined] = ACTIONS(507), + [sym_top] = ACTIONS(507), + [sym_bottom] = ACTIONS(507), + [sym_intConstant] = ACTIONS(507), + [sym_doubleConstant] = ACTIONS(509), + [sym_stringConstant] = ACTIONS(509), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [91] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [88] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(511), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -18785,6 +18563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18797,57 +18576,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [92] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [89] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(513), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -18897,6 +18676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -18909,57 +18689,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [93] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [90] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(515), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -19009,6 +18789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19021,57 +18802,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [94] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [91] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(517), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -19121,6 +18902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19133,57 +18915,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [95] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [92] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(519), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -19233,6 +19015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19245,57 +19028,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [96] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [93] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(519), + [anon_sym_RBRACE] = ACTIONS(521), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -19345,6 +19128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19357,57 +19141,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [97] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [94] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_RBRACE] = ACTIONS(523), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -19457,6 +19241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19469,57 +19254,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [98] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [95] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(523), + [anon_sym_RBRACE] = ACTIONS(525), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -19569,6 +19354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19581,57 +19367,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [99] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [96] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(527), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -19681,6 +19467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(443), @@ -19693,57 +19480,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [100] = { - [sym_sequential] = STATE(868), - [sym_files] = STATE(868), - [sym__pattern] = STATE(868), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(868), - [sym_divOperation] = STATE(868), - [sym_modOperation] = STATE(868), - [sym_addOperation] = STATE(868), - [sym_subOperation] = STATE(868), - [sym_patternAs] = STATE(868), - [sym_patternLimit] = STATE(868), - [sym_assignmentAsPattern] = STATE(868), - [sym_patternAccumulate] = STATE(868), - [sym_patternWhere] = STATE(868), - [sym__literal] = STATE(868), - [sym_patternNot] = STATE(868), - [sym_patternOr] = STATE(868), - [sym_patternOrElse] = STATE(868), - [sym_patternAny] = STATE(868), - [sym_patternAnd] = STATE(868), - [sym_patternMaybe] = STATE(868), - [sym_patternAfter] = STATE(868), - [sym_patternBefore] = STATE(868), - [sym_patternContains] = STATE(868), - [sym_patternIncludes] = STATE(868), - [sym_rewrite] = STATE(868), - [sym_patternIfElse] = STATE(868), - [sym_within] = STATE(868), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(868), - [sym_nodeLike] = STATE(868), - [sym_like] = STATE(868), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(868), - [sym_some] = STATE(868), - [sym_every] = STATE(868), - [sym_regexPattern] = STATE(868), - [sym_log] = STATE(868), - [sym_range] = STATE(868), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(868), - [sym_snippetRegex] = STATE(422), + [97] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -19765,10 +19552,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(529), + [sym_underscore] = ACTIONS(443), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(529), + [sym_booleanConstant] = ACTIONS(443), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -19793,69 +19580,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(529), - [sym_top] = ACTIONS(529), - [sym_bottom] = ACTIONS(529), - [sym_intConstant] = ACTIONS(529), - [sym_doubleConstant] = ACTIONS(531), - [sym_stringConstant] = ACTIONS(531), + [sym_undefined] = ACTIONS(443), + [sym_top] = ACTIONS(443), + [sym_bottom] = ACTIONS(443), + [sym_intConstant] = ACTIONS(443), + [sym_doubleConstant] = ACTIONS(445), + [sym_stringConstant] = ACTIONS(445), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [101] = { - [sym_sequential] = STATE(872), - [sym_files] = STATE(872), - [sym__pattern] = STATE(872), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(872), - [sym_divOperation] = STATE(872), - [sym_modOperation] = STATE(872), - [sym_addOperation] = STATE(872), - [sym_subOperation] = STATE(872), - [sym_patternAs] = STATE(872), - [sym_patternLimit] = STATE(872), - [sym_assignmentAsPattern] = STATE(872), - [sym_patternAccumulate] = STATE(872), - [sym_patternWhere] = STATE(872), - [sym__literal] = STATE(872), - [sym_patternNot] = STATE(872), - [sym_patternOr] = STATE(872), - [sym_patternOrElse] = STATE(872), - [sym_patternAny] = STATE(872), - [sym_patternAnd] = STATE(872), - [sym_patternMaybe] = STATE(872), - [sym_patternAfter] = STATE(872), - [sym_patternBefore] = STATE(872), - [sym_patternContains] = STATE(872), - [sym_patternIncludes] = STATE(872), - [sym_rewrite] = STATE(872), - [sym_patternIfElse] = STATE(872), - [sym_within] = STATE(872), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(872), - [sym_nodeLike] = STATE(872), - [sym_like] = STATE(872), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(872), - [sym_some] = STATE(872), - [sym_every] = STATE(872), - [sym_regexPattern] = STATE(872), - [sym_log] = STATE(872), - [sym_range] = STATE(872), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(872), - [sym_snippetRegex] = STATE(422), + [98] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_RBRACE] = ACTIONS(531), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -19877,10 +19665,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(535), + [sym_underscore] = ACTIONS(443), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(535), + [sym_booleanConstant] = ACTIONS(443), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -19905,68 +19693,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(535), - [sym_top] = ACTIONS(535), - [sym_bottom] = ACTIONS(535), - [sym_intConstant] = ACTIONS(535), - [sym_doubleConstant] = ACTIONS(537), - [sym_stringConstant] = ACTIONS(537), + [sym_undefined] = ACTIONS(443), + [sym_top] = ACTIONS(443), + [sym_bottom] = ACTIONS(443), + [sym_intConstant] = ACTIONS(443), + [sym_doubleConstant] = ACTIONS(445), + [sym_stringConstant] = ACTIONS(445), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [102] = { - [sym_sequential] = STATE(828), - [sym_files] = STATE(828), - [sym__pattern] = STATE(828), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(828), - [sym_divOperation] = STATE(828), - [sym_modOperation] = STATE(828), - [sym_addOperation] = STATE(828), - [sym_subOperation] = STATE(828), - [sym_patternAs] = STATE(828), - [sym_patternLimit] = STATE(828), - [sym_assignmentAsPattern] = STATE(828), - [sym_patternAccumulate] = STATE(828), - [sym_patternWhere] = STATE(828), - [sym__literal] = STATE(828), - [sym_patternNot] = STATE(828), - [sym_patternOr] = STATE(828), - [sym_patternOrElse] = STATE(828), - [sym_patternAny] = STATE(828), - [sym_patternAnd] = STATE(828), - [sym_patternMaybe] = STATE(828), - [sym_patternAfter] = STATE(828), - [sym_patternBefore] = STATE(828), - [sym_patternContains] = STATE(828), - [sym_patternIncludes] = STATE(828), - [sym_rewrite] = STATE(828), - [sym_patternIfElse] = STATE(828), - [sym_within] = STATE(828), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(828), - [sym_nodeLike] = STATE(828), - [sym_like] = STATE(828), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(828), - [sym_some] = STATE(828), - [sym_every] = STATE(828), - [sym_regexPattern] = STATE(828), - [sym_log] = STATE(828), - [sym_range] = STATE(828), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(828), - [sym_snippetRegex] = STATE(422), + [99] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -19988,10 +19778,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(541), + [sym_underscore] = ACTIONS(443), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(541), + [sym_booleanConstant] = ACTIONS(443), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -20016,68 +19806,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(541), - [sym_top] = ACTIONS(541), - [sym_bottom] = ACTIONS(541), - [sym_intConstant] = ACTIONS(541), - [sym_doubleConstant] = ACTIONS(543), - [sym_stringConstant] = ACTIONS(543), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), - [sym_comment] = ACTIONS(3), + [sym_undefined] = ACTIONS(443), + [sym_top] = ACTIONS(443), + [sym_bottom] = ACTIONS(443), + [sym_intConstant] = ACTIONS(443), + [sym_doubleConstant] = ACTIONS(445), + [sym_stringConstant] = ACTIONS(445), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), + [sym_comment] = ACTIONS(3), }, - [103] = { - [sym_sequential] = STATE(883), - [sym_files] = STATE(883), - [sym__pattern] = STATE(883), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(883), - [sym_divOperation] = STATE(883), - [sym_modOperation] = STATE(883), - [sym_addOperation] = STATE(883), - [sym_subOperation] = STATE(883), - [sym_patternAs] = STATE(883), - [sym_patternLimit] = STATE(883), - [sym_assignmentAsPattern] = STATE(883), - [sym_patternAccumulate] = STATE(883), - [sym_patternWhere] = STATE(883), - [sym__literal] = STATE(883), - [sym_patternNot] = STATE(883), - [sym_patternOr] = STATE(883), - [sym_patternOrElse] = STATE(883), - [sym_patternAny] = STATE(883), - [sym_patternAnd] = STATE(883), - [sym_patternMaybe] = STATE(883), - [sym_patternAfter] = STATE(883), - [sym_patternBefore] = STATE(883), - [sym_patternContains] = STATE(883), - [sym_patternIncludes] = STATE(883), - [sym_rewrite] = STATE(883), - [sym_patternIfElse] = STATE(883), - [sym_within] = STATE(883), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(883), - [sym_nodeLike] = STATE(883), - [sym_like] = STATE(883), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(883), - [sym_some] = STATE(883), - [sym_every] = STATE(883), - [sym_regexPattern] = STATE(883), - [sym_log] = STATE(883), - [sym_range] = STATE(883), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(883), - [sym_snippetRegex] = STATE(422), + [100] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -20099,10 +19891,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(545), + [sym_underscore] = ACTIONS(443), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(545), + [sym_booleanConstant] = ACTIONS(443), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -20127,68 +19919,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(545), - [sym_top] = ACTIONS(545), - [sym_bottom] = ACTIONS(545), - [sym_intConstant] = ACTIONS(545), - [sym_doubleConstant] = ACTIONS(547), - [sym_stringConstant] = ACTIONS(547), + [sym_undefined] = ACTIONS(443), + [sym_top] = ACTIONS(443), + [sym_bottom] = ACTIONS(443), + [sym_intConstant] = ACTIONS(443), + [sym_doubleConstant] = ACTIONS(445), + [sym_stringConstant] = ACTIONS(445), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [104] = { - [sym_sequential] = STATE(780), - [sym_files] = STATE(780), - [sym__pattern] = STATE(780), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(780), - [sym_divOperation] = STATE(780), - [sym_modOperation] = STATE(780), - [sym_addOperation] = STATE(780), - [sym_subOperation] = STATE(780), - [sym_patternAs] = STATE(780), - [sym_patternLimit] = STATE(780), - [sym_assignmentAsPattern] = STATE(780), - [sym_patternAccumulate] = STATE(780), - [sym_patternWhere] = STATE(780), - [sym__literal] = STATE(780), - [sym_patternNot] = STATE(780), - [sym_patternOr] = STATE(780), - [sym_patternOrElse] = STATE(780), - [sym_patternAny] = STATE(780), - [sym_patternAnd] = STATE(780), - [sym_patternMaybe] = STATE(780), - [sym_patternAfter] = STATE(780), - [sym_patternBefore] = STATE(780), - [sym_patternContains] = STATE(780), - [sym_patternIncludes] = STATE(780), - [sym_rewrite] = STATE(780), - [sym_patternIfElse] = STATE(780), - [sym_within] = STATE(780), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(780), - [sym_nodeLike] = STATE(780), - [sym_like] = STATE(780), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(780), - [sym_some] = STATE(780), - [sym_every] = STATE(780), - [sym_regexPattern] = STATE(780), - [sym_log] = STATE(780), - [sym_range] = STATE(780), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(780), - [sym_snippetRegex] = STATE(422), + [101] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -20210,10 +20004,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(549), + [sym_underscore] = ACTIONS(443), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(549), + [sym_booleanConstant] = ACTIONS(443), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -20238,65 +20032,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(549), - [sym_top] = ACTIONS(549), - [sym_bottom] = ACTIONS(549), - [sym_intConstant] = ACTIONS(549), - [sym_doubleConstant] = ACTIONS(551), - [sym_stringConstant] = ACTIONS(551), + [sym_undefined] = ACTIONS(443), + [sym_top] = ACTIONS(443), + [sym_bottom] = ACTIONS(443), + [sym_intConstant] = ACTIONS(443), + [sym_doubleConstant] = ACTIONS(445), + [sym_stringConstant] = ACTIONS(445), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [105] = { - [sym_sequential] = STATE(751), - [sym_files] = STATE(751), - [sym__pattern] = STATE(751), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(751), - [sym_divOperation] = STATE(751), - [sym_modOperation] = STATE(751), - [sym_addOperation] = STATE(751), - [sym_subOperation] = STATE(751), - [sym_patternAs] = STATE(751), - [sym_patternLimit] = STATE(751), - [sym_assignmentAsPattern] = STATE(751), - [sym_patternAccumulate] = STATE(751), - [sym_patternWhere] = STATE(751), - [sym__literal] = STATE(751), - [sym_patternNot] = STATE(751), - [sym_patternOr] = STATE(751), - [sym_patternOrElse] = STATE(751), - [sym_patternAny] = STATE(751), - [sym_patternAnd] = STATE(751), - [sym_patternMaybe] = STATE(751), - [sym_patternAfter] = STATE(751), - [sym_patternBefore] = STATE(751), - [sym_patternContains] = STATE(751), - [sym_patternIncludes] = STATE(751), - [sym_rewrite] = STATE(751), - [sym_patternIfElse] = STATE(751), - [sym_within] = STATE(751), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(751), - [sym_nodeLike] = STATE(751), - [sym_like] = STATE(751), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(751), - [sym_some] = STATE(751), - [sym_every] = STATE(751), - [sym_regexPattern] = STATE(751), - [sym_log] = STATE(751), - [sym_range] = STATE(751), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(751), - [sym_snippetRegex] = STATE(422), + [102] = { + [sym_sequential] = STATE(890), + [sym_files] = STATE(890), + [sym__pattern] = STATE(890), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(890), + [sym_divOperation] = STATE(890), + [sym_modOperation] = STATE(890), + [sym_addOperation] = STATE(890), + [sym_subOperation] = STATE(890), + [sym_patternAs] = STATE(890), + [sym_patternLimit] = STATE(890), + [sym_assignmentAsPattern] = STATE(890), + [sym_patternAccumulate] = STATE(890), + [sym_patternWhere] = STATE(890), + [sym__literal] = STATE(890), + [sym_patternNot] = STATE(890), + [sym_patternOr] = STATE(890), + [sym_patternOrElse] = STATE(890), + [sym_patternAny] = STATE(890), + [sym_patternAnd] = STATE(890), + [sym_patternMaybe] = STATE(890), + [sym_patternAfter] = STATE(890), + [sym_patternBefore] = STATE(890), + [sym_patternContains] = STATE(890), + [sym_patternIncludes] = STATE(890), + [sym_rewrite] = STATE(890), + [sym_patternIfElse] = STATE(890), + [sym_within] = STATE(890), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(890), + [sym_nodeLike] = STATE(890), + [sym_like] = STATE(890), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(890), + [sym_some] = STATE(890), + [sym_every] = STATE(890), + [sym_regexPattern] = STATE(890), + [sym_log] = STATE(890), + [sym_range] = STATE(890), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(890), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -20321,10 +20116,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(553), + [sym_underscore] = ACTIONS(539), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(553), + [sym_booleanConstant] = ACTIONS(539), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -20349,65 +20144,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(553), - [sym_top] = ACTIONS(553), - [sym_bottom] = ACTIONS(553), - [sym_intConstant] = ACTIONS(553), - [sym_doubleConstant] = ACTIONS(555), - [sym_stringConstant] = ACTIONS(555), + [sym_undefined] = ACTIONS(539), + [sym_top] = ACTIONS(539), + [sym_bottom] = ACTIONS(539), + [sym_intConstant] = ACTIONS(539), + [sym_doubleConstant] = ACTIONS(541), + [sym_stringConstant] = ACTIONS(541), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [106] = { - [sym_sequential] = STATE(749), - [sym_files] = STATE(749), - [sym__pattern] = STATE(749), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(749), - [sym_divOperation] = STATE(749), - [sym_modOperation] = STATE(749), - [sym_addOperation] = STATE(749), - [sym_subOperation] = STATE(749), - [sym_patternAs] = STATE(749), - [sym_patternLimit] = STATE(749), - [sym_assignmentAsPattern] = STATE(749), - [sym_patternAccumulate] = STATE(749), - [sym_patternWhere] = STATE(749), - [sym__literal] = STATE(749), - [sym_patternNot] = STATE(749), - [sym_patternOr] = STATE(749), - [sym_patternOrElse] = STATE(749), - [sym_patternAny] = STATE(749), - [sym_patternAnd] = STATE(749), - [sym_patternMaybe] = STATE(749), - [sym_patternAfter] = STATE(749), - [sym_patternBefore] = STATE(749), - [sym_patternContains] = STATE(749), - [sym_patternIncludes] = STATE(749), - [sym_rewrite] = STATE(749), - [sym_patternIfElse] = STATE(749), - [sym_within] = STATE(749), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(749), - [sym_nodeLike] = STATE(749), - [sym_like] = STATE(749), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(749), - [sym_some] = STATE(749), - [sym_every] = STATE(749), - [sym_regexPattern] = STATE(749), - [sym_log] = STATE(749), - [sym_range] = STATE(749), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(749), - [sym_snippetRegex] = STATE(422), + [103] = { + [sym_sequential] = STATE(831), + [sym_files] = STATE(831), + [sym__pattern] = STATE(831), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(831), + [sym_divOperation] = STATE(831), + [sym_modOperation] = STATE(831), + [sym_addOperation] = STATE(831), + [sym_subOperation] = STATE(831), + [sym_patternAs] = STATE(831), + [sym_patternLimit] = STATE(831), + [sym_assignmentAsPattern] = STATE(831), + [sym_patternAccumulate] = STATE(831), + [sym_patternWhere] = STATE(831), + [sym__literal] = STATE(831), + [sym_patternNot] = STATE(831), + [sym_patternOr] = STATE(831), + [sym_patternOrElse] = STATE(831), + [sym_patternAny] = STATE(831), + [sym_patternAnd] = STATE(831), + [sym_patternMaybe] = STATE(831), + [sym_patternAfter] = STATE(831), + [sym_patternBefore] = STATE(831), + [sym_patternContains] = STATE(831), + [sym_patternIncludes] = STATE(831), + [sym_rewrite] = STATE(831), + [sym_patternIfElse] = STATE(831), + [sym_within] = STATE(831), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(831), + [sym_nodeLike] = STATE(831), + [sym_like] = STATE(831), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(831), + [sym_some] = STATE(831), + [sym_every] = STATE(831), + [sym_regexPattern] = STATE(831), + [sym_log] = STATE(831), + [sym_range] = STATE(831), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(831), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -20432,10 +20228,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(557), + [sym_underscore] = ACTIONS(543), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(557), + [sym_booleanConstant] = ACTIONS(543), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -20460,94 +20256,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(557), - [sym_top] = ACTIONS(557), - [sym_bottom] = ACTIONS(557), - [sym_intConstant] = ACTIONS(557), - [sym_doubleConstant] = ACTIONS(559), - [sym_stringConstant] = ACTIONS(559), + [sym_undefined] = ACTIONS(543), + [sym_top] = ACTIONS(543), + [sym_bottom] = ACTIONS(543), + [sym_intConstant] = ACTIONS(543), + [sym_doubleConstant] = ACTIONS(545), + [sym_stringConstant] = ACTIONS(545), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [107] = { - [sym_sequential] = STATE(748), - [sym_files] = STATE(748), - [sym__pattern] = STATE(748), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(748), - [sym_divOperation] = STATE(748), - [sym_modOperation] = STATE(748), - [sym_addOperation] = STATE(748), - [sym_subOperation] = STATE(748), - [sym_patternAs] = STATE(748), - [sym_patternLimit] = STATE(748), - [sym_assignmentAsPattern] = STATE(748), - [sym_patternAccumulate] = STATE(748), - [sym_patternWhere] = STATE(748), - [sym__literal] = STATE(748), - [sym_patternNot] = STATE(748), - [sym_patternOr] = STATE(748), - [sym_patternOrElse] = STATE(748), - [sym_patternAny] = STATE(748), - [sym_patternAnd] = STATE(748), - [sym_patternMaybe] = STATE(748), - [sym_patternAfter] = STATE(748), - [sym_patternBefore] = STATE(748), - [sym_patternContains] = STATE(748), - [sym_patternIncludes] = STATE(748), - [sym_rewrite] = STATE(748), - [sym_patternIfElse] = STATE(748), - [sym_within] = STATE(748), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(748), - [sym_nodeLike] = STATE(748), - [sym_like] = STATE(748), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(748), - [sym_some] = STATE(748), - [sym_every] = STATE(748), - [sym_regexPattern] = STATE(748), - [sym_log] = STATE(748), - [sym_range] = STATE(748), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(748), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [104] = { + [sym_sequential] = STATE(589), + [sym_files] = STATE(589), + [sym__pattern] = STATE(589), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(589), + [sym_divOperation] = STATE(589), + [sym_modOperation] = STATE(589), + [sym_addOperation] = STATE(589), + [sym_subOperation] = STATE(589), + [sym_patternAs] = STATE(589), + [sym_patternLimit] = STATE(589), + [sym_assignmentAsPattern] = STATE(589), + [sym_patternAccumulate] = STATE(589), + [sym_patternWhere] = STATE(589), + [sym__literal] = STATE(589), + [sym_patternNot] = STATE(589), + [sym_patternOr] = STATE(589), + [sym_patternOrElse] = STATE(589), + [sym_patternAny] = STATE(589), + [sym_patternAnd] = STATE(589), + [sym_patternMaybe] = STATE(589), + [sym_patternAfter] = STATE(589), + [sym_patternBefore] = STATE(589), + [sym_patternContains] = STATE(589), + [sym_patternIncludes] = STATE(589), + [sym_rewrite] = STATE(589), + [sym_patternIfElse] = STATE(589), + [sym_within] = STATE(589), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(589), + [sym_nodeLike] = STATE(589), + [sym_like] = STATE(589), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(589), + [sym_some] = STATE(589), + [sym_every] = STATE(589), + [sym_regexPattern] = STATE(589), + [sym_log] = STATE(589), + [sym_range] = STATE(589), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(589), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(561), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(561), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(549), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(549), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -20571,94 +20368,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(561), - [sym_top] = ACTIONS(561), - [sym_bottom] = ACTIONS(561), - [sym_intConstant] = ACTIONS(561), - [sym_doubleConstant] = ACTIONS(563), - [sym_stringConstant] = ACTIONS(563), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(549), + [sym_top] = ACTIONS(549), + [sym_bottom] = ACTIONS(549), + [sym_intConstant] = ACTIONS(549), + [sym_doubleConstant] = ACTIONS(551), + [sym_stringConstant] = ACTIONS(551), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [108] = { - [sym_sequential] = STATE(712), - [sym_files] = STATE(712), - [sym__pattern] = STATE(712), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(712), - [sym_divOperation] = STATE(712), - [sym_modOperation] = STATE(712), - [sym_addOperation] = STATE(712), - [sym_subOperation] = STATE(712), - [sym_patternAs] = STATE(712), - [sym_patternLimit] = STATE(712), - [sym_assignmentAsPattern] = STATE(712), - [sym_patternAccumulate] = STATE(712), - [sym_patternWhere] = STATE(712), - [sym__literal] = STATE(712), - [sym_patternNot] = STATE(712), - [sym_patternOr] = STATE(712), - [sym_patternOrElse] = STATE(712), - [sym_patternAny] = STATE(712), - [sym_patternAnd] = STATE(712), - [sym_patternMaybe] = STATE(712), - [sym_patternAfter] = STATE(712), - [sym_patternBefore] = STATE(712), - [sym_patternContains] = STATE(712), - [sym_patternIncludes] = STATE(712), - [sym_rewrite] = STATE(712), - [sym_patternIfElse] = STATE(712), - [sym_within] = STATE(712), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(712), - [sym_nodeLike] = STATE(712), - [sym_like] = STATE(712), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(712), - [sym_some] = STATE(712), - [sym_every] = STATE(712), - [sym_regexPattern] = STATE(712), - [sym_log] = STATE(712), - [sym_range] = STATE(712), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(712), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [105] = { + [sym_sequential] = STATE(398), + [sym_files] = STATE(398), + [sym__pattern] = STATE(398), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(398), + [sym_divOperation] = STATE(398), + [sym_modOperation] = STATE(398), + [sym_addOperation] = STATE(398), + [sym_subOperation] = STATE(398), + [sym_patternAs] = STATE(398), + [sym_patternLimit] = STATE(398), + [sym_assignmentAsPattern] = STATE(398), + [sym_patternAccumulate] = STATE(398), + [sym_patternWhere] = STATE(398), + [sym__literal] = STATE(398), + [sym_patternNot] = STATE(398), + [sym_patternOr] = STATE(398), + [sym_patternOrElse] = STATE(398), + [sym_patternAny] = STATE(398), + [sym_patternAnd] = STATE(398), + [sym_patternMaybe] = STATE(398), + [sym_patternAfter] = STATE(398), + [sym_patternBefore] = STATE(398), + [sym_patternContains] = STATE(398), + [sym_patternIncludes] = STATE(398), + [sym_rewrite] = STATE(398), + [sym_patternIfElse] = STATE(398), + [sym_within] = STATE(398), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(398), + [sym_nodeLike] = STATE(398), + [sym_like] = STATE(398), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(398), + [sym_some] = STATE(398), + [sym_every] = STATE(398), + [sym_regexPattern] = STATE(398), + [sym_log] = STATE(398), + [sym_range] = STATE(398), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(398), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(565), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(565), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(553), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(553), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -20682,65 +20480,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(565), - [sym_top] = ACTIONS(565), - [sym_bottom] = ACTIONS(565), - [sym_intConstant] = ACTIONS(565), - [sym_doubleConstant] = ACTIONS(567), - [sym_stringConstant] = ACTIONS(567), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(553), + [sym_top] = ACTIONS(553), + [sym_bottom] = ACTIONS(553), + [sym_intConstant] = ACTIONS(553), + [sym_doubleConstant] = ACTIONS(555), + [sym_stringConstant] = ACTIONS(555), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [109] = { - [sym_sequential] = STATE(886), - [sym_files] = STATE(886), - [sym__pattern] = STATE(886), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(886), - [sym_divOperation] = STATE(886), - [sym_modOperation] = STATE(886), - [sym_addOperation] = STATE(886), - [sym_subOperation] = STATE(886), - [sym_patternAs] = STATE(886), - [sym_patternLimit] = STATE(886), - [sym_assignmentAsPattern] = STATE(886), - [sym_patternAccumulate] = STATE(886), - [sym_patternWhere] = STATE(886), - [sym__literal] = STATE(886), - [sym_patternNot] = STATE(886), - [sym_patternOr] = STATE(886), - [sym_patternOrElse] = STATE(886), - [sym_patternAny] = STATE(886), - [sym_patternAnd] = STATE(886), - [sym_patternMaybe] = STATE(886), - [sym_patternAfter] = STATE(886), - [sym_patternBefore] = STATE(886), - [sym_patternContains] = STATE(886), - [sym_patternIncludes] = STATE(886), - [sym_rewrite] = STATE(886), - [sym_patternIfElse] = STATE(886), - [sym_within] = STATE(886), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(886), - [sym_nodeLike] = STATE(886), - [sym_like] = STATE(886), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(886), - [sym_some] = STATE(886), - [sym_every] = STATE(886), - [sym_regexPattern] = STATE(886), - [sym_log] = STATE(886), - [sym_range] = STATE(886), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(886), - [sym_snippetRegex] = STATE(422), + [106] = { + [sym_sequential] = STATE(830), + [sym_files] = STATE(830), + [sym__pattern] = STATE(830), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(830), + [sym_divOperation] = STATE(830), + [sym_modOperation] = STATE(830), + [sym_addOperation] = STATE(830), + [sym_subOperation] = STATE(830), + [sym_patternAs] = STATE(830), + [sym_patternLimit] = STATE(830), + [sym_assignmentAsPattern] = STATE(830), + [sym_patternAccumulate] = STATE(830), + [sym_patternWhere] = STATE(830), + [sym__literal] = STATE(830), + [sym_patternNot] = STATE(830), + [sym_patternOr] = STATE(830), + [sym_patternOrElse] = STATE(830), + [sym_patternAny] = STATE(830), + [sym_patternAnd] = STATE(830), + [sym_patternMaybe] = STATE(830), + [sym_patternAfter] = STATE(830), + [sym_patternBefore] = STATE(830), + [sym_patternContains] = STATE(830), + [sym_patternIncludes] = STATE(830), + [sym_rewrite] = STATE(830), + [sym_patternIfElse] = STATE(830), + [sym_within] = STATE(830), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(830), + [sym_nodeLike] = STATE(830), + [sym_like] = STATE(830), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(830), + [sym_some] = STATE(830), + [sym_every] = STATE(830), + [sym_regexPattern] = STATE(830), + [sym_log] = STATE(830), + [sym_range] = STATE(830), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(830), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -20765,10 +20564,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(569), + [sym_underscore] = ACTIONS(557), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(569), + [sym_booleanConstant] = ACTIONS(557), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -20793,98 +20592,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(569), - [sym_top] = ACTIONS(569), - [sym_bottom] = ACTIONS(569), - [sym_intConstant] = ACTIONS(569), - [sym_doubleConstant] = ACTIONS(571), - [sym_stringConstant] = ACTIONS(571), + [sym_undefined] = ACTIONS(557), + [sym_top] = ACTIONS(557), + [sym_bottom] = ACTIONS(557), + [sym_intConstant] = ACTIONS(557), + [sym_doubleConstant] = ACTIONS(559), + [sym_stringConstant] = ACTIONS(559), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [110] = { - [sym_sequential] = STATE(711), - [sym_files] = STATE(711), - [sym__pattern] = STATE(711), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(711), - [sym_divOperation] = STATE(711), - [sym_modOperation] = STATE(711), - [sym_addOperation] = STATE(711), - [sym_subOperation] = STATE(711), - [sym_patternAs] = STATE(711), - [sym_patternLimit] = STATE(711), - [sym_assignmentAsPattern] = STATE(711), - [sym_patternAccumulate] = STATE(711), - [sym_patternWhere] = STATE(711), - [sym__literal] = STATE(711), - [sym_patternNot] = STATE(711), - [sym_patternOr] = STATE(711), - [sym_patternOrElse] = STATE(711), - [sym_patternAny] = STATE(711), - [sym_patternAnd] = STATE(711), - [sym_patternMaybe] = STATE(711), - [sym_patternAfter] = STATE(711), - [sym_patternBefore] = STATE(711), - [sym_patternContains] = STATE(711), - [sym_patternIncludes] = STATE(711), - [sym_rewrite] = STATE(711), - [sym_patternIfElse] = STATE(711), - [sym_within] = STATE(711), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(711), - [sym_nodeLike] = STATE(711), - [sym_like] = STATE(711), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(711), - [sym_some] = STATE(711), - [sym_every] = STATE(711), - [sym_regexPattern] = STATE(711), - [sym_log] = STATE(711), - [sym_range] = STATE(711), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(711), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(573), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(573), - [sym_variable] = ACTIONS(263), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), + [107] = { + [sym_sequential] = STATE(423), + [sym_files] = STATE(423), + [sym__pattern] = STATE(423), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(423), + [sym_divOperation] = STATE(423), + [sym_modOperation] = STATE(423), + [sym_addOperation] = STATE(423), + [sym_subOperation] = STATE(423), + [sym_patternAs] = STATE(423), + [sym_patternLimit] = STATE(423), + [sym_assignmentAsPattern] = STATE(423), + [sym_patternAccumulate] = STATE(423), + [sym_patternWhere] = STATE(423), + [sym__literal] = STATE(423), + [sym_patternNot] = STATE(423), + [sym_patternOr] = STATE(423), + [sym_patternOrElse] = STATE(423), + [sym_patternAny] = STATE(423), + [sym_patternAnd] = STATE(423), + [sym_patternMaybe] = STATE(423), + [sym_patternAfter] = STATE(423), + [sym_patternBefore] = STATE(423), + [sym_patternContains] = STATE(423), + [sym_patternIncludes] = STATE(423), + [sym_rewrite] = STATE(423), + [sym_patternIfElse] = STATE(423), + [sym_within] = STATE(423), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(423), + [sym_nodeLike] = STATE(423), + [sym_like] = STATE(423), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(423), + [sym_some] = STATE(423), + [sym_every] = STATE(423), + [sym_regexPattern] = STATE(423), + [sym_log] = STATE(423), + [sym_range] = STATE(423), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(423), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(561), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(561), + [sym_variable] = ACTIONS(73), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), [anon_sym_json] = ACTIONS(75), [anon_sym_java] = ACTIONS(75), [anon_sym_csharp] = ACTIONS(75), @@ -20904,94 +20704,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(573), - [sym_top] = ACTIONS(573), - [sym_bottom] = ACTIONS(573), - [sym_intConstant] = ACTIONS(573), - [sym_doubleConstant] = ACTIONS(575), - [sym_stringConstant] = ACTIONS(575), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(561), + [sym_top] = ACTIONS(561), + [sym_bottom] = ACTIONS(561), + [sym_intConstant] = ACTIONS(561), + [sym_doubleConstant] = ACTIONS(563), + [sym_stringConstant] = ACTIONS(563), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [111] = { - [sym_sequential] = STATE(799), - [sym_files] = STATE(799), - [sym__pattern] = STATE(799), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(799), - [sym_divOperation] = STATE(799), - [sym_modOperation] = STATE(799), - [sym_addOperation] = STATE(799), - [sym_subOperation] = STATE(799), - [sym_patternAs] = STATE(799), - [sym_patternLimit] = STATE(799), - [sym_assignmentAsPattern] = STATE(799), - [sym_patternAccumulate] = STATE(799), - [sym_patternWhere] = STATE(799), - [sym__literal] = STATE(799), - [sym_patternNot] = STATE(799), - [sym_patternOr] = STATE(799), - [sym_patternOrElse] = STATE(799), - [sym_patternAny] = STATE(799), - [sym_patternAnd] = STATE(799), - [sym_patternMaybe] = STATE(799), - [sym_patternAfter] = STATE(799), - [sym_patternBefore] = STATE(799), - [sym_patternContains] = STATE(799), - [sym_patternIncludes] = STATE(799), - [sym_rewrite] = STATE(799), - [sym_patternIfElse] = STATE(799), - [sym_within] = STATE(799), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(799), - [sym_nodeLike] = STATE(799), - [sym_like] = STATE(799), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(799), - [sym_some] = STATE(799), - [sym_every] = STATE(799), - [sym_regexPattern] = STATE(799), - [sym_log] = STATE(799), - [sym_range] = STATE(799), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(799), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [108] = { + [sym_sequential] = STATE(613), + [sym_files] = STATE(613), + [sym__pattern] = STATE(613), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(613), + [sym_divOperation] = STATE(613), + [sym_modOperation] = STATE(613), + [sym_addOperation] = STATE(613), + [sym_subOperation] = STATE(613), + [sym_patternAs] = STATE(613), + [sym_patternLimit] = STATE(613), + [sym_assignmentAsPattern] = STATE(613), + [sym_patternAccumulate] = STATE(613), + [sym_patternWhere] = STATE(613), + [sym__literal] = STATE(613), + [sym_patternNot] = STATE(613), + [sym_patternOr] = STATE(613), + [sym_patternOrElse] = STATE(613), + [sym_patternAny] = STATE(613), + [sym_patternAnd] = STATE(613), + [sym_patternMaybe] = STATE(613), + [sym_patternAfter] = STATE(613), + [sym_patternBefore] = STATE(613), + [sym_patternContains] = STATE(613), + [sym_patternIncludes] = STATE(613), + [sym_rewrite] = STATE(613), + [sym_patternIfElse] = STATE(613), + [sym_within] = STATE(613), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(613), + [sym_nodeLike] = STATE(613), + [sym_like] = STATE(613), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(613), + [sym_some] = STATE(613), + [sym_every] = STATE(613), + [sym_regexPattern] = STATE(613), + [sym_log] = STATE(613), + [sym_range] = STATE(613), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(613), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(577), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(577), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(567), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(567), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -21015,94 +20816,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(577), - [sym_top] = ACTIONS(577), - [sym_bottom] = ACTIONS(577), - [sym_intConstant] = ACTIONS(577), - [sym_doubleConstant] = ACTIONS(579), - [sym_stringConstant] = ACTIONS(579), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(567), + [sym_top] = ACTIONS(567), + [sym_bottom] = ACTIONS(567), + [sym_intConstant] = ACTIONS(567), + [sym_doubleConstant] = ACTIONS(569), + [sym_stringConstant] = ACTIONS(569), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [112] = { - [sym_sequential] = STATE(860), - [sym_files] = STATE(860), - [sym__pattern] = STATE(860), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(860), - [sym_divOperation] = STATE(860), - [sym_modOperation] = STATE(860), - [sym_addOperation] = STATE(860), - [sym_subOperation] = STATE(860), - [sym_patternAs] = STATE(860), - [sym_patternLimit] = STATE(860), - [sym_assignmentAsPattern] = STATE(860), - [sym_patternAccumulate] = STATE(860), - [sym_patternWhere] = STATE(860), - [sym__literal] = STATE(860), - [sym_patternNot] = STATE(860), - [sym_patternOr] = STATE(860), - [sym_patternOrElse] = STATE(860), - [sym_patternAny] = STATE(860), - [sym_patternAnd] = STATE(860), - [sym_patternMaybe] = STATE(860), - [sym_patternAfter] = STATE(860), - [sym_patternBefore] = STATE(860), - [sym_patternContains] = STATE(860), - [sym_patternIncludes] = STATE(860), - [sym_rewrite] = STATE(860), - [sym_patternIfElse] = STATE(860), - [sym_within] = STATE(860), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(860), - [sym_nodeLike] = STATE(860), - [sym_like] = STATE(860), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(860), - [sym_some] = STATE(860), - [sym_every] = STATE(860), - [sym_regexPattern] = STATE(860), - [sym_log] = STATE(860), - [sym_range] = STATE(860), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(860), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [109] = { + [sym_sequential] = STATE(586), + [sym_files] = STATE(586), + [sym__pattern] = STATE(586), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(586), + [sym_divOperation] = STATE(586), + [sym_modOperation] = STATE(586), + [sym_addOperation] = STATE(586), + [sym_subOperation] = STATE(586), + [sym_patternAs] = STATE(586), + [sym_patternLimit] = STATE(586), + [sym_assignmentAsPattern] = STATE(586), + [sym_patternAccumulate] = STATE(586), + [sym_patternWhere] = STATE(586), + [sym__literal] = STATE(586), + [sym_patternNot] = STATE(586), + [sym_patternOr] = STATE(586), + [sym_patternOrElse] = STATE(586), + [sym_patternAny] = STATE(586), + [sym_patternAnd] = STATE(586), + [sym_patternMaybe] = STATE(586), + [sym_patternAfter] = STATE(586), + [sym_patternBefore] = STATE(586), + [sym_patternContains] = STATE(586), + [sym_patternIncludes] = STATE(586), + [sym_rewrite] = STATE(586), + [sym_patternIfElse] = STATE(586), + [sym_within] = STATE(586), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(586), + [sym_nodeLike] = STATE(586), + [sym_like] = STATE(586), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(586), + [sym_some] = STATE(586), + [sym_every] = STATE(586), + [sym_regexPattern] = STATE(586), + [sym_log] = STATE(586), + [sym_range] = STATE(586), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(586), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(581), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(581), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(571), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(571), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -21126,94 +20928,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(581), - [sym_top] = ACTIONS(581), - [sym_bottom] = ACTIONS(581), - [sym_intConstant] = ACTIONS(581), - [sym_doubleConstant] = ACTIONS(583), - [sym_stringConstant] = ACTIONS(583), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(571), + [sym_top] = ACTIONS(571), + [sym_bottom] = ACTIONS(571), + [sym_intConstant] = ACTIONS(571), + [sym_doubleConstant] = ACTIONS(573), + [sym_stringConstant] = ACTIONS(573), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [113] = { - [sym_sequential] = STATE(796), - [sym_files] = STATE(796), - [sym__pattern] = STATE(796), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(796), - [sym_divOperation] = STATE(796), - [sym_modOperation] = STATE(796), - [sym_addOperation] = STATE(796), - [sym_subOperation] = STATE(796), - [sym_patternAs] = STATE(796), - [sym_patternLimit] = STATE(796), - [sym_assignmentAsPattern] = STATE(796), - [sym_patternAccumulate] = STATE(796), - [sym_patternWhere] = STATE(796), - [sym__literal] = STATE(796), - [sym_patternNot] = STATE(796), - [sym_patternOr] = STATE(796), - [sym_patternOrElse] = STATE(796), - [sym_patternAny] = STATE(796), - [sym_patternAnd] = STATE(796), - [sym_patternMaybe] = STATE(796), - [sym_patternAfter] = STATE(796), - [sym_patternBefore] = STATE(796), - [sym_patternContains] = STATE(796), - [sym_patternIncludes] = STATE(796), - [sym_rewrite] = STATE(796), - [sym_patternIfElse] = STATE(796), - [sym_within] = STATE(796), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(796), - [sym_nodeLike] = STATE(796), - [sym_like] = STATE(796), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(796), - [sym_some] = STATE(796), - [sym_every] = STATE(796), - [sym_regexPattern] = STATE(796), - [sym_log] = STATE(796), - [sym_range] = STATE(796), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(796), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [110] = { + [sym_sequential] = STATE(566), + [sym_files] = STATE(566), + [sym__pattern] = STATE(566), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(566), + [sym_divOperation] = STATE(566), + [sym_modOperation] = STATE(566), + [sym_addOperation] = STATE(566), + [sym_subOperation] = STATE(566), + [sym_patternAs] = STATE(566), + [sym_patternLimit] = STATE(566), + [sym_assignmentAsPattern] = STATE(566), + [sym_patternAccumulate] = STATE(566), + [sym_patternWhere] = STATE(566), + [sym__literal] = STATE(566), + [sym_patternNot] = STATE(566), + [sym_patternOr] = STATE(566), + [sym_patternOrElse] = STATE(566), + [sym_patternAny] = STATE(566), + [sym_patternAnd] = STATE(566), + [sym_patternMaybe] = STATE(566), + [sym_patternAfter] = STATE(566), + [sym_patternBefore] = STATE(566), + [sym_patternContains] = STATE(566), + [sym_patternIncludes] = STATE(566), + [sym_rewrite] = STATE(566), + [sym_patternIfElse] = STATE(566), + [sym_within] = STATE(566), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(566), + [sym_nodeLike] = STATE(566), + [sym_like] = STATE(566), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(566), + [sym_some] = STATE(566), + [sym_every] = STATE(566), + [sym_regexPattern] = STATE(566), + [sym_log] = STATE(566), + [sym_range] = STATE(566), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(566), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(585), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(585), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(575), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(575), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -21237,94 +21040,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(585), - [sym_top] = ACTIONS(585), - [sym_bottom] = ACTIONS(585), - [sym_intConstant] = ACTIONS(585), - [sym_doubleConstant] = ACTIONS(587), - [sym_stringConstant] = ACTIONS(587), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(575), + [sym_top] = ACTIONS(575), + [sym_bottom] = ACTIONS(575), + [sym_intConstant] = ACTIONS(575), + [sym_doubleConstant] = ACTIONS(577), + [sym_stringConstant] = ACTIONS(577), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [114] = { - [sym_sequential] = STATE(867), - [sym_files] = STATE(867), - [sym__pattern] = STATE(867), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(867), - [sym_divOperation] = STATE(867), - [sym_modOperation] = STATE(867), - [sym_addOperation] = STATE(867), - [sym_subOperation] = STATE(867), - [sym_patternAs] = STATE(867), - [sym_patternLimit] = STATE(867), - [sym_assignmentAsPattern] = STATE(867), - [sym_patternAccumulate] = STATE(867), - [sym_patternWhere] = STATE(867), - [sym__literal] = STATE(867), - [sym_patternNot] = STATE(867), - [sym_patternOr] = STATE(867), - [sym_patternOrElse] = STATE(867), - [sym_patternAny] = STATE(867), - [sym_patternAnd] = STATE(867), - [sym_patternMaybe] = STATE(867), - [sym_patternAfter] = STATE(867), - [sym_patternBefore] = STATE(867), - [sym_patternContains] = STATE(867), - [sym_patternIncludes] = STATE(867), - [sym_rewrite] = STATE(867), - [sym_patternIfElse] = STATE(867), - [sym_within] = STATE(867), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(867), - [sym_nodeLike] = STATE(867), - [sym_like] = STATE(867), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(867), - [sym_some] = STATE(867), - [sym_every] = STATE(867), - [sym_regexPattern] = STATE(867), - [sym_log] = STATE(867), - [sym_range] = STATE(867), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(867), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [111] = { + [sym_sequential] = STATE(530), + [sym_files] = STATE(530), + [sym__pattern] = STATE(530), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(530), + [sym_divOperation] = STATE(530), + [sym_modOperation] = STATE(530), + [sym_addOperation] = STATE(530), + [sym_subOperation] = STATE(530), + [sym_patternAs] = STATE(530), + [sym_patternLimit] = STATE(530), + [sym_assignmentAsPattern] = STATE(530), + [sym_patternAccumulate] = STATE(530), + [sym_patternWhere] = STATE(530), + [sym__literal] = STATE(530), + [sym_patternNot] = STATE(530), + [sym_patternOr] = STATE(530), + [sym_patternOrElse] = STATE(530), + [sym_patternAny] = STATE(530), + [sym_patternAnd] = STATE(530), + [sym_patternMaybe] = STATE(530), + [sym_patternAfter] = STATE(530), + [sym_patternBefore] = STATE(530), + [sym_patternContains] = STATE(530), + [sym_patternIncludes] = STATE(530), + [sym_rewrite] = STATE(530), + [sym_patternIfElse] = STATE(530), + [sym_within] = STATE(530), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(530), + [sym_nodeLike] = STATE(530), + [sym_like] = STATE(530), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(530), + [sym_some] = STATE(530), + [sym_every] = STATE(530), + [sym_regexPattern] = STATE(530), + [sym_log] = STATE(530), + [sym_range] = STATE(530), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(530), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(589), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(589), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(579), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(579), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -21348,65 +21152,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(589), - [sym_top] = ACTIONS(589), - [sym_bottom] = ACTIONS(589), - [sym_intConstant] = ACTIONS(589), - [sym_doubleConstant] = ACTIONS(591), - [sym_stringConstant] = ACTIONS(591), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(579), + [sym_top] = ACTIONS(579), + [sym_bottom] = ACTIONS(579), + [sym_intConstant] = ACTIONS(579), + [sym_doubleConstant] = ACTIONS(581), + [sym_stringConstant] = ACTIONS(581), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [115] = { - [sym_sequential] = STATE(803), - [sym_files] = STATE(803), - [sym__pattern] = STATE(803), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(803), - [sym_divOperation] = STATE(803), - [sym_modOperation] = STATE(803), - [sym_addOperation] = STATE(803), - [sym_subOperation] = STATE(803), - [sym_patternAs] = STATE(803), - [sym_patternLimit] = STATE(803), - [sym_assignmentAsPattern] = STATE(803), - [sym_patternAccumulate] = STATE(803), - [sym_patternWhere] = STATE(803), - [sym__literal] = STATE(803), - [sym_patternNot] = STATE(803), - [sym_patternOr] = STATE(803), - [sym_patternOrElse] = STATE(803), - [sym_patternAny] = STATE(803), - [sym_patternAnd] = STATE(803), - [sym_patternMaybe] = STATE(803), - [sym_patternAfter] = STATE(803), - [sym_patternBefore] = STATE(803), - [sym_patternContains] = STATE(803), - [sym_patternIncludes] = STATE(803), - [sym_rewrite] = STATE(803), - [sym_patternIfElse] = STATE(803), - [sym_within] = STATE(803), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(803), - [sym_nodeLike] = STATE(803), - [sym_like] = STATE(803), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(803), - [sym_some] = STATE(803), - [sym_every] = STATE(803), - [sym_regexPattern] = STATE(803), - [sym_log] = STATE(803), - [sym_range] = STATE(803), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(803), - [sym_snippetRegex] = STATE(422), + [112] = { + [sym_sequential] = STATE(626), + [sym_files] = STATE(626), + [sym__pattern] = STATE(626), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(626), + [sym_divOperation] = STATE(626), + [sym_modOperation] = STATE(626), + [sym_addOperation] = STATE(626), + [sym_subOperation] = STATE(626), + [sym_patternAs] = STATE(626), + [sym_patternLimit] = STATE(626), + [sym_assignmentAsPattern] = STATE(626), + [sym_patternAccumulate] = STATE(626), + [sym_patternWhere] = STATE(626), + [sym__literal] = STATE(626), + [sym_patternNot] = STATE(626), + [sym_patternOr] = STATE(626), + [sym_patternOrElse] = STATE(626), + [sym_patternAny] = STATE(626), + [sym_patternAnd] = STATE(626), + [sym_patternMaybe] = STATE(626), + [sym_patternAfter] = STATE(626), + [sym_patternBefore] = STATE(626), + [sym_patternContains] = STATE(626), + [sym_patternIncludes] = STATE(626), + [sym_rewrite] = STATE(626), + [sym_patternIfElse] = STATE(626), + [sym_within] = STATE(626), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(626), + [sym_nodeLike] = STATE(626), + [sym_like] = STATE(626), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(626), + [sym_some] = STATE(626), + [sym_every] = STATE(626), + [sym_regexPattern] = STATE(626), + [sym_log] = STATE(626), + [sym_range] = STATE(626), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(626), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -21431,10 +21236,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(593), + [sym_underscore] = ACTIONS(583), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(593), + [sym_booleanConstant] = ACTIONS(583), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -21459,94 +21264,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(593), - [sym_top] = ACTIONS(593), - [sym_bottom] = ACTIONS(593), - [sym_intConstant] = ACTIONS(593), - [sym_doubleConstant] = ACTIONS(595), - [sym_stringConstant] = ACTIONS(595), + [sym_undefined] = ACTIONS(583), + [sym_top] = ACTIONS(583), + [sym_bottom] = ACTIONS(583), + [sym_intConstant] = ACTIONS(583), + [sym_doubleConstant] = ACTIONS(585), + [sym_stringConstant] = ACTIONS(585), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [116] = { - [sym_sequential] = STATE(794), - [sym_files] = STATE(794), - [sym__pattern] = STATE(794), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(794), - [sym_divOperation] = STATE(794), - [sym_modOperation] = STATE(794), - [sym_addOperation] = STATE(794), - [sym_subOperation] = STATE(794), - [sym_patternAs] = STATE(794), - [sym_patternLimit] = STATE(794), - [sym_assignmentAsPattern] = STATE(794), - [sym_patternAccumulate] = STATE(794), - [sym_patternWhere] = STATE(794), - [sym__literal] = STATE(794), - [sym_patternNot] = STATE(794), - [sym_patternOr] = STATE(794), - [sym_patternOrElse] = STATE(794), - [sym_patternAny] = STATE(794), - [sym_patternAnd] = STATE(794), - [sym_patternMaybe] = STATE(794), - [sym_patternAfter] = STATE(794), - [sym_patternBefore] = STATE(794), - [sym_patternContains] = STATE(794), - [sym_patternIncludes] = STATE(794), - [sym_rewrite] = STATE(794), - [sym_patternIfElse] = STATE(794), - [sym_within] = STATE(794), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(794), - [sym_nodeLike] = STATE(794), - [sym_like] = STATE(794), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(794), - [sym_some] = STATE(794), - [sym_every] = STATE(794), - [sym_regexPattern] = STATE(794), - [sym_log] = STATE(794), - [sym_range] = STATE(794), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(794), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [113] = { + [sym_sequential] = STATE(591), + [sym_files] = STATE(591), + [sym__pattern] = STATE(591), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(591), + [sym_divOperation] = STATE(591), + [sym_modOperation] = STATE(591), + [sym_addOperation] = STATE(591), + [sym_subOperation] = STATE(591), + [sym_patternAs] = STATE(591), + [sym_patternLimit] = STATE(591), + [sym_assignmentAsPattern] = STATE(591), + [sym_patternAccumulate] = STATE(591), + [sym_patternWhere] = STATE(591), + [sym__literal] = STATE(591), + [sym_patternNot] = STATE(591), + [sym_patternOr] = STATE(591), + [sym_patternOrElse] = STATE(591), + [sym_patternAny] = STATE(591), + [sym_patternAnd] = STATE(591), + [sym_patternMaybe] = STATE(591), + [sym_patternAfter] = STATE(591), + [sym_patternBefore] = STATE(591), + [sym_patternContains] = STATE(591), + [sym_patternIncludes] = STATE(591), + [sym_rewrite] = STATE(591), + [sym_patternIfElse] = STATE(591), + [sym_within] = STATE(591), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(591), + [sym_nodeLike] = STATE(591), + [sym_like] = STATE(591), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(591), + [sym_some] = STATE(591), + [sym_every] = STATE(591), + [sym_regexPattern] = STATE(591), + [sym_log] = STATE(591), + [sym_range] = STATE(591), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(591), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(597), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(597), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(587), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(587), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -21570,94 +21376,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(597), - [sym_top] = ACTIONS(597), - [sym_bottom] = ACTIONS(597), - [sym_intConstant] = ACTIONS(597), - [sym_doubleConstant] = ACTIONS(599), - [sym_stringConstant] = ACTIONS(599), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), - [sym_comment] = ACTIONS(3), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(587), + [sym_top] = ACTIONS(587), + [sym_bottom] = ACTIONS(587), + [sym_intConstant] = ACTIONS(587), + [sym_doubleConstant] = ACTIONS(589), + [sym_stringConstant] = ACTIONS(589), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), + [sym_comment] = ACTIONS(3), }, - [117] = { - [sym_sequential] = STATE(869), - [sym_files] = STATE(869), - [sym__pattern] = STATE(869), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(869), - [sym_divOperation] = STATE(869), - [sym_modOperation] = STATE(869), - [sym_addOperation] = STATE(869), - [sym_subOperation] = STATE(869), - [sym_patternAs] = STATE(869), - [sym_patternLimit] = STATE(869), - [sym_assignmentAsPattern] = STATE(869), - [sym_patternAccumulate] = STATE(869), - [sym_patternWhere] = STATE(869), - [sym__literal] = STATE(869), - [sym_patternNot] = STATE(869), - [sym_patternOr] = STATE(869), - [sym_patternOrElse] = STATE(869), - [sym_patternAny] = STATE(869), - [sym_patternAnd] = STATE(869), - [sym_patternMaybe] = STATE(869), - [sym_patternAfter] = STATE(869), - [sym_patternBefore] = STATE(869), - [sym_patternContains] = STATE(869), - [sym_patternIncludes] = STATE(869), - [sym_rewrite] = STATE(869), - [sym_patternIfElse] = STATE(869), - [sym_within] = STATE(869), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(869), - [sym_nodeLike] = STATE(869), - [sym_like] = STATE(869), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(869), - [sym_some] = STATE(869), - [sym_every] = STATE(869), - [sym_regexPattern] = STATE(869), - [sym_log] = STATE(869), - [sym_range] = STATE(869), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(869), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [114] = { + [sym_sequential] = STATE(571), + [sym_files] = STATE(571), + [sym__pattern] = STATE(571), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(571), + [sym_divOperation] = STATE(571), + [sym_modOperation] = STATE(571), + [sym_addOperation] = STATE(571), + [sym_subOperation] = STATE(571), + [sym_patternAs] = STATE(571), + [sym_patternLimit] = STATE(571), + [sym_assignmentAsPattern] = STATE(571), + [sym_patternAccumulate] = STATE(571), + [sym_patternWhere] = STATE(571), + [sym__literal] = STATE(571), + [sym_patternNot] = STATE(571), + [sym_patternOr] = STATE(571), + [sym_patternOrElse] = STATE(571), + [sym_patternAny] = STATE(571), + [sym_patternAnd] = STATE(571), + [sym_patternMaybe] = STATE(571), + [sym_patternAfter] = STATE(571), + [sym_patternBefore] = STATE(571), + [sym_patternContains] = STATE(571), + [sym_patternIncludes] = STATE(571), + [sym_rewrite] = STATE(571), + [sym_patternIfElse] = STATE(571), + [sym_within] = STATE(571), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(571), + [sym_nodeLike] = STATE(571), + [sym_like] = STATE(571), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(571), + [sym_some] = STATE(571), + [sym_every] = STATE(571), + [sym_regexPattern] = STATE(571), + [sym_log] = STATE(571), + [sym_range] = STATE(571), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(571), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(601), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(601), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(591), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(591), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -21681,65 +21488,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(601), - [sym_top] = ACTIONS(601), - [sym_bottom] = ACTIONS(601), - [sym_intConstant] = ACTIONS(601), - [sym_doubleConstant] = ACTIONS(603), - [sym_stringConstant] = ACTIONS(603), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(591), + [sym_top] = ACTIONS(591), + [sym_bottom] = ACTIONS(591), + [sym_intConstant] = ACTIONS(591), + [sym_doubleConstant] = ACTIONS(593), + [sym_stringConstant] = ACTIONS(593), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [118] = { - [sym_sequential] = STATE(793), - [sym_files] = STATE(793), - [sym__pattern] = STATE(793), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(793), - [sym_divOperation] = STATE(793), - [sym_modOperation] = STATE(793), - [sym_addOperation] = STATE(793), - [sym_subOperation] = STATE(793), - [sym_patternAs] = STATE(793), - [sym_patternLimit] = STATE(793), - [sym_assignmentAsPattern] = STATE(793), - [sym_patternAccumulate] = STATE(793), - [sym_patternWhere] = STATE(793), - [sym__literal] = STATE(793), - [sym_patternNot] = STATE(793), - [sym_patternOr] = STATE(793), - [sym_patternOrElse] = STATE(793), - [sym_patternAny] = STATE(793), - [sym_patternAnd] = STATE(793), - [sym_patternMaybe] = STATE(793), - [sym_patternAfter] = STATE(793), - [sym_patternBefore] = STATE(793), - [sym_patternContains] = STATE(793), - [sym_patternIncludes] = STATE(793), - [sym_rewrite] = STATE(793), - [sym_patternIfElse] = STATE(793), - [sym_within] = STATE(793), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(793), - [sym_nodeLike] = STATE(793), - [sym_like] = STATE(793), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(793), - [sym_some] = STATE(793), - [sym_every] = STATE(793), - [sym_regexPattern] = STATE(793), - [sym_log] = STATE(793), - [sym_range] = STATE(793), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(793), - [sym_snippetRegex] = STATE(422), + [115] = { + [sym_sequential] = STATE(891), + [sym_files] = STATE(891), + [sym__pattern] = STATE(891), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(891), + [sym_divOperation] = STATE(891), + [sym_modOperation] = STATE(891), + [sym_addOperation] = STATE(891), + [sym_subOperation] = STATE(891), + [sym_patternAs] = STATE(891), + [sym_patternLimit] = STATE(891), + [sym_assignmentAsPattern] = STATE(891), + [sym_patternAccumulate] = STATE(891), + [sym_patternWhere] = STATE(891), + [sym__literal] = STATE(891), + [sym_patternNot] = STATE(891), + [sym_patternOr] = STATE(891), + [sym_patternOrElse] = STATE(891), + [sym_patternAny] = STATE(891), + [sym_patternAnd] = STATE(891), + [sym_patternMaybe] = STATE(891), + [sym_patternAfter] = STATE(891), + [sym_patternBefore] = STATE(891), + [sym_patternContains] = STATE(891), + [sym_patternIncludes] = STATE(891), + [sym_rewrite] = STATE(891), + [sym_patternIfElse] = STATE(891), + [sym_within] = STATE(891), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(891), + [sym_nodeLike] = STATE(891), + [sym_like] = STATE(891), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(891), + [sym_some] = STATE(891), + [sym_every] = STATE(891), + [sym_regexPattern] = STATE(891), + [sym_log] = STATE(891), + [sym_range] = STATE(891), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(891), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -21764,10 +21572,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(605), + [sym_underscore] = ACTIONS(595), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(605), + [sym_booleanConstant] = ACTIONS(595), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -21792,68 +21600,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(605), - [sym_top] = ACTIONS(605), - [sym_bottom] = ACTIONS(605), - [sym_intConstant] = ACTIONS(605), - [sym_doubleConstant] = ACTIONS(607), - [sym_stringConstant] = ACTIONS(607), + [sym_undefined] = ACTIONS(595), + [sym_top] = ACTIONS(595), + [sym_bottom] = ACTIONS(595), + [sym_intConstant] = ACTIONS(595), + [sym_doubleConstant] = ACTIONS(597), + [sym_stringConstant] = ACTIONS(597), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [119] = { - [sym_sequential] = STATE(589), - [sym_files] = STATE(589), - [sym__pattern] = STATE(589), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(589), - [sym_divOperation] = STATE(589), - [sym_modOperation] = STATE(589), - [sym_addOperation] = STATE(589), - [sym_subOperation] = STATE(589), - [sym_patternAs] = STATE(589), - [sym_patternLimit] = STATE(589), - [sym_assignmentAsPattern] = STATE(589), - [sym_patternAccumulate] = STATE(589), - [sym_patternWhere] = STATE(589), - [sym__literal] = STATE(589), - [sym_patternNot] = STATE(589), - [sym_patternOr] = STATE(589), - [sym_patternOrElse] = STATE(589), - [sym_patternAny] = STATE(589), - [sym_patternAnd] = STATE(589), - [sym_patternMaybe] = STATE(589), - [sym_patternAfter] = STATE(589), - [sym_patternBefore] = STATE(589), - [sym_patternContains] = STATE(589), - [sym_patternIncludes] = STATE(589), - [sym_rewrite] = STATE(589), - [sym_patternIfElse] = STATE(589), - [sym_within] = STATE(589), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(589), - [sym_nodeLike] = STATE(589), - [sym_like] = STATE(589), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(589), - [sym_some] = STATE(589), - [sym_every] = STATE(589), - [sym_regexPattern] = STATE(589), - [sym_log] = STATE(589), - [sym_range] = STATE(589), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(589), + [116] = { + [sym_sequential] = STATE(592), + [sym_files] = STATE(592), + [sym__pattern] = STATE(592), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(592), + [sym_divOperation] = STATE(592), + [sym_modOperation] = STATE(592), + [sym_addOperation] = STATE(592), + [sym_subOperation] = STATE(592), + [sym_patternAs] = STATE(592), + [sym_patternLimit] = STATE(592), + [sym_assignmentAsPattern] = STATE(592), + [sym_patternAccumulate] = STATE(592), + [sym_patternWhere] = STATE(592), + [sym__literal] = STATE(592), + [sym_patternNot] = STATE(592), + [sym_patternOr] = STATE(592), + [sym_patternOrElse] = STATE(592), + [sym_patternAny] = STATE(592), + [sym_patternAnd] = STATE(592), + [sym_patternMaybe] = STATE(592), + [sym_patternAfter] = STATE(592), + [sym_patternBefore] = STATE(592), + [sym_patternContains] = STATE(592), + [sym_patternIncludes] = STATE(592), + [sym_rewrite] = STATE(592), + [sym_patternIfElse] = STATE(592), + [sym_within] = STATE(592), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(592), + [sym_nodeLike] = STATE(592), + [sym_like] = STATE(592), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(592), + [sym_some] = STATE(592), + [sym_every] = STATE(592), + [sym_regexPattern] = STATE(592), + [sym_log] = STATE(592), + [sym_range] = STATE(592), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(592), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(11), [anon_sym_multifile] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_BANG] = ACTIONS(21), @@ -21875,10 +21684,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(611), + [sym_underscore] = ACTIONS(599), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(611), + [sym_booleanConstant] = ACTIONS(599), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -21903,64 +21712,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(611), - [sym_top] = ACTIONS(611), - [sym_bottom] = ACTIONS(611), - [sym_intConstant] = ACTIONS(611), - [sym_doubleConstant] = ACTIONS(613), - [sym_stringConstant] = ACTIONS(613), + [sym_undefined] = ACTIONS(599), + [sym_top] = ACTIONS(599), + [sym_bottom] = ACTIONS(599), + [sym_intConstant] = ACTIONS(599), + [sym_doubleConstant] = ACTIONS(601), + [sym_stringConstant] = ACTIONS(601), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [120] = { - [sym_sequential] = STATE(554), - [sym_files] = STATE(554), - [sym__pattern] = STATE(554), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(554), - [sym_divOperation] = STATE(554), - [sym_modOperation] = STATE(554), - [sym_addOperation] = STATE(554), - [sym_subOperation] = STATE(554), - [sym_patternAs] = STATE(554), - [sym_patternLimit] = STATE(554), - [sym_assignmentAsPattern] = STATE(554), - [sym_patternAccumulate] = STATE(554), - [sym_patternWhere] = STATE(554), - [sym__literal] = STATE(554), - [sym_patternNot] = STATE(554), - [sym_patternOr] = STATE(554), - [sym_patternOrElse] = STATE(554), - [sym_patternAny] = STATE(554), - [sym_patternAnd] = STATE(554), - [sym_patternMaybe] = STATE(554), - [sym_patternAfter] = STATE(554), - [sym_patternBefore] = STATE(554), - [sym_patternContains] = STATE(554), - [sym_patternIncludes] = STATE(554), - [sym_rewrite] = STATE(554), - [sym_patternIfElse] = STATE(554), - [sym_within] = STATE(554), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(554), - [sym_nodeLike] = STATE(554), - [sym_like] = STATE(554), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(554), - [sym_some] = STATE(554), - [sym_every] = STATE(554), - [sym_regexPattern] = STATE(554), - [sym_log] = STATE(554), - [sym_range] = STATE(554), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(554), + [117] = { + [sym_sequential] = STATE(382), + [sym_files] = STATE(382), + [sym__pattern] = STATE(382), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(382), + [sym_divOperation] = STATE(382), + [sym_modOperation] = STATE(382), + [sym_addOperation] = STATE(382), + [sym_subOperation] = STATE(382), + [sym_patternAs] = STATE(382), + [sym_patternLimit] = STATE(382), + [sym_assignmentAsPattern] = STATE(382), + [sym_patternAccumulate] = STATE(382), + [sym_patternWhere] = STATE(382), + [sym__literal] = STATE(382), + [sym_patternNot] = STATE(382), + [sym_patternOr] = STATE(382), + [sym_patternOrElse] = STATE(382), + [sym_patternAny] = STATE(382), + [sym_patternAnd] = STATE(382), + [sym_patternMaybe] = STATE(382), + [sym_patternAfter] = STATE(382), + [sym_patternBefore] = STATE(382), + [sym_patternContains] = STATE(382), + [sym_patternIncludes] = STATE(382), + [sym_rewrite] = STATE(382), + [sym_patternIfElse] = STATE(382), + [sym_within] = STATE(382), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(382), + [sym_nodeLike] = STATE(382), + [sym_like] = STATE(382), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(382), + [sym_some] = STATE(382), + [sym_every] = STATE(382), + [sym_regexPattern] = STATE(382), + [sym_log] = STATE(382), + [sym_range] = STATE(382), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(382), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), @@ -21986,10 +21796,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(615), + [sym_underscore] = ACTIONS(603), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(615), + [sym_booleanConstant] = ACTIONS(603), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -22014,94 +21824,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(615), - [sym_top] = ACTIONS(615), - [sym_bottom] = ACTIONS(615), - [sym_intConstant] = ACTIONS(615), - [sym_doubleConstant] = ACTIONS(617), - [sym_stringConstant] = ACTIONS(617), + [sym_undefined] = ACTIONS(603), + [sym_top] = ACTIONS(603), + [sym_bottom] = ACTIONS(603), + [sym_intConstant] = ACTIONS(603), + [sym_doubleConstant] = ACTIONS(605), + [sym_stringConstant] = ACTIONS(605), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [121] = { - [sym_sequential] = STATE(818), - [sym_files] = STATE(818), - [sym__pattern] = STATE(818), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(818), - [sym_divOperation] = STATE(818), - [sym_modOperation] = STATE(818), - [sym_addOperation] = STATE(818), - [sym_subOperation] = STATE(818), - [sym_patternAs] = STATE(818), - [sym_patternLimit] = STATE(818), - [sym_assignmentAsPattern] = STATE(818), - [sym_patternAccumulate] = STATE(818), - [sym_patternWhere] = STATE(818), - [sym__literal] = STATE(818), - [sym_patternNot] = STATE(818), - [sym_patternOr] = STATE(818), - [sym_patternOrElse] = STATE(818), - [sym_patternAny] = STATE(818), - [sym_patternAnd] = STATE(818), - [sym_patternMaybe] = STATE(818), - [sym_patternAfter] = STATE(818), - [sym_patternBefore] = STATE(818), - [sym_patternContains] = STATE(818), - [sym_patternIncludes] = STATE(818), - [sym_rewrite] = STATE(818), - [sym_patternIfElse] = STATE(818), - [sym_within] = STATE(818), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(818), - [sym_nodeLike] = STATE(818), - [sym_like] = STATE(818), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(818), - [sym_some] = STATE(818), - [sym_every] = STATE(818), - [sym_regexPattern] = STATE(818), - [sym_log] = STATE(818), - [sym_range] = STATE(818), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(818), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [118] = { + [sym_sequential] = STATE(430), + [sym_files] = STATE(430), + [sym__pattern] = STATE(430), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(430), + [sym_divOperation] = STATE(430), + [sym_modOperation] = STATE(430), + [sym_addOperation] = STATE(430), + [sym_subOperation] = STATE(430), + [sym_patternAs] = STATE(430), + [sym_patternLimit] = STATE(430), + [sym_assignmentAsPattern] = STATE(430), + [sym_patternAccumulate] = STATE(430), + [sym_patternWhere] = STATE(430), + [sym__literal] = STATE(430), + [sym_patternNot] = STATE(430), + [sym_patternOr] = STATE(430), + [sym_patternOrElse] = STATE(430), + [sym_patternAny] = STATE(430), + [sym_patternAnd] = STATE(430), + [sym_patternMaybe] = STATE(430), + [sym_patternAfter] = STATE(430), + [sym_patternBefore] = STATE(430), + [sym_patternContains] = STATE(430), + [sym_patternIncludes] = STATE(430), + [sym_rewrite] = STATE(430), + [sym_patternIfElse] = STATE(430), + [sym_within] = STATE(430), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(430), + [sym_nodeLike] = STATE(430), + [sym_like] = STATE(430), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(430), + [sym_some] = STATE(430), + [sym_every] = STATE(430), + [sym_regexPattern] = STATE(430), + [sym_log] = STATE(430), + [sym_range] = STATE(430), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(430), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(621), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(621), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(607), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(607), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -22125,65 +21936,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(621), - [sym_top] = ACTIONS(621), - [sym_bottom] = ACTIONS(621), - [sym_intConstant] = ACTIONS(621), - [sym_doubleConstant] = ACTIONS(623), - [sym_stringConstant] = ACTIONS(623), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(607), + [sym_top] = ACTIONS(607), + [sym_bottom] = ACTIONS(607), + [sym_intConstant] = ACTIONS(607), + [sym_doubleConstant] = ACTIONS(609), + [sym_stringConstant] = ACTIONS(609), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [122] = { - [sym_sequential] = STATE(695), - [sym_files] = STATE(695), - [sym__pattern] = STATE(695), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(695), - [sym_divOperation] = STATE(695), - [sym_modOperation] = STATE(695), - [sym_addOperation] = STATE(695), - [sym_subOperation] = STATE(695), - [sym_patternAs] = STATE(695), - [sym_patternLimit] = STATE(695), - [sym_assignmentAsPattern] = STATE(695), - [sym_patternAccumulate] = STATE(695), - [sym_patternWhere] = STATE(695), - [sym__literal] = STATE(695), - [sym_patternNot] = STATE(695), - [sym_patternOr] = STATE(695), - [sym_patternOrElse] = STATE(695), - [sym_patternAny] = STATE(695), - [sym_patternAnd] = STATE(695), - [sym_patternMaybe] = STATE(695), - [sym_patternAfter] = STATE(695), - [sym_patternBefore] = STATE(695), - [sym_patternContains] = STATE(695), - [sym_patternIncludes] = STATE(695), - [sym_rewrite] = STATE(695), - [sym_patternIfElse] = STATE(695), - [sym_within] = STATE(695), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(695), - [sym_nodeLike] = STATE(695), - [sym_like] = STATE(695), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(695), - [sym_some] = STATE(695), - [sym_every] = STATE(695), - [sym_regexPattern] = STATE(695), - [sym_log] = STATE(695), - [sym_range] = STATE(695), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(695), - [sym_snippetRegex] = STATE(422), + [119] = { + [sym_sequential] = STATE(532), + [sym_files] = STATE(532), + [sym__pattern] = STATE(532), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(532), + [sym_divOperation] = STATE(532), + [sym_modOperation] = STATE(532), + [sym_addOperation] = STATE(532), + [sym_subOperation] = STATE(532), + [sym_patternAs] = STATE(532), + [sym_patternLimit] = STATE(532), + [sym_assignmentAsPattern] = STATE(532), + [sym_patternAccumulate] = STATE(532), + [sym_patternWhere] = STATE(532), + [sym__literal] = STATE(532), + [sym_patternNot] = STATE(532), + [sym_patternOr] = STATE(532), + [sym_patternOrElse] = STATE(532), + [sym_patternAny] = STATE(532), + [sym_patternAnd] = STATE(532), + [sym_patternMaybe] = STATE(532), + [sym_patternAfter] = STATE(532), + [sym_patternBefore] = STATE(532), + [sym_patternContains] = STATE(532), + [sym_patternIncludes] = STATE(532), + [sym_rewrite] = STATE(532), + [sym_patternIfElse] = STATE(532), + [sym_within] = STATE(532), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(532), + [sym_nodeLike] = STATE(532), + [sym_like] = STATE(532), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(532), + [sym_some] = STATE(532), + [sym_every] = STATE(532), + [sym_regexPattern] = STATE(532), + [sym_log] = STATE(532), + [sym_range] = STATE(532), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(532), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(611), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(611), + [sym_variable] = ACTIONS(73), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(611), + [sym_top] = ACTIONS(611), + [sym_bottom] = ACTIONS(611), + [sym_intConstant] = ACTIONS(611), + [sym_doubleConstant] = ACTIONS(613), + [sym_stringConstant] = ACTIONS(613), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [120] = { + [sym_sequential] = STATE(879), + [sym_files] = STATE(879), + [sym__pattern] = STATE(879), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(879), + [sym_divOperation] = STATE(879), + [sym_modOperation] = STATE(879), + [sym_addOperation] = STATE(879), + [sym_subOperation] = STATE(879), + [sym_patternAs] = STATE(879), + [sym_patternLimit] = STATE(879), + [sym_assignmentAsPattern] = STATE(879), + [sym_patternAccumulate] = STATE(879), + [sym_patternWhere] = STATE(879), + [sym__literal] = STATE(879), + [sym_patternNot] = STATE(879), + [sym_patternOr] = STATE(879), + [sym_patternOrElse] = STATE(879), + [sym_patternAny] = STATE(879), + [sym_patternAnd] = STATE(879), + [sym_patternMaybe] = STATE(879), + [sym_patternAfter] = STATE(879), + [sym_patternBefore] = STATE(879), + [sym_patternContains] = STATE(879), + [sym_patternIncludes] = STATE(879), + [sym_rewrite] = STATE(879), + [sym_patternIfElse] = STATE(879), + [sym_within] = STATE(879), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(879), + [sym_nodeLike] = STATE(879), + [sym_like] = STATE(879), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(879), + [sym_some] = STATE(879), + [sym_every] = STATE(879), + [sym_regexPattern] = STATE(879), + [sym_log] = STATE(879), + [sym_range] = STATE(879), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(879), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -22208,10 +22132,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(625), + [sym_underscore] = ACTIONS(443), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(625), + [sym_booleanConstant] = ACTIONS(443), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -22236,64 +22160,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(625), - [sym_top] = ACTIONS(625), - [sym_bottom] = ACTIONS(625), - [sym_intConstant] = ACTIONS(625), - [sym_doubleConstant] = ACTIONS(627), - [sym_stringConstant] = ACTIONS(627), + [sym_undefined] = ACTIONS(443), + [sym_top] = ACTIONS(443), + [sym_bottom] = ACTIONS(443), + [sym_intConstant] = ACTIONS(443), + [sym_doubleConstant] = ACTIONS(445), + [sym_stringConstant] = ACTIONS(445), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [123] = { - [sym_sequential] = STATE(502), - [sym_files] = STATE(502), - [sym__pattern] = STATE(502), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(502), - [sym_divOperation] = STATE(502), - [sym_modOperation] = STATE(502), - [sym_addOperation] = STATE(502), - [sym_subOperation] = STATE(502), - [sym_patternAs] = STATE(502), - [sym_patternLimit] = STATE(502), - [sym_assignmentAsPattern] = STATE(502), - [sym_patternAccumulate] = STATE(502), - [sym_patternWhere] = STATE(502), - [sym__literal] = STATE(502), - [sym_patternNot] = STATE(502), - [sym_patternOr] = STATE(502), - [sym_patternOrElse] = STATE(502), - [sym_patternAny] = STATE(502), - [sym_patternAnd] = STATE(502), - [sym_patternMaybe] = STATE(502), - [sym_patternAfter] = STATE(502), - [sym_patternBefore] = STATE(502), - [sym_patternContains] = STATE(502), - [sym_patternIncludes] = STATE(502), - [sym_rewrite] = STATE(502), - [sym_patternIfElse] = STATE(502), - [sym_within] = STATE(502), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(502), - [sym_nodeLike] = STATE(502), - [sym_like] = STATE(502), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(502), - [sym_some] = STATE(502), - [sym_every] = STATE(502), - [sym_regexPattern] = STATE(502), - [sym_log] = STATE(502), - [sym_range] = STATE(502), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(502), + [121] = { + [sym_sequential] = STATE(545), + [sym_files] = STATE(545), + [sym__pattern] = STATE(545), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(545), + [sym_divOperation] = STATE(545), + [sym_modOperation] = STATE(545), + [sym_addOperation] = STATE(545), + [sym_subOperation] = STATE(545), + [sym_patternAs] = STATE(545), + [sym_patternLimit] = STATE(545), + [sym_assignmentAsPattern] = STATE(545), + [sym_patternAccumulate] = STATE(545), + [sym_patternWhere] = STATE(545), + [sym__literal] = STATE(545), + [sym_patternNot] = STATE(545), + [sym_patternOr] = STATE(545), + [sym_patternOrElse] = STATE(545), + [sym_patternAny] = STATE(545), + [sym_patternAnd] = STATE(545), + [sym_patternMaybe] = STATE(545), + [sym_patternAfter] = STATE(545), + [sym_patternBefore] = STATE(545), + [sym_patternContains] = STATE(545), + [sym_patternIncludes] = STATE(545), + [sym_rewrite] = STATE(545), + [sym_patternIfElse] = STATE(545), + [sym_within] = STATE(545), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(545), + [sym_nodeLike] = STATE(545), + [sym_like] = STATE(545), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(545), + [sym_some] = STATE(545), + [sym_every] = STATE(545), + [sym_regexPattern] = STATE(545), + [sym_log] = STATE(545), + [sym_range] = STATE(545), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(545), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), @@ -22319,10 +22244,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(629), + [sym_underscore] = ACTIONS(615), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(629), + [sym_booleanConstant] = ACTIONS(615), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -22347,68 +22272,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(629), - [sym_top] = ACTIONS(629), - [sym_bottom] = ACTIONS(629), - [sym_intConstant] = ACTIONS(629), - [sym_doubleConstant] = ACTIONS(631), - [sym_stringConstant] = ACTIONS(631), + [sym_undefined] = ACTIONS(615), + [sym_top] = ACTIONS(615), + [sym_bottom] = ACTIONS(615), + [sym_intConstant] = ACTIONS(615), + [sym_doubleConstant] = ACTIONS(617), + [sym_stringConstant] = ACTIONS(617), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [124] = { - [sym_sequential] = STATE(500), - [sym_files] = STATE(500), - [sym__pattern] = STATE(500), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(500), - [sym_divOperation] = STATE(500), - [sym_modOperation] = STATE(500), - [sym_addOperation] = STATE(500), - [sym_subOperation] = STATE(500), - [sym_patternAs] = STATE(500), - [sym_patternLimit] = STATE(500), - [sym_assignmentAsPattern] = STATE(500), - [sym_patternAccumulate] = STATE(500), - [sym_patternWhere] = STATE(500), - [sym__literal] = STATE(500), - [sym_patternNot] = STATE(500), - [sym_patternOr] = STATE(500), - [sym_patternOrElse] = STATE(500), - [sym_patternAny] = STATE(500), - [sym_patternAnd] = STATE(500), - [sym_patternMaybe] = STATE(500), - [sym_patternAfter] = STATE(500), - [sym_patternBefore] = STATE(500), - [sym_patternContains] = STATE(500), - [sym_patternIncludes] = STATE(500), - [sym_rewrite] = STATE(500), - [sym_patternIfElse] = STATE(500), - [sym_within] = STATE(500), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(500), - [sym_nodeLike] = STATE(500), - [sym_like] = STATE(500), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(500), - [sym_some] = STATE(500), - [sym_every] = STATE(500), - [sym_regexPattern] = STATE(500), - [sym_log] = STATE(500), - [sym_range] = STATE(500), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(500), + [122] = { + [sym_sequential] = STATE(392), + [sym_files] = STATE(392), + [sym__pattern] = STATE(392), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(392), + [sym_divOperation] = STATE(392), + [sym_modOperation] = STATE(392), + [sym_addOperation] = STATE(392), + [sym_subOperation] = STATE(392), + [sym_patternAs] = STATE(392), + [sym_patternLimit] = STATE(392), + [sym_assignmentAsPattern] = STATE(392), + [sym_patternAccumulate] = STATE(392), + [sym_patternWhere] = STATE(392), + [sym__literal] = STATE(392), + [sym_patternNot] = STATE(392), + [sym_patternOr] = STATE(392), + [sym_patternOrElse] = STATE(392), + [sym_patternAny] = STATE(392), + [sym_patternAnd] = STATE(392), + [sym_patternMaybe] = STATE(392), + [sym_patternAfter] = STATE(392), + [sym_patternBefore] = STATE(392), + [sym_patternContains] = STATE(392), + [sym_patternIncludes] = STATE(392), + [sym_rewrite] = STATE(392), + [sym_patternIfElse] = STATE(392), + [sym_within] = STATE(392), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(392), + [sym_nodeLike] = STATE(392), + [sym_like] = STATE(392), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(392), + [sym_some] = STATE(392), + [sym_every] = STATE(392), + [sym_regexPattern] = STATE(392), + [sym_log] = STATE(392), + [sym_range] = STATE(392), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(392), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(619), [anon_sym_multifile] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_BANG] = ACTIONS(21), @@ -22430,10 +22356,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(633), + [sym_underscore] = ACTIONS(621), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(633), + [sym_booleanConstant] = ACTIONS(621), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -22458,94 +22384,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(633), - [sym_top] = ACTIONS(633), - [sym_bottom] = ACTIONS(633), - [sym_intConstant] = ACTIONS(633), - [sym_doubleConstant] = ACTIONS(635), - [sym_stringConstant] = ACTIONS(635), + [sym_undefined] = ACTIONS(621), + [sym_top] = ACTIONS(621), + [sym_bottom] = ACTIONS(621), + [sym_intConstant] = ACTIONS(621), + [sym_doubleConstant] = ACTIONS(623), + [sym_stringConstant] = ACTIONS(623), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [125] = { - [sym_sequential] = STATE(498), - [sym_files] = STATE(498), - [sym__pattern] = STATE(498), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(498), - [sym_divOperation] = STATE(498), - [sym_modOperation] = STATE(498), - [sym_addOperation] = STATE(498), - [sym_subOperation] = STATE(498), - [sym_patternAs] = STATE(498), - [sym_patternLimit] = STATE(498), - [sym_assignmentAsPattern] = STATE(498), - [sym_patternAccumulate] = STATE(498), - [sym_patternWhere] = STATE(498), - [sym__literal] = STATE(498), - [sym_patternNot] = STATE(498), - [sym_patternOr] = STATE(498), - [sym_patternOrElse] = STATE(498), - [sym_patternAny] = STATE(498), - [sym_patternAnd] = STATE(498), - [sym_patternMaybe] = STATE(498), - [sym_patternAfter] = STATE(498), - [sym_patternBefore] = STATE(498), - [sym_patternContains] = STATE(498), - [sym_patternIncludes] = STATE(498), - [sym_rewrite] = STATE(498), - [sym_patternIfElse] = STATE(498), - [sym_within] = STATE(498), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(498), - [sym_nodeLike] = STATE(498), - [sym_like] = STATE(498), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(498), - [sym_some] = STATE(498), - [sym_every] = STATE(498), - [sym_regexPattern] = STATE(498), - [sym_log] = STATE(498), - [sym_range] = STATE(498), + [123] = { + [sym_sequential] = STATE(862), + [sym_files] = STATE(862), + [sym__pattern] = STATE(862), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(862), + [sym_divOperation] = STATE(862), + [sym_modOperation] = STATE(862), + [sym_addOperation] = STATE(862), + [sym_subOperation] = STATE(862), + [sym_patternAs] = STATE(862), + [sym_patternLimit] = STATE(862), + [sym_assignmentAsPattern] = STATE(862), + [sym_patternAccumulate] = STATE(862), + [sym_patternWhere] = STATE(862), + [sym__literal] = STATE(862), + [sym_patternNot] = STATE(862), + [sym_patternOr] = STATE(862), + [sym_patternOrElse] = STATE(862), + [sym_patternAny] = STATE(862), + [sym_patternAnd] = STATE(862), + [sym_patternMaybe] = STATE(862), + [sym_patternAfter] = STATE(862), + [sym_patternBefore] = STATE(862), + [sym_patternContains] = STATE(862), + [sym_patternIncludes] = STATE(862), + [sym_rewrite] = STATE(862), + [sym_patternIfElse] = STATE(862), + [sym_within] = STATE(862), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(862), + [sym_nodeLike] = STATE(862), + [sym_like] = STATE(862), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(862), + [sym_some] = STATE(862), + [sym_every] = STATE(862), + [sym_regexPattern] = STATE(862), + [sym_log] = STATE(862), + [sym_range] = STATE(862), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(498), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(862), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(637), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(637), - [sym_variable] = ACTIONS(73), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(625), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(625), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -22569,94 +22496,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(637), - [sym_top] = ACTIONS(637), - [sym_bottom] = ACTIONS(637), - [sym_intConstant] = ACTIONS(637), - [sym_doubleConstant] = ACTIONS(639), - [sym_stringConstant] = ACTIONS(639), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(625), + [sym_top] = ACTIONS(625), + [sym_bottom] = ACTIONS(625), + [sym_intConstant] = ACTIONS(625), + [sym_doubleConstant] = ACTIONS(627), + [sym_stringConstant] = ACTIONS(627), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [126] = { - [sym_sequential] = STATE(496), - [sym_files] = STATE(496), - [sym__pattern] = STATE(496), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(496), - [sym_divOperation] = STATE(496), - [sym_modOperation] = STATE(496), - [sym_addOperation] = STATE(496), - [sym_subOperation] = STATE(496), - [sym_patternAs] = STATE(496), - [sym_patternLimit] = STATE(496), - [sym_assignmentAsPattern] = STATE(496), - [sym_patternAccumulate] = STATE(496), - [sym_patternWhere] = STATE(496), - [sym__literal] = STATE(496), - [sym_patternNot] = STATE(496), - [sym_patternOr] = STATE(496), - [sym_patternOrElse] = STATE(496), - [sym_patternAny] = STATE(496), - [sym_patternAnd] = STATE(496), - [sym_patternMaybe] = STATE(496), - [sym_patternAfter] = STATE(496), - [sym_patternBefore] = STATE(496), - [sym_patternContains] = STATE(496), - [sym_patternIncludes] = STATE(496), - [sym_rewrite] = STATE(496), - [sym_patternIfElse] = STATE(496), - [sym_within] = STATE(496), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(496), - [sym_nodeLike] = STATE(496), - [sym_like] = STATE(496), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(496), - [sym_some] = STATE(496), - [sym_every] = STATE(496), - [sym_regexPattern] = STATE(496), - [sym_log] = STATE(496), - [sym_range] = STATE(496), + [124] = { + [sym_sequential] = STATE(877), + [sym_files] = STATE(877), + [sym__pattern] = STATE(877), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(877), + [sym_divOperation] = STATE(877), + [sym_modOperation] = STATE(877), + [sym_addOperation] = STATE(877), + [sym_subOperation] = STATE(877), + [sym_patternAs] = STATE(877), + [sym_patternLimit] = STATE(877), + [sym_assignmentAsPattern] = STATE(877), + [sym_patternAccumulate] = STATE(877), + [sym_patternWhere] = STATE(877), + [sym__literal] = STATE(877), + [sym_patternNot] = STATE(877), + [sym_patternOr] = STATE(877), + [sym_patternOrElse] = STATE(877), + [sym_patternAny] = STATE(877), + [sym_patternAnd] = STATE(877), + [sym_patternMaybe] = STATE(877), + [sym_patternAfter] = STATE(877), + [sym_patternBefore] = STATE(877), + [sym_patternContains] = STATE(877), + [sym_patternIncludes] = STATE(877), + [sym_rewrite] = STATE(877), + [sym_patternIfElse] = STATE(877), + [sym_within] = STATE(877), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(877), + [sym_nodeLike] = STATE(877), + [sym_like] = STATE(877), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(877), + [sym_some] = STATE(877), + [sym_every] = STATE(877), + [sym_regexPattern] = STATE(877), + [sym_log] = STATE(877), + [sym_range] = STATE(877), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(496), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(877), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(641), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(641), - [sym_variable] = ACTIONS(73), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(629), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(629), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -22680,64 +22608,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(641), - [sym_top] = ACTIONS(641), - [sym_bottom] = ACTIONS(641), - [sym_intConstant] = ACTIONS(641), - [sym_doubleConstant] = ACTIONS(643), - [sym_stringConstant] = ACTIONS(643), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(629), + [sym_top] = ACTIONS(629), + [sym_bottom] = ACTIONS(629), + [sym_intConstant] = ACTIONS(629), + [sym_doubleConstant] = ACTIONS(631), + [sym_stringConstant] = ACTIONS(631), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [127] = { - [sym_sequential] = STATE(494), - [sym_files] = STATE(494), - [sym__pattern] = STATE(494), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(494), - [sym_divOperation] = STATE(494), - [sym_modOperation] = STATE(494), - [sym_addOperation] = STATE(494), - [sym_subOperation] = STATE(494), - [sym_patternAs] = STATE(494), - [sym_patternLimit] = STATE(494), - [sym_assignmentAsPattern] = STATE(494), - [sym_patternAccumulate] = STATE(494), - [sym_patternWhere] = STATE(494), - [sym__literal] = STATE(494), - [sym_patternNot] = STATE(494), - [sym_patternOr] = STATE(494), - [sym_patternOrElse] = STATE(494), - [sym_patternAny] = STATE(494), - [sym_patternAnd] = STATE(494), - [sym_patternMaybe] = STATE(494), - [sym_patternAfter] = STATE(494), - [sym_patternBefore] = STATE(494), - [sym_patternContains] = STATE(494), - [sym_patternIncludes] = STATE(494), - [sym_rewrite] = STATE(494), - [sym_patternIfElse] = STATE(494), - [sym_within] = STATE(494), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(494), - [sym_nodeLike] = STATE(494), - [sym_like] = STATE(494), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(494), - [sym_some] = STATE(494), - [sym_every] = STATE(494), - [sym_regexPattern] = STATE(494), - [sym_log] = STATE(494), - [sym_range] = STATE(494), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(494), + [125] = { + [sym_sequential] = STATE(388), + [sym_files] = STATE(388), + [sym__pattern] = STATE(388), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(388), + [sym_divOperation] = STATE(388), + [sym_modOperation] = STATE(388), + [sym_addOperation] = STATE(388), + [sym_subOperation] = STATE(388), + [sym_patternAs] = STATE(388), + [sym_patternLimit] = STATE(388), + [sym_assignmentAsPattern] = STATE(388), + [sym_patternAccumulate] = STATE(388), + [sym_patternWhere] = STATE(388), + [sym__literal] = STATE(388), + [sym_patternNot] = STATE(388), + [sym_patternOr] = STATE(388), + [sym_patternOrElse] = STATE(388), + [sym_patternAny] = STATE(388), + [sym_patternAnd] = STATE(388), + [sym_patternMaybe] = STATE(388), + [sym_patternAfter] = STATE(388), + [sym_patternBefore] = STATE(388), + [sym_patternContains] = STATE(388), + [sym_patternIncludes] = STATE(388), + [sym_rewrite] = STATE(388), + [sym_patternIfElse] = STATE(388), + [sym_within] = STATE(388), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(388), + [sym_nodeLike] = STATE(388), + [sym_like] = STATE(388), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(388), + [sym_some] = STATE(388), + [sym_every] = STATE(388), + [sym_regexPattern] = STATE(388), + [sym_log] = STATE(388), + [sym_range] = STATE(388), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(388), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), @@ -22763,10 +22692,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(645), + [sym_underscore] = ACTIONS(633), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(645), + [sym_booleanConstant] = ACTIONS(633), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -22791,68 +22720,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(645), - [sym_top] = ACTIONS(645), - [sym_bottom] = ACTIONS(645), - [sym_intConstant] = ACTIONS(645), - [sym_doubleConstant] = ACTIONS(647), - [sym_stringConstant] = ACTIONS(647), + [sym_undefined] = ACTIONS(633), + [sym_top] = ACTIONS(633), + [sym_bottom] = ACTIONS(633), + [sym_intConstant] = ACTIONS(633), + [sym_doubleConstant] = ACTIONS(635), + [sym_stringConstant] = ACTIONS(635), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [128] = { - [sym_sequential] = STATE(488), - [sym_files] = STATE(488), - [sym__pattern] = STATE(488), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(488), - [sym_divOperation] = STATE(488), - [sym_modOperation] = STATE(488), - [sym_addOperation] = STATE(488), - [sym_subOperation] = STATE(488), - [sym_patternAs] = STATE(488), - [sym_patternLimit] = STATE(488), - [sym_assignmentAsPattern] = STATE(488), - [sym_patternAccumulate] = STATE(488), - [sym_patternWhere] = STATE(488), - [sym__literal] = STATE(488), - [sym_patternNot] = STATE(488), - [sym_patternOr] = STATE(488), - [sym_patternOrElse] = STATE(488), - [sym_patternAny] = STATE(488), - [sym_patternAnd] = STATE(488), - [sym_patternMaybe] = STATE(488), - [sym_patternAfter] = STATE(488), - [sym_patternBefore] = STATE(488), - [sym_patternContains] = STATE(488), - [sym_patternIncludes] = STATE(488), - [sym_rewrite] = STATE(488), - [sym_patternIfElse] = STATE(488), - [sym_within] = STATE(488), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(488), - [sym_nodeLike] = STATE(488), - [sym_like] = STATE(488), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(488), - [sym_some] = STATE(488), - [sym_every] = STATE(488), - [sym_regexPattern] = STATE(488), - [sym_log] = STATE(488), - [sym_range] = STATE(488), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(488), + [126] = { + [sym_sequential] = STATE(457), + [sym_files] = STATE(457), + [sym__pattern] = STATE(457), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(457), + [sym_divOperation] = STATE(457), + [sym_modOperation] = STATE(457), + [sym_addOperation] = STATE(457), + [sym_subOperation] = STATE(457), + [sym_patternAs] = STATE(457), + [sym_patternLimit] = STATE(457), + [sym_assignmentAsPattern] = STATE(457), + [sym_patternAccumulate] = STATE(457), + [sym_patternWhere] = STATE(457), + [sym__literal] = STATE(457), + [sym_patternNot] = STATE(457), + [sym_patternOr] = STATE(457), + [sym_patternOrElse] = STATE(457), + [sym_patternAny] = STATE(457), + [sym_patternAnd] = STATE(457), + [sym_patternMaybe] = STATE(457), + [sym_patternAfter] = STATE(457), + [sym_patternBefore] = STATE(457), + [sym_patternContains] = STATE(457), + [sym_patternIncludes] = STATE(457), + [sym_rewrite] = STATE(457), + [sym_patternIfElse] = STATE(457), + [sym_within] = STATE(457), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(457), + [sym_nodeLike] = STATE(457), + [sym_like] = STATE(457), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(457), + [sym_some] = STATE(457), + [sym_every] = STATE(457), + [sym_regexPattern] = STATE(457), + [sym_log] = STATE(457), + [sym_range] = STATE(457), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(457), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(637), [anon_sym_multifile] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_BANG] = ACTIONS(21), @@ -22874,10 +22804,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(649), + [sym_underscore] = ACTIONS(639), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(649), + [sym_booleanConstant] = ACTIONS(639), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -22902,179 +22832,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(649), - [sym_top] = ACTIONS(649), - [sym_bottom] = ACTIONS(649), - [sym_intConstant] = ACTIONS(649), - [sym_doubleConstant] = ACTIONS(651), - [sym_stringConstant] = ACTIONS(651), + [sym_undefined] = ACTIONS(639), + [sym_top] = ACTIONS(639), + [sym_bottom] = ACTIONS(639), + [sym_intConstant] = ACTIONS(639), + [sym_doubleConstant] = ACTIONS(641), + [sym_stringConstant] = ACTIONS(641), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [129] = { - [sym_sequential] = STATE(450), - [sym_files] = STATE(450), - [sym__pattern] = STATE(450), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(450), - [sym_divOperation] = STATE(450), - [sym_modOperation] = STATE(450), - [sym_addOperation] = STATE(450), - [sym_subOperation] = STATE(450), - [sym_patternAs] = STATE(450), - [sym_patternLimit] = STATE(450), - [sym_assignmentAsPattern] = STATE(450), - [sym_patternAccumulate] = STATE(450), - [sym_patternWhere] = STATE(450), - [sym__literal] = STATE(450), - [sym_patternNot] = STATE(450), - [sym_patternOr] = STATE(450), - [sym_patternOrElse] = STATE(450), - [sym_patternAny] = STATE(450), - [sym_patternAnd] = STATE(450), - [sym_patternMaybe] = STATE(450), - [sym_patternAfter] = STATE(450), - [sym_patternBefore] = STATE(450), - [sym_patternContains] = STATE(450), - [sym_patternIncludes] = STATE(450), - [sym_rewrite] = STATE(450), - [sym_patternIfElse] = STATE(450), - [sym_within] = STATE(450), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(450), - [sym_nodeLike] = STATE(450), - [sym_like] = STATE(450), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(450), - [sym_some] = STATE(450), - [sym_every] = STATE(450), - [sym_regexPattern] = STATE(450), - [sym_log] = STATE(450), - [sym_range] = STATE(450), + [127] = { + [sym_sequential] = STATE(632), + [sym_files] = STATE(632), + [sym__pattern] = STATE(632), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(632), + [sym_divOperation] = STATE(632), + [sym_modOperation] = STATE(632), + [sym_addOperation] = STATE(632), + [sym_subOperation] = STATE(632), + [sym_patternAs] = STATE(632), + [sym_patternLimit] = STATE(632), + [sym_assignmentAsPattern] = STATE(632), + [sym_patternAccumulate] = STATE(632), + [sym_patternWhere] = STATE(632), + [sym__literal] = STATE(632), + [sym_patternNot] = STATE(632), + [sym_patternOr] = STATE(632), + [sym_patternOrElse] = STATE(632), + [sym_patternAny] = STATE(632), + [sym_patternAnd] = STATE(632), + [sym_patternMaybe] = STATE(632), + [sym_patternAfter] = STATE(632), + [sym_patternBefore] = STATE(632), + [sym_patternContains] = STATE(632), + [sym_patternIncludes] = STATE(632), + [sym_rewrite] = STATE(632), + [sym_patternIfElse] = STATE(632), + [sym_within] = STATE(632), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(632), + [sym_nodeLike] = STATE(632), + [sym_like] = STATE(632), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(632), + [sym_some] = STATE(632), + [sym_every] = STATE(632), + [sym_regexPattern] = STATE(632), + [sym_log] = STATE(632), + [sym_range] = STATE(632), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(450), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(653), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(653), - [sym_variable] = ACTIONS(73), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(653), - [sym_top] = ACTIONS(653), - [sym_bottom] = ACTIONS(653), - [sym_intConstant] = ACTIONS(653), - [sym_doubleConstant] = ACTIONS(655), - [sym_stringConstant] = ACTIONS(655), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - }, - [130] = { - [sym_sequential] = STATE(832), - [sym_files] = STATE(832), - [sym__pattern] = STATE(832), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(832), - [sym_divOperation] = STATE(832), - [sym_modOperation] = STATE(832), - [sym_addOperation] = STATE(832), - [sym_subOperation] = STATE(832), - [sym_patternAs] = STATE(832), - [sym_patternLimit] = STATE(832), - [sym_assignmentAsPattern] = STATE(832), - [sym_patternAccumulate] = STATE(832), - [sym_patternWhere] = STATE(832), - [sym__literal] = STATE(832), - [sym_patternNot] = STATE(832), - [sym_patternOr] = STATE(832), - [sym_patternOrElse] = STATE(832), - [sym_patternAny] = STATE(832), - [sym_patternAnd] = STATE(832), - [sym_patternMaybe] = STATE(832), - [sym_patternAfter] = STATE(832), - [sym_patternBefore] = STATE(832), - [sym_patternContains] = STATE(832), - [sym_patternIncludes] = STATE(832), - [sym_rewrite] = STATE(832), - [sym_patternIfElse] = STATE(832), - [sym_within] = STATE(832), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(832), - [sym_nodeLike] = STATE(832), - [sym_like] = STATE(832), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(832), - [sym_some] = STATE(832), - [sym_every] = STATE(832), - [sym_regexPattern] = STATE(832), - [sym_log] = STATE(832), - [sym_range] = STATE(832), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(832), - [sym_snippetRegex] = STATE(422), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(632), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(643), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -23096,10 +22916,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(659), + [sym_underscore] = ACTIONS(645), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(659), + [sym_booleanConstant] = ACTIONS(645), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -23124,179 +22944,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(659), - [sym_top] = ACTIONS(659), - [sym_bottom] = ACTIONS(659), - [sym_intConstant] = ACTIONS(659), - [sym_doubleConstant] = ACTIONS(661), - [sym_stringConstant] = ACTIONS(661), + [sym_undefined] = ACTIONS(645), + [sym_top] = ACTIONS(645), + [sym_bottom] = ACTIONS(645), + [sym_intConstant] = ACTIONS(645), + [sym_doubleConstant] = ACTIONS(647), + [sym_stringConstant] = ACTIONS(647), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [131] = { - [sym_sequential] = STATE(473), - [sym_files] = STATE(473), - [sym__pattern] = STATE(473), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(473), - [sym_divOperation] = STATE(473), - [sym_modOperation] = STATE(473), - [sym_addOperation] = STATE(473), - [sym_subOperation] = STATE(473), - [sym_patternAs] = STATE(473), - [sym_patternLimit] = STATE(473), - [sym_assignmentAsPattern] = STATE(473), - [sym_patternAccumulate] = STATE(473), - [sym_patternWhere] = STATE(473), - [sym__literal] = STATE(473), - [sym_patternNot] = STATE(473), - [sym_patternOr] = STATE(473), - [sym_patternOrElse] = STATE(473), - [sym_patternAny] = STATE(473), - [sym_patternAnd] = STATE(473), - [sym_patternMaybe] = STATE(473), - [sym_patternAfter] = STATE(473), - [sym_patternBefore] = STATE(473), - [sym_patternContains] = STATE(473), - [sym_patternIncludes] = STATE(473), - [sym_rewrite] = STATE(473), - [sym_patternIfElse] = STATE(473), - [sym_within] = STATE(473), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(473), - [sym_nodeLike] = STATE(473), - [sym_like] = STATE(473), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(473), - [sym_some] = STATE(473), - [sym_every] = STATE(473), - [sym_regexPattern] = STATE(473), - [sym_log] = STATE(473), - [sym_range] = STATE(473), + [128] = { + [sym_sequential] = STATE(634), + [sym_files] = STATE(634), + [sym__pattern] = STATE(634), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(634), + [sym_divOperation] = STATE(634), + [sym_modOperation] = STATE(634), + [sym_addOperation] = STATE(634), + [sym_subOperation] = STATE(634), + [sym_patternAs] = STATE(634), + [sym_patternLimit] = STATE(634), + [sym_assignmentAsPattern] = STATE(634), + [sym_patternAccumulate] = STATE(634), + [sym_patternWhere] = STATE(634), + [sym__literal] = STATE(634), + [sym_patternNot] = STATE(634), + [sym_patternOr] = STATE(634), + [sym_patternOrElse] = STATE(634), + [sym_patternAny] = STATE(634), + [sym_patternAnd] = STATE(634), + [sym_patternMaybe] = STATE(634), + [sym_patternAfter] = STATE(634), + [sym_patternBefore] = STATE(634), + [sym_patternContains] = STATE(634), + [sym_patternIncludes] = STATE(634), + [sym_rewrite] = STATE(634), + [sym_patternIfElse] = STATE(634), + [sym_within] = STATE(634), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(634), + [sym_nodeLike] = STATE(634), + [sym_like] = STATE(634), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(634), + [sym_some] = STATE(634), + [sym_every] = STATE(634), + [sym_regexPattern] = STATE(634), + [sym_log] = STATE(634), + [sym_range] = STATE(634), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(473), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(663), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(663), - [sym_variable] = ACTIONS(73), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(663), - [sym_top] = ACTIONS(663), - [sym_bottom] = ACTIONS(663), - [sym_intConstant] = ACTIONS(663), - [sym_doubleConstant] = ACTIONS(665), - [sym_stringConstant] = ACTIONS(665), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - }, - [132] = { - [sym_sequential] = STATE(833), - [sym_files] = STATE(833), - [sym__pattern] = STATE(833), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(833), - [sym_divOperation] = STATE(833), - [sym_modOperation] = STATE(833), - [sym_addOperation] = STATE(833), - [sym_subOperation] = STATE(833), - [sym_patternAs] = STATE(833), - [sym_patternLimit] = STATE(833), - [sym_assignmentAsPattern] = STATE(833), - [sym_patternAccumulate] = STATE(833), - [sym_patternWhere] = STATE(833), - [sym__literal] = STATE(833), - [sym_patternNot] = STATE(833), - [sym_patternOr] = STATE(833), - [sym_patternOrElse] = STATE(833), - [sym_patternAny] = STATE(833), - [sym_patternAnd] = STATE(833), - [sym_patternMaybe] = STATE(833), - [sym_patternAfter] = STATE(833), - [sym_patternBefore] = STATE(833), - [sym_patternContains] = STATE(833), - [sym_patternIncludes] = STATE(833), - [sym_rewrite] = STATE(833), - [sym_patternIfElse] = STATE(833), - [sym_within] = STATE(833), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(833), - [sym_nodeLike] = STATE(833), - [sym_like] = STATE(833), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(833), - [sym_some] = STATE(833), - [sym_every] = STATE(833), - [sym_regexPattern] = STATE(833), - [sym_log] = STATE(833), - [sym_range] = STATE(833), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(833), - [sym_snippetRegex] = STATE(422), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(634), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_LBRACE] = ACTIONS(649), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -23318,10 +23028,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(669), + [sym_underscore] = ACTIONS(651), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(669), + [sym_booleanConstant] = ACTIONS(651), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -23346,68 +23056,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(669), - [sym_top] = ACTIONS(669), - [sym_bottom] = ACTIONS(669), - [sym_intConstant] = ACTIONS(669), - [sym_doubleConstant] = ACTIONS(671), - [sym_stringConstant] = ACTIONS(671), + [sym_undefined] = ACTIONS(651), + [sym_top] = ACTIONS(651), + [sym_bottom] = ACTIONS(651), + [sym_intConstant] = ACTIONS(651), + [sym_doubleConstant] = ACTIONS(653), + [sym_stringConstant] = ACTIONS(653), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [133] = { - [sym_sequential] = STATE(834), - [sym_files] = STATE(834), - [sym__pattern] = STATE(834), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(834), - [sym_divOperation] = STATE(834), - [sym_modOperation] = STATE(834), - [sym_addOperation] = STATE(834), - [sym_subOperation] = STATE(834), - [sym_patternAs] = STATE(834), - [sym_patternLimit] = STATE(834), - [sym_assignmentAsPattern] = STATE(834), - [sym_patternAccumulate] = STATE(834), - [sym_patternWhere] = STATE(834), - [sym__literal] = STATE(834), - [sym_patternNot] = STATE(834), - [sym_patternOr] = STATE(834), - [sym_patternOrElse] = STATE(834), - [sym_patternAny] = STATE(834), - [sym_patternAnd] = STATE(834), - [sym_patternMaybe] = STATE(834), - [sym_patternAfter] = STATE(834), - [sym_patternBefore] = STATE(834), - [sym_patternContains] = STATE(834), - [sym_patternIncludes] = STATE(834), - [sym_rewrite] = STATE(834), - [sym_patternIfElse] = STATE(834), - [sym_within] = STATE(834), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(834), - [sym_nodeLike] = STATE(834), - [sym_like] = STATE(834), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(834), - [sym_some] = STATE(834), - [sym_every] = STATE(834), - [sym_regexPattern] = STATE(834), - [sym_log] = STATE(834), - [sym_range] = STATE(834), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(834), - [sym_snippetRegex] = STATE(422), + [129] = { + [sym_sequential] = STATE(638), + [sym_files] = STATE(638), + [sym__pattern] = STATE(638), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(638), + [sym_divOperation] = STATE(638), + [sym_modOperation] = STATE(638), + [sym_addOperation] = STATE(638), + [sym_subOperation] = STATE(638), + [sym_patternAs] = STATE(638), + [sym_patternLimit] = STATE(638), + [sym_assignmentAsPattern] = STATE(638), + [sym_patternAccumulate] = STATE(638), + [sym_patternWhere] = STATE(638), + [sym__literal] = STATE(638), + [sym_patternNot] = STATE(638), + [sym_patternOr] = STATE(638), + [sym_patternOrElse] = STATE(638), + [sym_patternAny] = STATE(638), + [sym_patternAnd] = STATE(638), + [sym_patternMaybe] = STATE(638), + [sym_patternAfter] = STATE(638), + [sym_patternBefore] = STATE(638), + [sym_patternContains] = STATE(638), + [sym_patternIncludes] = STATE(638), + [sym_rewrite] = STATE(638), + [sym_patternIfElse] = STATE(638), + [sym_within] = STATE(638), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(638), + [sym_nodeLike] = STATE(638), + [sym_like] = STATE(638), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(638), + [sym_some] = STATE(638), + [sym_every] = STATE(638), + [sym_regexPattern] = STATE(638), + [sym_log] = STATE(638), + [sym_range] = STATE(638), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(638), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(655), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -23429,10 +23140,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(675), + [sym_underscore] = ACTIONS(657), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(675), + [sym_booleanConstant] = ACTIONS(657), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -23457,68 +23168,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(675), - [sym_top] = ACTIONS(675), - [sym_bottom] = ACTIONS(675), - [sym_intConstant] = ACTIONS(675), - [sym_doubleConstant] = ACTIONS(677), - [sym_stringConstant] = ACTIONS(677), + [sym_undefined] = ACTIONS(657), + [sym_top] = ACTIONS(657), + [sym_bottom] = ACTIONS(657), + [sym_intConstant] = ACTIONS(657), + [sym_doubleConstant] = ACTIONS(659), + [sym_stringConstant] = ACTIONS(659), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [134] = { - [sym_sequential] = STATE(830), - [sym_files] = STATE(830), - [sym__pattern] = STATE(830), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(830), - [sym_divOperation] = STATE(830), - [sym_modOperation] = STATE(830), - [sym_addOperation] = STATE(830), - [sym_subOperation] = STATE(830), - [sym_patternAs] = STATE(830), - [sym_patternLimit] = STATE(830), - [sym_assignmentAsPattern] = STATE(830), - [sym_patternAccumulate] = STATE(830), - [sym_patternWhere] = STATE(830), - [sym__literal] = STATE(830), - [sym_patternNot] = STATE(830), - [sym_patternOr] = STATE(830), - [sym_patternOrElse] = STATE(830), - [sym_patternAny] = STATE(830), - [sym_patternAnd] = STATE(830), - [sym_patternMaybe] = STATE(830), - [sym_patternAfter] = STATE(830), - [sym_patternBefore] = STATE(830), - [sym_patternContains] = STATE(830), - [sym_patternIncludes] = STATE(830), - [sym_rewrite] = STATE(830), - [sym_patternIfElse] = STATE(830), - [sym_within] = STATE(830), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(830), - [sym_nodeLike] = STATE(830), - [sym_like] = STATE(830), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(830), - [sym_some] = STATE(830), - [sym_every] = STATE(830), - [sym_regexPattern] = STATE(830), - [sym_log] = STATE(830), - [sym_range] = STATE(830), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(830), - [sym_snippetRegex] = STATE(422), + [130] = { + [sym_sequential] = STATE(636), + [sym_files] = STATE(636), + [sym__pattern] = STATE(636), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(636), + [sym_divOperation] = STATE(636), + [sym_modOperation] = STATE(636), + [sym_addOperation] = STATE(636), + [sym_subOperation] = STATE(636), + [sym_patternAs] = STATE(636), + [sym_patternLimit] = STATE(636), + [sym_assignmentAsPattern] = STATE(636), + [sym_patternAccumulate] = STATE(636), + [sym_patternWhere] = STATE(636), + [sym__literal] = STATE(636), + [sym_patternNot] = STATE(636), + [sym_patternOr] = STATE(636), + [sym_patternOrElse] = STATE(636), + [sym_patternAny] = STATE(636), + [sym_patternAnd] = STATE(636), + [sym_patternMaybe] = STATE(636), + [sym_patternAfter] = STATE(636), + [sym_patternBefore] = STATE(636), + [sym_patternContains] = STATE(636), + [sym_patternIncludes] = STATE(636), + [sym_rewrite] = STATE(636), + [sym_patternIfElse] = STATE(636), + [sym_within] = STATE(636), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(636), + [sym_nodeLike] = STATE(636), + [sym_like] = STATE(636), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(636), + [sym_some] = STATE(636), + [sym_every] = STATE(636), + [sym_regexPattern] = STATE(636), + [sym_log] = STATE(636), + [sym_range] = STATE(636), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(636), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -23540,10 +23252,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(681), + [sym_underscore] = ACTIONS(661), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(681), + [sym_booleanConstant] = ACTIONS(661), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -23568,64 +23280,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(681), - [sym_top] = ACTIONS(681), - [sym_bottom] = ACTIONS(681), - [sym_intConstant] = ACTIONS(681), - [sym_doubleConstant] = ACTIONS(683), - [sym_stringConstant] = ACTIONS(683), + [sym_undefined] = ACTIONS(661), + [sym_top] = ACTIONS(661), + [sym_bottom] = ACTIONS(661), + [sym_intConstant] = ACTIONS(661), + [sym_doubleConstant] = ACTIONS(663), + [sym_stringConstant] = ACTIONS(663), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [135] = { - [sym_sequential] = STATE(575), - [sym_files] = STATE(575), - [sym__pattern] = STATE(575), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(575), - [sym_divOperation] = STATE(575), - [sym_modOperation] = STATE(575), - [sym_addOperation] = STATE(575), - [sym_subOperation] = STATE(575), - [sym_patternAs] = STATE(575), - [sym_patternLimit] = STATE(575), - [sym_assignmentAsPattern] = STATE(575), - [sym_patternAccumulate] = STATE(575), - [sym_patternWhere] = STATE(575), - [sym__literal] = STATE(575), - [sym_patternNot] = STATE(575), - [sym_patternOr] = STATE(575), - [sym_patternOrElse] = STATE(575), - [sym_patternAny] = STATE(575), - [sym_patternAnd] = STATE(575), - [sym_patternMaybe] = STATE(575), - [sym_patternAfter] = STATE(575), - [sym_patternBefore] = STATE(575), - [sym_patternContains] = STATE(575), - [sym_patternIncludes] = STATE(575), - [sym_rewrite] = STATE(575), - [sym_patternIfElse] = STATE(575), - [sym_within] = STATE(575), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(575), - [sym_nodeLike] = STATE(575), - [sym_like] = STATE(575), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(575), - [sym_some] = STATE(575), - [sym_every] = STATE(575), - [sym_regexPattern] = STATE(575), - [sym_log] = STATE(575), - [sym_range] = STATE(575), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(575), + [131] = { + [sym_sequential] = STATE(428), + [sym_files] = STATE(428), + [sym__pattern] = STATE(428), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(428), + [sym_divOperation] = STATE(428), + [sym_modOperation] = STATE(428), + [sym_addOperation] = STATE(428), + [sym_subOperation] = STATE(428), + [sym_patternAs] = STATE(428), + [sym_patternLimit] = STATE(428), + [sym_assignmentAsPattern] = STATE(428), + [sym_patternAccumulate] = STATE(428), + [sym_patternWhere] = STATE(428), + [sym__literal] = STATE(428), + [sym_patternNot] = STATE(428), + [sym_patternOr] = STATE(428), + [sym_patternOrElse] = STATE(428), + [sym_patternAny] = STATE(428), + [sym_patternAnd] = STATE(428), + [sym_patternMaybe] = STATE(428), + [sym_patternAfter] = STATE(428), + [sym_patternBefore] = STATE(428), + [sym_patternContains] = STATE(428), + [sym_patternIncludes] = STATE(428), + [sym_rewrite] = STATE(428), + [sym_patternIfElse] = STATE(428), + [sym_within] = STATE(428), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(428), + [sym_nodeLike] = STATE(428), + [sym_like] = STATE(428), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(428), + [sym_some] = STATE(428), + [sym_every] = STATE(428), + [sym_regexPattern] = STATE(428), + [sym_log] = STATE(428), + [sym_range] = STATE(428), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(428), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), @@ -23651,10 +23364,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(685), + [sym_underscore] = ACTIONS(665), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(685), + [sym_booleanConstant] = ACTIONS(665), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -23679,65 +23392,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(685), - [sym_top] = ACTIONS(685), - [sym_bottom] = ACTIONS(685), - [sym_intConstant] = ACTIONS(685), - [sym_doubleConstant] = ACTIONS(687), - [sym_stringConstant] = ACTIONS(687), + [sym_undefined] = ACTIONS(665), + [sym_top] = ACTIONS(665), + [sym_bottom] = ACTIONS(665), + [sym_intConstant] = ACTIONS(665), + [sym_doubleConstant] = ACTIONS(667), + [sym_stringConstant] = ACTIONS(667), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [136] = { - [sym_sequential] = STATE(836), - [sym_files] = STATE(836), - [sym__pattern] = STATE(836), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(836), - [sym_divOperation] = STATE(836), - [sym_modOperation] = STATE(836), - [sym_addOperation] = STATE(836), - [sym_subOperation] = STATE(836), - [sym_patternAs] = STATE(836), - [sym_patternLimit] = STATE(836), - [sym_assignmentAsPattern] = STATE(836), - [sym_patternAccumulate] = STATE(836), - [sym_patternWhere] = STATE(836), - [sym__literal] = STATE(836), - [sym_patternNot] = STATE(836), - [sym_patternOr] = STATE(836), - [sym_patternOrElse] = STATE(836), - [sym_patternAny] = STATE(836), - [sym_patternAnd] = STATE(836), - [sym_patternMaybe] = STATE(836), - [sym_patternAfter] = STATE(836), - [sym_patternBefore] = STATE(836), - [sym_patternContains] = STATE(836), - [sym_patternIncludes] = STATE(836), - [sym_rewrite] = STATE(836), - [sym_patternIfElse] = STATE(836), - [sym_within] = STATE(836), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(836), - [sym_nodeLike] = STATE(836), - [sym_like] = STATE(836), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(836), - [sym_some] = STATE(836), - [sym_every] = STATE(836), - [sym_regexPattern] = STATE(836), - [sym_log] = STATE(836), - [sym_range] = STATE(836), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(836), - [sym_snippetRegex] = STATE(422), + [132] = { + [sym_sequential] = STATE(874), + [sym_files] = STATE(874), + [sym__pattern] = STATE(874), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(874), + [sym_divOperation] = STATE(874), + [sym_modOperation] = STATE(874), + [sym_addOperation] = STATE(874), + [sym_subOperation] = STATE(874), + [sym_patternAs] = STATE(874), + [sym_patternLimit] = STATE(874), + [sym_assignmentAsPattern] = STATE(874), + [sym_patternAccumulate] = STATE(874), + [sym_patternWhere] = STATE(874), + [sym__literal] = STATE(874), + [sym_patternNot] = STATE(874), + [sym_patternOr] = STATE(874), + [sym_patternOrElse] = STATE(874), + [sym_patternAny] = STATE(874), + [sym_patternAnd] = STATE(874), + [sym_patternMaybe] = STATE(874), + [sym_patternAfter] = STATE(874), + [sym_patternBefore] = STATE(874), + [sym_patternContains] = STATE(874), + [sym_patternIncludes] = STATE(874), + [sym_rewrite] = STATE(874), + [sym_patternIfElse] = STATE(874), + [sym_within] = STATE(874), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(874), + [sym_nodeLike] = STATE(874), + [sym_like] = STATE(874), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(874), + [sym_some] = STATE(874), + [sym_every] = STATE(874), + [sym_regexPattern] = STATE(874), + [sym_log] = STATE(874), + [sym_range] = STATE(874), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(874), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -23762,10 +23476,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(689), + [sym_underscore] = ACTIONS(669), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(689), + [sym_booleanConstant] = ACTIONS(669), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -23790,65 +23504,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(689), - [sym_top] = ACTIONS(689), - [sym_bottom] = ACTIONS(689), - [sym_intConstant] = ACTIONS(689), - [sym_doubleConstant] = ACTIONS(691), - [sym_stringConstant] = ACTIONS(691), + [sym_undefined] = ACTIONS(669), + [sym_top] = ACTIONS(669), + [sym_bottom] = ACTIONS(669), + [sym_intConstant] = ACTIONS(669), + [sym_doubleConstant] = ACTIONS(671), + [sym_stringConstant] = ACTIONS(671), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [137] = { - [sym_sequential] = STATE(881), - [sym_files] = STATE(881), - [sym__pattern] = STATE(881), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(881), - [sym_divOperation] = STATE(881), - [sym_modOperation] = STATE(881), - [sym_addOperation] = STATE(881), - [sym_subOperation] = STATE(881), - [sym_patternAs] = STATE(881), - [sym_patternLimit] = STATE(881), - [sym_assignmentAsPattern] = STATE(881), - [sym_patternAccumulate] = STATE(881), - [sym_patternWhere] = STATE(881), - [sym__literal] = STATE(881), - [sym_patternNot] = STATE(881), - [sym_patternOr] = STATE(881), - [sym_patternOrElse] = STATE(881), - [sym_patternAny] = STATE(881), - [sym_patternAnd] = STATE(881), - [sym_patternMaybe] = STATE(881), - [sym_patternAfter] = STATE(881), - [sym_patternBefore] = STATE(881), - [sym_patternContains] = STATE(881), - [sym_patternIncludes] = STATE(881), - [sym_rewrite] = STATE(881), - [sym_patternIfElse] = STATE(881), - [sym_within] = STATE(881), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(881), - [sym_nodeLike] = STATE(881), - [sym_like] = STATE(881), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(881), - [sym_some] = STATE(881), - [sym_every] = STATE(881), - [sym_regexPattern] = STATE(881), - [sym_log] = STATE(881), - [sym_range] = STATE(881), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(881), - [sym_snippetRegex] = STATE(422), + [133] = { + [sym_sequential] = STATE(682), + [sym_files] = STATE(682), + [sym__pattern] = STATE(682), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(682), + [sym_divOperation] = STATE(682), + [sym_modOperation] = STATE(682), + [sym_addOperation] = STATE(682), + [sym_subOperation] = STATE(682), + [sym_patternAs] = STATE(682), + [sym_patternLimit] = STATE(682), + [sym_assignmentAsPattern] = STATE(682), + [sym_patternAccumulate] = STATE(682), + [sym_patternWhere] = STATE(682), + [sym__literal] = STATE(682), + [sym_patternNot] = STATE(682), + [sym_patternOr] = STATE(682), + [sym_patternOrElse] = STATE(682), + [sym_patternAny] = STATE(682), + [sym_patternAnd] = STATE(682), + [sym_patternMaybe] = STATE(682), + [sym_patternAfter] = STATE(682), + [sym_patternBefore] = STATE(682), + [sym_patternContains] = STATE(682), + [sym_patternIncludes] = STATE(682), + [sym_rewrite] = STATE(682), + [sym_patternIfElse] = STATE(682), + [sym_within] = STATE(682), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(682), + [sym_nodeLike] = STATE(682), + [sym_like] = STATE(682), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(682), + [sym_some] = STATE(682), + [sym_every] = STATE(682), + [sym_regexPattern] = STATE(682), + [sym_log] = STATE(682), + [sym_range] = STATE(682), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(682), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -23873,10 +23588,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(693), + [sym_underscore] = ACTIONS(673), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(693), + [sym_booleanConstant] = ACTIONS(673), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -23901,65 +23616,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(693), - [sym_top] = ACTIONS(693), - [sym_bottom] = ACTIONS(693), - [sym_intConstant] = ACTIONS(693), - [sym_doubleConstant] = ACTIONS(695), - [sym_stringConstant] = ACTIONS(695), + [sym_undefined] = ACTIONS(673), + [sym_top] = ACTIONS(673), + [sym_bottom] = ACTIONS(673), + [sym_intConstant] = ACTIONS(673), + [sym_doubleConstant] = ACTIONS(675), + [sym_stringConstant] = ACTIONS(675), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [138] = { - [sym_sequential] = STATE(837), - [sym_files] = STATE(837), - [sym__pattern] = STATE(837), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(837), - [sym_divOperation] = STATE(837), - [sym_modOperation] = STATE(837), - [sym_addOperation] = STATE(837), - [sym_subOperation] = STATE(837), - [sym_patternAs] = STATE(837), - [sym_patternLimit] = STATE(837), - [sym_assignmentAsPattern] = STATE(837), - [sym_patternAccumulate] = STATE(837), - [sym_patternWhere] = STATE(837), - [sym__literal] = STATE(837), - [sym_patternNot] = STATE(837), - [sym_patternOr] = STATE(837), - [sym_patternOrElse] = STATE(837), - [sym_patternAny] = STATE(837), - [sym_patternAnd] = STATE(837), - [sym_patternMaybe] = STATE(837), - [sym_patternAfter] = STATE(837), - [sym_patternBefore] = STATE(837), - [sym_patternContains] = STATE(837), - [sym_patternIncludes] = STATE(837), - [sym_rewrite] = STATE(837), - [sym_patternIfElse] = STATE(837), - [sym_within] = STATE(837), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(837), - [sym_nodeLike] = STATE(837), - [sym_like] = STATE(837), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(837), - [sym_some] = STATE(837), - [sym_every] = STATE(837), - [sym_regexPattern] = STATE(837), - [sym_log] = STATE(837), - [sym_range] = STATE(837), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(837), - [sym_snippetRegex] = STATE(422), + [134] = { + [sym_sequential] = STATE(683), + [sym_files] = STATE(683), + [sym__pattern] = STATE(683), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(683), + [sym_divOperation] = STATE(683), + [sym_modOperation] = STATE(683), + [sym_addOperation] = STATE(683), + [sym_subOperation] = STATE(683), + [sym_patternAs] = STATE(683), + [sym_patternLimit] = STATE(683), + [sym_assignmentAsPattern] = STATE(683), + [sym_patternAccumulate] = STATE(683), + [sym_patternWhere] = STATE(683), + [sym__literal] = STATE(683), + [sym_patternNot] = STATE(683), + [sym_patternOr] = STATE(683), + [sym_patternOrElse] = STATE(683), + [sym_patternAny] = STATE(683), + [sym_patternAnd] = STATE(683), + [sym_patternMaybe] = STATE(683), + [sym_patternAfter] = STATE(683), + [sym_patternBefore] = STATE(683), + [sym_patternContains] = STATE(683), + [sym_patternIncludes] = STATE(683), + [sym_rewrite] = STATE(683), + [sym_patternIfElse] = STATE(683), + [sym_within] = STATE(683), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(683), + [sym_nodeLike] = STATE(683), + [sym_like] = STATE(683), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(683), + [sym_some] = STATE(683), + [sym_every] = STATE(683), + [sym_regexPattern] = STATE(683), + [sym_log] = STATE(683), + [sym_range] = STATE(683), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(683), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -23984,10 +23700,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(697), + [sym_underscore] = ACTIONS(677), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(697), + [sym_booleanConstant] = ACTIONS(677), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -24012,65 +23728,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(697), - [sym_top] = ACTIONS(697), - [sym_bottom] = ACTIONS(697), - [sym_intConstant] = ACTIONS(697), - [sym_doubleConstant] = ACTIONS(699), - [sym_stringConstant] = ACTIONS(699), + [sym_undefined] = ACTIONS(677), + [sym_top] = ACTIONS(677), + [sym_bottom] = ACTIONS(677), + [sym_intConstant] = ACTIONS(677), + [sym_doubleConstant] = ACTIONS(679), + [sym_stringConstant] = ACTIONS(679), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [139] = { - [sym_sequential] = STATE(802), - [sym_files] = STATE(802), - [sym__pattern] = STATE(802), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(802), - [sym_divOperation] = STATE(802), - [sym_modOperation] = STATE(802), - [sym_addOperation] = STATE(802), - [sym_subOperation] = STATE(802), - [sym_patternAs] = STATE(802), - [sym_patternLimit] = STATE(802), - [sym_assignmentAsPattern] = STATE(802), - [sym_patternAccumulate] = STATE(802), - [sym_patternWhere] = STATE(802), - [sym__literal] = STATE(802), - [sym_patternNot] = STATE(802), - [sym_patternOr] = STATE(802), - [sym_patternOrElse] = STATE(802), - [sym_patternAny] = STATE(802), - [sym_patternAnd] = STATE(802), - [sym_patternMaybe] = STATE(802), - [sym_patternAfter] = STATE(802), - [sym_patternBefore] = STATE(802), - [sym_patternContains] = STATE(802), - [sym_patternIncludes] = STATE(802), - [sym_rewrite] = STATE(802), - [sym_patternIfElse] = STATE(802), - [sym_within] = STATE(802), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(802), - [sym_nodeLike] = STATE(802), - [sym_like] = STATE(802), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(802), - [sym_some] = STATE(802), - [sym_every] = STATE(802), - [sym_regexPattern] = STATE(802), - [sym_log] = STATE(802), - [sym_range] = STATE(802), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(802), - [sym_snippetRegex] = STATE(422), + [135] = { + [sym_sequential] = STATE(700), + [sym_files] = STATE(700), + [sym__pattern] = STATE(700), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(700), + [sym_divOperation] = STATE(700), + [sym_modOperation] = STATE(700), + [sym_addOperation] = STATE(700), + [sym_subOperation] = STATE(700), + [sym_patternAs] = STATE(700), + [sym_patternLimit] = STATE(700), + [sym_assignmentAsPattern] = STATE(700), + [sym_patternAccumulate] = STATE(700), + [sym_patternWhere] = STATE(700), + [sym__literal] = STATE(700), + [sym_patternNot] = STATE(700), + [sym_patternOr] = STATE(700), + [sym_patternOrElse] = STATE(700), + [sym_patternAny] = STATE(700), + [sym_patternAnd] = STATE(700), + [sym_patternMaybe] = STATE(700), + [sym_patternAfter] = STATE(700), + [sym_patternBefore] = STATE(700), + [sym_patternContains] = STATE(700), + [sym_patternIncludes] = STATE(700), + [sym_rewrite] = STATE(700), + [sym_patternIfElse] = STATE(700), + [sym_within] = STATE(700), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(700), + [sym_nodeLike] = STATE(700), + [sym_like] = STATE(700), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(700), + [sym_some] = STATE(700), + [sym_every] = STATE(700), + [sym_regexPattern] = STATE(700), + [sym_log] = STATE(700), + [sym_range] = STATE(700), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(700), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -24095,10 +23812,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(701), + [sym_underscore] = ACTIONS(681), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(701), + [sym_booleanConstant] = ACTIONS(681), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -24123,68 +23840,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(701), - [sym_top] = ACTIONS(701), - [sym_bottom] = ACTIONS(701), - [sym_intConstant] = ACTIONS(701), - [sym_doubleConstant] = ACTIONS(703), - [sym_stringConstant] = ACTIONS(703), + [sym_undefined] = ACTIONS(681), + [sym_top] = ACTIONS(681), + [sym_bottom] = ACTIONS(681), + [sym_intConstant] = ACTIONS(681), + [sym_doubleConstant] = ACTIONS(683), + [sym_stringConstant] = ACTIONS(683), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [140] = { - [sym_sequential] = STATE(838), - [sym_files] = STATE(838), - [sym__pattern] = STATE(838), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(838), - [sym_divOperation] = STATE(838), - [sym_modOperation] = STATE(838), - [sym_addOperation] = STATE(838), - [sym_subOperation] = STATE(838), - [sym_patternAs] = STATE(838), - [sym_patternLimit] = STATE(838), - [sym_assignmentAsPattern] = STATE(838), - [sym_patternAccumulate] = STATE(838), - [sym_patternWhere] = STATE(838), - [sym__literal] = STATE(838), - [sym_patternNot] = STATE(838), - [sym_patternOr] = STATE(838), - [sym_patternOrElse] = STATE(838), - [sym_patternAny] = STATE(838), - [sym_patternAnd] = STATE(838), - [sym_patternMaybe] = STATE(838), - [sym_patternAfter] = STATE(838), - [sym_patternBefore] = STATE(838), - [sym_patternContains] = STATE(838), - [sym_patternIncludes] = STATE(838), - [sym_rewrite] = STATE(838), - [sym_patternIfElse] = STATE(838), - [sym_within] = STATE(838), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(838), - [sym_nodeLike] = STATE(838), - [sym_like] = STATE(838), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(838), - [sym_some] = STATE(838), - [sym_every] = STATE(838), - [sym_regexPattern] = STATE(838), - [sym_log] = STATE(838), - [sym_range] = STATE(838), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(838), - [sym_snippetRegex] = STATE(422), + [136] = { + [sym_sequential] = STATE(702), + [sym_files] = STATE(702), + [sym__pattern] = STATE(702), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(702), + [sym_divOperation] = STATE(702), + [sym_modOperation] = STATE(702), + [sym_addOperation] = STATE(702), + [sym_subOperation] = STATE(702), + [sym_patternAs] = STATE(702), + [sym_patternLimit] = STATE(702), + [sym_assignmentAsPattern] = STATE(702), + [sym_patternAccumulate] = STATE(702), + [sym_patternWhere] = STATE(702), + [sym__literal] = STATE(702), + [sym_patternNot] = STATE(702), + [sym_patternOr] = STATE(702), + [sym_patternOrElse] = STATE(702), + [sym_patternAny] = STATE(702), + [sym_patternAnd] = STATE(702), + [sym_patternMaybe] = STATE(702), + [sym_patternAfter] = STATE(702), + [sym_patternBefore] = STATE(702), + [sym_patternContains] = STATE(702), + [sym_patternIncludes] = STATE(702), + [sym_rewrite] = STATE(702), + [sym_patternIfElse] = STATE(702), + [sym_within] = STATE(702), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(702), + [sym_nodeLike] = STATE(702), + [sym_like] = STATE(702), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(702), + [sym_some] = STATE(702), + [sym_every] = STATE(702), + [sym_regexPattern] = STATE(702), + [sym_log] = STATE(702), + [sym_range] = STATE(702), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(702), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -24206,10 +23924,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(707), + [sym_underscore] = ACTIONS(685), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(707), + [sym_booleanConstant] = ACTIONS(685), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -24234,65 +23952,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(707), - [sym_top] = ACTIONS(707), - [sym_bottom] = ACTIONS(707), - [sym_intConstant] = ACTIONS(707), - [sym_doubleConstant] = ACTIONS(709), - [sym_stringConstant] = ACTIONS(709), + [sym_undefined] = ACTIONS(685), + [sym_top] = ACTIONS(685), + [sym_bottom] = ACTIONS(685), + [sym_intConstant] = ACTIONS(685), + [sym_doubleConstant] = ACTIONS(687), + [sym_stringConstant] = ACTIONS(687), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [141] = { - [sym_sequential] = STATE(839), - [sym_files] = STATE(839), - [sym__pattern] = STATE(839), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(839), - [sym_divOperation] = STATE(839), - [sym_modOperation] = STATE(839), - [sym_addOperation] = STATE(839), - [sym_subOperation] = STATE(839), - [sym_patternAs] = STATE(839), - [sym_patternLimit] = STATE(839), - [sym_assignmentAsPattern] = STATE(839), - [sym_patternAccumulate] = STATE(839), - [sym_patternWhere] = STATE(839), - [sym__literal] = STATE(839), - [sym_patternNot] = STATE(839), - [sym_patternOr] = STATE(839), - [sym_patternOrElse] = STATE(839), - [sym_patternAny] = STATE(839), - [sym_patternAnd] = STATE(839), - [sym_patternMaybe] = STATE(839), - [sym_patternAfter] = STATE(839), - [sym_patternBefore] = STATE(839), - [sym_patternContains] = STATE(839), - [sym_patternIncludes] = STATE(839), - [sym_rewrite] = STATE(839), - [sym_patternIfElse] = STATE(839), - [sym_within] = STATE(839), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(839), - [sym_nodeLike] = STATE(839), - [sym_like] = STATE(839), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(839), - [sym_some] = STATE(839), - [sym_every] = STATE(839), - [sym_regexPattern] = STATE(839), - [sym_log] = STATE(839), - [sym_range] = STATE(839), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(839), - [sym_snippetRegex] = STATE(422), + [137] = { + [sym_sequential] = STATE(703), + [sym_files] = STATE(703), + [sym__pattern] = STATE(703), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(703), + [sym_divOperation] = STATE(703), + [sym_modOperation] = STATE(703), + [sym_addOperation] = STATE(703), + [sym_subOperation] = STATE(703), + [sym_patternAs] = STATE(703), + [sym_patternLimit] = STATE(703), + [sym_assignmentAsPattern] = STATE(703), + [sym_patternAccumulate] = STATE(703), + [sym_patternWhere] = STATE(703), + [sym__literal] = STATE(703), + [sym_patternNot] = STATE(703), + [sym_patternOr] = STATE(703), + [sym_patternOrElse] = STATE(703), + [sym_patternAny] = STATE(703), + [sym_patternAnd] = STATE(703), + [sym_patternMaybe] = STATE(703), + [sym_patternAfter] = STATE(703), + [sym_patternBefore] = STATE(703), + [sym_patternContains] = STATE(703), + [sym_patternIncludes] = STATE(703), + [sym_rewrite] = STATE(703), + [sym_patternIfElse] = STATE(703), + [sym_within] = STATE(703), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(703), + [sym_nodeLike] = STATE(703), + [sym_like] = STATE(703), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(703), + [sym_some] = STATE(703), + [sym_every] = STATE(703), + [sym_regexPattern] = STATE(703), + [sym_log] = STATE(703), + [sym_range] = STATE(703), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(703), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -24317,10 +24036,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(711), + [sym_underscore] = ACTIONS(689), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(711), + [sym_booleanConstant] = ACTIONS(689), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -24345,65 +24064,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(711), - [sym_top] = ACTIONS(711), - [sym_bottom] = ACTIONS(711), - [sym_intConstant] = ACTIONS(711), - [sym_doubleConstant] = ACTIONS(713), - [sym_stringConstant] = ACTIONS(713), + [sym_undefined] = ACTIONS(689), + [sym_top] = ACTIONS(689), + [sym_bottom] = ACTIONS(689), + [sym_intConstant] = ACTIONS(689), + [sym_doubleConstant] = ACTIONS(691), + [sym_stringConstant] = ACTIONS(691), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [142] = { - [sym_sequential] = STATE(783), - [sym_files] = STATE(783), - [sym__pattern] = STATE(783), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(783), - [sym_divOperation] = STATE(783), - [sym_modOperation] = STATE(783), - [sym_addOperation] = STATE(783), - [sym_subOperation] = STATE(783), - [sym_patternAs] = STATE(783), - [sym_patternLimit] = STATE(783), - [sym_assignmentAsPattern] = STATE(783), - [sym_patternAccumulate] = STATE(783), - [sym_patternWhere] = STATE(783), - [sym__literal] = STATE(783), - [sym_patternNot] = STATE(783), - [sym_patternOr] = STATE(783), - [sym_patternOrElse] = STATE(783), - [sym_patternAny] = STATE(783), - [sym_patternAnd] = STATE(783), - [sym_patternMaybe] = STATE(783), - [sym_patternAfter] = STATE(783), - [sym_patternBefore] = STATE(783), - [sym_patternContains] = STATE(783), - [sym_patternIncludes] = STATE(783), - [sym_rewrite] = STATE(783), - [sym_patternIfElse] = STATE(783), - [sym_within] = STATE(783), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(783), - [sym_nodeLike] = STATE(783), - [sym_like] = STATE(783), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(783), - [sym_some] = STATE(783), - [sym_every] = STATE(783), - [sym_regexPattern] = STATE(783), - [sym_log] = STATE(783), - [sym_range] = STATE(783), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(783), - [sym_snippetRegex] = STATE(422), + [138] = { + [sym_sequential] = STATE(706), + [sym_files] = STATE(706), + [sym__pattern] = STATE(706), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(706), + [sym_divOperation] = STATE(706), + [sym_modOperation] = STATE(706), + [sym_addOperation] = STATE(706), + [sym_subOperation] = STATE(706), + [sym_patternAs] = STATE(706), + [sym_patternLimit] = STATE(706), + [sym_assignmentAsPattern] = STATE(706), + [sym_patternAccumulate] = STATE(706), + [sym_patternWhere] = STATE(706), + [sym__literal] = STATE(706), + [sym_patternNot] = STATE(706), + [sym_patternOr] = STATE(706), + [sym_patternOrElse] = STATE(706), + [sym_patternAny] = STATE(706), + [sym_patternAnd] = STATE(706), + [sym_patternMaybe] = STATE(706), + [sym_patternAfter] = STATE(706), + [sym_patternBefore] = STATE(706), + [sym_patternContains] = STATE(706), + [sym_patternIncludes] = STATE(706), + [sym_rewrite] = STATE(706), + [sym_patternIfElse] = STATE(706), + [sym_within] = STATE(706), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(706), + [sym_nodeLike] = STATE(706), + [sym_like] = STATE(706), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(706), + [sym_some] = STATE(706), + [sym_every] = STATE(706), + [sym_regexPattern] = STATE(706), + [sym_log] = STATE(706), + [sym_range] = STATE(706), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(706), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -24428,10 +24148,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(715), + [sym_underscore] = ACTIONS(693), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(715), + [sym_booleanConstant] = ACTIONS(693), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -24456,65 +24176,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(715), - [sym_top] = ACTIONS(715), - [sym_bottom] = ACTIONS(715), - [sym_intConstant] = ACTIONS(715), - [sym_doubleConstant] = ACTIONS(717), - [sym_stringConstant] = ACTIONS(717), + [sym_undefined] = ACTIONS(693), + [sym_top] = ACTIONS(693), + [sym_bottom] = ACTIONS(693), + [sym_intConstant] = ACTIONS(693), + [sym_doubleConstant] = ACTIONS(695), + [sym_stringConstant] = ACTIONS(695), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [143] = { - [sym_sequential] = STATE(827), - [sym_files] = STATE(827), - [sym__pattern] = STATE(827), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(827), - [sym_divOperation] = STATE(827), - [sym_modOperation] = STATE(827), - [sym_addOperation] = STATE(827), - [sym_subOperation] = STATE(827), - [sym_patternAs] = STATE(827), - [sym_patternLimit] = STATE(827), - [sym_assignmentAsPattern] = STATE(827), - [sym_patternAccumulate] = STATE(827), - [sym_patternWhere] = STATE(827), - [sym__literal] = STATE(827), - [sym_patternNot] = STATE(827), - [sym_patternOr] = STATE(827), - [sym_patternOrElse] = STATE(827), - [sym_patternAny] = STATE(827), - [sym_patternAnd] = STATE(827), - [sym_patternMaybe] = STATE(827), - [sym_patternAfter] = STATE(827), - [sym_patternBefore] = STATE(827), - [sym_patternContains] = STATE(827), - [sym_patternIncludes] = STATE(827), - [sym_rewrite] = STATE(827), - [sym_patternIfElse] = STATE(827), - [sym_within] = STATE(827), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(827), - [sym_nodeLike] = STATE(827), - [sym_like] = STATE(827), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(827), - [sym_some] = STATE(827), - [sym_every] = STATE(827), - [sym_regexPattern] = STATE(827), - [sym_log] = STATE(827), - [sym_range] = STATE(827), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(827), - [sym_snippetRegex] = STATE(422), + [139] = { + [sym_sequential] = STATE(736), + [sym_files] = STATE(736), + [sym__pattern] = STATE(736), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(736), + [sym_divOperation] = STATE(736), + [sym_modOperation] = STATE(736), + [sym_addOperation] = STATE(736), + [sym_subOperation] = STATE(736), + [sym_patternAs] = STATE(736), + [sym_patternLimit] = STATE(736), + [sym_assignmentAsPattern] = STATE(736), + [sym_patternAccumulate] = STATE(736), + [sym_patternWhere] = STATE(736), + [sym__literal] = STATE(736), + [sym_patternNot] = STATE(736), + [sym_patternOr] = STATE(736), + [sym_patternOrElse] = STATE(736), + [sym_patternAny] = STATE(736), + [sym_patternAnd] = STATE(736), + [sym_patternMaybe] = STATE(736), + [sym_patternAfter] = STATE(736), + [sym_patternBefore] = STATE(736), + [sym_patternContains] = STATE(736), + [sym_patternIncludes] = STATE(736), + [sym_rewrite] = STATE(736), + [sym_patternIfElse] = STATE(736), + [sym_within] = STATE(736), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(736), + [sym_nodeLike] = STATE(736), + [sym_like] = STATE(736), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(736), + [sym_some] = STATE(736), + [sym_every] = STATE(736), + [sym_regexPattern] = STATE(736), + [sym_log] = STATE(736), + [sym_range] = STATE(736), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(736), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -24539,10 +24260,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(719), + [sym_underscore] = ACTIONS(697), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(719), + [sym_booleanConstant] = ACTIONS(697), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -24567,65 +24288,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(719), - [sym_top] = ACTIONS(719), - [sym_bottom] = ACTIONS(719), - [sym_intConstant] = ACTIONS(719), - [sym_doubleConstant] = ACTIONS(721), - [sym_stringConstant] = ACTIONS(721), + [sym_undefined] = ACTIONS(697), + [sym_top] = ACTIONS(697), + [sym_bottom] = ACTIONS(697), + [sym_intConstant] = ACTIONS(697), + [sym_doubleConstant] = ACTIONS(699), + [sym_stringConstant] = ACTIONS(699), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [144] = { - [sym_sequential] = STATE(903), - [sym_files] = STATE(903), - [sym__pattern] = STATE(903), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(903), - [sym_divOperation] = STATE(903), - [sym_modOperation] = STATE(903), - [sym_addOperation] = STATE(903), - [sym_subOperation] = STATE(903), - [sym_patternAs] = STATE(903), - [sym_patternLimit] = STATE(903), - [sym_assignmentAsPattern] = STATE(903), - [sym_patternAccumulate] = STATE(903), - [sym_patternWhere] = STATE(903), - [sym__literal] = STATE(903), - [sym_patternNot] = STATE(903), - [sym_patternOr] = STATE(903), - [sym_patternOrElse] = STATE(903), - [sym_patternAny] = STATE(903), - [sym_patternAnd] = STATE(903), - [sym_patternMaybe] = STATE(903), - [sym_patternAfter] = STATE(903), - [sym_patternBefore] = STATE(903), - [sym_patternContains] = STATE(903), - [sym_patternIncludes] = STATE(903), - [sym_rewrite] = STATE(903), - [sym_patternIfElse] = STATE(903), - [sym_within] = STATE(903), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(903), - [sym_nodeLike] = STATE(903), - [sym_like] = STATE(903), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(903), - [sym_some] = STATE(903), - [sym_every] = STATE(903), - [sym_regexPattern] = STATE(903), - [sym_log] = STATE(903), - [sym_range] = STATE(903), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(903), - [sym_snippetRegex] = STATE(422), + [140] = { + [sym_sequential] = STATE(737), + [sym_files] = STATE(737), + [sym__pattern] = STATE(737), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(737), + [sym_divOperation] = STATE(737), + [sym_modOperation] = STATE(737), + [sym_addOperation] = STATE(737), + [sym_subOperation] = STATE(737), + [sym_patternAs] = STATE(737), + [sym_patternLimit] = STATE(737), + [sym_assignmentAsPattern] = STATE(737), + [sym_patternAccumulate] = STATE(737), + [sym_patternWhere] = STATE(737), + [sym__literal] = STATE(737), + [sym_patternNot] = STATE(737), + [sym_patternOr] = STATE(737), + [sym_patternOrElse] = STATE(737), + [sym_patternAny] = STATE(737), + [sym_patternAnd] = STATE(737), + [sym_patternMaybe] = STATE(737), + [sym_patternAfter] = STATE(737), + [sym_patternBefore] = STATE(737), + [sym_patternContains] = STATE(737), + [sym_patternIncludes] = STATE(737), + [sym_rewrite] = STATE(737), + [sym_patternIfElse] = STATE(737), + [sym_within] = STATE(737), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(737), + [sym_nodeLike] = STATE(737), + [sym_like] = STATE(737), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(737), + [sym_some] = STATE(737), + [sym_every] = STATE(737), + [sym_regexPattern] = STATE(737), + [sym_log] = STATE(737), + [sym_range] = STATE(737), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(737), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -24650,10 +24372,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(723), + [sym_underscore] = ACTIONS(701), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(723), + [sym_booleanConstant] = ACTIONS(701), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -24678,64 +24400,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(723), - [sym_top] = ACTIONS(723), - [sym_bottom] = ACTIONS(723), - [sym_intConstant] = ACTIONS(723), - [sym_doubleConstant] = ACTIONS(725), - [sym_stringConstant] = ACTIONS(725), + [sym_undefined] = ACTIONS(701), + [sym_top] = ACTIONS(701), + [sym_bottom] = ACTIONS(701), + [sym_intConstant] = ACTIONS(701), + [sym_doubleConstant] = ACTIONS(703), + [sym_stringConstant] = ACTIONS(703), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [145] = { - [sym_sequential] = STATE(471), - [sym_files] = STATE(471), - [sym__pattern] = STATE(471), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(471), - [sym_divOperation] = STATE(471), - [sym_modOperation] = STATE(471), - [sym_addOperation] = STATE(471), - [sym_subOperation] = STATE(471), - [sym_patternAs] = STATE(471), - [sym_patternLimit] = STATE(471), - [sym_assignmentAsPattern] = STATE(471), - [sym_patternAccumulate] = STATE(471), - [sym_patternWhere] = STATE(471), - [sym__literal] = STATE(471), - [sym_patternNot] = STATE(471), - [sym_patternOr] = STATE(471), - [sym_patternOrElse] = STATE(471), - [sym_patternAny] = STATE(471), - [sym_patternAnd] = STATE(471), - [sym_patternMaybe] = STATE(471), - [sym_patternAfter] = STATE(471), - [sym_patternBefore] = STATE(471), - [sym_patternContains] = STATE(471), - [sym_patternIncludes] = STATE(471), - [sym_rewrite] = STATE(471), - [sym_patternIfElse] = STATE(471), - [sym_within] = STATE(471), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(471), - [sym_nodeLike] = STATE(471), - [sym_like] = STATE(471), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(471), - [sym_some] = STATE(471), - [sym_every] = STATE(471), - [sym_regexPattern] = STATE(471), - [sym_log] = STATE(471), - [sym_range] = STATE(471), + [141] = { + [sym_sequential] = STATE(837), + [sym_files] = STATE(837), + [sym__pattern] = STATE(837), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(837), + [sym_divOperation] = STATE(837), + [sym_modOperation] = STATE(837), + [sym_addOperation] = STATE(837), + [sym_subOperation] = STATE(837), + [sym_patternAs] = STATE(837), + [sym_patternLimit] = STATE(837), + [sym_assignmentAsPattern] = STATE(837), + [sym_patternAccumulate] = STATE(837), + [sym_patternWhere] = STATE(837), + [sym__literal] = STATE(837), + [sym_patternNot] = STATE(837), + [sym_patternOr] = STATE(837), + [sym_patternOrElse] = STATE(837), + [sym_patternAny] = STATE(837), + [sym_patternAnd] = STATE(837), + [sym_patternMaybe] = STATE(837), + [sym_patternAfter] = STATE(837), + [sym_patternBefore] = STATE(837), + [sym_patternContains] = STATE(837), + [sym_patternIncludes] = STATE(837), + [sym_rewrite] = STATE(837), + [sym_patternIfElse] = STATE(837), + [sym_within] = STATE(837), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(837), + [sym_nodeLike] = STATE(837), + [sym_like] = STATE(837), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(837), + [sym_some] = STATE(837), + [sym_every] = STATE(837), + [sym_regexPattern] = STATE(837), + [sym_log] = STATE(837), + [sym_range] = STATE(837), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(471), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(837), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(705), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(705), + [sym_variable] = ACTIONS(263), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(705), + [sym_top] = ACTIONS(705), + [sym_bottom] = ACTIONS(705), + [sym_intConstant] = ACTIONS(705), + [sym_doubleConstant] = ACTIONS(707), + [sym_stringConstant] = ACTIONS(707), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [sym_sequential] = STATE(538), + [sym_files] = STATE(538), + [sym__pattern] = STATE(538), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(538), + [sym_divOperation] = STATE(538), + [sym_modOperation] = STATE(538), + [sym_addOperation] = STATE(538), + [sym_subOperation] = STATE(538), + [sym_patternAs] = STATE(538), + [sym_patternLimit] = STATE(538), + [sym_assignmentAsPattern] = STATE(538), + [sym_patternAccumulate] = STATE(538), + [sym_patternWhere] = STATE(538), + [sym__literal] = STATE(538), + [sym_patternNot] = STATE(538), + [sym_patternOr] = STATE(538), + [sym_patternOrElse] = STATE(538), + [sym_patternAny] = STATE(538), + [sym_patternAnd] = STATE(538), + [sym_patternMaybe] = STATE(538), + [sym_patternAfter] = STATE(538), + [sym_patternBefore] = STATE(538), + [sym_patternContains] = STATE(538), + [sym_patternIncludes] = STATE(538), + [sym_rewrite] = STATE(538), + [sym_patternIfElse] = STATE(538), + [sym_within] = STATE(538), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(538), + [sym_nodeLike] = STATE(538), + [sym_like] = STATE(538), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(538), + [sym_some] = STATE(538), + [sym_every] = STATE(538), + [sym_regexPattern] = STATE(538), + [sym_log] = STATE(538), + [sym_range] = STATE(538), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(538), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), @@ -24761,10 +24596,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(727), + [sym_underscore] = ACTIONS(709), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(727), + [sym_booleanConstant] = ACTIONS(709), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -24789,65 +24624,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(727), - [sym_top] = ACTIONS(727), - [sym_bottom] = ACTIONS(727), - [sym_intConstant] = ACTIONS(727), - [sym_doubleConstant] = ACTIONS(729), - [sym_stringConstant] = ACTIONS(729), + [sym_undefined] = ACTIONS(709), + [sym_top] = ACTIONS(709), + [sym_bottom] = ACTIONS(709), + [sym_intConstant] = ACTIONS(709), + [sym_doubleConstant] = ACTIONS(711), + [sym_stringConstant] = ACTIONS(711), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [146] = { - [sym_sequential] = STATE(910), - [sym_files] = STATE(910), - [sym__pattern] = STATE(910), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(910), - [sym_divOperation] = STATE(910), - [sym_modOperation] = STATE(910), - [sym_addOperation] = STATE(910), - [sym_subOperation] = STATE(910), - [sym_patternAs] = STATE(910), - [sym_patternLimit] = STATE(910), - [sym_assignmentAsPattern] = STATE(910), - [sym_patternAccumulate] = STATE(910), - [sym_patternWhere] = STATE(910), - [sym__literal] = STATE(910), - [sym_patternNot] = STATE(910), - [sym_patternOr] = STATE(910), - [sym_patternOrElse] = STATE(910), - [sym_patternAny] = STATE(910), - [sym_patternAnd] = STATE(910), - [sym_patternMaybe] = STATE(910), - [sym_patternAfter] = STATE(910), - [sym_patternBefore] = STATE(910), - [sym_patternContains] = STATE(910), - [sym_patternIncludes] = STATE(910), - [sym_rewrite] = STATE(910), - [sym_patternIfElse] = STATE(910), - [sym_within] = STATE(910), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(910), - [sym_nodeLike] = STATE(910), - [sym_like] = STATE(910), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(910), - [sym_some] = STATE(910), - [sym_every] = STATE(910), - [sym_regexPattern] = STATE(910), - [sym_log] = STATE(910), - [sym_range] = STATE(910), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(910), - [sym_snippetRegex] = STATE(422), + [143] = { + [sym_sequential] = STATE(851), + [sym_files] = STATE(851), + [sym__pattern] = STATE(851), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(851), + [sym_divOperation] = STATE(851), + [sym_modOperation] = STATE(851), + [sym_addOperation] = STATE(851), + [sym_subOperation] = STATE(851), + [sym_patternAs] = STATE(851), + [sym_patternLimit] = STATE(851), + [sym_assignmentAsPattern] = STATE(851), + [sym_patternAccumulate] = STATE(851), + [sym_patternWhere] = STATE(851), + [sym__literal] = STATE(851), + [sym_patternNot] = STATE(851), + [sym_patternOr] = STATE(851), + [sym_patternOrElse] = STATE(851), + [sym_patternAny] = STATE(851), + [sym_patternAnd] = STATE(851), + [sym_patternMaybe] = STATE(851), + [sym_patternAfter] = STATE(851), + [sym_patternBefore] = STATE(851), + [sym_patternContains] = STATE(851), + [sym_patternIncludes] = STATE(851), + [sym_rewrite] = STATE(851), + [sym_patternIfElse] = STATE(851), + [sym_within] = STATE(851), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(851), + [sym_nodeLike] = STATE(851), + [sym_like] = STATE(851), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(851), + [sym_some] = STATE(851), + [sym_every] = STATE(851), + [sym_regexPattern] = STATE(851), + [sym_log] = STATE(851), + [sym_range] = STATE(851), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(851), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -24872,121 +24708,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(731), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(731), - [sym_variable] = ACTIONS(263), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(731), - [sym_top] = ACTIONS(731), - [sym_bottom] = ACTIONS(731), - [sym_intConstant] = ACTIONS(731), - [sym_doubleConstant] = ACTIONS(733), - [sym_stringConstant] = ACTIONS(733), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), - [sym_comment] = ACTIONS(3), - }, - [147] = { - [sym_sequential] = STATE(619), - [sym_files] = STATE(619), - [sym__pattern] = STATE(619), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(619), - [sym_divOperation] = STATE(619), - [sym_modOperation] = STATE(619), - [sym_addOperation] = STATE(619), - [sym_subOperation] = STATE(619), - [sym_patternAs] = STATE(619), - [sym_patternLimit] = STATE(619), - [sym_assignmentAsPattern] = STATE(619), - [sym_patternAccumulate] = STATE(619), - [sym_patternWhere] = STATE(619), - [sym__literal] = STATE(619), - [sym_patternNot] = STATE(619), - [sym_patternOr] = STATE(619), - [sym_patternOrElse] = STATE(619), - [sym_patternAny] = STATE(619), - [sym_patternAnd] = STATE(619), - [sym_patternMaybe] = STATE(619), - [sym_patternAfter] = STATE(619), - [sym_patternBefore] = STATE(619), - [sym_patternContains] = STATE(619), - [sym_patternIncludes] = STATE(619), - [sym_rewrite] = STATE(619), - [sym_patternIfElse] = STATE(619), - [sym_within] = STATE(619), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(619), - [sym_nodeLike] = STATE(619), - [sym_like] = STATE(619), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(619), - [sym_some] = STATE(619), - [sym_every] = STATE(619), - [sym_regexPattern] = STATE(619), - [sym_log] = STATE(619), - [sym_range] = STATE(619), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(619), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(737), + [sym_underscore] = ACTIONS(713), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(737), + [sym_booleanConstant] = ACTIONS(713), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -25011,65 +24736,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(737), - [sym_top] = ACTIONS(737), - [sym_bottom] = ACTIONS(737), - [sym_intConstant] = ACTIONS(737), - [sym_doubleConstant] = ACTIONS(739), - [sym_stringConstant] = ACTIONS(739), + [sym_undefined] = ACTIONS(713), + [sym_top] = ACTIONS(713), + [sym_bottom] = ACTIONS(713), + [sym_intConstant] = ACTIONS(713), + [sym_doubleConstant] = ACTIONS(715), + [sym_stringConstant] = ACTIONS(715), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [148] = { - [sym_sequential] = STATE(904), - [sym_files] = STATE(904), - [sym__pattern] = STATE(904), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(904), - [sym_divOperation] = STATE(904), - [sym_modOperation] = STATE(904), - [sym_addOperation] = STATE(904), - [sym_subOperation] = STATE(904), - [sym_patternAs] = STATE(904), - [sym_patternLimit] = STATE(904), - [sym_assignmentAsPattern] = STATE(904), - [sym_patternAccumulate] = STATE(904), - [sym_patternWhere] = STATE(904), - [sym__literal] = STATE(904), - [sym_patternNot] = STATE(904), - [sym_patternOr] = STATE(904), - [sym_patternOrElse] = STATE(904), - [sym_patternAny] = STATE(904), - [sym_patternAnd] = STATE(904), - [sym_patternMaybe] = STATE(904), - [sym_patternAfter] = STATE(904), - [sym_patternBefore] = STATE(904), - [sym_patternContains] = STATE(904), - [sym_patternIncludes] = STATE(904), - [sym_rewrite] = STATE(904), - [sym_patternIfElse] = STATE(904), - [sym_within] = STATE(904), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(904), - [sym_nodeLike] = STATE(904), - [sym_like] = STATE(904), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(904), - [sym_some] = STATE(904), - [sym_every] = STATE(904), - [sym_regexPattern] = STATE(904), - [sym_log] = STATE(904), - [sym_range] = STATE(904), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(904), - [sym_snippetRegex] = STATE(422), + [144] = { + [sym_sequential] = STATE(622), + [sym_files] = STATE(622), + [sym__pattern] = STATE(622), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(622), + [sym_divOperation] = STATE(622), + [sym_modOperation] = STATE(622), + [sym_addOperation] = STATE(622), + [sym_subOperation] = STATE(622), + [sym_patternAs] = STATE(622), + [sym_patternLimit] = STATE(622), + [sym_assignmentAsPattern] = STATE(622), + [sym_patternAccumulate] = STATE(622), + [sym_patternWhere] = STATE(622), + [sym__literal] = STATE(622), + [sym_patternNot] = STATE(622), + [sym_patternOr] = STATE(622), + [sym_patternOrElse] = STATE(622), + [sym_patternAny] = STATE(622), + [sym_patternAnd] = STATE(622), + [sym_patternMaybe] = STATE(622), + [sym_patternAfter] = STATE(622), + [sym_patternBefore] = STATE(622), + [sym_patternContains] = STATE(622), + [sym_patternIncludes] = STATE(622), + [sym_rewrite] = STATE(622), + [sym_patternIfElse] = STATE(622), + [sym_within] = STATE(622), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(622), + [sym_nodeLike] = STATE(622), + [sym_like] = STATE(622), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(622), + [sym_some] = STATE(622), + [sym_every] = STATE(622), + [sym_regexPattern] = STATE(622), + [sym_log] = STATE(622), + [sym_range] = STATE(622), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(622), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -25094,10 +24820,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(741), + [sym_underscore] = ACTIONS(717), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(741), + [sym_booleanConstant] = ACTIONS(717), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -25122,94 +24848,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(741), - [sym_top] = ACTIONS(741), - [sym_bottom] = ACTIONS(741), - [sym_intConstant] = ACTIONS(741), - [sym_doubleConstant] = ACTIONS(743), - [sym_stringConstant] = ACTIONS(743), + [sym_undefined] = ACTIONS(717), + [sym_top] = ACTIONS(717), + [sym_bottom] = ACTIONS(717), + [sym_intConstant] = ACTIONS(717), + [sym_doubleConstant] = ACTIONS(719), + [sym_stringConstant] = ACTIONS(719), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [149] = { - [sym_sequential] = STATE(787), - [sym_files] = STATE(787), - [sym__pattern] = STATE(787), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(787), - [sym_divOperation] = STATE(787), - [sym_modOperation] = STATE(787), - [sym_addOperation] = STATE(787), - [sym_subOperation] = STATE(787), - [sym_patternAs] = STATE(787), - [sym_patternLimit] = STATE(787), - [sym_assignmentAsPattern] = STATE(787), - [sym_patternAccumulate] = STATE(787), - [sym_patternWhere] = STATE(787), - [sym__literal] = STATE(787), - [sym_patternNot] = STATE(787), - [sym_patternOr] = STATE(787), - [sym_patternOrElse] = STATE(787), - [sym_patternAny] = STATE(787), - [sym_patternAnd] = STATE(787), - [sym_patternMaybe] = STATE(787), - [sym_patternAfter] = STATE(787), - [sym_patternBefore] = STATE(787), - [sym_patternContains] = STATE(787), - [sym_patternIncludes] = STATE(787), - [sym_rewrite] = STATE(787), - [sym_patternIfElse] = STATE(787), - [sym_within] = STATE(787), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(787), - [sym_nodeLike] = STATE(787), - [sym_like] = STATE(787), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(787), - [sym_some] = STATE(787), - [sym_every] = STATE(787), - [sym_regexPattern] = STATE(787), - [sym_log] = STATE(787), - [sym_range] = STATE(787), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(787), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [145] = { + [sym_sequential] = STATE(553), + [sym_files] = STATE(553), + [sym__pattern] = STATE(553), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(553), + [sym_divOperation] = STATE(553), + [sym_modOperation] = STATE(553), + [sym_addOperation] = STATE(553), + [sym_subOperation] = STATE(553), + [sym_patternAs] = STATE(553), + [sym_patternLimit] = STATE(553), + [sym_assignmentAsPattern] = STATE(553), + [sym_patternAccumulate] = STATE(553), + [sym_patternWhere] = STATE(553), + [sym__literal] = STATE(553), + [sym_patternNot] = STATE(553), + [sym_patternOr] = STATE(553), + [sym_patternOrElse] = STATE(553), + [sym_patternAny] = STATE(553), + [sym_patternAnd] = STATE(553), + [sym_patternMaybe] = STATE(553), + [sym_patternAfter] = STATE(553), + [sym_patternBefore] = STATE(553), + [sym_patternContains] = STATE(553), + [sym_patternIncludes] = STATE(553), + [sym_rewrite] = STATE(553), + [sym_patternIfElse] = STATE(553), + [sym_within] = STATE(553), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(553), + [sym_nodeLike] = STATE(553), + [sym_like] = STATE(553), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(553), + [sym_some] = STATE(553), + [sym_every] = STATE(553), + [sym_regexPattern] = STATE(553), + [sym_log] = STATE(553), + [sym_range] = STATE(553), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(553), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(745), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(745), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(721), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(721), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -25233,94 +24960,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(745), - [sym_top] = ACTIONS(745), - [sym_bottom] = ACTIONS(745), - [sym_intConstant] = ACTIONS(745), - [sym_doubleConstant] = ACTIONS(747), - [sym_stringConstant] = ACTIONS(747), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(721), + [sym_top] = ACTIONS(721), + [sym_bottom] = ACTIONS(721), + [sym_intConstant] = ACTIONS(721), + [sym_doubleConstant] = ACTIONS(723), + [sym_stringConstant] = ACTIONS(723), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [150] = { - [sym_sequential] = STATE(843), - [sym_files] = STATE(843), - [sym__pattern] = STATE(843), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(843), - [sym_divOperation] = STATE(843), - [sym_modOperation] = STATE(843), - [sym_addOperation] = STATE(843), - [sym_subOperation] = STATE(843), - [sym_patternAs] = STATE(843), - [sym_patternLimit] = STATE(843), - [sym_assignmentAsPattern] = STATE(843), - [sym_patternAccumulate] = STATE(843), - [sym_patternWhere] = STATE(843), - [sym__literal] = STATE(843), - [sym_patternNot] = STATE(843), - [sym_patternOr] = STATE(843), - [sym_patternOrElse] = STATE(843), - [sym_patternAny] = STATE(843), - [sym_patternAnd] = STATE(843), - [sym_patternMaybe] = STATE(843), - [sym_patternAfter] = STATE(843), - [sym_patternBefore] = STATE(843), - [sym_patternContains] = STATE(843), - [sym_patternIncludes] = STATE(843), - [sym_rewrite] = STATE(843), - [sym_patternIfElse] = STATE(843), - [sym_within] = STATE(843), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(843), - [sym_nodeLike] = STATE(843), - [sym_like] = STATE(843), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(843), - [sym_some] = STATE(843), - [sym_every] = STATE(843), - [sym_regexPattern] = STATE(843), - [sym_log] = STATE(843), - [sym_range] = STATE(843), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(843), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [146] = { + [sym_sequential] = STATE(554), + [sym_files] = STATE(554), + [sym__pattern] = STATE(554), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(554), + [sym_divOperation] = STATE(554), + [sym_modOperation] = STATE(554), + [sym_addOperation] = STATE(554), + [sym_subOperation] = STATE(554), + [sym_patternAs] = STATE(554), + [sym_patternLimit] = STATE(554), + [sym_assignmentAsPattern] = STATE(554), + [sym_patternAccumulate] = STATE(554), + [sym_patternWhere] = STATE(554), + [sym__literal] = STATE(554), + [sym_patternNot] = STATE(554), + [sym_patternOr] = STATE(554), + [sym_patternOrElse] = STATE(554), + [sym_patternAny] = STATE(554), + [sym_patternAnd] = STATE(554), + [sym_patternMaybe] = STATE(554), + [sym_patternAfter] = STATE(554), + [sym_patternBefore] = STATE(554), + [sym_patternContains] = STATE(554), + [sym_patternIncludes] = STATE(554), + [sym_rewrite] = STATE(554), + [sym_patternIfElse] = STATE(554), + [sym_within] = STATE(554), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(554), + [sym_nodeLike] = STATE(554), + [sym_like] = STATE(554), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(554), + [sym_some] = STATE(554), + [sym_every] = STATE(554), + [sym_regexPattern] = STATE(554), + [sym_log] = STATE(554), + [sym_range] = STATE(554), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(554), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(749), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(749), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(725), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(725), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -25344,94 +25072,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(749), - [sym_top] = ACTIONS(749), - [sym_bottom] = ACTIONS(749), - [sym_intConstant] = ACTIONS(749), - [sym_doubleConstant] = ACTIONS(751), - [sym_stringConstant] = ACTIONS(751), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(725), + [sym_top] = ACTIONS(725), + [sym_bottom] = ACTIONS(725), + [sym_intConstant] = ACTIONS(725), + [sym_doubleConstant] = ACTIONS(727), + [sym_stringConstant] = ACTIONS(727), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [151] = { - [sym_sequential] = STATE(800), - [sym_files] = STATE(800), - [sym__pattern] = STATE(800), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(800), - [sym_divOperation] = STATE(800), - [sym_modOperation] = STATE(800), - [sym_addOperation] = STATE(800), - [sym_subOperation] = STATE(800), - [sym_patternAs] = STATE(800), - [sym_patternLimit] = STATE(800), - [sym_assignmentAsPattern] = STATE(800), - [sym_patternAccumulate] = STATE(800), - [sym_patternWhere] = STATE(800), - [sym__literal] = STATE(800), - [sym_patternNot] = STATE(800), - [sym_patternOr] = STATE(800), - [sym_patternOrElse] = STATE(800), - [sym_patternAny] = STATE(800), - [sym_patternAnd] = STATE(800), - [sym_patternMaybe] = STATE(800), - [sym_patternAfter] = STATE(800), - [sym_patternBefore] = STATE(800), - [sym_patternContains] = STATE(800), - [sym_patternIncludes] = STATE(800), - [sym_rewrite] = STATE(800), - [sym_patternIfElse] = STATE(800), - [sym_within] = STATE(800), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(800), - [sym_nodeLike] = STATE(800), - [sym_like] = STATE(800), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(800), - [sym_some] = STATE(800), - [sym_every] = STATE(800), - [sym_regexPattern] = STATE(800), - [sym_log] = STATE(800), - [sym_range] = STATE(800), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(800), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [147] = { + [sym_sequential] = STATE(555), + [sym_files] = STATE(555), + [sym__pattern] = STATE(555), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(555), + [sym_divOperation] = STATE(555), + [sym_modOperation] = STATE(555), + [sym_addOperation] = STATE(555), + [sym_subOperation] = STATE(555), + [sym_patternAs] = STATE(555), + [sym_patternLimit] = STATE(555), + [sym_assignmentAsPattern] = STATE(555), + [sym_patternAccumulate] = STATE(555), + [sym_patternWhere] = STATE(555), + [sym__literal] = STATE(555), + [sym_patternNot] = STATE(555), + [sym_patternOr] = STATE(555), + [sym_patternOrElse] = STATE(555), + [sym_patternAny] = STATE(555), + [sym_patternAnd] = STATE(555), + [sym_patternMaybe] = STATE(555), + [sym_patternAfter] = STATE(555), + [sym_patternBefore] = STATE(555), + [sym_patternContains] = STATE(555), + [sym_patternIncludes] = STATE(555), + [sym_rewrite] = STATE(555), + [sym_patternIfElse] = STATE(555), + [sym_within] = STATE(555), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(555), + [sym_nodeLike] = STATE(555), + [sym_like] = STATE(555), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(555), + [sym_some] = STATE(555), + [sym_every] = STATE(555), + [sym_regexPattern] = STATE(555), + [sym_log] = STATE(555), + [sym_range] = STATE(555), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(555), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(753), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(753), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(729), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(729), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -25455,94 +25184,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(753), - [sym_top] = ACTIONS(753), - [sym_bottom] = ACTIONS(753), - [sym_intConstant] = ACTIONS(753), - [sym_doubleConstant] = ACTIONS(755), - [sym_stringConstant] = ACTIONS(755), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(729), + [sym_top] = ACTIONS(729), + [sym_bottom] = ACTIONS(729), + [sym_intConstant] = ACTIONS(729), + [sym_doubleConstant] = ACTIONS(731), + [sym_stringConstant] = ACTIONS(731), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [152] = { - [sym_sequential] = STATE(770), - [sym_files] = STATE(770), - [sym__pattern] = STATE(770), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(770), - [sym_divOperation] = STATE(770), - [sym_modOperation] = STATE(770), - [sym_addOperation] = STATE(770), - [sym_subOperation] = STATE(770), - [sym_patternAs] = STATE(770), - [sym_patternLimit] = STATE(770), - [sym_assignmentAsPattern] = STATE(770), - [sym_patternAccumulate] = STATE(770), - [sym_patternWhere] = STATE(770), - [sym__literal] = STATE(770), - [sym_patternNot] = STATE(770), - [sym_patternOr] = STATE(770), - [sym_patternOrElse] = STATE(770), - [sym_patternAny] = STATE(770), - [sym_patternAnd] = STATE(770), - [sym_patternMaybe] = STATE(770), - [sym_patternAfter] = STATE(770), - [sym_patternBefore] = STATE(770), - [sym_patternContains] = STATE(770), - [sym_patternIncludes] = STATE(770), - [sym_rewrite] = STATE(770), - [sym_patternIfElse] = STATE(770), - [sym_within] = STATE(770), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(770), - [sym_nodeLike] = STATE(770), - [sym_like] = STATE(770), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(770), - [sym_some] = STATE(770), - [sym_every] = STATE(770), - [sym_regexPattern] = STATE(770), - [sym_log] = STATE(770), - [sym_range] = STATE(770), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(770), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), + [148] = { + [sym_sequential] = STATE(556), + [sym_files] = STATE(556), + [sym__pattern] = STATE(556), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(556), + [sym_divOperation] = STATE(556), + [sym_modOperation] = STATE(556), + [sym_addOperation] = STATE(556), + [sym_subOperation] = STATE(556), + [sym_patternAs] = STATE(556), + [sym_patternLimit] = STATE(556), + [sym_assignmentAsPattern] = STATE(556), + [sym_patternAccumulate] = STATE(556), + [sym_patternWhere] = STATE(556), + [sym__literal] = STATE(556), + [sym_patternNot] = STATE(556), + [sym_patternOr] = STATE(556), + [sym_patternOrElse] = STATE(556), + [sym_patternAny] = STATE(556), + [sym_patternAnd] = STATE(556), + [sym_patternMaybe] = STATE(556), + [sym_patternAfter] = STATE(556), + [sym_patternBefore] = STATE(556), + [sym_patternContains] = STATE(556), + [sym_patternIncludes] = STATE(556), + [sym_rewrite] = STATE(556), + [sym_patternIfElse] = STATE(556), + [sym_within] = STATE(556), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(556), + [sym_nodeLike] = STATE(556), + [sym_like] = STATE(556), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(556), + [sym_some] = STATE(556), + [sym_every] = STATE(556), + [sym_regexPattern] = STATE(556), + [sym_log] = STATE(556), + [sym_range] = STATE(556), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(556), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(757), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(757), - [sym_variable] = ACTIONS(263), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(733), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(733), + [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -25566,68 +25296,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(757), - [sym_top] = ACTIONS(757), - [sym_bottom] = ACTIONS(757), - [sym_intConstant] = ACTIONS(757), - [sym_doubleConstant] = ACTIONS(759), - [sym_stringConstant] = ACTIONS(759), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(733), + [sym_top] = ACTIONS(733), + [sym_bottom] = ACTIONS(733), + [sym_intConstant] = ACTIONS(733), + [sym_doubleConstant] = ACTIONS(735), + [sym_stringConstant] = ACTIONS(735), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [153] = { - [sym_sequential] = STATE(590), - [sym_files] = STATE(590), - [sym__pattern] = STATE(590), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(590), - [sym_divOperation] = STATE(590), - [sym_modOperation] = STATE(590), - [sym_addOperation] = STATE(590), - [sym_subOperation] = STATE(590), - [sym_patternAs] = STATE(590), - [sym_patternLimit] = STATE(590), - [sym_assignmentAsPattern] = STATE(590), - [sym_patternAccumulate] = STATE(590), - [sym_patternWhere] = STATE(590), - [sym__literal] = STATE(590), - [sym_patternNot] = STATE(590), - [sym_patternOr] = STATE(590), - [sym_patternOrElse] = STATE(590), - [sym_patternAny] = STATE(590), - [sym_patternAnd] = STATE(590), - [sym_patternMaybe] = STATE(590), - [sym_patternAfter] = STATE(590), - [sym_patternBefore] = STATE(590), - [sym_patternContains] = STATE(590), - [sym_patternIncludes] = STATE(590), - [sym_rewrite] = STATE(590), - [sym_patternIfElse] = STATE(590), - [sym_within] = STATE(590), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(590), - [sym_nodeLike] = STATE(590), - [sym_like] = STATE(590), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(590), - [sym_some] = STATE(590), - [sym_every] = STATE(590), - [sym_regexPattern] = STATE(590), - [sym_log] = STATE(590), - [sym_range] = STATE(590), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(590), + [149] = { + [sym_sequential] = STATE(557), + [sym_files] = STATE(557), + [sym__pattern] = STATE(557), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(557), + [sym_divOperation] = STATE(557), + [sym_modOperation] = STATE(557), + [sym_addOperation] = STATE(557), + [sym_subOperation] = STATE(557), + [sym_patternAs] = STATE(557), + [sym_patternLimit] = STATE(557), + [sym_assignmentAsPattern] = STATE(557), + [sym_patternAccumulate] = STATE(557), + [sym_patternWhere] = STATE(557), + [sym__literal] = STATE(557), + [sym_patternNot] = STATE(557), + [sym_patternOr] = STATE(557), + [sym_patternOrElse] = STATE(557), + [sym_patternAny] = STATE(557), + [sym_patternAnd] = STATE(557), + [sym_patternMaybe] = STATE(557), + [sym_patternAfter] = STATE(557), + [sym_patternBefore] = STATE(557), + [sym_patternContains] = STATE(557), + [sym_patternIncludes] = STATE(557), + [sym_rewrite] = STATE(557), + [sym_patternIfElse] = STATE(557), + [sym_within] = STATE(557), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(557), + [sym_nodeLike] = STATE(557), + [sym_like] = STATE(557), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(557), + [sym_some] = STATE(557), + [sym_every] = STATE(557), + [sym_regexPattern] = STATE(557), + [sym_log] = STATE(557), + [sym_range] = STATE(557), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(557), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(11), [anon_sym_multifile] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_BANG] = ACTIONS(21), @@ -25649,10 +25380,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(763), + [sym_underscore] = ACTIONS(737), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(763), + [sym_booleanConstant] = ACTIONS(737), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -25677,68 +25408,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(763), - [sym_top] = ACTIONS(763), - [sym_bottom] = ACTIONS(763), - [sym_intConstant] = ACTIONS(763), - [sym_doubleConstant] = ACTIONS(765), - [sym_stringConstant] = ACTIONS(765), + [sym_undefined] = ACTIONS(737), + [sym_top] = ACTIONS(737), + [sym_bottom] = ACTIONS(737), + [sym_intConstant] = ACTIONS(737), + [sym_doubleConstant] = ACTIONS(739), + [sym_stringConstant] = ACTIONS(739), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [154] = { - [sym_sequential] = STATE(579), - [sym_files] = STATE(579), - [sym__pattern] = STATE(579), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(579), - [sym_divOperation] = STATE(579), - [sym_modOperation] = STATE(579), - [sym_addOperation] = STATE(579), - [sym_subOperation] = STATE(579), - [sym_patternAs] = STATE(579), - [sym_patternLimit] = STATE(579), - [sym_assignmentAsPattern] = STATE(579), - [sym_patternAccumulate] = STATE(579), - [sym_patternWhere] = STATE(579), - [sym__literal] = STATE(579), - [sym_patternNot] = STATE(579), - [sym_patternOr] = STATE(579), - [sym_patternOrElse] = STATE(579), - [sym_patternAny] = STATE(579), - [sym_patternAnd] = STATE(579), - [sym_patternMaybe] = STATE(579), - [sym_patternAfter] = STATE(579), - [sym_patternBefore] = STATE(579), - [sym_patternContains] = STATE(579), - [sym_patternIncludes] = STATE(579), - [sym_rewrite] = STATE(579), - [sym_patternIfElse] = STATE(579), - [sym_within] = STATE(579), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(579), - [sym_nodeLike] = STATE(579), - [sym_like] = STATE(579), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(579), - [sym_some] = STATE(579), - [sym_every] = STATE(579), - [sym_regexPattern] = STATE(579), - [sym_log] = STATE(579), - [sym_range] = STATE(579), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(579), + [150] = { + [sym_sequential] = STATE(558), + [sym_files] = STATE(558), + [sym__pattern] = STATE(558), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(558), + [sym_divOperation] = STATE(558), + [sym_modOperation] = STATE(558), + [sym_addOperation] = STATE(558), + [sym_subOperation] = STATE(558), + [sym_patternAs] = STATE(558), + [sym_patternLimit] = STATE(558), + [sym_assignmentAsPattern] = STATE(558), + [sym_patternAccumulate] = STATE(558), + [sym_patternWhere] = STATE(558), + [sym__literal] = STATE(558), + [sym_patternNot] = STATE(558), + [sym_patternOr] = STATE(558), + [sym_patternOrElse] = STATE(558), + [sym_patternAny] = STATE(558), + [sym_patternAnd] = STATE(558), + [sym_patternMaybe] = STATE(558), + [sym_patternAfter] = STATE(558), + [sym_patternBefore] = STATE(558), + [sym_patternContains] = STATE(558), + [sym_patternIncludes] = STATE(558), + [sym_rewrite] = STATE(558), + [sym_patternIfElse] = STATE(558), + [sym_within] = STATE(558), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(558), + [sym_nodeLike] = STATE(558), + [sym_like] = STATE(558), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(558), + [sym_some] = STATE(558), + [sym_every] = STATE(558), + [sym_regexPattern] = STATE(558), + [sym_log] = STATE(558), + [sym_range] = STATE(558), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(558), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(11), [anon_sym_multifile] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_BANG] = ACTIONS(21), @@ -25760,10 +25492,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(769), + [sym_underscore] = ACTIONS(741), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(769), + [sym_booleanConstant] = ACTIONS(741), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -25788,64 +25520,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(769), - [sym_top] = ACTIONS(769), - [sym_bottom] = ACTIONS(769), - [sym_intConstant] = ACTIONS(769), - [sym_doubleConstant] = ACTIONS(771), - [sym_stringConstant] = ACTIONS(771), + [sym_undefined] = ACTIONS(741), + [sym_top] = ACTIONS(741), + [sym_bottom] = ACTIONS(741), + [sym_intConstant] = ACTIONS(741), + [sym_doubleConstant] = ACTIONS(743), + [sym_stringConstant] = ACTIONS(743), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [155] = { - [sym_sequential] = STATE(443), - [sym_files] = STATE(443), - [sym__pattern] = STATE(443), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(443), - [sym_divOperation] = STATE(443), - [sym_modOperation] = STATE(443), - [sym_addOperation] = STATE(443), - [sym_subOperation] = STATE(443), - [sym_patternAs] = STATE(443), - [sym_patternLimit] = STATE(443), - [sym_assignmentAsPattern] = STATE(443), - [sym_patternAccumulate] = STATE(443), - [sym_patternWhere] = STATE(443), - [sym__literal] = STATE(443), - [sym_patternNot] = STATE(443), - [sym_patternOr] = STATE(443), - [sym_patternOrElse] = STATE(443), - [sym_patternAny] = STATE(443), - [sym_patternAnd] = STATE(443), - [sym_patternMaybe] = STATE(443), - [sym_patternAfter] = STATE(443), - [sym_patternBefore] = STATE(443), - [sym_patternContains] = STATE(443), - [sym_patternIncludes] = STATE(443), - [sym_rewrite] = STATE(443), - [sym_patternIfElse] = STATE(443), - [sym_within] = STATE(443), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(443), - [sym_nodeLike] = STATE(443), - [sym_like] = STATE(443), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(443), - [sym_some] = STATE(443), - [sym_every] = STATE(443), - [sym_regexPattern] = STATE(443), - [sym_log] = STATE(443), - [sym_range] = STATE(443), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(443), + [151] = { + [sym_sequential] = STATE(559), + [sym_files] = STATE(559), + [sym__pattern] = STATE(559), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(559), + [sym_divOperation] = STATE(559), + [sym_modOperation] = STATE(559), + [sym_addOperation] = STATE(559), + [sym_subOperation] = STATE(559), + [sym_patternAs] = STATE(559), + [sym_patternLimit] = STATE(559), + [sym_assignmentAsPattern] = STATE(559), + [sym_patternAccumulate] = STATE(559), + [sym_patternWhere] = STATE(559), + [sym__literal] = STATE(559), + [sym_patternNot] = STATE(559), + [sym_patternOr] = STATE(559), + [sym_patternOrElse] = STATE(559), + [sym_patternAny] = STATE(559), + [sym_patternAnd] = STATE(559), + [sym_patternMaybe] = STATE(559), + [sym_patternAfter] = STATE(559), + [sym_patternBefore] = STATE(559), + [sym_patternContains] = STATE(559), + [sym_patternIncludes] = STATE(559), + [sym_rewrite] = STATE(559), + [sym_patternIfElse] = STATE(559), + [sym_within] = STATE(559), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(559), + [sym_nodeLike] = STATE(559), + [sym_like] = STATE(559), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(559), + [sym_some] = STATE(559), + [sym_every] = STATE(559), + [sym_regexPattern] = STATE(559), + [sym_log] = STATE(559), + [sym_range] = STATE(559), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(559), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), @@ -25871,10 +25604,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(773), + [sym_underscore] = ACTIONS(745), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(773), + [sym_booleanConstant] = ACTIONS(745), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -25899,68 +25632,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(773), - [sym_top] = ACTIONS(773), - [sym_bottom] = ACTIONS(773), - [sym_intConstant] = ACTIONS(773), - [sym_doubleConstant] = ACTIONS(775), - [sym_stringConstant] = ACTIONS(775), + [sym_undefined] = ACTIONS(745), + [sym_top] = ACTIONS(745), + [sym_bottom] = ACTIONS(745), + [sym_intConstant] = ACTIONS(745), + [sym_doubleConstant] = ACTIONS(747), + [sym_stringConstant] = ACTIONS(747), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [156] = { - [sym_sequential] = STATE(591), - [sym_files] = STATE(591), - [sym__pattern] = STATE(591), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(591), - [sym_divOperation] = STATE(591), - [sym_modOperation] = STATE(591), - [sym_addOperation] = STATE(591), - [sym_subOperation] = STATE(591), - [sym_patternAs] = STATE(591), - [sym_patternLimit] = STATE(591), - [sym_assignmentAsPattern] = STATE(591), - [sym_patternAccumulate] = STATE(591), - [sym_patternWhere] = STATE(591), - [sym__literal] = STATE(591), - [sym_patternNot] = STATE(591), - [sym_patternOr] = STATE(591), - [sym_patternOrElse] = STATE(591), - [sym_patternAny] = STATE(591), - [sym_patternAnd] = STATE(591), - [sym_patternMaybe] = STATE(591), - [sym_patternAfter] = STATE(591), - [sym_patternBefore] = STATE(591), - [sym_patternContains] = STATE(591), - [sym_patternIncludes] = STATE(591), - [sym_rewrite] = STATE(591), - [sym_patternIfElse] = STATE(591), - [sym_within] = STATE(591), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(591), - [sym_nodeLike] = STATE(591), - [sym_like] = STATE(591), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(591), - [sym_some] = STATE(591), - [sym_every] = STATE(591), - [sym_regexPattern] = STATE(591), - [sym_log] = STATE(591), - [sym_range] = STATE(591), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(591), + [152] = { + [sym_sequential] = STATE(560), + [sym_files] = STATE(560), + [sym__pattern] = STATE(560), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(560), + [sym_divOperation] = STATE(560), + [sym_modOperation] = STATE(560), + [sym_addOperation] = STATE(560), + [sym_subOperation] = STATE(560), + [sym_patternAs] = STATE(560), + [sym_patternLimit] = STATE(560), + [sym_assignmentAsPattern] = STATE(560), + [sym_patternAccumulate] = STATE(560), + [sym_patternWhere] = STATE(560), + [sym__literal] = STATE(560), + [sym_patternNot] = STATE(560), + [sym_patternOr] = STATE(560), + [sym_patternOrElse] = STATE(560), + [sym_patternAny] = STATE(560), + [sym_patternAnd] = STATE(560), + [sym_patternMaybe] = STATE(560), + [sym_patternAfter] = STATE(560), + [sym_patternBefore] = STATE(560), + [sym_patternContains] = STATE(560), + [sym_patternIncludes] = STATE(560), + [sym_rewrite] = STATE(560), + [sym_patternIfElse] = STATE(560), + [sym_within] = STATE(560), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(560), + [sym_nodeLike] = STATE(560), + [sym_like] = STATE(560), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(560), + [sym_some] = STATE(560), + [sym_every] = STATE(560), + [sym_regexPattern] = STATE(560), + [sym_log] = STATE(560), + [sym_range] = STATE(560), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(560), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(11), [anon_sym_multifile] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_BANG] = ACTIONS(21), @@ -25982,10 +25716,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(779), + [sym_underscore] = ACTIONS(749), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(779), + [sym_booleanConstant] = ACTIONS(749), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -26010,68 +25744,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(779), - [sym_top] = ACTIONS(779), - [sym_bottom] = ACTIONS(779), - [sym_intConstant] = ACTIONS(779), - [sym_doubleConstant] = ACTIONS(781), - [sym_stringConstant] = ACTIONS(781), + [sym_undefined] = ACTIONS(749), + [sym_top] = ACTIONS(749), + [sym_bottom] = ACTIONS(749), + [sym_intConstant] = ACTIONS(749), + [sym_doubleConstant] = ACTIONS(751), + [sym_stringConstant] = ACTIONS(751), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [157] = { - [sym_sequential] = STATE(882), - [sym_files] = STATE(882), - [sym__pattern] = STATE(882), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(882), - [sym_divOperation] = STATE(882), - [sym_modOperation] = STATE(882), - [sym_addOperation] = STATE(882), - [sym_subOperation] = STATE(882), - [sym_patternAs] = STATE(882), - [sym_patternLimit] = STATE(882), - [sym_assignmentAsPattern] = STATE(882), - [sym_patternAccumulate] = STATE(882), - [sym_patternWhere] = STATE(882), - [sym__literal] = STATE(882), - [sym_patternNot] = STATE(882), - [sym_patternOr] = STATE(882), - [sym_patternOrElse] = STATE(882), - [sym_patternAny] = STATE(882), - [sym_patternAnd] = STATE(882), - [sym_patternMaybe] = STATE(882), - [sym_patternAfter] = STATE(882), - [sym_patternBefore] = STATE(882), - [sym_patternContains] = STATE(882), - [sym_patternIncludes] = STATE(882), - [sym_rewrite] = STATE(882), - [sym_patternIfElse] = STATE(882), - [sym_within] = STATE(882), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(882), - [sym_nodeLike] = STATE(882), - [sym_like] = STATE(882), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(882), - [sym_some] = STATE(882), - [sym_every] = STATE(882), - [sym_regexPattern] = STATE(882), - [sym_log] = STATE(882), - [sym_range] = STATE(882), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(882), - [sym_snippetRegex] = STATE(422), + [153] = { + [sym_sequential] = STATE(563), + [sym_files] = STATE(563), + [sym__pattern] = STATE(563), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(563), + [sym_divOperation] = STATE(563), + [sym_modOperation] = STATE(563), + [sym_addOperation] = STATE(563), + [sym_subOperation] = STATE(563), + [sym_patternAs] = STATE(563), + [sym_patternLimit] = STATE(563), + [sym_assignmentAsPattern] = STATE(563), + [sym_patternAccumulate] = STATE(563), + [sym_patternWhere] = STATE(563), + [sym__literal] = STATE(563), + [sym_patternNot] = STATE(563), + [sym_patternOr] = STATE(563), + [sym_patternOrElse] = STATE(563), + [sym_patternAny] = STATE(563), + [sym_patternAnd] = STATE(563), + [sym_patternMaybe] = STATE(563), + [sym_patternAfter] = STATE(563), + [sym_patternBefore] = STATE(563), + [sym_patternContains] = STATE(563), + [sym_patternIncludes] = STATE(563), + [sym_rewrite] = STATE(563), + [sym_patternIfElse] = STATE(563), + [sym_within] = STATE(563), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(563), + [sym_nodeLike] = STATE(563), + [sym_like] = STATE(563), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(563), + [sym_some] = STATE(563), + [sym_every] = STATE(563), + [sym_regexPattern] = STATE(563), + [sym_log] = STATE(563), + [sym_range] = STATE(563), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(563), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(753), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(753), + [sym_variable] = ACTIONS(73), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(753), + [sym_top] = ACTIONS(753), + [sym_bottom] = ACTIONS(753), + [sym_intConstant] = ACTIONS(753), + [sym_doubleConstant] = ACTIONS(755), + [sym_stringConstant] = ACTIONS(755), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [154] = { + [sym_sequential] = STATE(564), + [sym_files] = STATE(564), + [sym__pattern] = STATE(564), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(564), + [sym_divOperation] = STATE(564), + [sym_modOperation] = STATE(564), + [sym_addOperation] = STATE(564), + [sym_subOperation] = STATE(564), + [sym_patternAs] = STATE(564), + [sym_patternLimit] = STATE(564), + [sym_assignmentAsPattern] = STATE(564), + [sym_patternAccumulate] = STATE(564), + [sym_patternWhere] = STATE(564), + [sym__literal] = STATE(564), + [sym_patternNot] = STATE(564), + [sym_patternOr] = STATE(564), + [sym_patternOrElse] = STATE(564), + [sym_patternAny] = STATE(564), + [sym_patternAnd] = STATE(564), + [sym_patternMaybe] = STATE(564), + [sym_patternAfter] = STATE(564), + [sym_patternBefore] = STATE(564), + [sym_patternContains] = STATE(564), + [sym_patternIncludes] = STATE(564), + [sym_rewrite] = STATE(564), + [sym_patternIfElse] = STATE(564), + [sym_within] = STATE(564), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(564), + [sym_nodeLike] = STATE(564), + [sym_like] = STATE(564), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(564), + [sym_some] = STATE(564), + [sym_every] = STATE(564), + [sym_regexPattern] = STATE(564), + [sym_log] = STATE(564), + [sym_range] = STATE(564), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(564), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(757), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(757), + [sym_variable] = ACTIONS(73), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(757), + [sym_top] = ACTIONS(757), + [sym_bottom] = ACTIONS(757), + [sym_intConstant] = ACTIONS(757), + [sym_doubleConstant] = ACTIONS(759), + [sym_stringConstant] = ACTIONS(759), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [155] = { + [sym_sequential] = STATE(651), + [sym_files] = STATE(651), + [sym__pattern] = STATE(651), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(651), + [sym_divOperation] = STATE(651), + [sym_modOperation] = STATE(651), + [sym_addOperation] = STATE(651), + [sym_subOperation] = STATE(651), + [sym_patternAs] = STATE(651), + [sym_patternLimit] = STATE(651), + [sym_assignmentAsPattern] = STATE(651), + [sym_patternAccumulate] = STATE(651), + [sym_patternWhere] = STATE(651), + [sym__literal] = STATE(651), + [sym_patternNot] = STATE(651), + [sym_patternOr] = STATE(651), + [sym_patternOrElse] = STATE(651), + [sym_patternAny] = STATE(651), + [sym_patternAnd] = STATE(651), + [sym_patternMaybe] = STATE(651), + [sym_patternAfter] = STATE(651), + [sym_patternBefore] = STATE(651), + [sym_patternContains] = STATE(651), + [sym_patternIncludes] = STATE(651), + [sym_rewrite] = STATE(651), + [sym_patternIfElse] = STATE(651), + [sym_within] = STATE(651), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(651), + [sym_nodeLike] = STATE(651), + [sym_like] = STATE(651), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(651), + [sym_some] = STATE(651), + [sym_every] = STATE(651), + [sym_regexPattern] = STATE(651), + [sym_log] = STATE(651), + [sym_range] = STATE(651), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(651), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(761), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -26093,10 +26052,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(443), + [sym_underscore] = ACTIONS(763), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(443), + [sym_booleanConstant] = ACTIONS(763), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -26121,65 +26080,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(443), - [sym_top] = ACTIONS(443), - [sym_bottom] = ACTIONS(443), - [sym_intConstant] = ACTIONS(443), - [sym_doubleConstant] = ACTIONS(445), - [sym_stringConstant] = ACTIONS(445), + [sym_undefined] = ACTIONS(763), + [sym_top] = ACTIONS(763), + [sym_bottom] = ACTIONS(763), + [sym_intConstant] = ACTIONS(763), + [sym_doubleConstant] = ACTIONS(765), + [sym_stringConstant] = ACTIONS(765), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [158] = { - [sym_sequential] = STATE(848), - [sym_files] = STATE(848), - [sym__pattern] = STATE(848), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(848), - [sym_divOperation] = STATE(848), - [sym_modOperation] = STATE(848), - [sym_addOperation] = STATE(848), - [sym_subOperation] = STATE(848), - [sym_patternAs] = STATE(848), - [sym_patternLimit] = STATE(848), - [sym_assignmentAsPattern] = STATE(848), - [sym_patternAccumulate] = STATE(848), - [sym_patternWhere] = STATE(848), - [sym__literal] = STATE(848), - [sym_patternNot] = STATE(848), - [sym_patternOr] = STATE(848), - [sym_patternOrElse] = STATE(848), - [sym_patternAny] = STATE(848), - [sym_patternAnd] = STATE(848), - [sym_patternMaybe] = STATE(848), - [sym_patternAfter] = STATE(848), - [sym_patternBefore] = STATE(848), - [sym_patternContains] = STATE(848), - [sym_patternIncludes] = STATE(848), - [sym_rewrite] = STATE(848), - [sym_patternIfElse] = STATE(848), - [sym_within] = STATE(848), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(848), - [sym_nodeLike] = STATE(848), - [sym_like] = STATE(848), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(848), - [sym_some] = STATE(848), - [sym_every] = STATE(848), - [sym_regexPattern] = STATE(848), - [sym_log] = STATE(848), - [sym_range] = STATE(848), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(848), - [sym_snippetRegex] = STATE(422), + [156] = { + [sym_sequential] = STATE(676), + [sym_files] = STATE(676), + [sym__pattern] = STATE(676), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(676), + [sym_divOperation] = STATE(676), + [sym_modOperation] = STATE(676), + [sym_addOperation] = STATE(676), + [sym_subOperation] = STATE(676), + [sym_patternAs] = STATE(676), + [sym_patternLimit] = STATE(676), + [sym_assignmentAsPattern] = STATE(676), + [sym_patternAccumulate] = STATE(676), + [sym_patternWhere] = STATE(676), + [sym__literal] = STATE(676), + [sym_patternNot] = STATE(676), + [sym_patternOr] = STATE(676), + [sym_patternOrElse] = STATE(676), + [sym_patternAny] = STATE(676), + [sym_patternAnd] = STATE(676), + [sym_patternMaybe] = STATE(676), + [sym_patternAfter] = STATE(676), + [sym_patternBefore] = STATE(676), + [sym_patternContains] = STATE(676), + [sym_patternIncludes] = STATE(676), + [sym_rewrite] = STATE(676), + [sym_patternIfElse] = STATE(676), + [sym_within] = STATE(676), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(676), + [sym_nodeLike] = STATE(676), + [sym_like] = STATE(676), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(676), + [sym_some] = STATE(676), + [sym_every] = STATE(676), + [sym_regexPattern] = STATE(676), + [sym_log] = STATE(676), + [sym_range] = STATE(676), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(676), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -26204,10 +26164,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(783), + [sym_underscore] = ACTIONS(767), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(783), + [sym_booleanConstant] = ACTIONS(767), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -26232,65 +26192,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(783), - [sym_top] = ACTIONS(783), - [sym_bottom] = ACTIONS(783), - [sym_intConstant] = ACTIONS(783), - [sym_doubleConstant] = ACTIONS(785), - [sym_stringConstant] = ACTIONS(785), + [sym_undefined] = ACTIONS(767), + [sym_top] = ACTIONS(767), + [sym_bottom] = ACTIONS(767), + [sym_intConstant] = ACTIONS(767), + [sym_doubleConstant] = ACTIONS(769), + [sym_stringConstant] = ACTIONS(769), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [159] = { - [sym_sequential] = STATE(758), - [sym_files] = STATE(758), - [sym__pattern] = STATE(758), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(758), - [sym_divOperation] = STATE(758), - [sym_modOperation] = STATE(758), - [sym_addOperation] = STATE(758), - [sym_subOperation] = STATE(758), - [sym_patternAs] = STATE(758), - [sym_patternLimit] = STATE(758), - [sym_assignmentAsPattern] = STATE(758), - [sym_patternAccumulate] = STATE(758), - [sym_patternWhere] = STATE(758), - [sym__literal] = STATE(758), - [sym_patternNot] = STATE(758), - [sym_patternOr] = STATE(758), - [sym_patternOrElse] = STATE(758), - [sym_patternAny] = STATE(758), - [sym_patternAnd] = STATE(758), - [sym_patternMaybe] = STATE(758), - [sym_patternAfter] = STATE(758), - [sym_patternBefore] = STATE(758), - [sym_patternContains] = STATE(758), - [sym_patternIncludes] = STATE(758), - [sym_rewrite] = STATE(758), - [sym_patternIfElse] = STATE(758), - [sym_within] = STATE(758), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(758), - [sym_nodeLike] = STATE(758), - [sym_like] = STATE(758), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(758), - [sym_some] = STATE(758), - [sym_every] = STATE(758), - [sym_regexPattern] = STATE(758), - [sym_log] = STATE(758), - [sym_range] = STATE(758), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(758), - [sym_snippetRegex] = STATE(422), + [157] = { + [sym_sequential] = STATE(572), + [sym_files] = STATE(572), + [sym__pattern] = STATE(572), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(572), + [sym_divOperation] = STATE(572), + [sym_modOperation] = STATE(572), + [sym_addOperation] = STATE(572), + [sym_subOperation] = STATE(572), + [sym_patternAs] = STATE(572), + [sym_patternLimit] = STATE(572), + [sym_assignmentAsPattern] = STATE(572), + [sym_patternAccumulate] = STATE(572), + [sym_patternWhere] = STATE(572), + [sym__literal] = STATE(572), + [sym_patternNot] = STATE(572), + [sym_patternOr] = STATE(572), + [sym_patternOrElse] = STATE(572), + [sym_patternAny] = STATE(572), + [sym_patternAnd] = STATE(572), + [sym_patternMaybe] = STATE(572), + [sym_patternAfter] = STATE(572), + [sym_patternBefore] = STATE(572), + [sym_patternContains] = STATE(572), + [sym_patternIncludes] = STATE(572), + [sym_rewrite] = STATE(572), + [sym_patternIfElse] = STATE(572), + [sym_within] = STATE(572), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(572), + [sym_nodeLike] = STATE(572), + [sym_like] = STATE(572), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(572), + [sym_some] = STATE(572), + [sym_every] = STATE(572), + [sym_regexPattern] = STATE(572), + [sym_log] = STATE(572), + [sym_range] = STATE(572), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(572), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(771), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(771), + [sym_variable] = ACTIONS(73), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(771), + [sym_top] = ACTIONS(771), + [sym_bottom] = ACTIONS(771), + [sym_intConstant] = ACTIONS(771), + [sym_doubleConstant] = ACTIONS(773), + [sym_stringConstant] = ACTIONS(773), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, + [158] = { + [sym_sequential] = STATE(864), + [sym_files] = STATE(864), + [sym__pattern] = STATE(864), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(864), + [sym_divOperation] = STATE(864), + [sym_modOperation] = STATE(864), + [sym_addOperation] = STATE(864), + [sym_subOperation] = STATE(864), + [sym_patternAs] = STATE(864), + [sym_patternLimit] = STATE(864), + [sym_assignmentAsPattern] = STATE(864), + [sym_patternAccumulate] = STATE(864), + [sym_patternWhere] = STATE(864), + [sym__literal] = STATE(864), + [sym_patternNot] = STATE(864), + [sym_patternOr] = STATE(864), + [sym_patternOrElse] = STATE(864), + [sym_patternAny] = STATE(864), + [sym_patternAnd] = STATE(864), + [sym_patternMaybe] = STATE(864), + [sym_patternAfter] = STATE(864), + [sym_patternBefore] = STATE(864), + [sym_patternContains] = STATE(864), + [sym_patternIncludes] = STATE(864), + [sym_rewrite] = STATE(864), + [sym_patternIfElse] = STATE(864), + [sym_within] = STATE(864), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(864), + [sym_nodeLike] = STATE(864), + [sym_like] = STATE(864), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(864), + [sym_some] = STATE(864), + [sym_every] = STATE(864), + [sym_regexPattern] = STATE(864), + [sym_log] = STATE(864), + [sym_range] = STATE(864), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(864), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -26315,10 +26388,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(787), + [sym_underscore] = ACTIONS(775), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(787), + [sym_booleanConstant] = ACTIONS(775), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -26343,65 +26416,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(787), - [sym_top] = ACTIONS(787), - [sym_bottom] = ACTIONS(787), - [sym_intConstant] = ACTIONS(787), - [sym_doubleConstant] = ACTIONS(789), - [sym_stringConstant] = ACTIONS(789), + [sym_undefined] = ACTIONS(775), + [sym_top] = ACTIONS(775), + [sym_bottom] = ACTIONS(775), + [sym_intConstant] = ACTIONS(775), + [sym_doubleConstant] = ACTIONS(777), + [sym_stringConstant] = ACTIONS(777), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [160] = { - [sym_sequential] = STATE(884), - [sym_files] = STATE(884), - [sym__pattern] = STATE(884), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(884), - [sym_divOperation] = STATE(884), - [sym_modOperation] = STATE(884), - [sym_addOperation] = STATE(884), - [sym_subOperation] = STATE(884), - [sym_patternAs] = STATE(884), - [sym_patternLimit] = STATE(884), - [sym_assignmentAsPattern] = STATE(884), - [sym_patternAccumulate] = STATE(884), - [sym_patternWhere] = STATE(884), - [sym__literal] = STATE(884), - [sym_patternNot] = STATE(884), - [sym_patternOr] = STATE(884), - [sym_patternOrElse] = STATE(884), - [sym_patternAny] = STATE(884), - [sym_patternAnd] = STATE(884), - [sym_patternMaybe] = STATE(884), - [sym_patternAfter] = STATE(884), - [sym_patternBefore] = STATE(884), - [sym_patternContains] = STATE(884), - [sym_patternIncludes] = STATE(884), - [sym_rewrite] = STATE(884), - [sym_patternIfElse] = STATE(884), - [sym_within] = STATE(884), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(884), - [sym_nodeLike] = STATE(884), - [sym_like] = STATE(884), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(884), - [sym_some] = STATE(884), - [sym_every] = STATE(884), - [sym_regexPattern] = STATE(884), - [sym_log] = STATE(884), - [sym_range] = STATE(884), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(884), - [sym_snippetRegex] = STATE(422), + [159] = { + [sym_sequential] = STATE(684), + [sym_files] = STATE(684), + [sym__pattern] = STATE(684), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(684), + [sym_divOperation] = STATE(684), + [sym_modOperation] = STATE(684), + [sym_addOperation] = STATE(684), + [sym_subOperation] = STATE(684), + [sym_patternAs] = STATE(684), + [sym_patternLimit] = STATE(684), + [sym_assignmentAsPattern] = STATE(684), + [sym_patternAccumulate] = STATE(684), + [sym_patternWhere] = STATE(684), + [sym__literal] = STATE(684), + [sym_patternNot] = STATE(684), + [sym_patternOr] = STATE(684), + [sym_patternOrElse] = STATE(684), + [sym_patternAny] = STATE(684), + [sym_patternAnd] = STATE(684), + [sym_patternMaybe] = STATE(684), + [sym_patternAfter] = STATE(684), + [sym_patternBefore] = STATE(684), + [sym_patternContains] = STATE(684), + [sym_patternIncludes] = STATE(684), + [sym_rewrite] = STATE(684), + [sym_patternIfElse] = STATE(684), + [sym_within] = STATE(684), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(684), + [sym_nodeLike] = STATE(684), + [sym_like] = STATE(684), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(684), + [sym_some] = STATE(684), + [sym_every] = STATE(684), + [sym_regexPattern] = STATE(684), + [sym_log] = STATE(684), + [sym_range] = STATE(684), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(684), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -26426,10 +26500,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(791), + [sym_underscore] = ACTIONS(779), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(791), + [sym_booleanConstant] = ACTIONS(779), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -26454,68 +26528,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(791), - [sym_top] = ACTIONS(791), - [sym_bottom] = ACTIONS(791), - [sym_intConstant] = ACTIONS(791), - [sym_doubleConstant] = ACTIONS(793), - [sym_stringConstant] = ACTIONS(793), + [sym_undefined] = ACTIONS(779), + [sym_top] = ACTIONS(779), + [sym_bottom] = ACTIONS(779), + [sym_intConstant] = ACTIONS(779), + [sym_doubleConstant] = ACTIONS(781), + [sym_stringConstant] = ACTIONS(781), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), + [sym_comment] = ACTIONS(3), + }, + [160] = { + [sym_sequential] = STATE(710), + [sym_files] = STATE(710), + [sym__pattern] = STATE(710), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(710), + [sym_divOperation] = STATE(710), + [sym_modOperation] = STATE(710), + [sym_addOperation] = STATE(710), + [sym_subOperation] = STATE(710), + [sym_patternAs] = STATE(710), + [sym_patternLimit] = STATE(710), + [sym_assignmentAsPattern] = STATE(710), + [sym_patternAccumulate] = STATE(710), + [sym_patternWhere] = STATE(710), + [sym__literal] = STATE(710), + [sym_patternNot] = STATE(710), + [sym_patternOr] = STATE(710), + [sym_patternOrElse] = STATE(710), + [sym_patternAny] = STATE(710), + [sym_patternAnd] = STATE(710), + [sym_patternMaybe] = STATE(710), + [sym_patternAfter] = STATE(710), + [sym_patternBefore] = STATE(710), + [sym_patternContains] = STATE(710), + [sym_patternIncludes] = STATE(710), + [sym_rewrite] = STATE(710), + [sym_patternIfElse] = STATE(710), + [sym_within] = STATE(710), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(710), + [sym_nodeLike] = STATE(710), + [sym_like] = STATE(710), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(710), + [sym_some] = STATE(710), + [sym_every] = STATE(710), + [sym_regexPattern] = STATE(710), + [sym_log] = STATE(710), + [sym_range] = STATE(710), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(710), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(783), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(785), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(785), + [sym_variable] = ACTIONS(263), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(785), + [sym_top] = ACTIONS(785), + [sym_bottom] = ACTIONS(785), + [sym_intConstant] = ACTIONS(785), + [sym_doubleConstant] = ACTIONS(787), + [sym_stringConstant] = ACTIONS(787), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [161] = { - [sym_sequential] = STATE(846), - [sym_files] = STATE(846), - [sym__pattern] = STATE(846), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(846), - [sym_divOperation] = STATE(846), - [sym_modOperation] = STATE(846), - [sym_addOperation] = STATE(846), - [sym_subOperation] = STATE(846), - [sym_patternAs] = STATE(846), - [sym_patternLimit] = STATE(846), - [sym_assignmentAsPattern] = STATE(846), - [sym_patternAccumulate] = STATE(846), - [sym_patternWhere] = STATE(846), - [sym__literal] = STATE(846), - [sym_patternNot] = STATE(846), - [sym_patternOr] = STATE(846), - [sym_patternOrElse] = STATE(846), - [sym_patternAny] = STATE(846), - [sym_patternAnd] = STATE(846), - [sym_patternMaybe] = STATE(846), - [sym_patternAfter] = STATE(846), - [sym_patternBefore] = STATE(846), - [sym_patternContains] = STATE(846), - [sym_patternIncludes] = STATE(846), - [sym_rewrite] = STATE(846), - [sym_patternIfElse] = STATE(846), - [sym_within] = STATE(846), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(846), - [sym_nodeLike] = STATE(846), - [sym_like] = STATE(846), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(846), - [sym_some] = STATE(846), - [sym_every] = STATE(846), - [sym_regexPattern] = STATE(846), - [sym_log] = STATE(846), - [sym_range] = STATE(846), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(846), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(768), + [sym_files] = STATE(768), + [sym__pattern] = STATE(768), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(768), + [sym_divOperation] = STATE(768), + [sym_modOperation] = STATE(768), + [sym_addOperation] = STATE(768), + [sym_subOperation] = STATE(768), + [sym_patternAs] = STATE(768), + [sym_patternLimit] = STATE(768), + [sym_assignmentAsPattern] = STATE(768), + [sym_patternAccumulate] = STATE(768), + [sym_patternWhere] = STATE(768), + [sym__literal] = STATE(768), + [sym_patternNot] = STATE(768), + [sym_patternOr] = STATE(768), + [sym_patternOrElse] = STATE(768), + [sym_patternAny] = STATE(768), + [sym_patternAnd] = STATE(768), + [sym_patternMaybe] = STATE(768), + [sym_patternAfter] = STATE(768), + [sym_patternBefore] = STATE(768), + [sym_patternContains] = STATE(768), + [sym_patternIncludes] = STATE(768), + [sym_rewrite] = STATE(768), + [sym_patternIfElse] = STATE(768), + [sym_within] = STATE(768), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(768), + [sym_nodeLike] = STATE(768), + [sym_like] = STATE(768), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(768), + [sym_some] = STATE(768), + [sym_every] = STATE(768), + [sym_regexPattern] = STATE(768), + [sym_log] = STATE(768), + [sym_range] = STATE(768), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(768), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(789), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -26537,10 +26724,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(795), + [sym_underscore] = ACTIONS(791), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(795), + [sym_booleanConstant] = ACTIONS(791), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -26565,68 +26752,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(795), - [sym_top] = ACTIONS(795), - [sym_bottom] = ACTIONS(795), - [sym_intConstant] = ACTIONS(795), - [sym_doubleConstant] = ACTIONS(797), - [sym_stringConstant] = ACTIONS(797), + [sym_undefined] = ACTIONS(791), + [sym_top] = ACTIONS(791), + [sym_bottom] = ACTIONS(791), + [sym_intConstant] = ACTIONS(791), + [sym_doubleConstant] = ACTIONS(793), + [sym_stringConstant] = ACTIONS(793), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [162] = { - [sym_sequential] = STATE(448), - [sym_files] = STATE(448), - [sym__pattern] = STATE(448), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(448), - [sym_divOperation] = STATE(448), - [sym_modOperation] = STATE(448), - [sym_addOperation] = STATE(448), - [sym_subOperation] = STATE(448), - [sym_patternAs] = STATE(448), - [sym_patternLimit] = STATE(448), - [sym_assignmentAsPattern] = STATE(448), - [sym_patternAccumulate] = STATE(448), - [sym_patternWhere] = STATE(448), - [sym__literal] = STATE(448), - [sym_patternNot] = STATE(448), - [sym_patternOr] = STATE(448), - [sym_patternOrElse] = STATE(448), - [sym_patternAny] = STATE(448), - [sym_patternAnd] = STATE(448), - [sym_patternMaybe] = STATE(448), - [sym_patternAfter] = STATE(448), - [sym_patternBefore] = STATE(448), - [sym_patternContains] = STATE(448), - [sym_patternIncludes] = STATE(448), - [sym_rewrite] = STATE(448), - [sym_patternIfElse] = STATE(448), - [sym_within] = STATE(448), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(448), - [sym_nodeLike] = STATE(448), - [sym_like] = STATE(448), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(448), - [sym_some] = STATE(448), - [sym_every] = STATE(448), - [sym_regexPattern] = STATE(448), - [sym_log] = STATE(448), - [sym_range] = STATE(448), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(448), + [sym_sequential] = STATE(425), + [sym_files] = STATE(425), + [sym__pattern] = STATE(425), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(425), + [sym_divOperation] = STATE(425), + [sym_modOperation] = STATE(425), + [sym_addOperation] = STATE(425), + [sym_subOperation] = STATE(425), + [sym_patternAs] = STATE(425), + [sym_patternLimit] = STATE(425), + [sym_assignmentAsPattern] = STATE(425), + [sym_patternAccumulate] = STATE(425), + [sym_patternWhere] = STATE(425), + [sym__literal] = STATE(425), + [sym_patternNot] = STATE(425), + [sym_patternOr] = STATE(425), + [sym_patternOrElse] = STATE(425), + [sym_patternAny] = STATE(425), + [sym_patternAnd] = STATE(425), + [sym_patternMaybe] = STATE(425), + [sym_patternAfter] = STATE(425), + [sym_patternBefore] = STATE(425), + [sym_patternContains] = STATE(425), + [sym_patternIncludes] = STATE(425), + [sym_rewrite] = STATE(425), + [sym_patternIfElse] = STATE(425), + [sym_within] = STATE(425), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(425), + [sym_nodeLike] = STATE(425), + [sym_like] = STATE(425), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(425), + [sym_some] = STATE(425), + [sym_every] = STATE(425), + [sym_regexPattern] = STATE(425), + [sym_log] = STATE(425), + [sym_range] = STATE(425), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(425), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(795), [anon_sym_multifile] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_BANG] = ACTIONS(21), @@ -26648,10 +26836,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(801), + [sym_underscore] = ACTIONS(797), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(801), + [sym_booleanConstant] = ACTIONS(797), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -26676,65 +26864,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(801), - [sym_top] = ACTIONS(801), - [sym_bottom] = ACTIONS(801), - [sym_intConstant] = ACTIONS(801), - [sym_doubleConstant] = ACTIONS(803), - [sym_stringConstant] = ACTIONS(803), + [sym_undefined] = ACTIONS(797), + [sym_top] = ACTIONS(797), + [sym_bottom] = ACTIONS(797), + [sym_intConstant] = ACTIONS(797), + [sym_doubleConstant] = ACTIONS(799), + [sym_stringConstant] = ACTIONS(799), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, [163] = { - [sym_sequential] = STATE(801), - [sym_files] = STATE(801), - [sym__pattern] = STATE(801), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(801), - [sym_divOperation] = STATE(801), - [sym_modOperation] = STATE(801), - [sym_addOperation] = STATE(801), - [sym_subOperation] = STATE(801), - [sym_patternAs] = STATE(801), - [sym_patternLimit] = STATE(801), - [sym_assignmentAsPattern] = STATE(801), - [sym_patternAccumulate] = STATE(801), - [sym_patternWhere] = STATE(801), - [sym__literal] = STATE(801), - [sym_patternNot] = STATE(801), - [sym_patternOr] = STATE(801), - [sym_patternOrElse] = STATE(801), - [sym_patternAny] = STATE(801), - [sym_patternAnd] = STATE(801), - [sym_patternMaybe] = STATE(801), - [sym_patternAfter] = STATE(801), - [sym_patternBefore] = STATE(801), - [sym_patternContains] = STATE(801), - [sym_patternIncludes] = STATE(801), - [sym_rewrite] = STATE(801), - [sym_patternIfElse] = STATE(801), - [sym_within] = STATE(801), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(801), - [sym_nodeLike] = STATE(801), - [sym_like] = STATE(801), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(801), - [sym_some] = STATE(801), - [sym_every] = STATE(801), - [sym_regexPattern] = STATE(801), - [sym_log] = STATE(801), - [sym_range] = STATE(801), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(801), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(842), + [sym_files] = STATE(842), + [sym__pattern] = STATE(842), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(842), + [sym_divOperation] = STATE(842), + [sym_modOperation] = STATE(842), + [sym_addOperation] = STATE(842), + [sym_subOperation] = STATE(842), + [sym_patternAs] = STATE(842), + [sym_patternLimit] = STATE(842), + [sym_assignmentAsPattern] = STATE(842), + [sym_patternAccumulate] = STATE(842), + [sym_patternWhere] = STATE(842), + [sym__literal] = STATE(842), + [sym_patternNot] = STATE(842), + [sym_patternOr] = STATE(842), + [sym_patternOrElse] = STATE(842), + [sym_patternAny] = STATE(842), + [sym_patternAnd] = STATE(842), + [sym_patternMaybe] = STATE(842), + [sym_patternAfter] = STATE(842), + [sym_patternBefore] = STATE(842), + [sym_patternContains] = STATE(842), + [sym_patternIncludes] = STATE(842), + [sym_rewrite] = STATE(842), + [sym_patternIfElse] = STATE(842), + [sym_within] = STATE(842), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(842), + [sym_nodeLike] = STATE(842), + [sym_like] = STATE(842), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(842), + [sym_some] = STATE(842), + [sym_every] = STATE(842), + [sym_regexPattern] = STATE(842), + [sym_log] = STATE(842), + [sym_range] = STATE(842), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(842), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -26759,10 +26948,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(805), + [sym_underscore] = ACTIONS(801), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(805), + [sym_booleanConstant] = ACTIONS(801), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -26787,94 +26976,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(805), - [sym_top] = ACTIONS(805), - [sym_bottom] = ACTIONS(805), - [sym_intConstant] = ACTIONS(805), - [sym_doubleConstant] = ACTIONS(807), - [sym_stringConstant] = ACTIONS(807), + [sym_undefined] = ACTIONS(801), + [sym_top] = ACTIONS(801), + [sym_bottom] = ACTIONS(801), + [sym_intConstant] = ACTIONS(801), + [sym_doubleConstant] = ACTIONS(803), + [sym_stringConstant] = ACTIONS(803), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [164] = { - [sym_sequential] = STATE(526), - [sym_files] = STATE(526), - [sym__pattern] = STATE(526), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(526), - [sym_divOperation] = STATE(526), - [sym_modOperation] = STATE(526), - [sym_addOperation] = STATE(526), - [sym_subOperation] = STATE(526), - [sym_patternAs] = STATE(526), - [sym_patternLimit] = STATE(526), - [sym_assignmentAsPattern] = STATE(526), - [sym_patternAccumulate] = STATE(526), - [sym_patternWhere] = STATE(526), - [sym__literal] = STATE(526), - [sym_patternNot] = STATE(526), - [sym_patternOr] = STATE(526), - [sym_patternOrElse] = STATE(526), - [sym_patternAny] = STATE(526), - [sym_patternAnd] = STATE(526), - [sym_patternMaybe] = STATE(526), - [sym_patternAfter] = STATE(526), - [sym_patternBefore] = STATE(526), - [sym_patternContains] = STATE(526), - [sym_patternIncludes] = STATE(526), - [sym_rewrite] = STATE(526), - [sym_patternIfElse] = STATE(526), - [sym_within] = STATE(526), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(526), - [sym_nodeLike] = STATE(526), - [sym_like] = STATE(526), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(526), - [sym_some] = STATE(526), - [sym_every] = STATE(526), - [sym_regexPattern] = STATE(526), - [sym_log] = STATE(526), - [sym_range] = STATE(526), + [sym_sequential] = STATE(843), + [sym_files] = STATE(843), + [sym__pattern] = STATE(843), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(843), + [sym_divOperation] = STATE(843), + [sym_modOperation] = STATE(843), + [sym_addOperation] = STATE(843), + [sym_subOperation] = STATE(843), + [sym_patternAs] = STATE(843), + [sym_patternLimit] = STATE(843), + [sym_assignmentAsPattern] = STATE(843), + [sym_patternAccumulate] = STATE(843), + [sym_patternWhere] = STATE(843), + [sym__literal] = STATE(843), + [sym_patternNot] = STATE(843), + [sym_patternOr] = STATE(843), + [sym_patternOrElse] = STATE(843), + [sym_patternAny] = STATE(843), + [sym_patternAnd] = STATE(843), + [sym_patternMaybe] = STATE(843), + [sym_patternAfter] = STATE(843), + [sym_patternBefore] = STATE(843), + [sym_patternContains] = STATE(843), + [sym_patternIncludes] = STATE(843), + [sym_rewrite] = STATE(843), + [sym_patternIfElse] = STATE(843), + [sym_within] = STATE(843), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(843), + [sym_nodeLike] = STATE(843), + [sym_like] = STATE(843), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(843), + [sym_some] = STATE(843), + [sym_every] = STATE(843), + [sym_regexPattern] = STATE(843), + [sym_log] = STATE(843), + [sym_range] = STATE(843), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(526), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(843), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(805), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(809), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(809), - [sym_variable] = ACTIONS(73), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(807), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(807), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -26898,65 +27088,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(809), - [sym_top] = ACTIONS(809), - [sym_bottom] = ACTIONS(809), - [sym_intConstant] = ACTIONS(809), - [sym_doubleConstant] = ACTIONS(811), - [sym_stringConstant] = ACTIONS(811), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(807), + [sym_top] = ACTIONS(807), + [sym_bottom] = ACTIONS(807), + [sym_intConstant] = ACTIONS(807), + [sym_doubleConstant] = ACTIONS(809), + [sym_stringConstant] = ACTIONS(809), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [165] = { - [sym_sequential] = STATE(823), - [sym_files] = STATE(823), - [sym__pattern] = STATE(823), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(823), - [sym_divOperation] = STATE(823), - [sym_modOperation] = STATE(823), - [sym_addOperation] = STATE(823), - [sym_subOperation] = STATE(823), - [sym_patternAs] = STATE(823), - [sym_patternLimit] = STATE(823), - [sym_assignmentAsPattern] = STATE(823), - [sym_patternAccumulate] = STATE(823), - [sym_patternWhere] = STATE(823), - [sym__literal] = STATE(823), - [sym_patternNot] = STATE(823), - [sym_patternOr] = STATE(823), - [sym_patternOrElse] = STATE(823), - [sym_patternAny] = STATE(823), - [sym_patternAnd] = STATE(823), - [sym_patternMaybe] = STATE(823), - [sym_patternAfter] = STATE(823), - [sym_patternBefore] = STATE(823), - [sym_patternContains] = STATE(823), - [sym_patternIncludes] = STATE(823), - [sym_rewrite] = STATE(823), - [sym_patternIfElse] = STATE(823), - [sym_within] = STATE(823), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(823), - [sym_nodeLike] = STATE(823), - [sym_like] = STATE(823), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(823), - [sym_some] = STATE(823), - [sym_every] = STATE(823), - [sym_regexPattern] = STATE(823), - [sym_log] = STATE(823), - [sym_range] = STATE(823), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(823), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(845), + [sym_files] = STATE(845), + [sym__pattern] = STATE(845), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(845), + [sym_divOperation] = STATE(845), + [sym_modOperation] = STATE(845), + [sym_addOperation] = STATE(845), + [sym_subOperation] = STATE(845), + [sym_patternAs] = STATE(845), + [sym_patternLimit] = STATE(845), + [sym_assignmentAsPattern] = STATE(845), + [sym_patternAccumulate] = STATE(845), + [sym_patternWhere] = STATE(845), + [sym__literal] = STATE(845), + [sym_patternNot] = STATE(845), + [sym_patternOr] = STATE(845), + [sym_patternOrElse] = STATE(845), + [sym_patternAny] = STATE(845), + [sym_patternAnd] = STATE(845), + [sym_patternMaybe] = STATE(845), + [sym_patternAfter] = STATE(845), + [sym_patternBefore] = STATE(845), + [sym_patternContains] = STATE(845), + [sym_patternIncludes] = STATE(845), + [sym_rewrite] = STATE(845), + [sym_patternIfElse] = STATE(845), + [sym_within] = STATE(845), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(845), + [sym_nodeLike] = STATE(845), + [sym_like] = STATE(845), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(845), + [sym_some] = STATE(845), + [sym_every] = STATE(845), + [sym_regexPattern] = STATE(845), + [sym_log] = STATE(845), + [sym_range] = STATE(845), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(845), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -26981,10 +27172,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(813), + [sym_underscore] = ACTIONS(811), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(813), + [sym_booleanConstant] = ACTIONS(811), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -27009,94 +27200,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(813), - [sym_top] = ACTIONS(813), - [sym_bottom] = ACTIONS(813), - [sym_intConstant] = ACTIONS(813), - [sym_doubleConstant] = ACTIONS(815), - [sym_stringConstant] = ACTIONS(815), + [sym_undefined] = ACTIONS(811), + [sym_top] = ACTIONS(811), + [sym_bottom] = ACTIONS(811), + [sym_intConstant] = ACTIONS(811), + [sym_doubleConstant] = ACTIONS(813), + [sym_stringConstant] = ACTIONS(813), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [166] = { - [sym_sequential] = STATE(592), - [sym_files] = STATE(592), - [sym__pattern] = STATE(592), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(592), - [sym_divOperation] = STATE(592), - [sym_modOperation] = STATE(592), - [sym_addOperation] = STATE(592), - [sym_subOperation] = STATE(592), - [sym_patternAs] = STATE(592), - [sym_patternLimit] = STATE(592), - [sym_assignmentAsPattern] = STATE(592), - [sym_patternAccumulate] = STATE(592), - [sym_patternWhere] = STATE(592), - [sym__literal] = STATE(592), - [sym_patternNot] = STATE(592), - [sym_patternOr] = STATE(592), - [sym_patternOrElse] = STATE(592), - [sym_patternAny] = STATE(592), - [sym_patternAnd] = STATE(592), - [sym_patternMaybe] = STATE(592), - [sym_patternAfter] = STATE(592), - [sym_patternBefore] = STATE(592), - [sym_patternContains] = STATE(592), - [sym_patternIncludes] = STATE(592), - [sym_rewrite] = STATE(592), - [sym_patternIfElse] = STATE(592), - [sym_within] = STATE(592), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(592), - [sym_nodeLike] = STATE(592), - [sym_like] = STATE(592), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(592), - [sym_some] = STATE(592), - [sym_every] = STATE(592), - [sym_regexPattern] = STATE(592), - [sym_log] = STATE(592), - [sym_range] = STATE(592), + [sym_sequential] = STATE(846), + [sym_files] = STATE(846), + [sym__pattern] = STATE(846), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(846), + [sym_divOperation] = STATE(846), + [sym_modOperation] = STATE(846), + [sym_addOperation] = STATE(846), + [sym_subOperation] = STATE(846), + [sym_patternAs] = STATE(846), + [sym_patternLimit] = STATE(846), + [sym_assignmentAsPattern] = STATE(846), + [sym_patternAccumulate] = STATE(846), + [sym_patternWhere] = STATE(846), + [sym__literal] = STATE(846), + [sym_patternNot] = STATE(846), + [sym_patternOr] = STATE(846), + [sym_patternOrElse] = STATE(846), + [sym_patternAny] = STATE(846), + [sym_patternAnd] = STATE(846), + [sym_patternMaybe] = STATE(846), + [sym_patternAfter] = STATE(846), + [sym_patternBefore] = STATE(846), + [sym_patternContains] = STATE(846), + [sym_patternIncludes] = STATE(846), + [sym_rewrite] = STATE(846), + [sym_patternIfElse] = STATE(846), + [sym_within] = STATE(846), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(846), + [sym_nodeLike] = STATE(846), + [sym_like] = STATE(846), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(846), + [sym_some] = STATE(846), + [sym_every] = STATE(846), + [sym_regexPattern] = STATE(846), + [sym_log] = STATE(846), + [sym_range] = STATE(846), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(592), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(846), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(819), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(819), - [sym_variable] = ACTIONS(73), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(815), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(815), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -27120,94 +27312,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(819), - [sym_top] = ACTIONS(819), - [sym_bottom] = ACTIONS(819), - [sym_intConstant] = ACTIONS(819), - [sym_doubleConstant] = ACTIONS(821), - [sym_stringConstant] = ACTIONS(821), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(815), + [sym_top] = ACTIONS(815), + [sym_bottom] = ACTIONS(815), + [sym_intConstant] = ACTIONS(815), + [sym_doubleConstant] = ACTIONS(817), + [sym_stringConstant] = ACTIONS(817), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [167] = { - [sym_sequential] = STATE(528), - [sym_files] = STATE(528), - [sym__pattern] = STATE(528), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(528), - [sym_divOperation] = STATE(528), - [sym_modOperation] = STATE(528), - [sym_addOperation] = STATE(528), - [sym_subOperation] = STATE(528), - [sym_patternAs] = STATE(528), - [sym_patternLimit] = STATE(528), - [sym_assignmentAsPattern] = STATE(528), - [sym_patternAccumulate] = STATE(528), - [sym_patternWhere] = STATE(528), - [sym__literal] = STATE(528), - [sym_patternNot] = STATE(528), - [sym_patternOr] = STATE(528), - [sym_patternOrElse] = STATE(528), - [sym_patternAny] = STATE(528), - [sym_patternAnd] = STATE(528), - [sym_patternMaybe] = STATE(528), - [sym_patternAfter] = STATE(528), - [sym_patternBefore] = STATE(528), - [sym_patternContains] = STATE(528), - [sym_patternIncludes] = STATE(528), - [sym_rewrite] = STATE(528), - [sym_patternIfElse] = STATE(528), - [sym_within] = STATE(528), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(528), - [sym_nodeLike] = STATE(528), - [sym_like] = STATE(528), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(528), - [sym_some] = STATE(528), - [sym_every] = STATE(528), - [sym_regexPattern] = STATE(528), - [sym_log] = STATE(528), - [sym_range] = STATE(528), + [sym_sequential] = STATE(847), + [sym_files] = STATE(847), + [sym__pattern] = STATE(847), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(847), + [sym_divOperation] = STATE(847), + [sym_modOperation] = STATE(847), + [sym_addOperation] = STATE(847), + [sym_subOperation] = STATE(847), + [sym_patternAs] = STATE(847), + [sym_patternLimit] = STATE(847), + [sym_assignmentAsPattern] = STATE(847), + [sym_patternAccumulate] = STATE(847), + [sym_patternWhere] = STATE(847), + [sym__literal] = STATE(847), + [sym_patternNot] = STATE(847), + [sym_patternOr] = STATE(847), + [sym_patternOrElse] = STATE(847), + [sym_patternAny] = STATE(847), + [sym_patternAnd] = STATE(847), + [sym_patternMaybe] = STATE(847), + [sym_patternAfter] = STATE(847), + [sym_patternBefore] = STATE(847), + [sym_patternContains] = STATE(847), + [sym_patternIncludes] = STATE(847), + [sym_rewrite] = STATE(847), + [sym_patternIfElse] = STATE(847), + [sym_within] = STATE(847), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(847), + [sym_nodeLike] = STATE(847), + [sym_like] = STATE(847), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(847), + [sym_some] = STATE(847), + [sym_every] = STATE(847), + [sym_regexPattern] = STATE(847), + [sym_log] = STATE(847), + [sym_range] = STATE(847), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(528), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(847), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(819), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(823), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(823), - [sym_variable] = ACTIONS(73), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(821), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(821), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -27231,94 +27424,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(823), - [sym_top] = ACTIONS(823), - [sym_bottom] = ACTIONS(823), - [sym_intConstant] = ACTIONS(823), - [sym_doubleConstant] = ACTIONS(825), - [sym_stringConstant] = ACTIONS(825), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(821), + [sym_top] = ACTIONS(821), + [sym_bottom] = ACTIONS(821), + [sym_intConstant] = ACTIONS(821), + [sym_doubleConstant] = ACTIONS(823), + [sym_stringConstant] = ACTIONS(823), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [168] = { - [sym_sequential] = STATE(533), - [sym_files] = STATE(533), - [sym__pattern] = STATE(533), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(533), - [sym_divOperation] = STATE(533), - [sym_modOperation] = STATE(533), - [sym_addOperation] = STATE(533), - [sym_subOperation] = STATE(533), - [sym_patternAs] = STATE(533), - [sym_patternLimit] = STATE(533), - [sym_assignmentAsPattern] = STATE(533), - [sym_patternAccumulate] = STATE(533), - [sym_patternWhere] = STATE(533), - [sym__literal] = STATE(533), - [sym_patternNot] = STATE(533), - [sym_patternOr] = STATE(533), - [sym_patternOrElse] = STATE(533), - [sym_patternAny] = STATE(533), - [sym_patternAnd] = STATE(533), - [sym_patternMaybe] = STATE(533), - [sym_patternAfter] = STATE(533), - [sym_patternBefore] = STATE(533), - [sym_patternContains] = STATE(533), - [sym_patternIncludes] = STATE(533), - [sym_rewrite] = STATE(533), - [sym_patternIfElse] = STATE(533), - [sym_within] = STATE(533), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(533), - [sym_nodeLike] = STATE(533), - [sym_like] = STATE(533), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(533), - [sym_some] = STATE(533), - [sym_every] = STATE(533), - [sym_regexPattern] = STATE(533), - [sym_log] = STATE(533), - [sym_range] = STATE(533), + [sym_sequential] = STATE(848), + [sym_files] = STATE(848), + [sym__pattern] = STATE(848), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(848), + [sym_divOperation] = STATE(848), + [sym_modOperation] = STATE(848), + [sym_addOperation] = STATE(848), + [sym_subOperation] = STATE(848), + [sym_patternAs] = STATE(848), + [sym_patternLimit] = STATE(848), + [sym_assignmentAsPattern] = STATE(848), + [sym_patternAccumulate] = STATE(848), + [sym_patternWhere] = STATE(848), + [sym__literal] = STATE(848), + [sym_patternNot] = STATE(848), + [sym_patternOr] = STATE(848), + [sym_patternOrElse] = STATE(848), + [sym_patternAny] = STATE(848), + [sym_patternAnd] = STATE(848), + [sym_patternMaybe] = STATE(848), + [sym_patternAfter] = STATE(848), + [sym_patternBefore] = STATE(848), + [sym_patternContains] = STATE(848), + [sym_patternIncludes] = STATE(848), + [sym_rewrite] = STATE(848), + [sym_patternIfElse] = STATE(848), + [sym_within] = STATE(848), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(848), + [sym_nodeLike] = STATE(848), + [sym_like] = STATE(848), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(848), + [sym_some] = STATE(848), + [sym_every] = STATE(848), + [sym_regexPattern] = STATE(848), + [sym_log] = STATE(848), + [sym_range] = STATE(848), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(533), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(848), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), [sym_underscore] = ACTIONS(827), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), [sym_booleanConstant] = ACTIONS(827), - [sym_variable] = ACTIONS(73), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -27342,290 +27536,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(827), [sym_top] = ACTIONS(827), [sym_bottom] = ACTIONS(827), [sym_intConstant] = ACTIONS(827), [sym_doubleConstant] = ACTIONS(829), [sym_stringConstant] = ACTIONS(829), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [169] = { - [sym_sequential] = STATE(543), - [sym_files] = STATE(543), - [sym__pattern] = STATE(543), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(543), - [sym_divOperation] = STATE(543), - [sym_modOperation] = STATE(543), - [sym_addOperation] = STATE(543), - [sym_subOperation] = STATE(543), - [sym_patternAs] = STATE(543), - [sym_patternLimit] = STATE(543), - [sym_assignmentAsPattern] = STATE(543), - [sym_patternAccumulate] = STATE(543), - [sym_patternWhere] = STATE(543), - [sym__literal] = STATE(543), - [sym_patternNot] = STATE(543), - [sym_patternOr] = STATE(543), - [sym_patternOrElse] = STATE(543), - [sym_patternAny] = STATE(543), - [sym_patternAnd] = STATE(543), - [sym_patternMaybe] = STATE(543), - [sym_patternAfter] = STATE(543), - [sym_patternBefore] = STATE(543), - [sym_patternContains] = STATE(543), - [sym_patternIncludes] = STATE(543), - [sym_rewrite] = STATE(543), - [sym_patternIfElse] = STATE(543), - [sym_within] = STATE(543), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(543), - [sym_nodeLike] = STATE(543), - [sym_like] = STATE(543), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(543), - [sym_some] = STATE(543), - [sym_every] = STATE(543), - [sym_regexPattern] = STATE(543), - [sym_log] = STATE(543), - [sym_range] = STATE(543), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(543), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(831), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(831), - [sym_variable] = ACTIONS(73), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(831), - [sym_top] = ACTIONS(831), - [sym_bottom] = ACTIONS(831), - [sym_intConstant] = ACTIONS(831), - [sym_doubleConstant] = ACTIONS(833), - [sym_stringConstant] = ACTIONS(833), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_sequential] = STATE(544), - [sym_files] = STATE(544), - [sym__pattern] = STATE(544), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(544), - [sym_divOperation] = STATE(544), - [sym_modOperation] = STATE(544), - [sym_addOperation] = STATE(544), - [sym_subOperation] = STATE(544), - [sym_patternAs] = STATE(544), - [sym_patternLimit] = STATE(544), - [sym_assignmentAsPattern] = STATE(544), - [sym_patternAccumulate] = STATE(544), - [sym_patternWhere] = STATE(544), - [sym__literal] = STATE(544), - [sym_patternNot] = STATE(544), - [sym_patternOr] = STATE(544), - [sym_patternOrElse] = STATE(544), - [sym_patternAny] = STATE(544), - [sym_patternAnd] = STATE(544), - [sym_patternMaybe] = STATE(544), - [sym_patternAfter] = STATE(544), - [sym_patternBefore] = STATE(544), - [sym_patternContains] = STATE(544), - [sym_patternIncludes] = STATE(544), - [sym_rewrite] = STATE(544), - [sym_patternIfElse] = STATE(544), - [sym_within] = STATE(544), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(544), - [sym_nodeLike] = STATE(544), - [sym_like] = STATE(544), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(544), - [sym_some] = STATE(544), - [sym_every] = STATE(544), - [sym_regexPattern] = STATE(544), - [sym_log] = STATE(544), - [sym_range] = STATE(544), + [sym_sequential] = STATE(849), + [sym_files] = STATE(849), + [sym__pattern] = STATE(849), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(849), + [sym_divOperation] = STATE(849), + [sym_modOperation] = STATE(849), + [sym_addOperation] = STATE(849), + [sym_subOperation] = STATE(849), + [sym_patternAs] = STATE(849), + [sym_patternLimit] = STATE(849), + [sym_assignmentAsPattern] = STATE(849), + [sym_patternAccumulate] = STATE(849), + [sym_patternWhere] = STATE(849), + [sym__literal] = STATE(849), + [sym_patternNot] = STATE(849), + [sym_patternOr] = STATE(849), + [sym_patternOrElse] = STATE(849), + [sym_patternAny] = STATE(849), + [sym_patternAnd] = STATE(849), + [sym_patternMaybe] = STATE(849), + [sym_patternAfter] = STATE(849), + [sym_patternBefore] = STATE(849), + [sym_patternContains] = STATE(849), + [sym_patternIncludes] = STATE(849), + [sym_rewrite] = STATE(849), + [sym_patternIfElse] = STATE(849), + [sym_within] = STATE(849), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(849), + [sym_nodeLike] = STATE(849), + [sym_like] = STATE(849), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(849), + [sym_some] = STATE(849), + [sym_every] = STATE(849), + [sym_regexPattern] = STATE(849), + [sym_log] = STATE(849), + [sym_range] = STATE(849), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(544), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(835), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(835), - [sym_variable] = ACTIONS(73), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(835), - [sym_top] = ACTIONS(835), - [sym_bottom] = ACTIONS(835), - [sym_intConstant] = ACTIONS(835), - [sym_doubleConstant] = ACTIONS(837), - [sym_stringConstant] = ACTIONS(837), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_sequential] = STATE(677), - [sym_files] = STATE(677), - [sym__pattern] = STATE(677), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(677), - [sym_divOperation] = STATE(677), - [sym_modOperation] = STATE(677), - [sym_addOperation] = STATE(677), - [sym_subOperation] = STATE(677), - [sym_patternAs] = STATE(677), - [sym_patternLimit] = STATE(677), - [sym_assignmentAsPattern] = STATE(677), - [sym_patternAccumulate] = STATE(677), - [sym_patternWhere] = STATE(677), - [sym__literal] = STATE(677), - [sym_patternNot] = STATE(677), - [sym_patternOr] = STATE(677), - [sym_patternOrElse] = STATE(677), - [sym_patternAny] = STATE(677), - [sym_patternAnd] = STATE(677), - [sym_patternMaybe] = STATE(677), - [sym_patternAfter] = STATE(677), - [sym_patternBefore] = STATE(677), - [sym_patternContains] = STATE(677), - [sym_patternIncludes] = STATE(677), - [sym_rewrite] = STATE(677), - [sym_patternIfElse] = STATE(677), - [sym_within] = STATE(677), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(677), - [sym_nodeLike] = STATE(677), - [sym_like] = STATE(677), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(677), - [sym_some] = STATE(677), - [sym_every] = STATE(677), - [sym_regexPattern] = STATE(677), - [sym_log] = STATE(677), - [sym_range] = STATE(677), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(677), - [sym_snippetRegex] = STATE(422), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(849), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(831), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -27647,10 +27620,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(841), + [sym_underscore] = ACTIONS(833), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(841), + [sym_booleanConstant] = ACTIONS(833), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -27675,68 +27648,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(841), - [sym_top] = ACTIONS(841), - [sym_bottom] = ACTIONS(841), - [sym_intConstant] = ACTIONS(841), - [sym_doubleConstant] = ACTIONS(843), - [sym_stringConstant] = ACTIONS(843), + [sym_undefined] = ACTIONS(833), + [sym_top] = ACTIONS(833), + [sym_bottom] = ACTIONS(833), + [sym_intConstant] = ACTIONS(833), + [sym_doubleConstant] = ACTIONS(835), + [sym_stringConstant] = ACTIONS(835), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [172] = { - [sym_sequential] = STATE(547), - [sym_files] = STATE(547), - [sym__pattern] = STATE(547), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(547), - [sym_divOperation] = STATE(547), - [sym_modOperation] = STATE(547), - [sym_addOperation] = STATE(547), - [sym_subOperation] = STATE(547), - [sym_patternAs] = STATE(547), - [sym_patternLimit] = STATE(547), - [sym_assignmentAsPattern] = STATE(547), - [sym_patternAccumulate] = STATE(547), - [sym_patternWhere] = STATE(547), - [sym__literal] = STATE(547), - [sym_patternNot] = STATE(547), - [sym_patternOr] = STATE(547), - [sym_patternOrElse] = STATE(547), - [sym_patternAny] = STATE(547), - [sym_patternAnd] = STATE(547), - [sym_patternMaybe] = STATE(547), - [sym_patternAfter] = STATE(547), - [sym_patternBefore] = STATE(547), - [sym_patternContains] = STATE(547), - [sym_patternIncludes] = STATE(547), - [sym_rewrite] = STATE(547), - [sym_patternIfElse] = STATE(547), - [sym_within] = STATE(547), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(547), - [sym_nodeLike] = STATE(547), - [sym_like] = STATE(547), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(547), - [sym_some] = STATE(547), - [sym_every] = STATE(547), - [sym_regexPattern] = STATE(547), - [sym_log] = STATE(547), - [sym_range] = STATE(547), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(547), + [170] = { + [sym_sequential] = STATE(490), + [sym_files] = STATE(490), + [sym__pattern] = STATE(490), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(490), + [sym_divOperation] = STATE(490), + [sym_modOperation] = STATE(490), + [sym_addOperation] = STATE(490), + [sym_subOperation] = STATE(490), + [sym_patternAs] = STATE(490), + [sym_patternLimit] = STATE(490), + [sym_assignmentAsPattern] = STATE(490), + [sym_patternAccumulate] = STATE(490), + [sym_patternWhere] = STATE(490), + [sym__literal] = STATE(490), + [sym_patternNot] = STATE(490), + [sym_patternOr] = STATE(490), + [sym_patternOrElse] = STATE(490), + [sym_patternAny] = STATE(490), + [sym_patternAnd] = STATE(490), + [sym_patternMaybe] = STATE(490), + [sym_patternAfter] = STATE(490), + [sym_patternBefore] = STATE(490), + [sym_patternContains] = STATE(490), + [sym_patternIncludes] = STATE(490), + [sym_rewrite] = STATE(490), + [sym_patternIfElse] = STATE(490), + [sym_within] = STATE(490), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(490), + [sym_nodeLike] = STATE(490), + [sym_like] = STATE(490), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(490), + [sym_some] = STATE(490), + [sym_every] = STATE(490), + [sym_regexPattern] = STATE(490), + [sym_log] = STATE(490), + [sym_range] = STATE(490), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(490), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(837), [anon_sym_multifile] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_BANG] = ACTIONS(21), @@ -27758,10 +27732,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(845), + [sym_underscore] = ACTIONS(839), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(845), + [sym_booleanConstant] = ACTIONS(839), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -27786,68 +27760,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(845), - [sym_top] = ACTIONS(845), - [sym_bottom] = ACTIONS(845), - [sym_intConstant] = ACTIONS(845), - [sym_doubleConstant] = ACTIONS(847), - [sym_stringConstant] = ACTIONS(847), + [sym_undefined] = ACTIONS(839), + [sym_top] = ACTIONS(839), + [sym_bottom] = ACTIONS(839), + [sym_intConstant] = ACTIONS(839), + [sym_doubleConstant] = ACTIONS(841), + [sym_stringConstant] = ACTIONS(841), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [173] = { - [sym_sequential] = STATE(437), - [sym_files] = STATE(437), - [sym__pattern] = STATE(437), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(437), - [sym_divOperation] = STATE(437), - [sym_modOperation] = STATE(437), - [sym_addOperation] = STATE(437), - [sym_subOperation] = STATE(437), - [sym_patternAs] = STATE(437), - [sym_patternLimit] = STATE(437), - [sym_assignmentAsPattern] = STATE(437), - [sym_patternAccumulate] = STATE(437), - [sym_patternWhere] = STATE(437), - [sym__literal] = STATE(437), - [sym_patternNot] = STATE(437), - [sym_patternOr] = STATE(437), - [sym_patternOrElse] = STATE(437), - [sym_patternAny] = STATE(437), - [sym_patternAnd] = STATE(437), - [sym_patternMaybe] = STATE(437), - [sym_patternAfter] = STATE(437), - [sym_patternBefore] = STATE(437), - [sym_patternContains] = STATE(437), - [sym_patternIncludes] = STATE(437), - [sym_rewrite] = STATE(437), - [sym_patternIfElse] = STATE(437), - [sym_within] = STATE(437), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(437), - [sym_nodeLike] = STATE(437), - [sym_like] = STATE(437), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(437), - [sym_some] = STATE(437), - [sym_every] = STATE(437), - [sym_regexPattern] = STATE(437), - [sym_log] = STATE(437), - [sym_range] = STATE(437), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(437), + [171] = { + [sym_sequential] = STATE(588), + [sym_files] = STATE(588), + [sym__pattern] = STATE(588), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(588), + [sym_divOperation] = STATE(588), + [sym_modOperation] = STATE(588), + [sym_addOperation] = STATE(588), + [sym_subOperation] = STATE(588), + [sym_patternAs] = STATE(588), + [sym_patternLimit] = STATE(588), + [sym_assignmentAsPattern] = STATE(588), + [sym_patternAccumulate] = STATE(588), + [sym_patternWhere] = STATE(588), + [sym__literal] = STATE(588), + [sym_patternNot] = STATE(588), + [sym_patternOr] = STATE(588), + [sym_patternOrElse] = STATE(588), + [sym_patternAny] = STATE(588), + [sym_patternAnd] = STATE(588), + [sym_patternMaybe] = STATE(588), + [sym_patternAfter] = STATE(588), + [sym_patternBefore] = STATE(588), + [sym_patternContains] = STATE(588), + [sym_patternIncludes] = STATE(588), + [sym_rewrite] = STATE(588), + [sym_patternIfElse] = STATE(588), + [sym_within] = STATE(588), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(588), + [sym_nodeLike] = STATE(588), + [sym_like] = STATE(588), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(588), + [sym_some] = STATE(588), + [sym_every] = STATE(588), + [sym_regexPattern] = STATE(588), + [sym_log] = STATE(588), + [sym_range] = STATE(588), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(588), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(843), [anon_sym_multifile] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_BANG] = ACTIONS(21), @@ -27869,10 +27844,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(849), + [sym_underscore] = ACTIONS(845), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(849), + [sym_booleanConstant] = ACTIONS(845), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -27897,64 +27872,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(849), - [sym_top] = ACTIONS(849), - [sym_bottom] = ACTIONS(849), - [sym_intConstant] = ACTIONS(849), - [sym_doubleConstant] = ACTIONS(851), - [sym_stringConstant] = ACTIONS(851), + [sym_undefined] = ACTIONS(845), + [sym_top] = ACTIONS(845), + [sym_bottom] = ACTIONS(845), + [sym_intConstant] = ACTIONS(845), + [sym_doubleConstant] = ACTIONS(847), + [sym_stringConstant] = ACTIONS(847), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [174] = { - [sym_sequential] = STATE(400), - [sym_files] = STATE(400), - [sym__pattern] = STATE(400), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(400), - [sym_divOperation] = STATE(400), - [sym_modOperation] = STATE(400), - [sym_addOperation] = STATE(400), - [sym_subOperation] = STATE(400), - [sym_patternAs] = STATE(400), - [sym_patternLimit] = STATE(400), - [sym_assignmentAsPattern] = STATE(400), - [sym_patternAccumulate] = STATE(400), - [sym_patternWhere] = STATE(400), - [sym__literal] = STATE(400), - [sym_patternNot] = STATE(400), - [sym_patternOr] = STATE(400), - [sym_patternOrElse] = STATE(400), - [sym_patternAny] = STATE(400), - [sym_patternAnd] = STATE(400), - [sym_patternMaybe] = STATE(400), - [sym_patternAfter] = STATE(400), - [sym_patternBefore] = STATE(400), - [sym_patternContains] = STATE(400), - [sym_patternIncludes] = STATE(400), - [sym_rewrite] = STATE(400), - [sym_patternIfElse] = STATE(400), - [sym_within] = STATE(400), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(400), - [sym_nodeLike] = STATE(400), - [sym_like] = STATE(400), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(400), - [sym_some] = STATE(400), - [sym_every] = STATE(400), - [sym_regexPattern] = STATE(400), - [sym_log] = STATE(400), - [sym_range] = STATE(400), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(400), + [172] = { + [sym_sequential] = STATE(590), + [sym_files] = STATE(590), + [sym__pattern] = STATE(590), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(590), + [sym_divOperation] = STATE(590), + [sym_modOperation] = STATE(590), + [sym_addOperation] = STATE(590), + [sym_subOperation] = STATE(590), + [sym_patternAs] = STATE(590), + [sym_patternLimit] = STATE(590), + [sym_assignmentAsPattern] = STATE(590), + [sym_patternAccumulate] = STATE(590), + [sym_patternWhere] = STATE(590), + [sym__literal] = STATE(590), + [sym_patternNot] = STATE(590), + [sym_patternOr] = STATE(590), + [sym_patternOrElse] = STATE(590), + [sym_patternAny] = STATE(590), + [sym_patternAnd] = STATE(590), + [sym_patternMaybe] = STATE(590), + [sym_patternAfter] = STATE(590), + [sym_patternBefore] = STATE(590), + [sym_patternContains] = STATE(590), + [sym_patternIncludes] = STATE(590), + [sym_rewrite] = STATE(590), + [sym_patternIfElse] = STATE(590), + [sym_within] = STATE(590), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(590), + [sym_nodeLike] = STATE(590), + [sym_like] = STATE(590), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(590), + [sym_some] = STATE(590), + [sym_every] = STATE(590), + [sym_regexPattern] = STATE(590), + [sym_log] = STATE(590), + [sym_range] = STATE(590), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(590), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), @@ -27980,10 +27956,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(853), + [sym_underscore] = ACTIONS(849), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(853), + [sym_booleanConstant] = ACTIONS(849), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -28008,64 +27984,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(853), - [sym_top] = ACTIONS(853), - [sym_bottom] = ACTIONS(853), - [sym_intConstant] = ACTIONS(853), - [sym_doubleConstant] = ACTIONS(855), - [sym_stringConstant] = ACTIONS(855), + [sym_undefined] = ACTIONS(849), + [sym_top] = ACTIONS(849), + [sym_bottom] = ACTIONS(849), + [sym_intConstant] = ACTIONS(849), + [sym_doubleConstant] = ACTIONS(851), + [sym_stringConstant] = ACTIONS(851), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [175] = { - [sym_sequential] = STATE(549), - [sym_files] = STATE(549), - [sym__pattern] = STATE(549), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(549), - [sym_divOperation] = STATE(549), - [sym_modOperation] = STATE(549), - [sym_addOperation] = STATE(549), - [sym_subOperation] = STATE(549), - [sym_patternAs] = STATE(549), - [sym_patternLimit] = STATE(549), - [sym_assignmentAsPattern] = STATE(549), - [sym_patternAccumulate] = STATE(549), - [sym_patternWhere] = STATE(549), - [sym__literal] = STATE(549), - [sym_patternNot] = STATE(549), - [sym_patternOr] = STATE(549), - [sym_patternOrElse] = STATE(549), - [sym_patternAny] = STATE(549), - [sym_patternAnd] = STATE(549), - [sym_patternMaybe] = STATE(549), - [sym_patternAfter] = STATE(549), - [sym_patternBefore] = STATE(549), - [sym_patternContains] = STATE(549), - [sym_patternIncludes] = STATE(549), - [sym_rewrite] = STATE(549), - [sym_patternIfElse] = STATE(549), - [sym_within] = STATE(549), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(549), - [sym_nodeLike] = STATE(549), - [sym_like] = STATE(549), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(549), - [sym_some] = STATE(549), - [sym_every] = STATE(549), - [sym_regexPattern] = STATE(549), - [sym_log] = STATE(549), - [sym_range] = STATE(549), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(549), + [173] = { + [sym_sequential] = STATE(531), + [sym_files] = STATE(531), + [sym__pattern] = STATE(531), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(531), + [sym_divOperation] = STATE(531), + [sym_modOperation] = STATE(531), + [sym_addOperation] = STATE(531), + [sym_subOperation] = STATE(531), + [sym_patternAs] = STATE(531), + [sym_patternLimit] = STATE(531), + [sym_assignmentAsPattern] = STATE(531), + [sym_patternAccumulate] = STATE(531), + [sym_patternWhere] = STATE(531), + [sym__literal] = STATE(531), + [sym_patternNot] = STATE(531), + [sym_patternOr] = STATE(531), + [sym_patternOrElse] = STATE(531), + [sym_patternAny] = STATE(531), + [sym_patternAnd] = STATE(531), + [sym_patternMaybe] = STATE(531), + [sym_patternAfter] = STATE(531), + [sym_patternBefore] = STATE(531), + [sym_patternContains] = STATE(531), + [sym_patternIncludes] = STATE(531), + [sym_rewrite] = STATE(531), + [sym_patternIfElse] = STATE(531), + [sym_within] = STATE(531), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(531), + [sym_nodeLike] = STATE(531), + [sym_like] = STATE(531), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(531), + [sym_some] = STATE(531), + [sym_every] = STATE(531), + [sym_regexPattern] = STATE(531), + [sym_log] = STATE(531), + [sym_range] = STATE(531), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(531), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), @@ -28091,232 +28068,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(857), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(857), - [sym_variable] = ACTIONS(73), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(857), - [sym_top] = ACTIONS(857), - [sym_bottom] = ACTIONS(857), - [sym_intConstant] = ACTIONS(857), - [sym_doubleConstant] = ACTIONS(859), - [sym_stringConstant] = ACTIONS(859), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [sym_sequential] = STATE(866), - [sym_files] = STATE(866), - [sym__pattern] = STATE(866), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(866), - [sym_divOperation] = STATE(866), - [sym_modOperation] = STATE(866), - [sym_addOperation] = STATE(866), - [sym_subOperation] = STATE(866), - [sym_patternAs] = STATE(866), - [sym_patternLimit] = STATE(866), - [sym_assignmentAsPattern] = STATE(866), - [sym_patternAccumulate] = STATE(866), - [sym_patternWhere] = STATE(866), - [sym__literal] = STATE(866), - [sym_patternNot] = STATE(866), - [sym_patternOr] = STATE(866), - [sym_patternOrElse] = STATE(866), - [sym_patternAny] = STATE(866), - [sym_patternAnd] = STATE(866), - [sym_patternMaybe] = STATE(866), - [sym_patternAfter] = STATE(866), - [sym_patternBefore] = STATE(866), - [sym_patternContains] = STATE(866), - [sym_patternIncludes] = STATE(866), - [sym_rewrite] = STATE(866), - [sym_patternIfElse] = STATE(866), - [sym_within] = STATE(866), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(866), - [sym_nodeLike] = STATE(866), - [sym_like] = STATE(866), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(866), - [sym_some] = STATE(866), - [sym_every] = STATE(866), - [sym_regexPattern] = STATE(866), - [sym_log] = STATE(866), - [sym_range] = STATE(866), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(866), - [sym_snippetRegex] = STATE(422), - [sym_name] = ACTIONS(207), - [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_multifile] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(217), - [anon_sym_not] = ACTIONS(219), - [anon_sym_or] = ACTIONS(221), - [anon_sym_orelse] = ACTIONS(223), - [anon_sym_any] = ACTIONS(225), - [anon_sym_and] = ACTIONS(227), - [anon_sym_maybe] = ACTIONS(229), - [anon_sym_after] = ACTIONS(231), - [anon_sym_before] = ACTIONS(233), - [anon_sym_contains] = ACTIONS(235), - [anon_sym_includes] = ACTIONS(237), - [anon_sym_if] = ACTIONS(239), - [anon_sym_within] = ACTIONS(241), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_some] = ACTIONS(251), - [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(861), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(861), - [sym_variable] = ACTIONS(263), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(861), - [sym_top] = ACTIONS(861), - [sym_bottom] = ACTIONS(861), - [sym_intConstant] = ACTIONS(861), - [sym_doubleConstant] = ACTIONS(863), - [sym_stringConstant] = ACTIONS(863), - [sym_regex] = ACTIONS(269), - [anon_sym_r] = ACTIONS(271), - [sym_comment] = ACTIONS(3), - }, - [177] = { - [sym_sequential] = STATE(593), - [sym_files] = STATE(593), - [sym__pattern] = STATE(593), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(593), - [sym_divOperation] = STATE(593), - [sym_modOperation] = STATE(593), - [sym_addOperation] = STATE(593), - [sym_subOperation] = STATE(593), - [sym_patternAs] = STATE(593), - [sym_patternLimit] = STATE(593), - [sym_assignmentAsPattern] = STATE(593), - [sym_patternAccumulate] = STATE(593), - [sym_patternWhere] = STATE(593), - [sym__literal] = STATE(593), - [sym_patternNot] = STATE(593), - [sym_patternOr] = STATE(593), - [sym_patternOrElse] = STATE(593), - [sym_patternAny] = STATE(593), - [sym_patternAnd] = STATE(593), - [sym_patternMaybe] = STATE(593), - [sym_patternAfter] = STATE(593), - [sym_patternBefore] = STATE(593), - [sym_patternContains] = STATE(593), - [sym_patternIncludes] = STATE(593), - [sym_rewrite] = STATE(593), - [sym_patternIfElse] = STATE(593), - [sym_within] = STATE(593), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(593), - [sym_nodeLike] = STATE(593), - [sym_like] = STATE(593), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(593), - [sym_some] = STATE(593), - [sym_every] = STATE(593), - [sym_regexPattern] = STATE(593), - [sym_log] = STATE(593), - [sym_range] = STATE(593), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(593), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), - [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(867), + [sym_underscore] = ACTIONS(853), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(867), + [sym_booleanConstant] = ACTIONS(853), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -28341,23 +28096,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(867), - [sym_top] = ACTIONS(867), - [sym_bottom] = ACTIONS(867), - [sym_intConstant] = ACTIONS(867), - [sym_doubleConstant] = ACTIONS(869), - [sym_stringConstant] = ACTIONS(869), + [sym_undefined] = ACTIONS(853), + [sym_top] = ACTIONS(853), + [sym_bottom] = ACTIONS(853), + [sym_intConstant] = ACTIONS(853), + [sym_doubleConstant] = ACTIONS(855), + [sym_stringConstant] = ACTIONS(855), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [178] = { + [174] = { [sym_sequential] = STATE(594), [sym_files] = STATE(594), [sym__pattern] = STATE(594), - [sym__container] = STATE(1032), + [sym__container] = STATE(1201), [sym_mulOperation] = STATE(594), [sym_divOperation] = STATE(594), [sym_modOperation] = STATE(594), @@ -28382,27 +28138,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_rewrite] = STATE(594), [sym_patternIfElse] = STATE(594), [sym_within] = STATE(594), - [sym__bubbleScope] = STATE(119), + [sym__bubbleScope] = STATE(108), [sym_bubble] = STATE(594), [sym_nodeLike] = STATE(594), [sym_like] = STATE(594), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), [sym_dot] = STATE(594), [sym_some] = STATE(594), [sym_every] = STATE(594), [sym_regexPattern] = STATE(594), [sym_log] = STATE(594), [sym_range] = STATE(594), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), [sym_codeSnippet] = STATE(594), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(857), [anon_sym_multifile] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_BANG] = ACTIONS(21), @@ -28424,10 +28180,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(873), + [sym_underscore] = ACTIONS(859), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(873), + [sym_booleanConstant] = ACTIONS(859), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -28452,68 +28208,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(873), - [sym_top] = ACTIONS(873), - [sym_bottom] = ACTIONS(873), - [sym_intConstant] = ACTIONS(873), - [sym_doubleConstant] = ACTIONS(875), - [sym_stringConstant] = ACTIONS(875), + [sym_undefined] = ACTIONS(859), + [sym_top] = ACTIONS(859), + [sym_bottom] = ACTIONS(859), + [sym_intConstant] = ACTIONS(859), + [sym_doubleConstant] = ACTIONS(861), + [sym_stringConstant] = ACTIONS(861), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [179] = { - [sym_sequential] = STATE(561), - [sym_files] = STATE(561), - [sym__pattern] = STATE(561), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(561), - [sym_divOperation] = STATE(561), - [sym_modOperation] = STATE(561), - [sym_addOperation] = STATE(561), - [sym_subOperation] = STATE(561), - [sym_patternAs] = STATE(561), - [sym_patternLimit] = STATE(561), - [sym_assignmentAsPattern] = STATE(561), - [sym_patternAccumulate] = STATE(561), - [sym_patternWhere] = STATE(561), - [sym__literal] = STATE(561), - [sym_patternNot] = STATE(561), - [sym_patternOr] = STATE(561), - [sym_patternOrElse] = STATE(561), - [sym_patternAny] = STATE(561), - [sym_patternAnd] = STATE(561), - [sym_patternMaybe] = STATE(561), - [sym_patternAfter] = STATE(561), - [sym_patternBefore] = STATE(561), - [sym_patternContains] = STATE(561), - [sym_patternIncludes] = STATE(561), - [sym_rewrite] = STATE(561), - [sym_patternIfElse] = STATE(561), - [sym_within] = STATE(561), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(561), - [sym_nodeLike] = STATE(561), - [sym_like] = STATE(561), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(561), - [sym_some] = STATE(561), - [sym_every] = STATE(561), - [sym_regexPattern] = STATE(561), - [sym_log] = STATE(561), - [sym_range] = STATE(561), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(561), + [175] = { + [sym_sequential] = STATE(611), + [sym_files] = STATE(611), + [sym__pattern] = STATE(611), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(611), + [sym_divOperation] = STATE(611), + [sym_modOperation] = STATE(611), + [sym_addOperation] = STATE(611), + [sym_subOperation] = STATE(611), + [sym_patternAs] = STATE(611), + [sym_patternLimit] = STATE(611), + [sym_assignmentAsPattern] = STATE(611), + [sym_patternAccumulate] = STATE(611), + [sym_patternWhere] = STATE(611), + [sym__literal] = STATE(611), + [sym_patternNot] = STATE(611), + [sym_patternOr] = STATE(611), + [sym_patternOrElse] = STATE(611), + [sym_patternAny] = STATE(611), + [sym_patternAnd] = STATE(611), + [sym_patternMaybe] = STATE(611), + [sym_patternAfter] = STATE(611), + [sym_patternBefore] = STATE(611), + [sym_patternContains] = STATE(611), + [sym_patternIncludes] = STATE(611), + [sym_rewrite] = STATE(611), + [sym_patternIfElse] = STATE(611), + [sym_within] = STATE(611), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(611), + [sym_nodeLike] = STATE(611), + [sym_like] = STATE(611), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(611), + [sym_some] = STATE(611), + [sym_every] = STATE(611), + [sym_regexPattern] = STATE(611), + [sym_log] = STATE(611), + [sym_range] = STATE(611), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(611), [sym_snippetRegex] = STATE(334), [sym_name] = ACTIONS(7), [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(863), [anon_sym_multifile] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_BANG] = ACTIONS(21), @@ -28535,10 +28292,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_some] = ACTIONS(55), [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(877), + [sym_underscore] = ACTIONS(865), [anon_sym_log_LPAREN] = ACTIONS(69), [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(877), + [sym_booleanConstant] = ACTIONS(865), [sym_variable] = ACTIONS(73), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -28563,94 +28320,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(77), [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(877), - [sym_top] = ACTIONS(877), - [sym_bottom] = ACTIONS(877), - [sym_intConstant] = ACTIONS(877), - [sym_doubleConstant] = ACTIONS(879), - [sym_stringConstant] = ACTIONS(879), + [sym_undefined] = ACTIONS(865), + [sym_top] = ACTIONS(865), + [sym_bottom] = ACTIONS(865), + [sym_intConstant] = ACTIONS(865), + [sym_doubleConstant] = ACTIONS(867), + [sym_stringConstant] = ACTIONS(867), [sym_regex] = ACTIONS(81), [anon_sym_r] = ACTIONS(83), [sym_comment] = ACTIONS(3), }, - [180] = { - [sym_sequential] = STATE(596), - [sym_files] = STATE(596), - [sym__pattern] = STATE(596), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(596), - [sym_divOperation] = STATE(596), - [sym_modOperation] = STATE(596), - [sym_addOperation] = STATE(596), - [sym_subOperation] = STATE(596), - [sym_patternAs] = STATE(596), - [sym_patternLimit] = STATE(596), - [sym_assignmentAsPattern] = STATE(596), - [sym_patternAccumulate] = STATE(596), - [sym_patternWhere] = STATE(596), - [sym__literal] = STATE(596), - [sym_patternNot] = STATE(596), - [sym_patternOr] = STATE(596), - [sym_patternOrElse] = STATE(596), - [sym_patternAny] = STATE(596), - [sym_patternAnd] = STATE(596), - [sym_patternMaybe] = STATE(596), - [sym_patternAfter] = STATE(596), - [sym_patternBefore] = STATE(596), - [sym_patternContains] = STATE(596), - [sym_patternIncludes] = STATE(596), - [sym_rewrite] = STATE(596), - [sym_patternIfElse] = STATE(596), - [sym_within] = STATE(596), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(596), - [sym_nodeLike] = STATE(596), - [sym_like] = STATE(596), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(596), - [sym_some] = STATE(596), - [sym_every] = STATE(596), - [sym_regexPattern] = STATE(596), - [sym_log] = STATE(596), - [sym_range] = STATE(596), - [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(596), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [176] = { + [sym_sequential] = STATE(886), + [sym_files] = STATE(886), + [sym__pattern] = STATE(886), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(886), + [sym_divOperation] = STATE(886), + [sym_modOperation] = STATE(886), + [sym_addOperation] = STATE(886), + [sym_subOperation] = STATE(886), + [sym_patternAs] = STATE(886), + [sym_patternLimit] = STATE(886), + [sym_assignmentAsPattern] = STATE(886), + [sym_patternAccumulate] = STATE(886), + [sym_patternWhere] = STATE(886), + [sym__literal] = STATE(886), + [sym_patternNot] = STATE(886), + [sym_patternOr] = STATE(886), + [sym_patternOrElse] = STATE(886), + [sym_patternAny] = STATE(886), + [sym_patternAnd] = STATE(886), + [sym_patternMaybe] = STATE(886), + [sym_patternAfter] = STATE(886), + [sym_patternBefore] = STATE(886), + [sym_patternContains] = STATE(886), + [sym_patternIncludes] = STATE(886), + [sym_rewrite] = STATE(886), + [sym_patternIfElse] = STATE(886), + [sym_within] = STATE(886), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(886), + [sym_nodeLike] = STATE(886), + [sym_like] = STATE(886), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(886), + [sym_some] = STATE(886), + [sym_every] = STATE(886), + [sym_regexPattern] = STATE(886), + [sym_log] = STATE(886), + [sym_range] = STATE(886), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(886), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(869), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(869), + [sym_variable] = ACTIONS(263), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(869), + [sym_top] = ACTIONS(869), + [sym_bottom] = ACTIONS(869), + [sym_intConstant] = ACTIONS(869), + [sym_doubleConstant] = ACTIONS(871), + [sym_stringConstant] = ACTIONS(871), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_sequential] = STATE(888), + [sym_files] = STATE(888), + [sym__pattern] = STATE(888), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(888), + [sym_divOperation] = STATE(888), + [sym_modOperation] = STATE(888), + [sym_addOperation] = STATE(888), + [sym_subOperation] = STATE(888), + [sym_patternAs] = STATE(888), + [sym_patternLimit] = STATE(888), + [sym_assignmentAsPattern] = STATE(888), + [sym_patternAccumulate] = STATE(888), + [sym_patternWhere] = STATE(888), + [sym__literal] = STATE(888), + [sym_patternNot] = STATE(888), + [sym_patternOr] = STATE(888), + [sym_patternOrElse] = STATE(888), + [sym_patternAny] = STATE(888), + [sym_patternAnd] = STATE(888), + [sym_patternMaybe] = STATE(888), + [sym_patternAfter] = STATE(888), + [sym_patternBefore] = STATE(888), + [sym_patternContains] = STATE(888), + [sym_patternIncludes] = STATE(888), + [sym_rewrite] = STATE(888), + [sym_patternIfElse] = STATE(888), + [sym_within] = STATE(888), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(888), + [sym_nodeLike] = STATE(888), + [sym_like] = STATE(888), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(888), + [sym_some] = STATE(888), + [sym_every] = STATE(888), + [sym_regexPattern] = STATE(888), + [sym_log] = STATE(888), + [sym_range] = STATE(888), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(888), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(873), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(873), + [sym_variable] = ACTIONS(263), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(873), + [sym_top] = ACTIONS(873), + [sym_bottom] = ACTIONS(873), + [sym_intConstant] = ACTIONS(873), + [sym_doubleConstant] = ACTIONS(875), + [sym_stringConstant] = ACTIONS(875), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), + [sym_comment] = ACTIONS(3), + }, + [178] = { + [sym_sequential] = STATE(820), + [sym_files] = STATE(820), + [sym__pattern] = STATE(820), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(820), + [sym_divOperation] = STATE(820), + [sym_modOperation] = STATE(820), + [sym_addOperation] = STATE(820), + [sym_subOperation] = STATE(820), + [sym_patternAs] = STATE(820), + [sym_patternLimit] = STATE(820), + [sym_assignmentAsPattern] = STATE(820), + [sym_patternAccumulate] = STATE(820), + [sym_patternWhere] = STATE(820), + [sym__literal] = STATE(820), + [sym_patternNot] = STATE(820), + [sym_patternOr] = STATE(820), + [sym_patternOrElse] = STATE(820), + [sym_patternAny] = STATE(820), + [sym_patternAnd] = STATE(820), + [sym_patternMaybe] = STATE(820), + [sym_patternAfter] = STATE(820), + [sym_patternBefore] = STATE(820), + [sym_patternContains] = STATE(820), + [sym_patternIncludes] = STATE(820), + [sym_rewrite] = STATE(820), + [sym_patternIfElse] = STATE(820), + [sym_within] = STATE(820), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(820), + [sym_nodeLike] = STATE(820), + [sym_like] = STATE(820), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(820), + [sym_some] = STATE(820), + [sym_every] = STATE(820), + [sym_regexPattern] = STATE(820), + [sym_log] = STATE(820), + [sym_range] = STATE(820), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(820), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(877), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(877), + [sym_variable] = ACTIONS(263), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(877), + [sym_top] = ACTIONS(877), + [sym_bottom] = ACTIONS(877), + [sym_intConstant] = ACTIONS(877), + [sym_doubleConstant] = ACTIONS(879), + [sym_stringConstant] = ACTIONS(879), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), + [sym_comment] = ACTIONS(3), + }, + [179] = { + [sym_sequential] = STATE(821), + [sym_files] = STATE(821), + [sym__pattern] = STATE(821), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(821), + [sym_divOperation] = STATE(821), + [sym_modOperation] = STATE(821), + [sym_addOperation] = STATE(821), + [sym_subOperation] = STATE(821), + [sym_patternAs] = STATE(821), + [sym_patternLimit] = STATE(821), + [sym_assignmentAsPattern] = STATE(821), + [sym_patternAccumulate] = STATE(821), + [sym_patternWhere] = STATE(821), + [sym__literal] = STATE(821), + [sym_patternNot] = STATE(821), + [sym_patternOr] = STATE(821), + [sym_patternOrElse] = STATE(821), + [sym_patternAny] = STATE(821), + [sym_patternAnd] = STATE(821), + [sym_patternMaybe] = STATE(821), + [sym_patternAfter] = STATE(821), + [sym_patternBefore] = STATE(821), + [sym_patternContains] = STATE(821), + [sym_patternIncludes] = STATE(821), + [sym_rewrite] = STATE(821), + [sym_patternIfElse] = STATE(821), + [sym_within] = STATE(821), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(821), + [sym_nodeLike] = STATE(821), + [sym_like] = STATE(821), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(821), + [sym_some] = STATE(821), + [sym_every] = STATE(821), + [sym_regexPattern] = STATE(821), + [sym_log] = STATE(821), + [sym_range] = STATE(821), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(821), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), [sym_underscore] = ACTIONS(881), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), [sym_booleanConstant] = ACTIONS(881), - [sym_variable] = ACTIONS(73), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -28674,94 +28768,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(881), [sym_top] = ACTIONS(881), [sym_bottom] = ACTIONS(881), [sym_intConstant] = ACTIONS(881), [sym_doubleConstant] = ACTIONS(883), [sym_stringConstant] = ACTIONS(883), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [181] = { - [sym_sequential] = STATE(557), - [sym_files] = STATE(557), - [sym__pattern] = STATE(557), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(557), - [sym_divOperation] = STATE(557), - [sym_modOperation] = STATE(557), - [sym_addOperation] = STATE(557), - [sym_subOperation] = STATE(557), - [sym_patternAs] = STATE(557), - [sym_patternLimit] = STATE(557), - [sym_assignmentAsPattern] = STATE(557), - [sym_patternAccumulate] = STATE(557), - [sym_patternWhere] = STATE(557), - [sym__literal] = STATE(557), - [sym_patternNot] = STATE(557), - [sym_patternOr] = STATE(557), - [sym_patternOrElse] = STATE(557), - [sym_patternAny] = STATE(557), - [sym_patternAnd] = STATE(557), - [sym_patternMaybe] = STATE(557), - [sym_patternAfter] = STATE(557), - [sym_patternBefore] = STATE(557), - [sym_patternContains] = STATE(557), - [sym_patternIncludes] = STATE(557), - [sym_rewrite] = STATE(557), - [sym_patternIfElse] = STATE(557), - [sym_within] = STATE(557), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(557), - [sym_nodeLike] = STATE(557), - [sym_like] = STATE(557), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(557), - [sym_some] = STATE(557), - [sym_every] = STATE(557), - [sym_regexPattern] = STATE(557), - [sym_log] = STATE(557), - [sym_range] = STATE(557), + [180] = { + [sym_sequential] = STATE(822), + [sym_files] = STATE(822), + [sym__pattern] = STATE(822), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(822), + [sym_divOperation] = STATE(822), + [sym_modOperation] = STATE(822), + [sym_addOperation] = STATE(822), + [sym_subOperation] = STATE(822), + [sym_patternAs] = STATE(822), + [sym_patternLimit] = STATE(822), + [sym_assignmentAsPattern] = STATE(822), + [sym_patternAccumulate] = STATE(822), + [sym_patternWhere] = STATE(822), + [sym__literal] = STATE(822), + [sym_patternNot] = STATE(822), + [sym_patternOr] = STATE(822), + [sym_patternOrElse] = STATE(822), + [sym_patternAny] = STATE(822), + [sym_patternAnd] = STATE(822), + [sym_patternMaybe] = STATE(822), + [sym_patternAfter] = STATE(822), + [sym_patternBefore] = STATE(822), + [sym_patternContains] = STATE(822), + [sym_patternIncludes] = STATE(822), + [sym_rewrite] = STATE(822), + [sym_patternIfElse] = STATE(822), + [sym_within] = STATE(822), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(822), + [sym_nodeLike] = STATE(822), + [sym_like] = STATE(822), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(822), + [sym_some] = STATE(822), + [sym_every] = STATE(822), + [sym_regexPattern] = STATE(822), + [sym_log] = STATE(822), + [sym_range] = STATE(822), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(557), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(822), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), [sym_underscore] = ACTIONS(885), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), [sym_booleanConstant] = ACTIONS(885), - [sym_variable] = ACTIONS(73), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -28785,94 +28880,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(885), [sym_top] = ACTIONS(885), [sym_bottom] = ACTIONS(885), [sym_intConstant] = ACTIONS(885), [sym_doubleConstant] = ACTIONS(887), [sym_stringConstant] = ACTIONS(887), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [182] = { - [sym_sequential] = STATE(597), - [sym_files] = STATE(597), - [sym__pattern] = STATE(597), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(597), - [sym_divOperation] = STATE(597), - [sym_modOperation] = STATE(597), - [sym_addOperation] = STATE(597), - [sym_subOperation] = STATE(597), - [sym_patternAs] = STATE(597), - [sym_patternLimit] = STATE(597), - [sym_assignmentAsPattern] = STATE(597), - [sym_patternAccumulate] = STATE(597), - [sym_patternWhere] = STATE(597), - [sym__literal] = STATE(597), - [sym_patternNot] = STATE(597), - [sym_patternOr] = STATE(597), - [sym_patternOrElse] = STATE(597), - [sym_patternAny] = STATE(597), - [sym_patternAnd] = STATE(597), - [sym_patternMaybe] = STATE(597), - [sym_patternAfter] = STATE(597), - [sym_patternBefore] = STATE(597), - [sym_patternContains] = STATE(597), - [sym_patternIncludes] = STATE(597), - [sym_rewrite] = STATE(597), - [sym_patternIfElse] = STATE(597), - [sym_within] = STATE(597), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(597), - [sym_nodeLike] = STATE(597), - [sym_like] = STATE(597), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(597), - [sym_some] = STATE(597), - [sym_every] = STATE(597), - [sym_regexPattern] = STATE(597), - [sym_log] = STATE(597), - [sym_range] = STATE(597), + [181] = { + [sym_sequential] = STATE(823), + [sym_files] = STATE(823), + [sym__pattern] = STATE(823), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(823), + [sym_divOperation] = STATE(823), + [sym_modOperation] = STATE(823), + [sym_addOperation] = STATE(823), + [sym_subOperation] = STATE(823), + [sym_patternAs] = STATE(823), + [sym_patternLimit] = STATE(823), + [sym_assignmentAsPattern] = STATE(823), + [sym_patternAccumulate] = STATE(823), + [sym_patternWhere] = STATE(823), + [sym__literal] = STATE(823), + [sym_patternNot] = STATE(823), + [sym_patternOr] = STATE(823), + [sym_patternOrElse] = STATE(823), + [sym_patternAny] = STATE(823), + [sym_patternAnd] = STATE(823), + [sym_patternMaybe] = STATE(823), + [sym_patternAfter] = STATE(823), + [sym_patternBefore] = STATE(823), + [sym_patternContains] = STATE(823), + [sym_patternIncludes] = STATE(823), + [sym_rewrite] = STATE(823), + [sym_patternIfElse] = STATE(823), + [sym_within] = STATE(823), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(823), + [sym_nodeLike] = STATE(823), + [sym_like] = STATE(823), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(823), + [sym_some] = STATE(823), + [sym_every] = STATE(823), + [sym_regexPattern] = STATE(823), + [sym_log] = STATE(823), + [sym_range] = STATE(823), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(597), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(823), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), [sym_underscore] = ACTIONS(889), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), [sym_booleanConstant] = ACTIONS(889), - [sym_variable] = ACTIONS(73), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -28896,94 +28992,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(889), [sym_top] = ACTIONS(889), [sym_bottom] = ACTIONS(889), [sym_intConstant] = ACTIONS(889), [sym_doubleConstant] = ACTIONS(891), [sym_stringConstant] = ACTIONS(891), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [183] = { - [sym_sequential] = STATE(598), - [sym_files] = STATE(598), - [sym__pattern] = STATE(598), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(598), - [sym_divOperation] = STATE(598), - [sym_modOperation] = STATE(598), - [sym_addOperation] = STATE(598), - [sym_subOperation] = STATE(598), - [sym_patternAs] = STATE(598), - [sym_patternLimit] = STATE(598), - [sym_assignmentAsPattern] = STATE(598), - [sym_patternAccumulate] = STATE(598), - [sym_patternWhere] = STATE(598), - [sym__literal] = STATE(598), - [sym_patternNot] = STATE(598), - [sym_patternOr] = STATE(598), - [sym_patternOrElse] = STATE(598), - [sym_patternAny] = STATE(598), - [sym_patternAnd] = STATE(598), - [sym_patternMaybe] = STATE(598), - [sym_patternAfter] = STATE(598), - [sym_patternBefore] = STATE(598), - [sym_patternContains] = STATE(598), - [sym_patternIncludes] = STATE(598), - [sym_rewrite] = STATE(598), - [sym_patternIfElse] = STATE(598), - [sym_within] = STATE(598), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(598), - [sym_nodeLike] = STATE(598), - [sym_like] = STATE(598), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(598), - [sym_some] = STATE(598), - [sym_every] = STATE(598), - [sym_regexPattern] = STATE(598), - [sym_log] = STATE(598), - [sym_range] = STATE(598), + [182] = { + [sym_sequential] = STATE(824), + [sym_files] = STATE(824), + [sym__pattern] = STATE(824), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(824), + [sym_divOperation] = STATE(824), + [sym_modOperation] = STATE(824), + [sym_addOperation] = STATE(824), + [sym_subOperation] = STATE(824), + [sym_patternAs] = STATE(824), + [sym_patternLimit] = STATE(824), + [sym_assignmentAsPattern] = STATE(824), + [sym_patternAccumulate] = STATE(824), + [sym_patternWhere] = STATE(824), + [sym__literal] = STATE(824), + [sym_patternNot] = STATE(824), + [sym_patternOr] = STATE(824), + [sym_patternOrElse] = STATE(824), + [sym_patternAny] = STATE(824), + [sym_patternAnd] = STATE(824), + [sym_patternMaybe] = STATE(824), + [sym_patternAfter] = STATE(824), + [sym_patternBefore] = STATE(824), + [sym_patternContains] = STATE(824), + [sym_patternIncludes] = STATE(824), + [sym_rewrite] = STATE(824), + [sym_patternIfElse] = STATE(824), + [sym_within] = STATE(824), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(824), + [sym_nodeLike] = STATE(824), + [sym_like] = STATE(824), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(824), + [sym_some] = STATE(824), + [sym_every] = STATE(824), + [sym_regexPattern] = STATE(824), + [sym_log] = STATE(824), + [sym_range] = STATE(824), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(598), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(824), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(895), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(895), - [sym_variable] = ACTIONS(73), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(893), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(893), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -29007,94 +29104,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(895), - [sym_top] = ACTIONS(895), - [sym_bottom] = ACTIONS(895), - [sym_intConstant] = ACTIONS(895), - [sym_doubleConstant] = ACTIONS(897), - [sym_stringConstant] = ACTIONS(897), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(893), + [sym_top] = ACTIONS(893), + [sym_bottom] = ACTIONS(893), + [sym_intConstant] = ACTIONS(893), + [sym_doubleConstant] = ACTIONS(895), + [sym_stringConstant] = ACTIONS(895), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [184] = { - [sym_sequential] = STATE(441), - [sym_files] = STATE(441), - [sym__pattern] = STATE(441), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(441), - [sym_divOperation] = STATE(441), - [sym_modOperation] = STATE(441), - [sym_addOperation] = STATE(441), - [sym_subOperation] = STATE(441), - [sym_patternAs] = STATE(441), - [sym_patternLimit] = STATE(441), - [sym_assignmentAsPattern] = STATE(441), - [sym_patternAccumulate] = STATE(441), - [sym_patternWhere] = STATE(441), - [sym__literal] = STATE(441), - [sym_patternNot] = STATE(441), - [sym_patternOr] = STATE(441), - [sym_patternOrElse] = STATE(441), - [sym_patternAny] = STATE(441), - [sym_patternAnd] = STATE(441), - [sym_patternMaybe] = STATE(441), - [sym_patternAfter] = STATE(441), - [sym_patternBefore] = STATE(441), - [sym_patternContains] = STATE(441), - [sym_patternIncludes] = STATE(441), - [sym_rewrite] = STATE(441), - [sym_patternIfElse] = STATE(441), - [sym_within] = STATE(441), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(441), - [sym_nodeLike] = STATE(441), - [sym_like] = STATE(441), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(441), - [sym_some] = STATE(441), - [sym_every] = STATE(441), - [sym_regexPattern] = STATE(441), - [sym_log] = STATE(441), - [sym_range] = STATE(441), + [183] = { + [sym_sequential] = STATE(825), + [sym_files] = STATE(825), + [sym__pattern] = STATE(825), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(825), + [sym_divOperation] = STATE(825), + [sym_modOperation] = STATE(825), + [sym_addOperation] = STATE(825), + [sym_subOperation] = STATE(825), + [sym_patternAs] = STATE(825), + [sym_patternLimit] = STATE(825), + [sym_assignmentAsPattern] = STATE(825), + [sym_patternAccumulate] = STATE(825), + [sym_patternWhere] = STATE(825), + [sym__literal] = STATE(825), + [sym_patternNot] = STATE(825), + [sym_patternOr] = STATE(825), + [sym_patternOrElse] = STATE(825), + [sym_patternAny] = STATE(825), + [sym_patternAnd] = STATE(825), + [sym_patternMaybe] = STATE(825), + [sym_patternAfter] = STATE(825), + [sym_patternBefore] = STATE(825), + [sym_patternContains] = STATE(825), + [sym_patternIncludes] = STATE(825), + [sym_rewrite] = STATE(825), + [sym_patternIfElse] = STATE(825), + [sym_within] = STATE(825), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(825), + [sym_nodeLike] = STATE(825), + [sym_like] = STATE(825), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(825), + [sym_some] = STATE(825), + [sym_every] = STATE(825), + [sym_regexPattern] = STATE(825), + [sym_log] = STATE(825), + [sym_range] = STATE(825), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(441), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(825), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(901), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(901), - [sym_variable] = ACTIONS(73), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(897), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(897), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -29118,65 +29216,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(901), - [sym_top] = ACTIONS(901), - [sym_bottom] = ACTIONS(901), - [sym_intConstant] = ACTIONS(901), - [sym_doubleConstant] = ACTIONS(903), - [sym_stringConstant] = ACTIONS(903), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(897), + [sym_top] = ACTIONS(897), + [sym_bottom] = ACTIONS(897), + [sym_intConstant] = ACTIONS(897), + [sym_doubleConstant] = ACTIONS(899), + [sym_stringConstant] = ACTIONS(899), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [185] = { - [sym_sequential] = STATE(864), - [sym_files] = STATE(864), - [sym__pattern] = STATE(864), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(864), - [sym_divOperation] = STATE(864), - [sym_modOperation] = STATE(864), - [sym_addOperation] = STATE(864), - [sym_subOperation] = STATE(864), - [sym_patternAs] = STATE(864), - [sym_patternLimit] = STATE(864), - [sym_assignmentAsPattern] = STATE(864), - [sym_patternAccumulate] = STATE(864), - [sym_patternWhere] = STATE(864), - [sym__literal] = STATE(864), - [sym_patternNot] = STATE(864), - [sym_patternOr] = STATE(864), - [sym_patternOrElse] = STATE(864), - [sym_patternAny] = STATE(864), - [sym_patternAnd] = STATE(864), - [sym_patternMaybe] = STATE(864), - [sym_patternAfter] = STATE(864), - [sym_patternBefore] = STATE(864), - [sym_patternContains] = STATE(864), - [sym_patternIncludes] = STATE(864), - [sym_rewrite] = STATE(864), - [sym_patternIfElse] = STATE(864), - [sym_within] = STATE(864), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(864), - [sym_nodeLike] = STATE(864), - [sym_like] = STATE(864), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(864), - [sym_some] = STATE(864), - [sym_every] = STATE(864), - [sym_regexPattern] = STATE(864), - [sym_log] = STATE(864), - [sym_range] = STATE(864), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(864), - [sym_snippetRegex] = STATE(422), + [184] = { + [sym_sequential] = STATE(826), + [sym_files] = STATE(826), + [sym__pattern] = STATE(826), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(826), + [sym_divOperation] = STATE(826), + [sym_modOperation] = STATE(826), + [sym_addOperation] = STATE(826), + [sym_subOperation] = STATE(826), + [sym_patternAs] = STATE(826), + [sym_patternLimit] = STATE(826), + [sym_assignmentAsPattern] = STATE(826), + [sym_patternAccumulate] = STATE(826), + [sym_patternWhere] = STATE(826), + [sym__literal] = STATE(826), + [sym_patternNot] = STATE(826), + [sym_patternOr] = STATE(826), + [sym_patternOrElse] = STATE(826), + [sym_patternAny] = STATE(826), + [sym_patternAnd] = STATE(826), + [sym_patternMaybe] = STATE(826), + [sym_patternAfter] = STATE(826), + [sym_patternBefore] = STATE(826), + [sym_patternContains] = STATE(826), + [sym_patternIncludes] = STATE(826), + [sym_rewrite] = STATE(826), + [sym_patternIfElse] = STATE(826), + [sym_within] = STATE(826), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(826), + [sym_nodeLike] = STATE(826), + [sym_like] = STATE(826), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(826), + [sym_some] = STATE(826), + [sym_every] = STATE(826), + [sym_regexPattern] = STATE(826), + [sym_log] = STATE(826), + [sym_range] = STATE(826), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(826), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -29201,10 +29300,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(905), + [sym_underscore] = ACTIONS(901), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(905), + [sym_booleanConstant] = ACTIONS(901), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -29229,65 +29328,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(905), - [sym_top] = ACTIONS(905), - [sym_bottom] = ACTIONS(905), - [sym_intConstant] = ACTIONS(905), - [sym_doubleConstant] = ACTIONS(907), - [sym_stringConstant] = ACTIONS(907), + [sym_undefined] = ACTIONS(901), + [sym_top] = ACTIONS(901), + [sym_bottom] = ACTIONS(901), + [sym_intConstant] = ACTIONS(901), + [sym_doubleConstant] = ACTIONS(903), + [sym_stringConstant] = ACTIONS(903), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, - [186] = { - [sym_sequential] = STATE(710), - [sym_files] = STATE(710), - [sym__pattern] = STATE(710), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(710), - [sym_divOperation] = STATE(710), - [sym_modOperation] = STATE(710), - [sym_addOperation] = STATE(710), - [sym_subOperation] = STATE(710), - [sym_patternAs] = STATE(710), - [sym_patternLimit] = STATE(710), - [sym_assignmentAsPattern] = STATE(710), - [sym_patternAccumulate] = STATE(710), - [sym_patternWhere] = STATE(710), - [sym__literal] = STATE(710), - [sym_patternNot] = STATE(710), - [sym_patternOr] = STATE(710), - [sym_patternOrElse] = STATE(710), - [sym_patternAny] = STATE(710), - [sym_patternAnd] = STATE(710), - [sym_patternMaybe] = STATE(710), - [sym_patternAfter] = STATE(710), - [sym_patternBefore] = STATE(710), - [sym_patternContains] = STATE(710), - [sym_patternIncludes] = STATE(710), - [sym_rewrite] = STATE(710), - [sym_patternIfElse] = STATE(710), - [sym_within] = STATE(710), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(710), - [sym_nodeLike] = STATE(710), - [sym_like] = STATE(710), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(710), - [sym_some] = STATE(710), - [sym_every] = STATE(710), - [sym_regexPattern] = STATE(710), - [sym_log] = STATE(710), - [sym_range] = STATE(710), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(710), - [sym_snippetRegex] = STATE(422), + [185] = { + [sym_sequential] = STATE(827), + [sym_files] = STATE(827), + [sym__pattern] = STATE(827), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(827), + [sym_divOperation] = STATE(827), + [sym_modOperation] = STATE(827), + [sym_addOperation] = STATE(827), + [sym_subOperation] = STATE(827), + [sym_patternAs] = STATE(827), + [sym_patternLimit] = STATE(827), + [sym_assignmentAsPattern] = STATE(827), + [sym_patternAccumulate] = STATE(827), + [sym_patternWhere] = STATE(827), + [sym__literal] = STATE(827), + [sym_patternNot] = STATE(827), + [sym_patternOr] = STATE(827), + [sym_patternOrElse] = STATE(827), + [sym_patternAny] = STATE(827), + [sym_patternAnd] = STATE(827), + [sym_patternMaybe] = STATE(827), + [sym_patternAfter] = STATE(827), + [sym_patternBefore] = STATE(827), + [sym_patternContains] = STATE(827), + [sym_patternIncludes] = STATE(827), + [sym_rewrite] = STATE(827), + [sym_patternIfElse] = STATE(827), + [sym_within] = STATE(827), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(827), + [sym_nodeLike] = STATE(827), + [sym_like] = STATE(827), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(827), + [sym_some] = STATE(827), + [sym_every] = STATE(827), + [sym_regexPattern] = STATE(827), + [sym_log] = STATE(827), + [sym_range] = STATE(827), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(827), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -29312,10 +29412,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(909), + [sym_underscore] = ACTIONS(905), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(909), + [sym_booleanConstant] = ACTIONS(905), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -29340,65 +29440,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(909), - [sym_top] = ACTIONS(909), - [sym_bottom] = ACTIONS(909), - [sym_intConstant] = ACTIONS(909), - [sym_doubleConstant] = ACTIONS(911), - [sym_stringConstant] = ACTIONS(911), + [sym_undefined] = ACTIONS(905), + [sym_top] = ACTIONS(905), + [sym_bottom] = ACTIONS(905), + [sym_intConstant] = ACTIONS(905), + [sym_doubleConstant] = ACTIONS(907), + [sym_stringConstant] = ACTIONS(907), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, + [186] = { + [sym_sequential] = STATE(396), + [sym_files] = STATE(396), + [sym__pattern] = STATE(396), + [sym__container] = STATE(1201), + [sym_mulOperation] = STATE(396), + [sym_divOperation] = STATE(396), + [sym_modOperation] = STATE(396), + [sym_addOperation] = STATE(396), + [sym_subOperation] = STATE(396), + [sym_patternAs] = STATE(396), + [sym_patternLimit] = STATE(396), + [sym_assignmentAsPattern] = STATE(396), + [sym_patternAccumulate] = STATE(396), + [sym_patternWhere] = STATE(396), + [sym__literal] = STATE(396), + [sym_patternNot] = STATE(396), + [sym_patternOr] = STATE(396), + [sym_patternOrElse] = STATE(396), + [sym_patternAny] = STATE(396), + [sym_patternAnd] = STATE(396), + [sym_patternMaybe] = STATE(396), + [sym_patternAfter] = STATE(396), + [sym_patternBefore] = STATE(396), + [sym_patternContains] = STATE(396), + [sym_patternIncludes] = STATE(396), + [sym_rewrite] = STATE(396), + [sym_patternIfElse] = STATE(396), + [sym_within] = STATE(396), + [sym__bubbleScope] = STATE(108), + [sym_bubble] = STATE(396), + [sym_nodeLike] = STATE(396), + [sym_like] = STATE(396), + [sym_map] = STATE(342), + [sym_mapAccessor] = STATE(310), + [sym_list] = STATE(346), + [sym_listIndex] = STATE(310), + [sym_dot] = STATE(396), + [sym_some] = STATE(396), + [sym_every] = STATE(396), + [sym_regexPattern] = STATE(396), + [sym_log] = STATE(396), + [sym_range] = STATE(396), + [sym_languageName] = STATE(1449), + [sym_languageSpecificSnippet] = STATE(595), + [sym_codeSnippet] = STATE(396), + [sym_snippetRegex] = STATE(334), + [sym_name] = ACTIONS(7), + [anon_sym_sequential] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_multifile] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_not] = ACTIONS(23), + [anon_sym_or] = ACTIONS(25), + [anon_sym_orelse] = ACTIONS(27), + [anon_sym_any] = ACTIONS(29), + [anon_sym_and] = ACTIONS(31), + [anon_sym_maybe] = ACTIONS(33), + [anon_sym_after] = ACTIONS(35), + [anon_sym_before] = ACTIONS(37), + [anon_sym_contains] = ACTIONS(39), + [anon_sym_includes] = ACTIONS(41), + [anon_sym_if] = ACTIONS(43), + [anon_sym_within] = ACTIONS(45), + [anon_sym_bubble] = ACTIONS(47), + [anon_sym_like] = ACTIONS(49), + [anon_sym_DOT] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_some] = ACTIONS(55), + [anon_sym_every] = ACTIONS(57), + [sym_underscore] = ACTIONS(911), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_range_LPAREN] = ACTIONS(71), + [sym_booleanConstant] = ACTIONS(911), + [sym_variable] = ACTIONS(73), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(77), + [sym_rawBacktickSnippet] = ACTIONS(77), + [sym_undefined] = ACTIONS(911), + [sym_top] = ACTIONS(911), + [sym_bottom] = ACTIONS(911), + [sym_intConstant] = ACTIONS(911), + [sym_doubleConstant] = ACTIONS(913), + [sym_stringConstant] = ACTIONS(913), + [sym_regex] = ACTIONS(81), + [anon_sym_r] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + }, [187] = { - [sym_sequential] = STATE(862), - [sym_files] = STATE(862), - [sym__pattern] = STATE(862), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(862), - [sym_divOperation] = STATE(862), - [sym_modOperation] = STATE(862), - [sym_addOperation] = STATE(862), - [sym_subOperation] = STATE(862), - [sym_patternAs] = STATE(862), - [sym_patternLimit] = STATE(862), - [sym_assignmentAsPattern] = STATE(862), - [sym_patternAccumulate] = STATE(862), - [sym_patternWhere] = STATE(862), - [sym__literal] = STATE(862), - [sym_patternNot] = STATE(862), - [sym_patternOr] = STATE(862), - [sym_patternOrElse] = STATE(862), - [sym_patternAny] = STATE(862), - [sym_patternAnd] = STATE(862), - [sym_patternMaybe] = STATE(862), - [sym_patternAfter] = STATE(862), - [sym_patternBefore] = STATE(862), - [sym_patternContains] = STATE(862), - [sym_patternIncludes] = STATE(862), - [sym_rewrite] = STATE(862), - [sym_patternIfElse] = STATE(862), - [sym_within] = STATE(862), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(862), - [sym_nodeLike] = STATE(862), - [sym_like] = STATE(862), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(862), - [sym_some] = STATE(862), - [sym_every] = STATE(862), - [sym_regexPattern] = STATE(862), - [sym_log] = STATE(862), - [sym_range] = STATE(862), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(862), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(894), + [sym_files] = STATE(894), + [sym__pattern] = STATE(894), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(894), + [sym_divOperation] = STATE(894), + [sym_modOperation] = STATE(894), + [sym_addOperation] = STATE(894), + [sym_subOperation] = STATE(894), + [sym_patternAs] = STATE(894), + [sym_patternLimit] = STATE(894), + [sym_assignmentAsPattern] = STATE(894), + [sym_patternAccumulate] = STATE(894), + [sym_patternWhere] = STATE(894), + [sym__literal] = STATE(894), + [sym_patternNot] = STATE(894), + [sym_patternOr] = STATE(894), + [sym_patternOrElse] = STATE(894), + [sym_patternAny] = STATE(894), + [sym_patternAnd] = STATE(894), + [sym_patternMaybe] = STATE(894), + [sym_patternAfter] = STATE(894), + [sym_patternBefore] = STATE(894), + [sym_patternContains] = STATE(894), + [sym_patternIncludes] = STATE(894), + [sym_rewrite] = STATE(894), + [sym_patternIfElse] = STATE(894), + [sym_within] = STATE(894), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(894), + [sym_nodeLike] = STATE(894), + [sym_like] = STATE(894), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(894), + [sym_some] = STATE(894), + [sym_every] = STATE(894), + [sym_regexPattern] = STATE(894), + [sym_log] = STATE(894), + [sym_range] = STATE(894), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(894), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -29423,10 +29636,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(913), + [sym_underscore] = ACTIONS(915), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(913), + [sym_booleanConstant] = ACTIONS(915), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -29451,65 +29664,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(913), - [sym_top] = ACTIONS(913), - [sym_bottom] = ACTIONS(913), - [sym_intConstant] = ACTIONS(913), - [sym_doubleConstant] = ACTIONS(915), - [sym_stringConstant] = ACTIONS(915), + [sym_undefined] = ACTIONS(915), + [sym_top] = ACTIONS(915), + [sym_bottom] = ACTIONS(915), + [sym_intConstant] = ACTIONS(915), + [sym_doubleConstant] = ACTIONS(917), + [sym_stringConstant] = ACTIONS(917), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [188] = { - [sym_sequential] = STATE(897), - [sym_files] = STATE(897), - [sym__pattern] = STATE(897), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(897), - [sym_divOperation] = STATE(897), - [sym_modOperation] = STATE(897), - [sym_addOperation] = STATE(897), - [sym_subOperation] = STATE(897), - [sym_patternAs] = STATE(897), - [sym_patternLimit] = STATE(897), - [sym_assignmentAsPattern] = STATE(897), - [sym_patternAccumulate] = STATE(897), - [sym_patternWhere] = STATE(897), - [sym__literal] = STATE(897), - [sym_patternNot] = STATE(897), - [sym_patternOr] = STATE(897), - [sym_patternOrElse] = STATE(897), - [sym_patternAny] = STATE(897), - [sym_patternAnd] = STATE(897), - [sym_patternMaybe] = STATE(897), - [sym_patternAfter] = STATE(897), - [sym_patternBefore] = STATE(897), - [sym_patternContains] = STATE(897), - [sym_patternIncludes] = STATE(897), - [sym_rewrite] = STATE(897), - [sym_patternIfElse] = STATE(897), - [sym_within] = STATE(897), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(897), - [sym_nodeLike] = STATE(897), - [sym_like] = STATE(897), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(897), - [sym_some] = STATE(897), - [sym_every] = STATE(897), - [sym_regexPattern] = STATE(897), - [sym_log] = STATE(897), - [sym_range] = STATE(897), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(897), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(865), + [sym_files] = STATE(865), + [sym__pattern] = STATE(865), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(865), + [sym_divOperation] = STATE(865), + [sym_modOperation] = STATE(865), + [sym_addOperation] = STATE(865), + [sym_subOperation] = STATE(865), + [sym_patternAs] = STATE(865), + [sym_patternLimit] = STATE(865), + [sym_assignmentAsPattern] = STATE(865), + [sym_patternAccumulate] = STATE(865), + [sym_patternWhere] = STATE(865), + [sym__literal] = STATE(865), + [sym_patternNot] = STATE(865), + [sym_patternOr] = STATE(865), + [sym_patternOrElse] = STATE(865), + [sym_patternAny] = STATE(865), + [sym_patternAnd] = STATE(865), + [sym_patternMaybe] = STATE(865), + [sym_patternAfter] = STATE(865), + [sym_patternBefore] = STATE(865), + [sym_patternContains] = STATE(865), + [sym_patternIncludes] = STATE(865), + [sym_rewrite] = STATE(865), + [sym_patternIfElse] = STATE(865), + [sym_within] = STATE(865), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(865), + [sym_nodeLike] = STATE(865), + [sym_like] = STATE(865), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(865), + [sym_some] = STATE(865), + [sym_every] = STATE(865), + [sym_regexPattern] = STATE(865), + [sym_log] = STATE(865), + [sym_range] = STATE(865), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(865), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -29534,10 +29748,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(917), + [sym_underscore] = ACTIONS(919), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(917), + [sym_booleanConstant] = ACTIONS(919), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -29562,94 +29776,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(917), - [sym_top] = ACTIONS(917), - [sym_bottom] = ACTIONS(917), - [sym_intConstant] = ACTIONS(917), - [sym_doubleConstant] = ACTIONS(919), - [sym_stringConstant] = ACTIONS(919), + [sym_undefined] = ACTIONS(919), + [sym_top] = ACTIONS(919), + [sym_bottom] = ACTIONS(919), + [sym_intConstant] = ACTIONS(919), + [sym_doubleConstant] = ACTIONS(921), + [sym_stringConstant] = ACTIONS(921), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [189] = { - [sym_sequential] = STATE(560), - [sym_files] = STATE(560), - [sym__pattern] = STATE(560), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(560), - [sym_divOperation] = STATE(560), - [sym_modOperation] = STATE(560), - [sym_addOperation] = STATE(560), - [sym_subOperation] = STATE(560), - [sym_patternAs] = STATE(560), - [sym_patternLimit] = STATE(560), - [sym_assignmentAsPattern] = STATE(560), - [sym_patternAccumulate] = STATE(560), - [sym_patternWhere] = STATE(560), - [sym__literal] = STATE(560), - [sym_patternNot] = STATE(560), - [sym_patternOr] = STATE(560), - [sym_patternOrElse] = STATE(560), - [sym_patternAny] = STATE(560), - [sym_patternAnd] = STATE(560), - [sym_patternMaybe] = STATE(560), - [sym_patternAfter] = STATE(560), - [sym_patternBefore] = STATE(560), - [sym_patternContains] = STATE(560), - [sym_patternIncludes] = STATE(560), - [sym_rewrite] = STATE(560), - [sym_patternIfElse] = STATE(560), - [sym_within] = STATE(560), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(560), - [sym_nodeLike] = STATE(560), - [sym_like] = STATE(560), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(560), - [sym_some] = STATE(560), - [sym_every] = STATE(560), - [sym_regexPattern] = STATE(560), - [sym_log] = STATE(560), - [sym_range] = STATE(560), + [sym_sequential] = STATE(866), + [sym_files] = STATE(866), + [sym__pattern] = STATE(866), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(866), + [sym_divOperation] = STATE(866), + [sym_modOperation] = STATE(866), + [sym_addOperation] = STATE(866), + [sym_subOperation] = STATE(866), + [sym_patternAs] = STATE(866), + [sym_patternLimit] = STATE(866), + [sym_assignmentAsPattern] = STATE(866), + [sym_patternAccumulate] = STATE(866), + [sym_patternWhere] = STATE(866), + [sym__literal] = STATE(866), + [sym_patternNot] = STATE(866), + [sym_patternOr] = STATE(866), + [sym_patternOrElse] = STATE(866), + [sym_patternAny] = STATE(866), + [sym_patternAnd] = STATE(866), + [sym_patternMaybe] = STATE(866), + [sym_patternAfter] = STATE(866), + [sym_patternBefore] = STATE(866), + [sym_patternContains] = STATE(866), + [sym_patternIncludes] = STATE(866), + [sym_rewrite] = STATE(866), + [sym_patternIfElse] = STATE(866), + [sym_within] = STATE(866), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(866), + [sym_nodeLike] = STATE(866), + [sym_like] = STATE(866), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(866), + [sym_some] = STATE(866), + [sym_every] = STATE(866), + [sym_regexPattern] = STATE(866), + [sym_log] = STATE(866), + [sym_range] = STATE(866), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(560), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(866), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(921), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(921), - [sym_variable] = ACTIONS(73), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(923), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(923), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -29673,94 +29888,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(921), - [sym_top] = ACTIONS(921), - [sym_bottom] = ACTIONS(921), - [sym_intConstant] = ACTIONS(921), - [sym_doubleConstant] = ACTIONS(923), - [sym_stringConstant] = ACTIONS(923), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(923), + [sym_top] = ACTIONS(923), + [sym_bottom] = ACTIONS(923), + [sym_intConstant] = ACTIONS(923), + [sym_doubleConstant] = ACTIONS(925), + [sym_stringConstant] = ACTIONS(925), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [190] = { - [sym_sequential] = STATE(599), - [sym_files] = STATE(599), - [sym__pattern] = STATE(599), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(599), - [sym_divOperation] = STATE(599), - [sym_modOperation] = STATE(599), - [sym_addOperation] = STATE(599), - [sym_subOperation] = STATE(599), - [sym_patternAs] = STATE(599), - [sym_patternLimit] = STATE(599), - [sym_assignmentAsPattern] = STATE(599), - [sym_patternAccumulate] = STATE(599), - [sym_patternWhere] = STATE(599), - [sym__literal] = STATE(599), - [sym_patternNot] = STATE(599), - [sym_patternOr] = STATE(599), - [sym_patternOrElse] = STATE(599), - [sym_patternAny] = STATE(599), - [sym_patternAnd] = STATE(599), - [sym_patternMaybe] = STATE(599), - [sym_patternAfter] = STATE(599), - [sym_patternBefore] = STATE(599), - [sym_patternContains] = STATE(599), - [sym_patternIncludes] = STATE(599), - [sym_rewrite] = STATE(599), - [sym_patternIfElse] = STATE(599), - [sym_within] = STATE(599), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(599), - [sym_nodeLike] = STATE(599), - [sym_like] = STATE(599), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(599), - [sym_some] = STATE(599), - [sym_every] = STATE(599), - [sym_regexPattern] = STATE(599), - [sym_log] = STATE(599), - [sym_range] = STATE(599), + [sym_sequential] = STATE(859), + [sym_files] = STATE(859), + [sym__pattern] = STATE(859), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(859), + [sym_divOperation] = STATE(859), + [sym_modOperation] = STATE(859), + [sym_addOperation] = STATE(859), + [sym_subOperation] = STATE(859), + [sym_patternAs] = STATE(859), + [sym_patternLimit] = STATE(859), + [sym_assignmentAsPattern] = STATE(859), + [sym_patternAccumulate] = STATE(859), + [sym_patternWhere] = STATE(859), + [sym__literal] = STATE(859), + [sym_patternNot] = STATE(859), + [sym_patternOr] = STATE(859), + [sym_patternOrElse] = STATE(859), + [sym_patternAny] = STATE(859), + [sym_patternAnd] = STATE(859), + [sym_patternMaybe] = STATE(859), + [sym_patternAfter] = STATE(859), + [sym_patternBefore] = STATE(859), + [sym_patternContains] = STATE(859), + [sym_patternIncludes] = STATE(859), + [sym_rewrite] = STATE(859), + [sym_patternIfElse] = STATE(859), + [sym_within] = STATE(859), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(859), + [sym_nodeLike] = STATE(859), + [sym_like] = STATE(859), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(859), + [sym_some] = STATE(859), + [sym_every] = STATE(859), + [sym_regexPattern] = STATE(859), + [sym_log] = STATE(859), + [sym_range] = STATE(859), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(599), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(859), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(925), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(925), - [sym_variable] = ACTIONS(73), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(927), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(927), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -29784,94 +30000,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(925), - [sym_top] = ACTIONS(925), - [sym_bottom] = ACTIONS(925), - [sym_intConstant] = ACTIONS(925), - [sym_doubleConstant] = ACTIONS(927), - [sym_stringConstant] = ACTIONS(927), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(927), + [sym_top] = ACTIONS(927), + [sym_bottom] = ACTIONS(927), + [sym_intConstant] = ACTIONS(927), + [sym_doubleConstant] = ACTIONS(929), + [sym_stringConstant] = ACTIONS(929), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [191] = { - [sym_sequential] = STATE(566), - [sym_files] = STATE(566), - [sym__pattern] = STATE(566), - [sym__container] = STATE(1032), - [sym_mulOperation] = STATE(566), - [sym_divOperation] = STATE(566), - [sym_modOperation] = STATE(566), - [sym_addOperation] = STATE(566), - [sym_subOperation] = STATE(566), - [sym_patternAs] = STATE(566), - [sym_patternLimit] = STATE(566), - [sym_assignmentAsPattern] = STATE(566), - [sym_patternAccumulate] = STATE(566), - [sym_patternWhere] = STATE(566), - [sym__literal] = STATE(566), - [sym_patternNot] = STATE(566), - [sym_patternOr] = STATE(566), - [sym_patternOrElse] = STATE(566), - [sym_patternAny] = STATE(566), - [sym_patternAnd] = STATE(566), - [sym_patternMaybe] = STATE(566), - [sym_patternAfter] = STATE(566), - [sym_patternBefore] = STATE(566), - [sym_patternContains] = STATE(566), - [sym_patternIncludes] = STATE(566), - [sym_rewrite] = STATE(566), - [sym_patternIfElse] = STATE(566), - [sym_within] = STATE(566), - [sym__bubbleScope] = STATE(119), - [sym_bubble] = STATE(566), - [sym_nodeLike] = STATE(566), - [sym_like] = STATE(566), - [sym_map] = STATE(338), - [sym_mapAccessor] = STATE(322), - [sym_list] = STATE(339), - [sym_listIndex] = STATE(322), - [sym_dot] = STATE(566), - [sym_some] = STATE(566), - [sym_every] = STATE(566), - [sym_regexPattern] = STATE(566), - [sym_log] = STATE(566), - [sym_range] = STATE(566), + [sym_sequential] = STATE(899), + [sym_files] = STATE(899), + [sym__pattern] = STATE(899), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(899), + [sym_divOperation] = STATE(899), + [sym_modOperation] = STATE(899), + [sym_addOperation] = STATE(899), + [sym_subOperation] = STATE(899), + [sym_patternAs] = STATE(899), + [sym_patternLimit] = STATE(899), + [sym_assignmentAsPattern] = STATE(899), + [sym_patternAccumulate] = STATE(899), + [sym_patternWhere] = STATE(899), + [sym__literal] = STATE(899), + [sym_patternNot] = STATE(899), + [sym_patternOr] = STATE(899), + [sym_patternOrElse] = STATE(899), + [sym_patternAny] = STATE(899), + [sym_patternAnd] = STATE(899), + [sym_patternMaybe] = STATE(899), + [sym_patternAfter] = STATE(899), + [sym_patternBefore] = STATE(899), + [sym_patternContains] = STATE(899), + [sym_patternIncludes] = STATE(899), + [sym_rewrite] = STATE(899), + [sym_patternIfElse] = STATE(899), + [sym_within] = STATE(899), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(899), + [sym_nodeLike] = STATE(899), + [sym_like] = STATE(899), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(899), + [sym_some] = STATE(899), + [sym_every] = STATE(899), + [sym_regexPattern] = STATE(899), + [sym_log] = STATE(899), + [sym_range] = STATE(899), [sym_languageName] = STATE(1412), - [sym_languageSpecificSnippet] = STATE(601), - [sym_codeSnippet] = STATE(566), - [sym_snippetRegex] = STATE(334), - [sym_name] = ACTIONS(7), - [anon_sym_sequential] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_multifile] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_not] = ACTIONS(23), - [anon_sym_or] = ACTIONS(25), - [anon_sym_orelse] = ACTIONS(27), - [anon_sym_any] = ACTIONS(29), - [anon_sym_and] = ACTIONS(31), - [anon_sym_maybe] = ACTIONS(33), - [anon_sym_after] = ACTIONS(35), - [anon_sym_before] = ACTIONS(37), - [anon_sym_contains] = ACTIONS(39), - [anon_sym_includes] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_within] = ACTIONS(45), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(899), + [sym_snippetRegex] = STATE(520), + [sym_name] = ACTIONS(207), + [anon_sym_sequential] = ACTIONS(209), + [anon_sym_LBRACE] = ACTIONS(211), + [anon_sym_multifile] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(217), + [anon_sym_not] = ACTIONS(219), + [anon_sym_or] = ACTIONS(221), + [anon_sym_orelse] = ACTIONS(223), + [anon_sym_any] = ACTIONS(225), + [anon_sym_and] = ACTIONS(227), + [anon_sym_maybe] = ACTIONS(229), + [anon_sym_after] = ACTIONS(231), + [anon_sym_before] = ACTIONS(233), + [anon_sym_contains] = ACTIONS(235), + [anon_sym_includes] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_within] = ACTIONS(241), [anon_sym_bubble] = ACTIONS(47), - [anon_sym_like] = ACTIONS(49), - [anon_sym_DOT] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_some] = ACTIONS(55), - [anon_sym_every] = ACTIONS(57), - [sym_underscore] = ACTIONS(929), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_range_LPAREN] = ACTIONS(71), - [sym_booleanConstant] = ACTIONS(929), - [sym_variable] = ACTIONS(73), + [anon_sym_like] = ACTIONS(243), + [anon_sym_DOT] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_some] = ACTIONS(251), + [anon_sym_every] = ACTIONS(253), + [sym_underscore] = ACTIONS(931), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_range_LPAREN] = ACTIONS(261), + [sym_booleanConstant] = ACTIONS(931), + [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -29895,65 +30112,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(77), - [sym_rawBacktickSnippet] = ACTIONS(77), - [sym_undefined] = ACTIONS(929), - [sym_top] = ACTIONS(929), - [sym_bottom] = ACTIONS(929), - [sym_intConstant] = ACTIONS(929), - [sym_doubleConstant] = ACTIONS(931), - [sym_stringConstant] = ACTIONS(931), - [sym_regex] = ACTIONS(81), - [anon_sym_r] = ACTIONS(83), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(931), + [sym_top] = ACTIONS(931), + [sym_bottom] = ACTIONS(931), + [sym_intConstant] = ACTIONS(931), + [sym_doubleConstant] = ACTIONS(933), + [sym_stringConstant] = ACTIONS(933), + [sym_regex] = ACTIONS(269), + [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [192] = { - [sym_sequential] = STATE(894), - [sym_files] = STATE(894), - [sym__pattern] = STATE(894), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(894), - [sym_divOperation] = STATE(894), - [sym_modOperation] = STATE(894), - [sym_addOperation] = STATE(894), - [sym_subOperation] = STATE(894), - [sym_patternAs] = STATE(894), - [sym_patternLimit] = STATE(894), - [sym_assignmentAsPattern] = STATE(894), - [sym_patternAccumulate] = STATE(894), - [sym_patternWhere] = STATE(894), - [sym__literal] = STATE(894), - [sym_patternNot] = STATE(894), - [sym_patternOr] = STATE(894), - [sym_patternOrElse] = STATE(894), - [sym_patternAny] = STATE(894), - [sym_patternAnd] = STATE(894), - [sym_patternMaybe] = STATE(894), - [sym_patternAfter] = STATE(894), - [sym_patternBefore] = STATE(894), - [sym_patternContains] = STATE(894), - [sym_patternIncludes] = STATE(894), - [sym_rewrite] = STATE(894), - [sym_patternIfElse] = STATE(894), - [sym_within] = STATE(894), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(894), - [sym_nodeLike] = STATE(894), - [sym_like] = STATE(894), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(894), - [sym_some] = STATE(894), - [sym_every] = STATE(894), - [sym_regexPattern] = STATE(894), - [sym_log] = STATE(894), - [sym_range] = STATE(894), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(894), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(906), + [sym_files] = STATE(906), + [sym__pattern] = STATE(906), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(906), + [sym_divOperation] = STATE(906), + [sym_modOperation] = STATE(906), + [sym_addOperation] = STATE(906), + [sym_subOperation] = STATE(906), + [sym_patternAs] = STATE(906), + [sym_patternLimit] = STATE(906), + [sym_assignmentAsPattern] = STATE(906), + [sym_patternAccumulate] = STATE(906), + [sym_patternWhere] = STATE(906), + [sym__literal] = STATE(906), + [sym_patternNot] = STATE(906), + [sym_patternOr] = STATE(906), + [sym_patternOrElse] = STATE(906), + [sym_patternAny] = STATE(906), + [sym_patternAnd] = STATE(906), + [sym_patternMaybe] = STATE(906), + [sym_patternAfter] = STATE(906), + [sym_patternBefore] = STATE(906), + [sym_patternContains] = STATE(906), + [sym_patternIncludes] = STATE(906), + [sym_rewrite] = STATE(906), + [sym_patternIfElse] = STATE(906), + [sym_within] = STATE(906), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(906), + [sym_nodeLike] = STATE(906), + [sym_like] = STATE(906), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(906), + [sym_some] = STATE(906), + [sym_every] = STATE(906), + [sym_regexPattern] = STATE(906), + [sym_log] = STATE(906), + [sym_range] = STATE(906), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(906), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -29978,10 +30196,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(247), [anon_sym_some] = ACTIONS(251), [anon_sym_every] = ACTIONS(253), - [sym_underscore] = ACTIONS(933), + [sym_underscore] = ACTIONS(935), [anon_sym_log_LPAREN] = ACTIONS(259), [anon_sym_range_LPAREN] = ACTIONS(261), - [sym_booleanConstant] = ACTIONS(933), + [sym_booleanConstant] = ACTIONS(935), [sym_variable] = ACTIONS(263), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), @@ -30006,68 +30224,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(933), - [sym_top] = ACTIONS(933), - [sym_bottom] = ACTIONS(933), - [sym_intConstant] = ACTIONS(933), - [sym_doubleConstant] = ACTIONS(935), - [sym_stringConstant] = ACTIONS(935), + [sym_undefined] = ACTIONS(935), + [sym_top] = ACTIONS(935), + [sym_bottom] = ACTIONS(935), + [sym_intConstant] = ACTIONS(935), + [sym_doubleConstant] = ACTIONS(937), + [sym_stringConstant] = ACTIONS(937), [sym_regex] = ACTIONS(269), [anon_sym_r] = ACTIONS(271), [sym_comment] = ACTIONS(3), }, [193] = { - [sym_sequential] = STATE(740), - [sym_files] = STATE(740), - [sym__pattern] = STATE(740), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(740), - [sym_divOperation] = STATE(740), - [sym_modOperation] = STATE(740), - [sym_addOperation] = STATE(740), - [sym_subOperation] = STATE(740), - [sym_patternAs] = STATE(740), - [sym_patternLimit] = STATE(740), - [sym_assignmentAsPattern] = STATE(740), - [sym_patternAccumulate] = STATE(740), - [sym_patternWhere] = STATE(740), - [sym__literal] = STATE(740), - [sym_patternNot] = STATE(740), - [sym_patternOr] = STATE(740), - [sym_patternOrElse] = STATE(740), - [sym_patternAny] = STATE(740), - [sym_patternAnd] = STATE(740), - [sym_patternMaybe] = STATE(740), - [sym_patternAfter] = STATE(740), - [sym_patternBefore] = STATE(740), - [sym_patternContains] = STATE(740), - [sym_patternIncludes] = STATE(740), - [sym_rewrite] = STATE(740), - [sym_patternIfElse] = STATE(740), - [sym_within] = STATE(740), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(740), - [sym_nodeLike] = STATE(740), - [sym_like] = STATE(740), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(740), - [sym_some] = STATE(740), - [sym_every] = STATE(740), - [sym_regexPattern] = STATE(740), - [sym_log] = STATE(740), - [sym_range] = STATE(740), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(740), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(885), + [sym_files] = STATE(885), + [sym__pattern] = STATE(885), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(885), + [sym_divOperation] = STATE(885), + [sym_modOperation] = STATE(885), + [sym_addOperation] = STATE(885), + [sym_subOperation] = STATE(885), + [sym_patternAs] = STATE(885), + [sym_patternLimit] = STATE(885), + [sym_assignmentAsPattern] = STATE(885), + [sym_patternAccumulate] = STATE(885), + [sym_patternWhere] = STATE(885), + [sym__literal] = STATE(885), + [sym_patternNot] = STATE(885), + [sym_patternOr] = STATE(885), + [sym_patternOrElse] = STATE(885), + [sym_patternAny] = STATE(885), + [sym_patternAnd] = STATE(885), + [sym_patternMaybe] = STATE(885), + [sym_patternAfter] = STATE(885), + [sym_patternBefore] = STATE(885), + [sym_patternContains] = STATE(885), + [sym_patternIncludes] = STATE(885), + [sym_rewrite] = STATE(885), + [sym_patternIfElse] = STATE(885), + [sym_within] = STATE(885), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(885), + [sym_nodeLike] = STATE(885), + [sym_like] = STATE(885), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(885), + [sym_some] = STATE(885), + [sym_every] = STATE(885), + [sym_regexPattern] = STATE(885), + [sym_log] = STATE(885), + [sym_range] = STATE(885), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(885), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(211), [anon_sym_multifile] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(217), @@ -30117,6 +30336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(939), @@ -30130,52 +30350,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [194] = { - [sym_sequential] = STATE(908), - [sym_files] = STATE(908), - [sym__pattern] = STATE(908), - [sym__container] = STATE(1146), - [sym_mulOperation] = STATE(908), - [sym_divOperation] = STATE(908), - [sym_modOperation] = STATE(908), - [sym_addOperation] = STATE(908), - [sym_subOperation] = STATE(908), - [sym_patternAs] = STATE(908), - [sym_patternLimit] = STATE(908), - [sym_assignmentAsPattern] = STATE(908), - [sym_patternAccumulate] = STATE(908), - [sym_patternWhere] = STATE(908), - [sym__literal] = STATE(908), - [sym_patternNot] = STATE(908), - [sym_patternOr] = STATE(908), - [sym_patternOrElse] = STATE(908), - [sym_patternAny] = STATE(908), - [sym_patternAnd] = STATE(908), - [sym_patternMaybe] = STATE(908), - [sym_patternAfter] = STATE(908), - [sym_patternBefore] = STATE(908), - [sym_patternContains] = STATE(908), - [sym_patternIncludes] = STATE(908), - [sym_rewrite] = STATE(908), - [sym_patternIfElse] = STATE(908), - [sym_within] = STATE(908), - [sym__bubbleScope] = STATE(121), - [sym_bubble] = STATE(908), - [sym_nodeLike] = STATE(908), - [sym_like] = STATE(908), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(330), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(330), - [sym_dot] = STATE(908), - [sym_some] = STATE(908), - [sym_every] = STATE(908), - [sym_regexPattern] = STATE(908), - [sym_log] = STATE(908), - [sym_range] = STATE(908), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(908), - [sym_snippetRegex] = STATE(422), + [sym_sequential] = STATE(883), + [sym_files] = STATE(883), + [sym__pattern] = STATE(883), + [sym__container] = STATE(1119), + [sym_mulOperation] = STATE(883), + [sym_divOperation] = STATE(883), + [sym_modOperation] = STATE(883), + [sym_addOperation] = STATE(883), + [sym_subOperation] = STATE(883), + [sym_patternAs] = STATE(883), + [sym_patternLimit] = STATE(883), + [sym_assignmentAsPattern] = STATE(883), + [sym_patternAccumulate] = STATE(883), + [sym_patternWhere] = STATE(883), + [sym__literal] = STATE(883), + [sym_patternNot] = STATE(883), + [sym_patternOr] = STATE(883), + [sym_patternOrElse] = STATE(883), + [sym_patternAny] = STATE(883), + [sym_patternAnd] = STATE(883), + [sym_patternMaybe] = STATE(883), + [sym_patternAfter] = STATE(883), + [sym_patternBefore] = STATE(883), + [sym_patternContains] = STATE(883), + [sym_patternIncludes] = STATE(883), + [sym_rewrite] = STATE(883), + [sym_patternIfElse] = STATE(883), + [sym_within] = STATE(883), + [sym__bubbleScope] = STATE(129), + [sym_bubble] = STATE(883), + [sym_nodeLike] = STATE(883), + [sym_like] = STATE(883), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(331), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(331), + [sym_dot] = STATE(883), + [sym_some] = STATE(883), + [sym_every] = STATE(883), + [sym_regexPattern] = STATE(883), + [sym_log] = STATE(883), + [sym_range] = STATE(883), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(883), + [sym_snippetRegex] = STATE(520), [sym_name] = ACTIONS(207), [anon_sym_sequential] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(211), @@ -30228,6 +30448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(943), @@ -30241,36 +30462,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [195] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1054), - [sym__predicate] = STATE(1054), - [sym_predicateNot] = STATE(1054), - [sym_predicateMaybe] = STATE(1054), - [sym_predicateAnd] = STATE(1054), - [sym_predicateOr] = STATE(1054), - [sym_predicateAny] = STATE(1054), - [sym_predicateIfElse] = STATE(1054), - [sym_predicateRewrite] = STATE(1054), - [sym_predicateAssignment] = STATE(1054), - [sym_predicateAccumulate] = STATE(1054), - [sym_predicateGreater] = STATE(1054), - [sym_predicateLess] = STATE(1054), - [sym_predicateGreaterEqual] = STATE(1054), - [sym_predicateLessEqual] = STATE(1054), - [sym_predicateNotEqual] = STATE(1054), - [sym_predicateEqual] = STATE(1054), - [sym_predicateMatch] = STATE(1054), - [sym_predicateCall] = STATE(1054), - [sym_predicateReturn] = STATE(1054), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1029), + [sym__predicate] = STATE(1029), + [sym_predicateNot] = STATE(1029), + [sym_predicateMaybe] = STATE(1029), + [sym_predicateAnd] = STATE(1029), + [sym_predicateOr] = STATE(1029), + [sym_predicateAny] = STATE(1029), + [sym_predicateIfElse] = STATE(1029), + [sym_predicateRewrite] = STATE(1029), + [sym_predicateAssignment] = STATE(1029), + [sym_predicateAccumulate] = STATE(1029), + [sym_predicateGreater] = STATE(1029), + [sym_predicateLess] = STATE(1029), + [sym_predicateGreaterEqual] = STATE(1029), + [sym_predicateLessEqual] = STATE(1029), + [sym_predicateNotEqual] = STATE(1029), + [sym_predicateEqual] = STATE(1029), + [sym_predicateMatch] = STATE(1029), + [sym_predicateCall] = STATE(1029), + [sym_predicateReturn] = STATE(1029), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(947), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(951), @@ -30310,6 +30531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -30321,36 +30543,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [196] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapElement] = STATE(1168), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1077), - [sym__predicate] = STATE(1077), - [sym_predicateNot] = STATE(1077), - [sym_predicateMaybe] = STATE(1077), - [sym_predicateAnd] = STATE(1077), - [sym_predicateOr] = STATE(1077), - [sym_predicateAny] = STATE(1077), - [sym_predicateIfElse] = STATE(1077), - [sym_predicateRewrite] = STATE(1077), - [sym_predicateAssignment] = STATE(1077), - [sym_predicateAccumulate] = STATE(1077), - [sym_predicateGreater] = STATE(1077), - [sym_predicateLess] = STATE(1077), - [sym_predicateGreaterEqual] = STATE(1077), - [sym_predicateLessEqual] = STATE(1077), - [sym_predicateNotEqual] = STATE(1077), - [sym_predicateEqual] = STATE(1077), - [sym_predicateMatch] = STATE(1077), - [sym_predicateCall] = STATE(1077), - [sym_predicateReturn] = STATE(1077), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapElement] = STATE(1120), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1146), + [sym__predicate] = STATE(1146), + [sym_predicateNot] = STATE(1146), + [sym_predicateMaybe] = STATE(1146), + [sym_predicateAnd] = STATE(1146), + [sym_predicateOr] = STATE(1146), + [sym_predicateAny] = STATE(1146), + [sym_predicateIfElse] = STATE(1146), + [sym_predicateRewrite] = STATE(1146), + [sym_predicateAssignment] = STATE(1146), + [sym_predicateAccumulate] = STATE(1146), + [sym_predicateGreater] = STATE(1146), + [sym_predicateLess] = STATE(1146), + [sym_predicateGreaterEqual] = STATE(1146), + [sym_predicateLessEqual] = STATE(1146), + [sym_predicateNotEqual] = STATE(1146), + [sym_predicateEqual] = STATE(1146), + [sym_predicateMatch] = STATE(1146), + [sym_predicateCall] = STATE(1146), + [sym_predicateReturn] = STATE(1146), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(947), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(979), @@ -30390,6 +30612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -30401,35 +30624,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [197] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1031), - [sym__predicate] = STATE(1031), - [sym_predicateNot] = STATE(1031), - [sym_predicateMaybe] = STATE(1031), - [sym_predicateAnd] = STATE(1031), - [sym_predicateOr] = STATE(1031), - [sym_predicateAny] = STATE(1031), - [sym_predicateIfElse] = STATE(1031), - [sym_predicateRewrite] = STATE(1031), - [sym_predicateAssignment] = STATE(1031), - [sym_predicateAccumulate] = STATE(1031), - [sym_predicateGreater] = STATE(1031), - [sym_predicateLess] = STATE(1031), - [sym_predicateGreaterEqual] = STATE(1031), - [sym_predicateLessEqual] = STATE(1031), - [sym_predicateNotEqual] = STATE(1031), - [sym_predicateEqual] = STATE(1031), - [sym_predicateMatch] = STATE(1031), - [sym_predicateCall] = STATE(1031), - [sym_predicateReturn] = STATE(1031), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1153), + [sym__predicate] = STATE(1153), + [sym_predicateNot] = STATE(1153), + [sym_predicateMaybe] = STATE(1153), + [sym_predicateAnd] = STATE(1153), + [sym_predicateOr] = STATE(1153), + [sym_predicateAny] = STATE(1153), + [sym_predicateIfElse] = STATE(1153), + [sym_predicateRewrite] = STATE(1153), + [sym_predicateAssignment] = STATE(1153), + [sym_predicateAccumulate] = STATE(1153), + [sym_predicateGreater] = STATE(1153), + [sym_predicateLess] = STATE(1153), + [sym_predicateGreaterEqual] = STATE(1153), + [sym_predicateLessEqual] = STATE(1153), + [sym_predicateNotEqual] = STATE(1153), + [sym_predicateEqual] = STATE(1153), + [sym_predicateMatch] = STATE(1153), + [sym_predicateCall] = STATE(1153), + [sym_predicateReturn] = STATE(1153), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(983), @@ -30469,6 +30692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -30480,35 +30704,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [198] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1154), + [sym__predicate] = STATE(1154), + [sym_predicateNot] = STATE(1154), + [sym_predicateMaybe] = STATE(1154), + [sym_predicateAnd] = STATE(1154), + [sym_predicateOr] = STATE(1154), + [sym_predicateAny] = STATE(1154), + [sym_predicateIfElse] = STATE(1154), + [sym_predicateRewrite] = STATE(1154), + [sym_predicateAssignment] = STATE(1154), + [sym_predicateAccumulate] = STATE(1154), + [sym_predicateGreater] = STATE(1154), + [sym_predicateLess] = STATE(1154), + [sym_predicateGreaterEqual] = STATE(1154), + [sym_predicateLessEqual] = STATE(1154), + [sym_predicateNotEqual] = STATE(1154), + [sym_predicateEqual] = STATE(1154), + [sym_predicateMatch] = STATE(1154), + [sym_predicateCall] = STATE(1154), + [sym_predicateReturn] = STATE(1154), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(985), @@ -30548,6 +30772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -30559,35 +30784,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [199] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1182), - [sym__predicate] = STATE(1182), - [sym_predicateNot] = STATE(1182), - [sym_predicateMaybe] = STATE(1182), - [sym_predicateAnd] = STATE(1182), - [sym_predicateOr] = STATE(1182), - [sym_predicateAny] = STATE(1182), - [sym_predicateIfElse] = STATE(1182), - [sym_predicateRewrite] = STATE(1182), - [sym_predicateAssignment] = STATE(1182), - [sym_predicateAccumulate] = STATE(1182), - [sym_predicateGreater] = STATE(1182), - [sym_predicateLess] = STATE(1182), - [sym_predicateGreaterEqual] = STATE(1182), - [sym_predicateLessEqual] = STATE(1182), - [sym_predicateNotEqual] = STATE(1182), - [sym_predicateEqual] = STATE(1182), - [sym_predicateMatch] = STATE(1182), - [sym_predicateCall] = STATE(1182), - [sym_predicateReturn] = STATE(1182), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1202), + [sym__predicate] = STATE(1202), + [sym_predicateNot] = STATE(1202), + [sym_predicateMaybe] = STATE(1202), + [sym_predicateAnd] = STATE(1202), + [sym_predicateOr] = STATE(1202), + [sym_predicateAny] = STATE(1202), + [sym_predicateIfElse] = STATE(1202), + [sym_predicateRewrite] = STATE(1202), + [sym_predicateAssignment] = STATE(1202), + [sym_predicateAccumulate] = STATE(1202), + [sym_predicateGreater] = STATE(1202), + [sym_predicateLess] = STATE(1202), + [sym_predicateGreaterEqual] = STATE(1202), + [sym_predicateLessEqual] = STATE(1202), + [sym_predicateNotEqual] = STATE(1202), + [sym_predicateEqual] = STATE(1202), + [sym_predicateMatch] = STATE(1202), + [sym_predicateCall] = STATE(1202), + [sym_predicateReturn] = STATE(1202), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(987), @@ -30627,6 +30852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -30638,35 +30864,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [200] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1204), + [sym__predicate] = STATE(1204), + [sym_predicateNot] = STATE(1204), + [sym_predicateMaybe] = STATE(1204), + [sym_predicateAnd] = STATE(1204), + [sym_predicateOr] = STATE(1204), + [sym_predicateAny] = STATE(1204), + [sym_predicateIfElse] = STATE(1204), + [sym_predicateRewrite] = STATE(1204), + [sym_predicateAssignment] = STATE(1204), + [sym_predicateAccumulate] = STATE(1204), + [sym_predicateGreater] = STATE(1204), + [sym_predicateLess] = STATE(1204), + [sym_predicateGreaterEqual] = STATE(1204), + [sym_predicateLessEqual] = STATE(1204), + [sym_predicateNotEqual] = STATE(1204), + [sym_predicateEqual] = STATE(1204), + [sym_predicateMatch] = STATE(1204), + [sym_predicateCall] = STATE(1204), + [sym_predicateReturn] = STATE(1204), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(989), @@ -30706,6 +30932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -30717,35 +30944,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [201] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1154), - [sym__predicate] = STATE(1154), - [sym_predicateNot] = STATE(1154), - [sym_predicateMaybe] = STATE(1154), - [sym_predicateAnd] = STATE(1154), - [sym_predicateOr] = STATE(1154), - [sym_predicateAny] = STATE(1154), - [sym_predicateIfElse] = STATE(1154), - [sym_predicateRewrite] = STATE(1154), - [sym_predicateAssignment] = STATE(1154), - [sym_predicateAccumulate] = STATE(1154), - [sym_predicateGreater] = STATE(1154), - [sym_predicateLess] = STATE(1154), - [sym_predicateGreaterEqual] = STATE(1154), - [sym_predicateLessEqual] = STATE(1154), - [sym_predicateNotEqual] = STATE(1154), - [sym_predicateEqual] = STATE(1154), - [sym_predicateMatch] = STATE(1154), - [sym_predicateCall] = STATE(1154), - [sym_predicateReturn] = STATE(1154), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1206), + [sym__predicate] = STATE(1206), + [sym_predicateNot] = STATE(1206), + [sym_predicateMaybe] = STATE(1206), + [sym_predicateAnd] = STATE(1206), + [sym_predicateOr] = STATE(1206), + [sym_predicateAny] = STATE(1206), + [sym_predicateIfElse] = STATE(1206), + [sym_predicateRewrite] = STATE(1206), + [sym_predicateAssignment] = STATE(1206), + [sym_predicateAccumulate] = STATE(1206), + [sym_predicateGreater] = STATE(1206), + [sym_predicateLess] = STATE(1206), + [sym_predicateGreaterEqual] = STATE(1206), + [sym_predicateLessEqual] = STATE(1206), + [sym_predicateNotEqual] = STATE(1206), + [sym_predicateEqual] = STATE(1206), + [sym_predicateMatch] = STATE(1206), + [sym_predicateCall] = STATE(1206), + [sym_predicateReturn] = STATE(1206), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(991), @@ -30785,6 +31012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -30796,35 +31024,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [202] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(993), @@ -30864,6 +31092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -30875,35 +31104,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [203] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(995), @@ -30943,6 +31172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -30954,35 +31184,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [204] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(997), @@ -31022,6 +31252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31033,35 +31264,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [205] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(999), @@ -31101,6 +31332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31112,35 +31344,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [206] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1001), @@ -31180,6 +31412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31191,35 +31424,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [207] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1003), @@ -31259,6 +31492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31270,35 +31504,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [208] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1005), @@ -31338,6 +31572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31349,35 +31584,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [209] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1007), @@ -31417,6 +31652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31428,35 +31664,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [210] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1009), @@ -31496,6 +31732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31507,35 +31744,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [211] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1011), @@ -31575,6 +31812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31586,35 +31824,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [212] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1013), @@ -31654,6 +31892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31665,35 +31904,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [213] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1015), @@ -31733,6 +31972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31744,35 +31984,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [214] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1017), @@ -31812,6 +32052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31823,35 +32064,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [215] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1019), @@ -31891,6 +32132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31902,35 +32144,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [216] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1021), @@ -31970,6 +32212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -31981,35 +32224,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [217] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1209), - [sym__predicate] = STATE(1209), - [sym_predicateNot] = STATE(1209), - [sym_predicateMaybe] = STATE(1209), - [sym_predicateAnd] = STATE(1209), - [sym_predicateOr] = STATE(1209), - [sym_predicateAny] = STATE(1209), - [sym_predicateIfElse] = STATE(1209), - [sym_predicateRewrite] = STATE(1209), - [sym_predicateAssignment] = STATE(1209), - [sym_predicateAccumulate] = STATE(1209), - [sym_predicateGreater] = STATE(1209), - [sym_predicateLess] = STATE(1209), - [sym_predicateGreaterEqual] = STATE(1209), - [sym_predicateLessEqual] = STATE(1209), - [sym_predicateNotEqual] = STATE(1209), - [sym_predicateEqual] = STATE(1209), - [sym_predicateMatch] = STATE(1209), - [sym_predicateCall] = STATE(1209), - [sym_predicateReturn] = STATE(1209), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1023), @@ -32049,6 +32292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -32060,35 +32304,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [218] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1025), @@ -32128,6 +32372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -32139,35 +32384,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [219] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1027), @@ -32207,6 +32452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -32218,35 +32464,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [220] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1206), - [sym__predicate] = STATE(1206), - [sym_predicateNot] = STATE(1206), - [sym_predicateMaybe] = STATE(1206), - [sym_predicateAnd] = STATE(1206), - [sym_predicateOr] = STATE(1206), - [sym_predicateAny] = STATE(1206), - [sym_predicateIfElse] = STATE(1206), - [sym_predicateRewrite] = STATE(1206), - [sym_predicateAssignment] = STATE(1206), - [sym_predicateAccumulate] = STATE(1206), - [sym_predicateGreater] = STATE(1206), - [sym_predicateLess] = STATE(1206), - [sym_predicateGreaterEqual] = STATE(1206), - [sym_predicateLessEqual] = STATE(1206), - [sym_predicateNotEqual] = STATE(1206), - [sym_predicateEqual] = STATE(1206), - [sym_predicateMatch] = STATE(1206), - [sym_predicateCall] = STATE(1206), - [sym_predicateReturn] = STATE(1206), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1029), @@ -32286,6 +32532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -32297,35 +32544,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [221] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1124), + [sym__predicate] = STATE(1124), + [sym_predicateNot] = STATE(1124), + [sym_predicateMaybe] = STATE(1124), + [sym_predicateAnd] = STATE(1124), + [sym_predicateOr] = STATE(1124), + [sym_predicateAny] = STATE(1124), + [sym_predicateIfElse] = STATE(1124), + [sym_predicateRewrite] = STATE(1124), + [sym_predicateAssignment] = STATE(1124), + [sym_predicateAccumulate] = STATE(1124), + [sym_predicateGreater] = STATE(1124), + [sym_predicateLess] = STATE(1124), + [sym_predicateGreaterEqual] = STATE(1124), + [sym_predicateLessEqual] = STATE(1124), + [sym_predicateNotEqual] = STATE(1124), + [sym_predicateEqual] = STATE(1124), + [sym_predicateMatch] = STATE(1124), + [sym_predicateCall] = STATE(1124), + [sym_predicateReturn] = STATE(1124), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1031), @@ -32365,6 +32612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -32376,35 +32624,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [222] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1173), - [sym__predicate] = STATE(1173), - [sym_predicateNot] = STATE(1173), - [sym_predicateMaybe] = STATE(1173), - [sym_predicateAnd] = STATE(1173), - [sym_predicateOr] = STATE(1173), - [sym_predicateAny] = STATE(1173), - [sym_predicateIfElse] = STATE(1173), - [sym_predicateRewrite] = STATE(1173), - [sym_predicateAssignment] = STATE(1173), - [sym_predicateAccumulate] = STATE(1173), - [sym_predicateGreater] = STATE(1173), - [sym_predicateLess] = STATE(1173), - [sym_predicateGreaterEqual] = STATE(1173), - [sym_predicateLessEqual] = STATE(1173), - [sym_predicateNotEqual] = STATE(1173), - [sym_predicateEqual] = STATE(1173), - [sym_predicateMatch] = STATE(1173), - [sym_predicateCall] = STATE(1173), - [sym_predicateReturn] = STATE(1173), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1127), + [sym__predicate] = STATE(1127), + [sym_predicateNot] = STATE(1127), + [sym_predicateMaybe] = STATE(1127), + [sym_predicateAnd] = STATE(1127), + [sym_predicateOr] = STATE(1127), + [sym_predicateAny] = STATE(1127), + [sym_predicateIfElse] = STATE(1127), + [sym_predicateRewrite] = STATE(1127), + [sym_predicateAssignment] = STATE(1127), + [sym_predicateAccumulate] = STATE(1127), + [sym_predicateGreater] = STATE(1127), + [sym_predicateLess] = STATE(1127), + [sym_predicateGreaterEqual] = STATE(1127), + [sym_predicateLessEqual] = STATE(1127), + [sym_predicateNotEqual] = STATE(1127), + [sym_predicateEqual] = STATE(1127), + [sym_predicateMatch] = STATE(1127), + [sym_predicateCall] = STATE(1127), + [sym_predicateReturn] = STATE(1127), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1033), @@ -32444,6 +32692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -32455,35 +32704,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [223] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1048), - [sym__predicate] = STATE(1048), - [sym_predicateNot] = STATE(1048), - [sym_predicateMaybe] = STATE(1048), - [sym_predicateAnd] = STATE(1048), - [sym_predicateOr] = STATE(1048), - [sym_predicateAny] = STATE(1048), - [sym_predicateIfElse] = STATE(1048), - [sym_predicateRewrite] = STATE(1048), - [sym_predicateAssignment] = STATE(1048), - [sym_predicateAccumulate] = STATE(1048), - [sym_predicateGreater] = STATE(1048), - [sym_predicateLess] = STATE(1048), - [sym_predicateGreaterEqual] = STATE(1048), - [sym_predicateLessEqual] = STATE(1048), - [sym_predicateNotEqual] = STATE(1048), - [sym_predicateEqual] = STATE(1048), - [sym_predicateMatch] = STATE(1048), - [sym_predicateCall] = STATE(1048), - [sym_predicateReturn] = STATE(1048), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1035), @@ -32523,6 +32772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -32534,35 +32784,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [224] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1044), - [sym__predicate] = STATE(1044), - [sym_predicateNot] = STATE(1044), - [sym_predicateMaybe] = STATE(1044), - [sym_predicateAnd] = STATE(1044), - [sym_predicateOr] = STATE(1044), - [sym_predicateAny] = STATE(1044), - [sym_predicateIfElse] = STATE(1044), - [sym_predicateRewrite] = STATE(1044), - [sym_predicateAssignment] = STATE(1044), - [sym_predicateAccumulate] = STATE(1044), - [sym_predicateGreater] = STATE(1044), - [sym_predicateLess] = STATE(1044), - [sym_predicateGreaterEqual] = STATE(1044), - [sym_predicateLessEqual] = STATE(1044), - [sym_predicateNotEqual] = STATE(1044), - [sym_predicateEqual] = STATE(1044), - [sym_predicateMatch] = STATE(1044), - [sym_predicateCall] = STATE(1044), - [sym_predicateReturn] = STATE(1044), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1152), + [sym__predicate] = STATE(1152), + [sym_predicateNot] = STATE(1152), + [sym_predicateMaybe] = STATE(1152), + [sym_predicateAnd] = STATE(1152), + [sym_predicateOr] = STATE(1152), + [sym_predicateAny] = STATE(1152), + [sym_predicateIfElse] = STATE(1152), + [sym_predicateRewrite] = STATE(1152), + [sym_predicateAssignment] = STATE(1152), + [sym_predicateAccumulate] = STATE(1152), + [sym_predicateGreater] = STATE(1152), + [sym_predicateLess] = STATE(1152), + [sym_predicateGreaterEqual] = STATE(1152), + [sym_predicateLessEqual] = STATE(1152), + [sym_predicateNotEqual] = STATE(1152), + [sym_predicateEqual] = STATE(1152), + [sym_predicateMatch] = STATE(1152), + [sym_predicateCall] = STATE(1152), + [sym_predicateReturn] = STATE(1152), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_RBRACE] = ACTIONS(1037), @@ -32602,6 +32852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -32613,35 +32864,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [225] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(678), - [sym__predicate] = STATE(678), - [sym_predicateNot] = STATE(678), - [sym_predicateMaybe] = STATE(678), - [sym_predicateAnd] = STATE(678), - [sym_predicateOr] = STATE(678), - [sym_predicateAny] = STATE(678), - [sym_predicateIfElse] = STATE(678), - [sym_predicateRewrite] = STATE(678), - [sym_predicateAssignment] = STATE(678), - [sym_predicateAccumulate] = STATE(678), - [sym_predicateGreater] = STATE(678), - [sym_predicateLess] = STATE(678), - [sym_predicateGreaterEqual] = STATE(678), - [sym_predicateLessEqual] = STATE(678), - [sym_predicateNotEqual] = STATE(678), - [sym_predicateEqual] = STATE(678), - [sym_predicateMatch] = STATE(678), - [sym_predicateCall] = STATE(678), - [sym_predicateReturn] = STATE(678), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(623), + [sym__predicate] = STATE(623), + [sym_predicateNot] = STATE(623), + [sym_predicateMaybe] = STATE(623), + [sym_predicateAnd] = STATE(623), + [sym_predicateOr] = STATE(623), + [sym_predicateAny] = STATE(623), + [sym_predicateIfElse] = STATE(623), + [sym_predicateRewrite] = STATE(623), + [sym_predicateAssignment] = STATE(623), + [sym_predicateAccumulate] = STATE(623), + [sym_predicateGreater] = STATE(623), + [sym_predicateLess] = STATE(623), + [sym_predicateGreaterEqual] = STATE(623), + [sym_predicateLessEqual] = STATE(623), + [sym_predicateNotEqual] = STATE(623), + [sym_predicateEqual] = STATE(623), + [sym_predicateMatch] = STATE(623), + [sym_predicateCall] = STATE(623), + [sym_predicateReturn] = STATE(623), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(953), @@ -32680,6 +32931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -32691,35 +32943,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [226] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1450), - [sym__predicate] = STATE(1450), - [sym_predicateNot] = STATE(1450), - [sym_predicateMaybe] = STATE(1450), - [sym_predicateAnd] = STATE(1450), - [sym_predicateOr] = STATE(1450), - [sym_predicateAny] = STATE(1450), - [sym_predicateIfElse] = STATE(1450), - [sym_predicateRewrite] = STATE(1450), - [sym_predicateAssignment] = STATE(1450), - [sym_predicateAccumulate] = STATE(1450), - [sym_predicateGreater] = STATE(1450), - [sym_predicateLess] = STATE(1450), - [sym_predicateGreaterEqual] = STATE(1450), - [sym_predicateLessEqual] = STATE(1450), - [sym_predicateNotEqual] = STATE(1450), - [sym_predicateEqual] = STATE(1450), - [sym_predicateMatch] = STATE(1450), - [sym_predicateCall] = STATE(1450), - [sym_predicateReturn] = STATE(1450), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1472), + [sym__predicate] = STATE(1472), + [sym_predicateNot] = STATE(1472), + [sym_predicateMaybe] = STATE(1472), + [sym_predicateAnd] = STATE(1472), + [sym_predicateOr] = STATE(1472), + [sym_predicateAny] = STATE(1472), + [sym_predicateIfElse] = STATE(1472), + [sym_predicateRewrite] = STATE(1472), + [sym_predicateAssignment] = STATE(1472), + [sym_predicateAccumulate] = STATE(1472), + [sym_predicateGreater] = STATE(1472), + [sym_predicateLess] = STATE(1472), + [sym_predicateGreaterEqual] = STATE(1472), + [sym_predicateLessEqual] = STATE(1472), + [sym_predicateNotEqual] = STATE(1472), + [sym_predicateEqual] = STATE(1472), + [sym_predicateMatch] = STATE(1472), + [sym_predicateCall] = STATE(1472), + [sym_predicateReturn] = STATE(1472), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(953), @@ -32758,6 +33010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -32769,50 +33022,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [227] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1432), - [sym__predicate] = STATE(1432), - [sym_predicateNot] = STATE(1432), - [sym_predicateMaybe] = STATE(1432), - [sym_predicateAnd] = STATE(1432), - [sym_predicateOr] = STATE(1432), - [sym_predicateAny] = STATE(1432), - [sym_predicateIfElse] = STATE(1432), - [sym_predicateRewrite] = STATE(1432), - [sym_predicateAssignment] = STATE(1432), - [sym_predicateAccumulate] = STATE(1432), - [sym_predicateGreater] = STATE(1432), - [sym_predicateLess] = STATE(1432), - [sym_predicateGreaterEqual] = STATE(1432), - [sym_predicateLessEqual] = STATE(1432), - [sym_predicateNotEqual] = STATE(1432), - [sym_predicateEqual] = STATE(1432), - [sym_predicateMatch] = STATE(1432), - [sym_predicateCall] = STATE(1432), - [sym_predicateReturn] = STATE(1432), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), - [sym_name] = ACTIONS(981), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_not] = ACTIONS(957), - [anon_sym_or] = ACTIONS(959), - [anon_sym_any] = ACTIONS(961), - [anon_sym_and] = ACTIONS(963), - [anon_sym_maybe] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), + [sym__container] = STATE(1011), + [sym__literal] = STATE(1468), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1011), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1011), + [sym_log] = STATE(517), + [sym__predicate] = STATE(517), + [sym_predicateNot] = STATE(517), + [sym_predicateMaybe] = STATE(517), + [sym_predicateAnd] = STATE(517), + [sym_predicateOr] = STATE(517), + [sym_predicateAny] = STATE(517), + [sym_predicateIfElse] = STATE(517), + [sym_predicateRewrite] = STATE(517), + [sym_predicateAssignment] = STATE(517), + [sym_predicateAccumulate] = STATE(517), + [sym_predicateGreater] = STATE(517), + [sym_predicateLess] = STATE(517), + [sym_predicateGreaterEqual] = STATE(517), + [sym_predicateLessEqual] = STATE(517), + [sym_predicateNotEqual] = STATE(517), + [sym_predicateEqual] = STATE(517), + [sym_predicateMatch] = STATE(517), + [sym_predicateCall] = STATE(517), + [sym_predicateReturn] = STATE(517), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1468), + [sym_name] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_not] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1049), + [anon_sym_any] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1053), + [anon_sym_maybe] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(1057), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_return] = ACTIONS(969), - [sym_booleanConstant] = ACTIONS(971), - [sym_variable] = ACTIONS(973), + [anon_sym_log_LPAREN] = ACTIONS(69), + [anon_sym_return] = ACTIONS(1059), + [sym_booleanConstant] = ACTIONS(1061), + [sym_variable] = ACTIONS(1063), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -32836,46 +33089,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(975), - [sym_top] = ACTIONS(975), - [sym_bottom] = ACTIONS(975), - [sym_intConstant] = ACTIONS(975), - [sym_doubleConstant] = ACTIONS(977), - [sym_stringConstant] = ACTIONS(977), + [sym_undefined] = ACTIONS(1065), + [sym_top] = ACTIONS(1065), + [sym_bottom] = ACTIONS(1065), + [sym_intConstant] = ACTIONS(1065), + [sym_doubleConstant] = ACTIONS(1067), + [sym_stringConstant] = ACTIONS(1067), [sym_comment] = ACTIONS(3), }, [228] = { - [sym__container] = STATE(1005), - [sym__literal] = STATE(1451), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1005), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1005), - [sym_log] = STATE(467), - [sym__predicate] = STATE(467), - [sym_predicateNot] = STATE(467), - [sym_predicateMaybe] = STATE(467), - [sym_predicateAnd] = STATE(467), - [sym_predicateOr] = STATE(467), - [sym_predicateAny] = STATE(467), - [sym_predicateIfElse] = STATE(467), - [sym_predicateRewrite] = STATE(467), - [sym_predicateAssignment] = STATE(467), - [sym_predicateAccumulate] = STATE(467), - [sym_predicateGreater] = STATE(467), - [sym_predicateLess] = STATE(467), - [sym_predicateGreaterEqual] = STATE(467), - [sym_predicateLessEqual] = STATE(467), - [sym_predicateNotEqual] = STATE(467), - [sym_predicateEqual] = STATE(467), - [sym_predicateMatch] = STATE(467), - [sym_predicateCall] = STATE(467), - [sym_predicateReturn] = STATE(467), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1451), + [sym__container] = STATE(1011), + [sym__literal] = STATE(1468), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1011), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1011), + [sym_log] = STATE(579), + [sym__predicate] = STATE(579), + [sym_predicateNot] = STATE(579), + [sym_predicateMaybe] = STATE(579), + [sym_predicateAnd] = STATE(579), + [sym_predicateOr] = STATE(579), + [sym_predicateAny] = STATE(579), + [sym_predicateIfElse] = STATE(579), + [sym_predicateRewrite] = STATE(579), + [sym_predicateAssignment] = STATE(579), + [sym_predicateAccumulate] = STATE(579), + [sym_predicateGreater] = STATE(579), + [sym_predicateLess] = STATE(579), + [sym_predicateGreaterEqual] = STATE(579), + [sym_predicateLessEqual] = STATE(579), + [sym_predicateNotEqual] = STATE(579), + [sym_predicateEqual] = STATE(579), + [sym_predicateMatch] = STATE(579), + [sym_predicateCall] = STATE(579), + [sym_predicateReturn] = STATE(579), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1468), [sym_name] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(1041), [anon_sym_LPAREN] = ACTIONS(1043), @@ -32914,6 +33168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(1065), @@ -32925,35 +33180,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [229] = { - [sym__container] = STATE(1005), - [sym__literal] = STATE(1451), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1005), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1005), - [sym_log] = STATE(462), - [sym__predicate] = STATE(462), - [sym_predicateNot] = STATE(462), - [sym_predicateMaybe] = STATE(462), - [sym_predicateAnd] = STATE(462), - [sym_predicateOr] = STATE(462), - [sym_predicateAny] = STATE(462), - [sym_predicateIfElse] = STATE(462), - [sym_predicateRewrite] = STATE(462), - [sym_predicateAssignment] = STATE(462), - [sym_predicateAccumulate] = STATE(462), - [sym_predicateGreater] = STATE(462), - [sym_predicateLess] = STATE(462), - [sym_predicateGreaterEqual] = STATE(462), - [sym_predicateLessEqual] = STATE(462), - [sym_predicateNotEqual] = STATE(462), - [sym_predicateEqual] = STATE(462), - [sym_predicateMatch] = STATE(462), - [sym_predicateCall] = STATE(462), - [sym_predicateReturn] = STATE(462), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1451), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(853), + [sym__predicate] = STATE(853), + [sym_predicateNot] = STATE(853), + [sym_predicateMaybe] = STATE(853), + [sym_predicateAnd] = STATE(853), + [sym_predicateOr] = STATE(853), + [sym_predicateAny] = STATE(853), + [sym_predicateIfElse] = STATE(853), + [sym_predicateRewrite] = STATE(853), + [sym_predicateAssignment] = STATE(853), + [sym_predicateAccumulate] = STATE(853), + [sym_predicateGreater] = STATE(853), + [sym_predicateLess] = STATE(853), + [sym_predicateGreaterEqual] = STATE(853), + [sym_predicateLessEqual] = STATE(853), + [sym_predicateNotEqual] = STATE(853), + [sym_predicateEqual] = STATE(853), + [sym_predicateMatch] = STATE(853), + [sym_predicateCall] = STATE(853), + [sym_predicateReturn] = STATE(853), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), + [sym_name] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_not] = ACTIONS(957), + [anon_sym_or] = ACTIONS(959), + [anon_sym_any] = ACTIONS(961), + [anon_sym_and] = ACTIONS(963), + [anon_sym_maybe] = ACTIONS(965), + [anon_sym_if] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(247), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_return] = ACTIONS(969), + [sym_booleanConstant] = ACTIONS(971), + [sym_variable] = ACTIONS(973), + [anon_sym_js] = ACTIONS(75), + [anon_sym_grit] = ACTIONS(75), + [anon_sym_html] = ACTIONS(75), + [anon_sym_css] = ACTIONS(75), + [anon_sym_json] = ACTIONS(75), + [anon_sym_java] = ACTIONS(75), + [anon_sym_csharp] = ACTIONS(75), + [anon_sym_python] = ACTIONS(75), + [anon_sym_go] = ACTIONS(75), + [anon_sym_markdown] = ACTIONS(75), + [anon_sym_rust] = ACTIONS(75), + [anon_sym_ruby] = ACTIONS(75), + [anon_sym_sol] = ACTIONS(75), + [anon_sym_solidity] = ACTIONS(75), + [anon_sym_hcl] = ACTIONS(75), + [anon_sym_yaml] = ACTIONS(75), + [anon_sym_ast] = ACTIONS(75), + [anon_sym_universal] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(75), + [anon_sym_toml] = ACTIONS(75), + [anon_sym_php] = ACTIONS(75), + [anon_sym_c] = ACTIONS(75), + [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), + [sym_backtickSnippet] = ACTIONS(265), + [sym_rawBacktickSnippet] = ACTIONS(265), + [sym_undefined] = ACTIONS(975), + [sym_top] = ACTIONS(975), + [sym_bottom] = ACTIONS(975), + [sym_intConstant] = ACTIONS(975), + [sym_doubleConstant] = ACTIONS(977), + [sym_stringConstant] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + }, + [230] = { + [sym__container] = STATE(1011), + [sym__literal] = STATE(1468), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1011), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1011), + [sym_log] = STATE(585), + [sym__predicate] = STATE(585), + [sym_predicateNot] = STATE(585), + [sym_predicateMaybe] = STATE(585), + [sym_predicateAnd] = STATE(585), + [sym_predicateOr] = STATE(585), + [sym_predicateAny] = STATE(585), + [sym_predicateIfElse] = STATE(585), + [sym_predicateRewrite] = STATE(585), + [sym_predicateAssignment] = STATE(585), + [sym_predicateAccumulate] = STATE(585), + [sym_predicateGreater] = STATE(585), + [sym_predicateLess] = STATE(585), + [sym_predicateGreaterEqual] = STATE(585), + [sym_predicateLessEqual] = STATE(585), + [sym_predicateNotEqual] = STATE(585), + [sym_predicateEqual] = STATE(585), + [sym_predicateMatch] = STATE(585), + [sym_predicateCall] = STATE(585), + [sym_predicateReturn] = STATE(585), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1468), [sym_name] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(1041), [anon_sym_LPAREN] = ACTIONS(1043), @@ -32992,6 +33326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(1065), @@ -33002,36 +33337,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_stringConstant] = ACTIONS(1067), [sym_comment] = ACTIONS(3), }, - [230] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(795), - [sym__predicate] = STATE(795), - [sym_predicateNot] = STATE(795), - [sym_predicateMaybe] = STATE(795), - [sym_predicateAnd] = STATE(795), - [sym_predicateOr] = STATE(795), - [sym_predicateAny] = STATE(795), - [sym_predicateIfElse] = STATE(795), - [sym_predicateRewrite] = STATE(795), - [sym_predicateAssignment] = STATE(795), - [sym_predicateAccumulate] = STATE(795), - [sym_predicateGreater] = STATE(795), - [sym_predicateLess] = STATE(795), - [sym_predicateGreaterEqual] = STATE(795), - [sym_predicateLessEqual] = STATE(795), - [sym_predicateNotEqual] = STATE(795), - [sym_predicateEqual] = STATE(795), - [sym_predicateMatch] = STATE(795), - [sym_predicateCall] = STATE(795), - [sym_predicateReturn] = STATE(795), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [231] = { + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1211), + [sym__predicate] = STATE(1211), + [sym_predicateNot] = STATE(1211), + [sym_predicateMaybe] = STATE(1211), + [sym_predicateAnd] = STATE(1211), + [sym_predicateOr] = STATE(1211), + [sym_predicateAny] = STATE(1211), + [sym_predicateIfElse] = STATE(1211), + [sym_predicateRewrite] = STATE(1211), + [sym_predicateAssignment] = STATE(1211), + [sym_predicateAccumulate] = STATE(1211), + [sym_predicateGreater] = STATE(1211), + [sym_predicateLess] = STATE(1211), + [sym_predicateGreaterEqual] = STATE(1211), + [sym_predicateLessEqual] = STATE(1211), + [sym_predicateNotEqual] = STATE(1211), + [sym_predicateEqual] = STATE(1211), + [sym_predicateMatch] = STATE(1211), + [sym_predicateCall] = STATE(1211), + [sym_predicateReturn] = STATE(1211), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(953), @@ -33070,6 +33405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -33080,36 +33416,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_stringConstant] = ACTIONS(977), [sym_comment] = ACTIONS(3), }, - [231] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1480), - [sym__predicate] = STATE(1480), - [sym_predicateNot] = STATE(1480), - [sym_predicateMaybe] = STATE(1480), - [sym_predicateAnd] = STATE(1480), - [sym_predicateOr] = STATE(1480), - [sym_predicateAny] = STATE(1480), - [sym_predicateIfElse] = STATE(1480), - [sym_predicateRewrite] = STATE(1480), - [sym_predicateAssignment] = STATE(1480), - [sym_predicateAccumulate] = STATE(1480), - [sym_predicateGreater] = STATE(1480), - [sym_predicateLess] = STATE(1480), - [sym_predicateGreaterEqual] = STATE(1480), - [sym_predicateLessEqual] = STATE(1480), - [sym_predicateNotEqual] = STATE(1480), - [sym_predicateEqual] = STATE(1480), - [sym_predicateMatch] = STATE(1480), - [sym_predicateCall] = STATE(1480), - [sym_predicateReturn] = STATE(1480), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [232] = { + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1425), + [sym__predicate] = STATE(1425), + [sym_predicateNot] = STATE(1425), + [sym_predicateMaybe] = STATE(1425), + [sym_predicateAnd] = STATE(1425), + [sym_predicateOr] = STATE(1425), + [sym_predicateAny] = STATE(1425), + [sym_predicateIfElse] = STATE(1425), + [sym_predicateRewrite] = STATE(1425), + [sym_predicateAssignment] = STATE(1425), + [sym_predicateAccumulate] = STATE(1425), + [sym_predicateGreater] = STATE(1425), + [sym_predicateLess] = STATE(1425), + [sym_predicateGreaterEqual] = STATE(1425), + [sym_predicateLessEqual] = STATE(1425), + [sym_predicateNotEqual] = STATE(1425), + [sym_predicateEqual] = STATE(1425), + [sym_predicateMatch] = STATE(1425), + [sym_predicateCall] = STATE(1425), + [sym_predicateReturn] = STATE(1425), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(953), @@ -33148,6 +33484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -33158,36 +33495,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_stringConstant] = ACTIONS(977), [sym_comment] = ACTIONS(3), }, - [232] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1443), - [sym__predicate] = STATE(1443), - [sym_predicateNot] = STATE(1443), - [sym_predicateMaybe] = STATE(1443), - [sym_predicateAnd] = STATE(1443), - [sym_predicateOr] = STATE(1443), - [sym_predicateAny] = STATE(1443), - [sym_predicateIfElse] = STATE(1443), - [sym_predicateRewrite] = STATE(1443), - [sym_predicateAssignment] = STATE(1443), - [sym_predicateAccumulate] = STATE(1443), - [sym_predicateGreater] = STATE(1443), - [sym_predicateLess] = STATE(1443), - [sym_predicateGreaterEqual] = STATE(1443), - [sym_predicateLessEqual] = STATE(1443), - [sym_predicateNotEqual] = STATE(1443), - [sym_predicateEqual] = STATE(1443), - [sym_predicateMatch] = STATE(1443), - [sym_predicateCall] = STATE(1443), - [sym_predicateReturn] = STATE(1443), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [233] = { + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(839), + [sym__predicate] = STATE(839), + [sym_predicateNot] = STATE(839), + [sym_predicateMaybe] = STATE(839), + [sym_predicateAnd] = STATE(839), + [sym_predicateOr] = STATE(839), + [sym_predicateAny] = STATE(839), + [sym_predicateIfElse] = STATE(839), + [sym_predicateRewrite] = STATE(839), + [sym_predicateAssignment] = STATE(839), + [sym_predicateAccumulate] = STATE(839), + [sym_predicateGreater] = STATE(839), + [sym_predicateLess] = STATE(839), + [sym_predicateGreaterEqual] = STATE(839), + [sym_predicateLessEqual] = STATE(839), + [sym_predicateNotEqual] = STATE(839), + [sym_predicateEqual] = STATE(839), + [sym_predicateMatch] = STATE(839), + [sym_predicateCall] = STATE(839), + [sym_predicateReturn] = STATE(839), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(953), @@ -33226,6 +33563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -33236,36 +33574,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_stringConstant] = ACTIONS(977), [sym_comment] = ACTIONS(3), }, - [233] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1417), - [sym__predicate] = STATE(1417), - [sym_predicateNot] = STATE(1417), - [sym_predicateMaybe] = STATE(1417), - [sym_predicateAnd] = STATE(1417), - [sym_predicateOr] = STATE(1417), - [sym_predicateAny] = STATE(1417), - [sym_predicateIfElse] = STATE(1417), - [sym_predicateRewrite] = STATE(1417), - [sym_predicateAssignment] = STATE(1417), - [sym_predicateAccumulate] = STATE(1417), - [sym_predicateGreater] = STATE(1417), - [sym_predicateLess] = STATE(1417), - [sym_predicateGreaterEqual] = STATE(1417), - [sym_predicateLessEqual] = STATE(1417), - [sym_predicateNotEqual] = STATE(1417), - [sym_predicateEqual] = STATE(1417), - [sym_predicateMatch] = STATE(1417), - [sym_predicateCall] = STATE(1417), - [sym_predicateReturn] = STATE(1417), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [234] = { + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(707), + [sym__predicate] = STATE(707), + [sym_predicateNot] = STATE(707), + [sym_predicateMaybe] = STATE(707), + [sym_predicateAnd] = STATE(707), + [sym_predicateOr] = STATE(707), + [sym_predicateAny] = STATE(707), + [sym_predicateIfElse] = STATE(707), + [sym_predicateRewrite] = STATE(707), + [sym_predicateAssignment] = STATE(707), + [sym_predicateAccumulate] = STATE(707), + [sym_predicateGreater] = STATE(707), + [sym_predicateLess] = STATE(707), + [sym_predicateGreaterEqual] = STATE(707), + [sym_predicateLessEqual] = STATE(707), + [sym_predicateNotEqual] = STATE(707), + [sym_predicateEqual] = STATE(707), + [sym_predicateMatch] = STATE(707), + [sym_predicateCall] = STATE(707), + [sym_predicateReturn] = STATE(707), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(953), @@ -33304,6 +33642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -33314,36 +33653,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_stringConstant] = ACTIONS(977), [sym_comment] = ACTIONS(3), }, - [234] = { - [sym__container] = STATE(1005), - [sym__literal] = STATE(1451), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1005), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1005), - [sym_log] = STATE(573), - [sym__predicate] = STATE(573), - [sym_predicateNot] = STATE(573), - [sym_predicateMaybe] = STATE(573), - [sym_predicateAnd] = STATE(573), - [sym_predicateOr] = STATE(573), - [sym_predicateAny] = STATE(573), - [sym_predicateIfElse] = STATE(573), - [sym_predicateRewrite] = STATE(573), - [sym_predicateAssignment] = STATE(573), - [sym_predicateAccumulate] = STATE(573), - [sym_predicateGreater] = STATE(573), - [sym_predicateLess] = STATE(573), - [sym_predicateGreaterEqual] = STATE(573), - [sym_predicateLessEqual] = STATE(573), - [sym_predicateNotEqual] = STATE(573), - [sym_predicateEqual] = STATE(573), - [sym_predicateMatch] = STATE(573), - [sym_predicateCall] = STATE(573), - [sym_predicateReturn] = STATE(573), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1451), + [235] = { + [sym__container] = STATE(1011), + [sym__literal] = STATE(1468), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1011), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1011), + [sym_log] = STATE(536), + [sym__predicate] = STATE(536), + [sym_predicateNot] = STATE(536), + [sym_predicateMaybe] = STATE(536), + [sym_predicateAnd] = STATE(536), + [sym_predicateOr] = STATE(536), + [sym_predicateAny] = STATE(536), + [sym_predicateIfElse] = STATE(536), + [sym_predicateRewrite] = STATE(536), + [sym_predicateAssignment] = STATE(536), + [sym_predicateAccumulate] = STATE(536), + [sym_predicateGreater] = STATE(536), + [sym_predicateLess] = STATE(536), + [sym_predicateGreaterEqual] = STATE(536), + [sym_predicateLessEqual] = STATE(536), + [sym_predicateNotEqual] = STATE(536), + [sym_predicateEqual] = STATE(536), + [sym_predicateMatch] = STATE(536), + [sym_predicateCall] = STATE(536), + [sym_predicateReturn] = STATE(536), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1468), [sym_name] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(1041), [anon_sym_LPAREN] = ACTIONS(1043), @@ -33382,6 +33721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(1065), @@ -33392,114 +33732,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_stringConstant] = ACTIONS(1067), [sym_comment] = ACTIONS(3), }, - [235] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(856), - [sym__predicate] = STATE(856), - [sym_predicateNot] = STATE(856), - [sym_predicateMaybe] = STATE(856), - [sym_predicateAnd] = STATE(856), - [sym_predicateOr] = STATE(856), - [sym_predicateAny] = STATE(856), - [sym_predicateIfElse] = STATE(856), - [sym_predicateRewrite] = STATE(856), - [sym_predicateAssignment] = STATE(856), - [sym_predicateAccumulate] = STATE(856), - [sym_predicateGreater] = STATE(856), - [sym_predicateLess] = STATE(856), - [sym_predicateGreaterEqual] = STATE(856), - [sym_predicateLessEqual] = STATE(856), - [sym_predicateNotEqual] = STATE(856), - [sym_predicateEqual] = STATE(856), - [sym_predicateMatch] = STATE(856), - [sym_predicateCall] = STATE(856), - [sym_predicateReturn] = STATE(856), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), - [sym_name] = ACTIONS(981), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_not] = ACTIONS(957), - [anon_sym_or] = ACTIONS(959), - [anon_sym_any] = ACTIONS(961), - [anon_sym_and] = ACTIONS(963), - [anon_sym_maybe] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_log_LPAREN] = ACTIONS(259), - [anon_sym_return] = ACTIONS(969), - [sym_booleanConstant] = ACTIONS(971), - [sym_variable] = ACTIONS(973), - [anon_sym_js] = ACTIONS(75), - [anon_sym_grit] = ACTIONS(75), - [anon_sym_html] = ACTIONS(75), - [anon_sym_css] = ACTIONS(75), - [anon_sym_json] = ACTIONS(75), - [anon_sym_java] = ACTIONS(75), - [anon_sym_csharp] = ACTIONS(75), - [anon_sym_python] = ACTIONS(75), - [anon_sym_go] = ACTIONS(75), - [anon_sym_markdown] = ACTIONS(75), - [anon_sym_rust] = ACTIONS(75), - [anon_sym_ruby] = ACTIONS(75), - [anon_sym_sol] = ACTIONS(75), - [anon_sym_solidity] = ACTIONS(75), - [anon_sym_hcl] = ACTIONS(75), - [anon_sym_yaml] = ACTIONS(75), - [anon_sym_ast] = ACTIONS(75), - [anon_sym_universal] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(75), - [anon_sym_toml] = ACTIONS(75), - [anon_sym_php] = ACTIONS(75), - [anon_sym_c] = ACTIONS(75), - [anon_sym_cpp] = ACTIONS(75), - [sym_backtickSnippet] = ACTIONS(265), - [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(975), - [sym_top] = ACTIONS(975), - [sym_bottom] = ACTIONS(975), - [sym_intConstant] = ACTIONS(975), - [sym_doubleConstant] = ACTIONS(977), - [sym_stringConstant] = ACTIONS(977), - [sym_comment] = ACTIONS(3), - }, [236] = { - [sym__container] = STATE(1005), - [sym__literal] = STATE(1451), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1005), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1005), - [sym_log] = STATE(586), - [sym__predicate] = STATE(586), - [sym_predicateNot] = STATE(586), - [sym_predicateMaybe] = STATE(586), - [sym_predicateAnd] = STATE(586), - [sym_predicateOr] = STATE(586), - [sym_predicateAny] = STATE(586), - [sym_predicateIfElse] = STATE(586), - [sym_predicateRewrite] = STATE(586), - [sym_predicateAssignment] = STATE(586), - [sym_predicateAccumulate] = STATE(586), - [sym_predicateGreater] = STATE(586), - [sym_predicateLess] = STATE(586), - [sym_predicateGreaterEqual] = STATE(586), - [sym_predicateLessEqual] = STATE(586), - [sym_predicateNotEqual] = STATE(586), - [sym_predicateEqual] = STATE(586), - [sym_predicateMatch] = STATE(586), - [sym_predicateCall] = STATE(586), - [sym_predicateReturn] = STATE(586), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1451), + [sym__container] = STATE(1011), + [sym__literal] = STATE(1468), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1011), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1011), + [sym_log] = STATE(537), + [sym__predicate] = STATE(537), + [sym_predicateNot] = STATE(537), + [sym_predicateMaybe] = STATE(537), + [sym_predicateAnd] = STATE(537), + [sym_predicateOr] = STATE(537), + [sym_predicateAny] = STATE(537), + [sym_predicateIfElse] = STATE(537), + [sym_predicateRewrite] = STATE(537), + [sym_predicateAssignment] = STATE(537), + [sym_predicateAccumulate] = STATE(537), + [sym_predicateGreater] = STATE(537), + [sym_predicateLess] = STATE(537), + [sym_predicateGreaterEqual] = STATE(537), + [sym_predicateLessEqual] = STATE(537), + [sym_predicateNotEqual] = STATE(537), + [sym_predicateEqual] = STATE(537), + [sym_predicateMatch] = STATE(537), + [sym_predicateCall] = STATE(537), + [sym_predicateReturn] = STATE(537), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1468), [sym_name] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(1041), [anon_sym_LPAREN] = ACTIONS(1043), @@ -33538,6 +33800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(1065), @@ -33549,35 +33812,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [237] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(820), - [sym__predicate] = STATE(820), - [sym_predicateNot] = STATE(820), - [sym_predicateMaybe] = STATE(820), - [sym_predicateAnd] = STATE(820), - [sym_predicateOr] = STATE(820), - [sym_predicateAny] = STATE(820), - [sym_predicateIfElse] = STATE(820), - [sym_predicateRewrite] = STATE(820), - [sym_predicateAssignment] = STATE(820), - [sym_predicateAccumulate] = STATE(820), - [sym_predicateGreater] = STATE(820), - [sym_predicateLess] = STATE(820), - [sym_predicateGreaterEqual] = STATE(820), - [sym_predicateLessEqual] = STATE(820), - [sym_predicateNotEqual] = STATE(820), - [sym_predicateEqual] = STATE(820), - [sym_predicateMatch] = STATE(820), - [sym_predicateCall] = STATE(820), - [sym_predicateReturn] = STATE(820), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1438), + [sym__predicate] = STATE(1438), + [sym_predicateNot] = STATE(1438), + [sym_predicateMaybe] = STATE(1438), + [sym_predicateAnd] = STATE(1438), + [sym_predicateOr] = STATE(1438), + [sym_predicateAny] = STATE(1438), + [sym_predicateIfElse] = STATE(1438), + [sym_predicateRewrite] = STATE(1438), + [sym_predicateAssignment] = STATE(1438), + [sym_predicateAccumulate] = STATE(1438), + [sym_predicateGreater] = STATE(1438), + [sym_predicateLess] = STATE(1438), + [sym_predicateGreaterEqual] = STATE(1438), + [sym_predicateLessEqual] = STATE(1438), + [sym_predicateNotEqual] = STATE(1438), + [sym_predicateEqual] = STATE(1438), + [sym_predicateMatch] = STATE(1438), + [sym_predicateCall] = STATE(1438), + [sym_predicateReturn] = STATE(1438), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(953), @@ -33616,6 +33879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -33627,50 +33891,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [238] = { - [sym__container] = STATE(1005), - [sym__literal] = STATE(1451), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1005), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1005), - [sym_log] = STATE(486), - [sym__predicate] = STATE(486), - [sym_predicateNot] = STATE(486), - [sym_predicateMaybe] = STATE(486), - [sym_predicateAnd] = STATE(486), - [sym_predicateOr] = STATE(486), - [sym_predicateAny] = STATE(486), - [sym_predicateIfElse] = STATE(486), - [sym_predicateRewrite] = STATE(486), - [sym_predicateAssignment] = STATE(486), - [sym_predicateAccumulate] = STATE(486), - [sym_predicateGreater] = STATE(486), - [sym_predicateLess] = STATE(486), - [sym_predicateGreaterEqual] = STATE(486), - [sym_predicateLessEqual] = STATE(486), - [sym_predicateNotEqual] = STATE(486), - [sym_predicateEqual] = STATE(486), - [sym_predicateMatch] = STATE(486), - [sym_predicateCall] = STATE(486), - [sym_predicateReturn] = STATE(486), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1451), - [sym_name] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_not] = ACTIONS(1047), - [anon_sym_or] = ACTIONS(1049), - [anon_sym_any] = ACTIONS(1051), - [anon_sym_and] = ACTIONS(1053), - [anon_sym_maybe] = ACTIONS(1055), - [anon_sym_if] = ACTIONS(1057), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(635), + [sym__predicate] = STATE(635), + [sym_predicateNot] = STATE(635), + [sym_predicateMaybe] = STATE(635), + [sym_predicateAnd] = STATE(635), + [sym_predicateOr] = STATE(635), + [sym_predicateAny] = STATE(635), + [sym_predicateIfElse] = STATE(635), + [sym_predicateRewrite] = STATE(635), + [sym_predicateAssignment] = STATE(635), + [sym_predicateAccumulate] = STATE(635), + [sym_predicateGreater] = STATE(635), + [sym_predicateLess] = STATE(635), + [sym_predicateGreaterEqual] = STATE(635), + [sym_predicateLessEqual] = STATE(635), + [sym_predicateNotEqual] = STATE(635), + [sym_predicateEqual] = STATE(635), + [sym_predicateMatch] = STATE(635), + [sym_predicateCall] = STATE(635), + [sym_predicateReturn] = STATE(635), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), + [sym_name] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(955), + [anon_sym_not] = ACTIONS(957), + [anon_sym_or] = ACTIONS(959), + [anon_sym_any] = ACTIONS(961), + [anon_sym_and] = ACTIONS(963), + [anon_sym_maybe] = ACTIONS(965), + [anon_sym_if] = ACTIONS(967), [anon_sym_LBRACK] = ACTIONS(247), - [anon_sym_log_LPAREN] = ACTIONS(69), - [anon_sym_return] = ACTIONS(1059), - [sym_booleanConstant] = ACTIONS(1061), - [sym_variable] = ACTIONS(1063), + [anon_sym_log_LPAREN] = ACTIONS(259), + [anon_sym_return] = ACTIONS(969), + [sym_booleanConstant] = ACTIONS(971), + [sym_variable] = ACTIONS(973), [anon_sym_js] = ACTIONS(75), [anon_sym_grit] = ACTIONS(75), [anon_sym_html] = ACTIONS(75), @@ -33694,46 +33958,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), - [sym_undefined] = ACTIONS(1065), - [sym_top] = ACTIONS(1065), - [sym_bottom] = ACTIONS(1065), - [sym_intConstant] = ACTIONS(1065), - [sym_doubleConstant] = ACTIONS(1067), - [sym_stringConstant] = ACTIONS(1067), + [sym_undefined] = ACTIONS(975), + [sym_top] = ACTIONS(975), + [sym_bottom] = ACTIONS(975), + [sym_intConstant] = ACTIONS(975), + [sym_doubleConstant] = ACTIONS(977), + [sym_stringConstant] = ACTIONS(977), [sym_comment] = ACTIONS(3), }, [239] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1405), - [sym__predicate] = STATE(1405), - [sym_predicateNot] = STATE(1405), - [sym_predicateMaybe] = STATE(1405), - [sym_predicateAnd] = STATE(1405), - [sym_predicateOr] = STATE(1405), - [sym_predicateAny] = STATE(1405), - [sym_predicateIfElse] = STATE(1405), - [sym_predicateRewrite] = STATE(1405), - [sym_predicateAssignment] = STATE(1405), - [sym_predicateAccumulate] = STATE(1405), - [sym_predicateGreater] = STATE(1405), - [sym_predicateLess] = STATE(1405), - [sym_predicateGreaterEqual] = STATE(1405), - [sym_predicateLessEqual] = STATE(1405), - [sym_predicateNotEqual] = STATE(1405), - [sym_predicateEqual] = STATE(1405), - [sym_predicateMatch] = STATE(1405), - [sym_predicateCall] = STATE(1405), - [sym_predicateReturn] = STATE(1405), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1533), + [sym__predicate] = STATE(1533), + [sym_predicateNot] = STATE(1533), + [sym_predicateMaybe] = STATE(1533), + [sym_predicateAnd] = STATE(1533), + [sym_predicateOr] = STATE(1533), + [sym_predicateAny] = STATE(1533), + [sym_predicateIfElse] = STATE(1533), + [sym_predicateRewrite] = STATE(1533), + [sym_predicateAssignment] = STATE(1533), + [sym_predicateAccumulate] = STATE(1533), + [sym_predicateGreater] = STATE(1533), + [sym_predicateLess] = STATE(1533), + [sym_predicateGreaterEqual] = STATE(1533), + [sym_predicateLessEqual] = STATE(1533), + [sym_predicateNotEqual] = STATE(1533), + [sym_predicateEqual] = STATE(1533), + [sym_predicateMatch] = STATE(1533), + [sym_predicateCall] = STATE(1533), + [sym_predicateReturn] = STATE(1533), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(953), @@ -33772,6 +34037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -33783,35 +34049,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [240] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(1421), - [sym__predicate] = STATE(1421), - [sym_predicateNot] = STATE(1421), - [sym_predicateMaybe] = STATE(1421), - [sym_predicateAnd] = STATE(1421), - [sym_predicateOr] = STATE(1421), - [sym_predicateAny] = STATE(1421), - [sym_predicateIfElse] = STATE(1421), - [sym_predicateRewrite] = STATE(1421), - [sym_predicateAssignment] = STATE(1421), - [sym_predicateAccumulate] = STATE(1421), - [sym_predicateGreater] = STATE(1421), - [sym_predicateLess] = STATE(1421), - [sym_predicateGreaterEqual] = STATE(1421), - [sym_predicateLessEqual] = STATE(1421), - [sym_predicateNotEqual] = STATE(1421), - [sym_predicateEqual] = STATE(1421), - [sym_predicateMatch] = STATE(1421), - [sym_predicateCall] = STATE(1421), - [sym_predicateReturn] = STATE(1421), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1446), + [sym__predicate] = STATE(1446), + [sym_predicateNot] = STATE(1446), + [sym_predicateMaybe] = STATE(1446), + [sym_predicateAnd] = STATE(1446), + [sym_predicateOr] = STATE(1446), + [sym_predicateAny] = STATE(1446), + [sym_predicateIfElse] = STATE(1446), + [sym_predicateRewrite] = STATE(1446), + [sym_predicateAssignment] = STATE(1446), + [sym_predicateAccumulate] = STATE(1446), + [sym_predicateGreater] = STATE(1446), + [sym_predicateLess] = STATE(1446), + [sym_predicateGreaterEqual] = STATE(1446), + [sym_predicateLessEqual] = STATE(1446), + [sym_predicateNotEqual] = STATE(1446), + [sym_predicateEqual] = STATE(1446), + [sym_predicateMatch] = STATE(1446), + [sym_predicateCall] = STATE(1446), + [sym_predicateReturn] = STATE(1446), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(953), @@ -33850,6 +34116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -33861,35 +34128,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [241] = { - [sym__container] = STATE(1009), - [sym__literal] = STATE(1527), - [sym_map] = STATE(347), - [sym_mapAccessor] = STATE(1009), - [sym_list] = STATE(336), - [sym_listIndex] = STATE(1009), - [sym_log] = STATE(822), - [sym__predicate] = STATE(822), - [sym_predicateNot] = STATE(822), - [sym_predicateMaybe] = STATE(822), - [sym_predicateAnd] = STATE(822), - [sym_predicateOr] = STATE(822), - [sym_predicateAny] = STATE(822), - [sym_predicateIfElse] = STATE(822), - [sym_predicateRewrite] = STATE(822), - [sym_predicateAssignment] = STATE(822), - [sym_predicateAccumulate] = STATE(822), - [sym_predicateGreater] = STATE(822), - [sym_predicateLess] = STATE(822), - [sym_predicateGreaterEqual] = STATE(822), - [sym_predicateLessEqual] = STATE(822), - [sym_predicateNotEqual] = STATE(822), - [sym_predicateEqual] = STATE(822), - [sym_predicateMatch] = STATE(822), - [sym_predicateCall] = STATE(822), - [sym_predicateReturn] = STATE(822), - [sym_languageName] = STATE(1474), - [sym_languageSpecificSnippet] = STATE(419), - [sym_codeSnippet] = STATE(1527), + [sym__container] = STATE(1000), + [sym__literal] = STATE(1437), + [sym_map] = STATE(332), + [sym_mapAccessor] = STATE(1000), + [sym_list] = STATE(344), + [sym_listIndex] = STATE(1000), + [sym_log] = STATE(1469), + [sym__predicate] = STATE(1469), + [sym_predicateNot] = STATE(1469), + [sym_predicateMaybe] = STATE(1469), + [sym_predicateAnd] = STATE(1469), + [sym_predicateOr] = STATE(1469), + [sym_predicateAny] = STATE(1469), + [sym_predicateIfElse] = STATE(1469), + [sym_predicateRewrite] = STATE(1469), + [sym_predicateAssignment] = STATE(1469), + [sym_predicateAccumulate] = STATE(1469), + [sym_predicateGreater] = STATE(1469), + [sym_predicateLess] = STATE(1469), + [sym_predicateGreaterEqual] = STATE(1469), + [sym_predicateLessEqual] = STATE(1469), + [sym_predicateNotEqual] = STATE(1469), + [sym_predicateEqual] = STATE(1469), + [sym_predicateMatch] = STATE(1469), + [sym_predicateCall] = STATE(1469), + [sym_predicateReturn] = STATE(1469), + [sym_languageName] = STATE(1412), + [sym_languageSpecificSnippet] = STATE(519), + [sym_codeSnippet] = STATE(1437), [sym_name] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN] = ACTIONS(953), @@ -33928,6 +34195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(75), [anon_sym_c] = ACTIONS(75), [anon_sym_cpp] = ACTIONS(75), + [anon_sym_kotlin] = ACTIONS(75), [sym_backtickSnippet] = ACTIONS(265), [sym_rawBacktickSnippet] = ACTIONS(265), [sym_undefined] = ACTIONS(975), @@ -33939,7 +34207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [242] = { - [aux_sym_source_file_repeat1] = STATE(1156), + [aux_sym_source_file_repeat1] = STATE(1107), [ts_builtin_sym_end] = ACTIONS(1069), [sym_name] = ACTIONS(1072), [anon_sym_LF] = ACTIONS(1074), @@ -33998,6 +34266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1072), [anon_sym_c] = ACTIONS(1072), [anon_sym_cpp] = ACTIONS(1072), + [anon_sym_kotlin] = ACTIONS(1072), [sym_backtickSnippet] = ACTIONS(1072), [sym_rawBacktickSnippet] = ACTIONS(1072), [sym_undefined] = ACTIONS(1072), @@ -34011,7 +34280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [243] = { - [aux_sym_source_file_repeat1] = STATE(1167), + [aux_sym_source_file_repeat1] = STATE(1161), [ts_builtin_sym_end] = ACTIONS(1077), [sym_name] = ACTIONS(1072), [anon_sym_LF] = ACTIONS(1080), @@ -34070,6 +34339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1072), [anon_sym_c] = ACTIONS(1072), [anon_sym_cpp] = ACTIONS(1072), + [anon_sym_kotlin] = ACTIONS(1072), [sym_backtickSnippet] = ACTIONS(1072), [sym_rawBacktickSnippet] = ACTIONS(1072), [sym_undefined] = ACTIONS(1072), @@ -34083,7 +34353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [244] = { - [aux_sym_source_file_repeat1] = STATE(1064), + [aux_sym_source_file_repeat1] = STATE(1197), [ts_builtin_sym_end] = ACTIONS(1083), [sym_name] = ACTIONS(1072), [anon_sym_LF] = ACTIONS(1086), @@ -34142,6 +34412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1072), [anon_sym_c] = ACTIONS(1072), [anon_sym_cpp] = ACTIONS(1072), + [anon_sym_kotlin] = ACTIONS(1072), [sym_backtickSnippet] = ACTIONS(1072), [sym_rawBacktickSnippet] = ACTIONS(1072), [sym_undefined] = ACTIONS(1072), @@ -34155,7 +34426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [245] = { - [aux_sym_source_file_repeat1] = STATE(1151), + [aux_sym_source_file_repeat1] = STATE(1065), [ts_builtin_sym_end] = ACTIONS(1089), [sym_name] = ACTIONS(1072), [anon_sym_LF] = ACTIONS(1092), @@ -34214,6 +34485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1072), [anon_sym_c] = ACTIONS(1072), [anon_sym_cpp] = ACTIONS(1072), + [anon_sym_kotlin] = ACTIONS(1072), [sym_backtickSnippet] = ACTIONS(1072), [sym_rawBacktickSnippet] = ACTIONS(1072), [sym_undefined] = ACTIONS(1072), @@ -34227,7 +34499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [246] = { - [aux_sym_source_file_repeat1] = STATE(1073), + [aux_sym_source_file_repeat1] = STATE(1164), [ts_builtin_sym_end] = ACTIONS(1095), [sym_name] = ACTIONS(1072), [anon_sym_LF] = ACTIONS(1098), @@ -34286,6 +34558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1072), [anon_sym_c] = ACTIONS(1072), [anon_sym_cpp] = ACTIONS(1072), + [anon_sym_kotlin] = ACTIONS(1072), [sym_backtickSnippet] = ACTIONS(1072), [sym_rawBacktickSnippet] = ACTIONS(1072), [sym_undefined] = ACTIONS(1072), @@ -34299,10 +34572,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [247] = { - [aux_sym_source_file_repeat1] = STATE(1170), + [aux_sym_source_file_repeat1] = STATE(247), [ts_builtin_sym_end] = ACTIONS(1101), [sym_name] = ACTIONS(1072), - [anon_sym_LF] = ACTIONS(1104), + [anon_sym_LF] = ACTIONS(1103), [anon_sym_sequential] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1072), [anon_sym_multifile] = ACTIONS(1072), @@ -34358,6 +34631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1072), [anon_sym_c] = ACTIONS(1072), [anon_sym_cpp] = ACTIONS(1072), + [anon_sym_kotlin] = ACTIONS(1072), [sym_backtickSnippet] = ACTIONS(1072), [sym_rawBacktickSnippet] = ACTIONS(1072), [sym_undefined] = ACTIONS(1072), @@ -34371,10 +34645,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [248] = { - [aux_sym_source_file_repeat1] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(1107), + [aux_sym_source_file_repeat1] = STATE(1092), + [ts_builtin_sym_end] = ACTIONS(1106), [sym_name] = ACTIONS(1072), - [anon_sym_LF] = ACTIONS(1110), + [anon_sym_LF] = ACTIONS(1109), [anon_sym_sequential] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1072), [anon_sym_multifile] = ACTIONS(1072), @@ -34430,6 +34704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1072), [anon_sym_c] = ACTIONS(1072), [anon_sym_cpp] = ACTIONS(1072), + [anon_sym_kotlin] = ACTIONS(1072), [sym_backtickSnippet] = ACTIONS(1072), [sym_rawBacktickSnippet] = ACTIONS(1072), [sym_undefined] = ACTIONS(1072), @@ -34443,10 +34718,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [249] = { - [aux_sym_source_file_repeat1] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1113), + [aux_sym_source_file_repeat1] = STATE(1083), + [ts_builtin_sym_end] = ACTIONS(1112), [sym_name] = ACTIONS(1072), - [anon_sym_LF] = ACTIONS(1116), + [anon_sym_LF] = ACTIONS(1115), [anon_sym_sequential] = ACTIONS(1072), [anon_sym_LBRACE] = ACTIONS(1072), [anon_sym_multifile] = ACTIONS(1072), @@ -34502,6 +34777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1072), [anon_sym_c] = ACTIONS(1072), [anon_sym_cpp] = ACTIONS(1072), + [anon_sym_kotlin] = ACTIONS(1072), [sym_backtickSnippet] = ACTIONS(1072), [sym_rawBacktickSnippet] = ACTIONS(1072), [sym_undefined] = ACTIONS(1072), @@ -34515,8 +34791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [250] = { - [aux_sym_source_file_repeat1] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(1119), + [aux_sym_source_file_repeat1] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1118), [sym_name] = ACTIONS(1072), [anon_sym_LF] = ACTIONS(1121), [anon_sym_sequential] = ACTIONS(1072), @@ -34574,6 +34850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1072), [anon_sym_c] = ACTIONS(1072), [anon_sym_cpp] = ACTIONS(1072), + [anon_sym_kotlin] = ACTIONS(1072), [sym_backtickSnippet] = ACTIONS(1072), [sym_rawBacktickSnippet] = ACTIONS(1072), [sym_undefined] = ACTIONS(1072), @@ -34645,6 +34922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1126), [anon_sym_c] = ACTIONS(1126), [anon_sym_cpp] = ACTIONS(1126), + [anon_sym_kotlin] = ACTIONS(1126), [sym_backtickSnippet] = ACTIONS(1126), [sym_rawBacktickSnippet] = ACTIONS(1126), [sym_undefined] = ACTIONS(1126), @@ -34716,6 +34994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1130), [anon_sym_c] = ACTIONS(1130), [anon_sym_cpp] = ACTIONS(1130), + [anon_sym_kotlin] = ACTIONS(1130), [sym_backtickSnippet] = ACTIONS(1130), [sym_rawBacktickSnippet] = ACTIONS(1130), [sym_undefined] = ACTIONS(1130), @@ -34787,6 +35066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1134), [anon_sym_c] = ACTIONS(1134), [anon_sym_cpp] = ACTIONS(1134), + [anon_sym_kotlin] = ACTIONS(1134), [sym_backtickSnippet] = ACTIONS(1134), [sym_rawBacktickSnippet] = ACTIONS(1134), [sym_undefined] = ACTIONS(1134), @@ -34858,6 +35138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1138), [anon_sym_c] = ACTIONS(1138), [anon_sym_cpp] = ACTIONS(1138), + [anon_sym_kotlin] = ACTIONS(1138), [sym_backtickSnippet] = ACTIONS(1138), [sym_rawBacktickSnippet] = ACTIONS(1138), [sym_undefined] = ACTIONS(1138), @@ -34929,6 +35210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1142), [anon_sym_c] = ACTIONS(1142), [anon_sym_cpp] = ACTIONS(1142), + [anon_sym_kotlin] = ACTIONS(1142), [sym_backtickSnippet] = ACTIONS(1142), [sym_rawBacktickSnippet] = ACTIONS(1142), [sym_undefined] = ACTIONS(1142), @@ -35000,6 +35282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1146), [anon_sym_c] = ACTIONS(1146), [anon_sym_cpp] = ACTIONS(1146), + [anon_sym_kotlin] = ACTIONS(1146), [sym_backtickSnippet] = ACTIONS(1146), [sym_rawBacktickSnippet] = ACTIONS(1146), [sym_undefined] = ACTIONS(1146), @@ -35071,6 +35354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1150), [anon_sym_c] = ACTIONS(1150), [anon_sym_cpp] = ACTIONS(1150), + [anon_sym_kotlin] = ACTIONS(1150), [sym_backtickSnippet] = ACTIONS(1150), [sym_rawBacktickSnippet] = ACTIONS(1150), [sym_undefined] = ACTIONS(1150), @@ -35142,6 +35426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1154), [anon_sym_c] = ACTIONS(1154), [anon_sym_cpp] = ACTIONS(1154), + [anon_sym_kotlin] = ACTIONS(1154), [sym_backtickSnippet] = ACTIONS(1154), [sym_rawBacktickSnippet] = ACTIONS(1154), [sym_undefined] = ACTIONS(1154), @@ -35213,6 +35498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1158), [anon_sym_c] = ACTIONS(1158), [anon_sym_cpp] = ACTIONS(1158), + [anon_sym_kotlin] = ACTIONS(1158), [sym_backtickSnippet] = ACTIONS(1158), [sym_rawBacktickSnippet] = ACTIONS(1158), [sym_undefined] = ACTIONS(1158), @@ -35226,6 +35512,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(113), }, [260] = { + [ts_builtin_sym_end] = ACTIONS(1101), + [sym_name] = ACTIONS(1072), + [anon_sym_LF] = ACTIONS(1101), + [anon_sym_sequential] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_multifile] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_not] = ACTIONS(1072), + [anon_sym_or] = ACTIONS(1072), + [anon_sym_orelse] = ACTIONS(1072), + [anon_sym_any] = ACTIONS(1072), + [anon_sym_and] = ACTIONS(1072), + [anon_sym_maybe] = ACTIONS(1072), + [anon_sym_after] = ACTIONS(1072), + [anon_sym_before] = ACTIONS(1072), + [anon_sym_contains] = ACTIONS(1072), + [anon_sym_includes] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_within] = ACTIONS(1072), + [anon_sym_bubble] = ACTIONS(1072), + [anon_sym_like] = ACTIONS(1072), + [anon_sym_DOT] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_some] = ACTIONS(1072), + [anon_sym_every] = ACTIONS(1072), + [sym_underscore] = ACTIONS(1072), + [anon_sym_private] = ACTIONS(1072), + [anon_sym_pattern] = ACTIONS(1072), + [anon_sym_predicate] = ACTIONS(1072), + [anon_sym_function] = ACTIONS(1072), + [anon_sym_log_LPAREN] = ACTIONS(1072), + [anon_sym_range_LPAREN] = ACTIONS(1072), + [sym_booleanConstant] = ACTIONS(1072), + [sym_variable] = ACTIONS(1072), + [anon_sym_js] = ACTIONS(1072), + [anon_sym_grit] = ACTIONS(1072), + [anon_sym_html] = ACTIONS(1072), + [anon_sym_css] = ACTIONS(1072), + [anon_sym_json] = ACTIONS(1072), + [anon_sym_java] = ACTIONS(1072), + [anon_sym_csharp] = ACTIONS(1072), + [anon_sym_python] = ACTIONS(1072), + [anon_sym_go] = ACTIONS(1072), + [anon_sym_markdown] = ACTIONS(1072), + [anon_sym_rust] = ACTIONS(1072), + [anon_sym_ruby] = ACTIONS(1072), + [anon_sym_sol] = ACTIONS(1072), + [anon_sym_solidity] = ACTIONS(1072), + [anon_sym_hcl] = ACTIONS(1072), + [anon_sym_yaml] = ACTIONS(1072), + [anon_sym_ast] = ACTIONS(1072), + [anon_sym_universal] = ACTIONS(1072), + [anon_sym_sql] = ACTIONS(1072), + [anon_sym_toml] = ACTIONS(1072), + [anon_sym_php] = ACTIONS(1072), + [anon_sym_c] = ACTIONS(1072), + [anon_sym_cpp] = ACTIONS(1072), + [anon_sym_kotlin] = ACTIONS(1072), + [sym_backtickSnippet] = ACTIONS(1072), + [sym_rawBacktickSnippet] = ACTIONS(1072), + [sym_undefined] = ACTIONS(1072), + [sym_top] = ACTIONS(1072), + [sym_bottom] = ACTIONS(1072), + [sym_intConstant] = ACTIONS(1072), + [sym_doubleConstant] = ACTIONS(1072), + [sym_stringConstant] = ACTIONS(1072), + [sym_regex] = ACTIONS(1072), + [anon_sym_r] = ACTIONS(1072), + [sym_comment] = ACTIONS(113), + }, + [261] = { [ts_builtin_sym_end] = ACTIONS(1160), [sym_name] = ACTIONS(1162), [anon_sym_LF] = ACTIONS(1160), @@ -35284,6 +35642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1162), [anon_sym_c] = ACTIONS(1162), [anon_sym_cpp] = ACTIONS(1162), + [anon_sym_kotlin] = ACTIONS(1162), [sym_backtickSnippet] = ACTIONS(1162), [sym_rawBacktickSnippet] = ACTIONS(1162), [sym_undefined] = ACTIONS(1162), @@ -35296,7 +35655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(1162), [sym_comment] = ACTIONS(113), }, - [261] = { + [262] = { [ts_builtin_sym_end] = ACTIONS(1164), [sym_name] = ACTIONS(1166), [anon_sym_LF] = ACTIONS(1164), @@ -35355,6 +35714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1166), [anon_sym_c] = ACTIONS(1166), [anon_sym_cpp] = ACTIONS(1166), + [anon_sym_kotlin] = ACTIONS(1166), [sym_backtickSnippet] = ACTIONS(1166), [sym_rawBacktickSnippet] = ACTIONS(1166), [sym_undefined] = ACTIONS(1166), @@ -35367,7 +35727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(1166), [sym_comment] = ACTIONS(113), }, - [262] = { + [263] = { [ts_builtin_sym_end] = ACTIONS(1168), [sym_name] = ACTIONS(1170), [anon_sym_LF] = ACTIONS(1168), @@ -35426,6 +35786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1170), [anon_sym_c] = ACTIONS(1170), [anon_sym_cpp] = ACTIONS(1170), + [anon_sym_kotlin] = ACTIONS(1170), [sym_backtickSnippet] = ACTIONS(1170), [sym_rawBacktickSnippet] = ACTIONS(1170), [sym_undefined] = ACTIONS(1170), @@ -35438,7 +35799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(1170), [sym_comment] = ACTIONS(113), }, - [263] = { + [264] = { [ts_builtin_sym_end] = ACTIONS(1172), [sym_name] = ACTIONS(1174), [anon_sym_LF] = ACTIONS(1172), @@ -35497,6 +35858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1174), [anon_sym_c] = ACTIONS(1174), [anon_sym_cpp] = ACTIONS(1174), + [anon_sym_kotlin] = ACTIONS(1174), [sym_backtickSnippet] = ACTIONS(1174), [sym_rawBacktickSnippet] = ACTIONS(1174), [sym_undefined] = ACTIONS(1174), @@ -35509,7 +35871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(1174), [sym_comment] = ACTIONS(113), }, - [264] = { + [265] = { [ts_builtin_sym_end] = ACTIONS(1176), [sym_name] = ACTIONS(1178), [anon_sym_LF] = ACTIONS(1176), @@ -35568,6 +35930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1178), [anon_sym_c] = ACTIONS(1178), [anon_sym_cpp] = ACTIONS(1178), + [anon_sym_kotlin] = ACTIONS(1178), [sym_backtickSnippet] = ACTIONS(1178), [sym_rawBacktickSnippet] = ACTIONS(1178), [sym_undefined] = ACTIONS(1178), @@ -35580,7 +35943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(1178), [sym_comment] = ACTIONS(113), }, - [265] = { + [266] = { [ts_builtin_sym_end] = ACTIONS(1180), [sym_name] = ACTIONS(1182), [anon_sym_LF] = ACTIONS(1180), @@ -35639,6 +36002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1182), [anon_sym_c] = ACTIONS(1182), [anon_sym_cpp] = ACTIONS(1182), + [anon_sym_kotlin] = ACTIONS(1182), [sym_backtickSnippet] = ACTIONS(1182), [sym_rawBacktickSnippet] = ACTIONS(1182), [sym_undefined] = ACTIONS(1182), @@ -35651,77 +36015,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(1182), [sym_comment] = ACTIONS(113), }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_name] = ACTIONS(1072), - [anon_sym_LF] = ACTIONS(1119), - [anon_sym_sequential] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_multifile] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_or] = ACTIONS(1072), - [anon_sym_orelse] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_and] = ACTIONS(1072), - [anon_sym_maybe] = ACTIONS(1072), - [anon_sym_after] = ACTIONS(1072), - [anon_sym_before] = ACTIONS(1072), - [anon_sym_contains] = ACTIONS(1072), - [anon_sym_includes] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_within] = ACTIONS(1072), - [anon_sym_bubble] = ACTIONS(1072), - [anon_sym_like] = ACTIONS(1072), - [anon_sym_DOT] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_some] = ACTIONS(1072), - [anon_sym_every] = ACTIONS(1072), - [sym_underscore] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_pattern] = ACTIONS(1072), - [anon_sym_predicate] = ACTIONS(1072), - [anon_sym_function] = ACTIONS(1072), - [anon_sym_log_LPAREN] = ACTIONS(1072), - [anon_sym_range_LPAREN] = ACTIONS(1072), - [sym_booleanConstant] = ACTIONS(1072), - [sym_variable] = ACTIONS(1072), - [anon_sym_js] = ACTIONS(1072), - [anon_sym_grit] = ACTIONS(1072), - [anon_sym_html] = ACTIONS(1072), - [anon_sym_css] = ACTIONS(1072), - [anon_sym_json] = ACTIONS(1072), - [anon_sym_java] = ACTIONS(1072), - [anon_sym_csharp] = ACTIONS(1072), - [anon_sym_python] = ACTIONS(1072), - [anon_sym_go] = ACTIONS(1072), - [anon_sym_markdown] = ACTIONS(1072), - [anon_sym_rust] = ACTIONS(1072), - [anon_sym_ruby] = ACTIONS(1072), - [anon_sym_sol] = ACTIONS(1072), - [anon_sym_solidity] = ACTIONS(1072), - [anon_sym_hcl] = ACTIONS(1072), - [anon_sym_yaml] = ACTIONS(1072), - [anon_sym_ast] = ACTIONS(1072), - [anon_sym_universal] = ACTIONS(1072), - [anon_sym_sql] = ACTIONS(1072), - [anon_sym_toml] = ACTIONS(1072), - [anon_sym_php] = ACTIONS(1072), - [anon_sym_c] = ACTIONS(1072), - [anon_sym_cpp] = ACTIONS(1072), - [sym_backtickSnippet] = ACTIONS(1072), - [sym_rawBacktickSnippet] = ACTIONS(1072), - [sym_undefined] = ACTIONS(1072), - [sym_top] = ACTIONS(1072), - [sym_bottom] = ACTIONS(1072), - [sym_intConstant] = ACTIONS(1072), - [sym_doubleConstant] = ACTIONS(1072), - [sym_stringConstant] = ACTIONS(1072), - [sym_regex] = ACTIONS(1072), - [anon_sym_r] = ACTIONS(1072), - [sym_comment] = ACTIONS(113), - }, [267] = { [ts_builtin_sym_end] = ACTIONS(1184), [sym_name] = ACTIONS(1186), @@ -35781,6 +36074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1186), [anon_sym_c] = ACTIONS(1186), [anon_sym_cpp] = ACTIONS(1186), + [anon_sym_kotlin] = ACTIONS(1186), [sym_backtickSnippet] = ACTIONS(1186), [sym_rawBacktickSnippet] = ACTIONS(1186), [sym_undefined] = ACTIONS(1186), @@ -35852,6 +36146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1190), [anon_sym_c] = ACTIONS(1190), [anon_sym_cpp] = ACTIONS(1190), + [anon_sym_kotlin] = ACTIONS(1190), [sym_backtickSnippet] = ACTIONS(1190), [sym_rawBacktickSnippet] = ACTIONS(1190), [sym_undefined] = ACTIONS(1190), @@ -35923,6 +36218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1194), [anon_sym_c] = ACTIONS(1194), [anon_sym_cpp] = ACTIONS(1194), + [anon_sym_kotlin] = ACTIONS(1194), [sym_backtickSnippet] = ACTIONS(1194), [sym_rawBacktickSnippet] = ACTIONS(1194), [sym_undefined] = ACTIONS(1194), @@ -35938,12 +36234,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [270] = { [ts_builtin_sym_end] = ACTIONS(1196), [sym_name] = ACTIONS(1198), - [anon_sym_LF] = ACTIONS(1196), [anon_sym_sequential] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1196), [anon_sym_multifile] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_language] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1196), [anon_sym_not] = ACTIONS(1198), [anon_sym_or] = ACTIONS(1198), [anon_sym_orelse] = ACTIONS(1198), @@ -35958,17 +36254,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_within] = ACTIONS(1198), [anon_sym_bubble] = ACTIONS(1198), [anon_sym_like] = ACTIONS(1198), - [anon_sym_DOT] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1196), [anon_sym_some] = ACTIONS(1198), [anon_sym_every] = ACTIONS(1198), [sym_underscore] = ACTIONS(1198), [anon_sym_private] = ACTIONS(1198), - [anon_sym_pattern] = ACTIONS(1198), - [anon_sym_predicate] = ACTIONS(1198), - [anon_sym_function] = ACTIONS(1198), - [anon_sym_log_LPAREN] = ACTIONS(1198), - [anon_sym_range_LPAREN] = ACTIONS(1198), + [anon_sym_pattern] = ACTIONS(1196), + [anon_sym_predicate] = ACTIONS(1196), + [anon_sym_function] = ACTIONS(1196), + [anon_sym_log_LPAREN] = ACTIONS(1196), + [anon_sym_range_LPAREN] = ACTIONS(1196), [sym_booleanConstant] = ACTIONS(1198), [sym_variable] = ACTIONS(1198), [anon_sym_js] = ACTIONS(1198), @@ -35994,17 +36290,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1198), [anon_sym_c] = ACTIONS(1198), [anon_sym_cpp] = ACTIONS(1198), - [sym_backtickSnippet] = ACTIONS(1198), - [sym_rawBacktickSnippet] = ACTIONS(1198), + [anon_sym_kotlin] = ACTIONS(1198), + [sym_backtickSnippet] = ACTIONS(1196), + [sym_rawBacktickSnippet] = ACTIONS(1196), [sym_undefined] = ACTIONS(1198), [sym_top] = ACTIONS(1198), [sym_bottom] = ACTIONS(1198), [sym_intConstant] = ACTIONS(1198), - [sym_doubleConstant] = ACTIONS(1198), - [sym_stringConstant] = ACTIONS(1198), - [sym_regex] = ACTIONS(1198), + [sym_doubleConstant] = ACTIONS(1196), + [sym_stringConstant] = ACTIONS(1196), + [sym_regex] = ACTIONS(1196), [anon_sym_r] = ACTIONS(1198), - [sym_comment] = ACTIONS(113), + [sym_comment] = ACTIONS(3), }, [271] = { [ts_builtin_sym_end] = ACTIONS(1200), @@ -36065,6 +36362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1202), [anon_sym_c] = ACTIONS(1202), [anon_sym_cpp] = ACTIONS(1202), + [anon_sym_kotlin] = ACTIONS(1202), [sym_backtickSnippet] = ACTIONS(1202), [sym_rawBacktickSnippet] = ACTIONS(1202), [sym_undefined] = ACTIONS(1202), @@ -36136,6 +36434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1206), [anon_sym_c] = ACTIONS(1206), [anon_sym_cpp] = ACTIONS(1206), + [anon_sym_kotlin] = ACTIONS(1206), [sym_backtickSnippet] = ACTIONS(1206), [sym_rawBacktickSnippet] = ACTIONS(1206), [sym_undefined] = ACTIONS(1206), @@ -36207,6 +36506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1210), [anon_sym_c] = ACTIONS(1210), [anon_sym_cpp] = ACTIONS(1210), + [anon_sym_kotlin] = ACTIONS(1210), [sym_backtickSnippet] = ACTIONS(1210), [sym_rawBacktickSnippet] = ACTIONS(1210), [sym_undefined] = ACTIONS(1210), @@ -36226,7 +36526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1212), [anon_sym_multifile] = ACTIONS(1214), [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_language] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1216), [anon_sym_BANG] = ACTIONS(1212), [anon_sym_not] = ACTIONS(1214), [anon_sym_or] = ACTIONS(1214), @@ -36278,6 +36578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1214), [anon_sym_c] = ACTIONS(1214), [anon_sym_cpp] = ACTIONS(1214), + [anon_sym_kotlin] = ACTIONS(1214), [sym_backtickSnippet] = ACTIONS(1212), [sym_rawBacktickSnippet] = ACTIONS(1212), [sym_undefined] = ACTIONS(1214), @@ -36291,430 +36592,436 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_name] = ACTIONS(1218), - [anon_sym_LF] = ACTIONS(1216), - [anon_sym_sequential] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_multifile] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_not] = ACTIONS(1218), - [anon_sym_or] = ACTIONS(1218), - [anon_sym_orelse] = ACTIONS(1218), - [anon_sym_any] = ACTIONS(1218), - [anon_sym_and] = ACTIONS(1218), - [anon_sym_maybe] = ACTIONS(1218), - [anon_sym_after] = ACTIONS(1218), - [anon_sym_before] = ACTIONS(1218), - [anon_sym_contains] = ACTIONS(1218), - [anon_sym_includes] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_within] = ACTIONS(1218), - [anon_sym_bubble] = ACTIONS(1218), - [anon_sym_like] = ACTIONS(1218), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_some] = ACTIONS(1218), - [anon_sym_every] = ACTIONS(1218), - [sym_underscore] = ACTIONS(1218), - [anon_sym_private] = ACTIONS(1218), - [anon_sym_pattern] = ACTIONS(1218), - [anon_sym_predicate] = ACTIONS(1218), - [anon_sym_function] = ACTIONS(1218), - [anon_sym_log_LPAREN] = ACTIONS(1218), - [anon_sym_range_LPAREN] = ACTIONS(1218), - [sym_booleanConstant] = ACTIONS(1218), - [sym_variable] = ACTIONS(1218), - [anon_sym_js] = ACTIONS(1218), - [anon_sym_grit] = ACTIONS(1218), - [anon_sym_html] = ACTIONS(1218), - [anon_sym_css] = ACTIONS(1218), - [anon_sym_json] = ACTIONS(1218), - [anon_sym_java] = ACTIONS(1218), - [anon_sym_csharp] = ACTIONS(1218), - [anon_sym_python] = ACTIONS(1218), - [anon_sym_go] = ACTIONS(1218), - [anon_sym_markdown] = ACTIONS(1218), - [anon_sym_rust] = ACTIONS(1218), - [anon_sym_ruby] = ACTIONS(1218), - [anon_sym_sol] = ACTIONS(1218), - [anon_sym_solidity] = ACTIONS(1218), - [anon_sym_hcl] = ACTIONS(1218), - [anon_sym_yaml] = ACTIONS(1218), - [anon_sym_ast] = ACTIONS(1218), - [anon_sym_universal] = ACTIONS(1218), - [anon_sym_sql] = ACTIONS(1218), - [anon_sym_toml] = ACTIONS(1218), - [anon_sym_php] = ACTIONS(1218), - [anon_sym_c] = ACTIONS(1218), - [anon_sym_cpp] = ACTIONS(1218), - [sym_backtickSnippet] = ACTIONS(1218), - [sym_rawBacktickSnippet] = ACTIONS(1218), - [sym_undefined] = ACTIONS(1218), - [sym_top] = ACTIONS(1218), - [sym_bottom] = ACTIONS(1218), - [sym_intConstant] = ACTIONS(1218), - [sym_doubleConstant] = ACTIONS(1218), - [sym_stringConstant] = ACTIONS(1218), - [sym_regex] = ACTIONS(1218), - [anon_sym_r] = ACTIONS(1218), + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_name] = ACTIONS(1220), + [anon_sym_LF] = ACTIONS(1218), + [anon_sym_sequential] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_multifile] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_not] = ACTIONS(1220), + [anon_sym_or] = ACTIONS(1220), + [anon_sym_orelse] = ACTIONS(1220), + [anon_sym_any] = ACTIONS(1220), + [anon_sym_and] = ACTIONS(1220), + [anon_sym_maybe] = ACTIONS(1220), + [anon_sym_after] = ACTIONS(1220), + [anon_sym_before] = ACTIONS(1220), + [anon_sym_contains] = ACTIONS(1220), + [anon_sym_includes] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_within] = ACTIONS(1220), + [anon_sym_bubble] = ACTIONS(1220), + [anon_sym_like] = ACTIONS(1220), + [anon_sym_DOT] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_some] = ACTIONS(1220), + [anon_sym_every] = ACTIONS(1220), + [sym_underscore] = ACTIONS(1220), + [anon_sym_private] = ACTIONS(1220), + [anon_sym_pattern] = ACTIONS(1220), + [anon_sym_predicate] = ACTIONS(1220), + [anon_sym_function] = ACTIONS(1220), + [anon_sym_log_LPAREN] = ACTIONS(1220), + [anon_sym_range_LPAREN] = ACTIONS(1220), + [sym_booleanConstant] = ACTIONS(1220), + [sym_variable] = ACTIONS(1220), + [anon_sym_js] = ACTIONS(1220), + [anon_sym_grit] = ACTIONS(1220), + [anon_sym_html] = ACTIONS(1220), + [anon_sym_css] = ACTIONS(1220), + [anon_sym_json] = ACTIONS(1220), + [anon_sym_java] = ACTIONS(1220), + [anon_sym_csharp] = ACTIONS(1220), + [anon_sym_python] = ACTIONS(1220), + [anon_sym_go] = ACTIONS(1220), + [anon_sym_markdown] = ACTIONS(1220), + [anon_sym_rust] = ACTIONS(1220), + [anon_sym_ruby] = ACTIONS(1220), + [anon_sym_sol] = ACTIONS(1220), + [anon_sym_solidity] = ACTIONS(1220), + [anon_sym_hcl] = ACTIONS(1220), + [anon_sym_yaml] = ACTIONS(1220), + [anon_sym_ast] = ACTIONS(1220), + [anon_sym_universal] = ACTIONS(1220), + [anon_sym_sql] = ACTIONS(1220), + [anon_sym_toml] = ACTIONS(1220), + [anon_sym_php] = ACTIONS(1220), + [anon_sym_c] = ACTIONS(1220), + [anon_sym_cpp] = ACTIONS(1220), + [anon_sym_kotlin] = ACTIONS(1220), + [sym_backtickSnippet] = ACTIONS(1220), + [sym_rawBacktickSnippet] = ACTIONS(1220), + [sym_undefined] = ACTIONS(1220), + [sym_top] = ACTIONS(1220), + [sym_bottom] = ACTIONS(1220), + [sym_intConstant] = ACTIONS(1220), + [sym_doubleConstant] = ACTIONS(1220), + [sym_stringConstant] = ACTIONS(1220), + [sym_regex] = ACTIONS(1220), + [anon_sym_r] = ACTIONS(1220), [sym_comment] = ACTIONS(113), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_name] = ACTIONS(1222), - [anon_sym_LF] = ACTIONS(1220), - [anon_sym_sequential] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_multifile] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_not] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1222), - [anon_sym_orelse] = ACTIONS(1222), - [anon_sym_any] = ACTIONS(1222), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_maybe] = ACTIONS(1222), - [anon_sym_after] = ACTIONS(1222), - [anon_sym_before] = ACTIONS(1222), - [anon_sym_contains] = ACTIONS(1222), - [anon_sym_includes] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_within] = ACTIONS(1222), - [anon_sym_bubble] = ACTIONS(1222), - [anon_sym_like] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_some] = ACTIONS(1222), - [anon_sym_every] = ACTIONS(1222), - [sym_underscore] = ACTIONS(1222), - [anon_sym_private] = ACTIONS(1222), - [anon_sym_pattern] = ACTIONS(1222), - [anon_sym_predicate] = ACTIONS(1222), - [anon_sym_function] = ACTIONS(1222), - [anon_sym_log_LPAREN] = ACTIONS(1222), - [anon_sym_range_LPAREN] = ACTIONS(1222), - [sym_booleanConstant] = ACTIONS(1222), - [sym_variable] = ACTIONS(1222), - [anon_sym_js] = ACTIONS(1222), - [anon_sym_grit] = ACTIONS(1222), - [anon_sym_html] = ACTIONS(1222), - [anon_sym_css] = ACTIONS(1222), - [anon_sym_json] = ACTIONS(1222), - [anon_sym_java] = ACTIONS(1222), - [anon_sym_csharp] = ACTIONS(1222), - [anon_sym_python] = ACTIONS(1222), - [anon_sym_go] = ACTIONS(1222), - [anon_sym_markdown] = ACTIONS(1222), - [anon_sym_rust] = ACTIONS(1222), - [anon_sym_ruby] = ACTIONS(1222), - [anon_sym_sol] = ACTIONS(1222), - [anon_sym_solidity] = ACTIONS(1222), - [anon_sym_hcl] = ACTIONS(1222), - [anon_sym_yaml] = ACTIONS(1222), - [anon_sym_ast] = ACTIONS(1222), - [anon_sym_universal] = ACTIONS(1222), - [anon_sym_sql] = ACTIONS(1222), - [anon_sym_toml] = ACTIONS(1222), - [anon_sym_php] = ACTIONS(1222), - [anon_sym_c] = ACTIONS(1222), - [anon_sym_cpp] = ACTIONS(1222), - [sym_backtickSnippet] = ACTIONS(1222), - [sym_rawBacktickSnippet] = ACTIONS(1222), - [sym_undefined] = ACTIONS(1222), - [sym_top] = ACTIONS(1222), - [sym_bottom] = ACTIONS(1222), - [sym_intConstant] = ACTIONS(1222), - [sym_doubleConstant] = ACTIONS(1222), - [sym_stringConstant] = ACTIONS(1222), - [sym_regex] = ACTIONS(1222), - [anon_sym_r] = ACTIONS(1222), + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_name] = ACTIONS(1224), + [anon_sym_LF] = ACTIONS(1222), + [anon_sym_sequential] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_multifile] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_not] = ACTIONS(1224), + [anon_sym_or] = ACTIONS(1224), + [anon_sym_orelse] = ACTIONS(1224), + [anon_sym_any] = ACTIONS(1224), + [anon_sym_and] = ACTIONS(1224), + [anon_sym_maybe] = ACTIONS(1224), + [anon_sym_after] = ACTIONS(1224), + [anon_sym_before] = ACTIONS(1224), + [anon_sym_contains] = ACTIONS(1224), + [anon_sym_includes] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_within] = ACTIONS(1224), + [anon_sym_bubble] = ACTIONS(1224), + [anon_sym_like] = ACTIONS(1224), + [anon_sym_DOT] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_some] = ACTIONS(1224), + [anon_sym_every] = ACTIONS(1224), + [sym_underscore] = ACTIONS(1224), + [anon_sym_private] = ACTIONS(1224), + [anon_sym_pattern] = ACTIONS(1224), + [anon_sym_predicate] = ACTIONS(1224), + [anon_sym_function] = ACTIONS(1224), + [anon_sym_log_LPAREN] = ACTIONS(1224), + [anon_sym_range_LPAREN] = ACTIONS(1224), + [sym_booleanConstant] = ACTIONS(1224), + [sym_variable] = ACTIONS(1224), + [anon_sym_js] = ACTIONS(1224), + [anon_sym_grit] = ACTIONS(1224), + [anon_sym_html] = ACTIONS(1224), + [anon_sym_css] = ACTIONS(1224), + [anon_sym_json] = ACTIONS(1224), + [anon_sym_java] = ACTIONS(1224), + [anon_sym_csharp] = ACTIONS(1224), + [anon_sym_python] = ACTIONS(1224), + [anon_sym_go] = ACTIONS(1224), + [anon_sym_markdown] = ACTIONS(1224), + [anon_sym_rust] = ACTIONS(1224), + [anon_sym_ruby] = ACTIONS(1224), + [anon_sym_sol] = ACTIONS(1224), + [anon_sym_solidity] = ACTIONS(1224), + [anon_sym_hcl] = ACTIONS(1224), + [anon_sym_yaml] = ACTIONS(1224), + [anon_sym_ast] = ACTIONS(1224), + [anon_sym_universal] = ACTIONS(1224), + [anon_sym_sql] = ACTIONS(1224), + [anon_sym_toml] = ACTIONS(1224), + [anon_sym_php] = ACTIONS(1224), + [anon_sym_c] = ACTIONS(1224), + [anon_sym_cpp] = ACTIONS(1224), + [anon_sym_kotlin] = ACTIONS(1224), + [sym_backtickSnippet] = ACTIONS(1224), + [sym_rawBacktickSnippet] = ACTIONS(1224), + [sym_undefined] = ACTIONS(1224), + [sym_top] = ACTIONS(1224), + [sym_bottom] = ACTIONS(1224), + [sym_intConstant] = ACTIONS(1224), + [sym_doubleConstant] = ACTIONS(1224), + [sym_stringConstant] = ACTIONS(1224), + [sym_regex] = ACTIONS(1224), + [anon_sym_r] = ACTIONS(1224), [sym_comment] = ACTIONS(113), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_name] = ACTIONS(1226), - [anon_sym_LF] = ACTIONS(1224), - [anon_sym_sequential] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_multifile] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_not] = ACTIONS(1226), - [anon_sym_or] = ACTIONS(1226), - [anon_sym_orelse] = ACTIONS(1226), - [anon_sym_any] = ACTIONS(1226), - [anon_sym_and] = ACTIONS(1226), - [anon_sym_maybe] = ACTIONS(1226), - [anon_sym_after] = ACTIONS(1226), - [anon_sym_before] = ACTIONS(1226), - [anon_sym_contains] = ACTIONS(1226), - [anon_sym_includes] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_within] = ACTIONS(1226), - [anon_sym_bubble] = ACTIONS(1226), - [anon_sym_like] = ACTIONS(1226), - [anon_sym_DOT] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_some] = ACTIONS(1226), - [anon_sym_every] = ACTIONS(1226), - [sym_underscore] = ACTIONS(1226), - [anon_sym_private] = ACTIONS(1226), - [anon_sym_pattern] = ACTIONS(1226), - [anon_sym_predicate] = ACTIONS(1226), - [anon_sym_function] = ACTIONS(1226), - [anon_sym_log_LPAREN] = ACTIONS(1226), - [anon_sym_range_LPAREN] = ACTIONS(1226), - [sym_booleanConstant] = ACTIONS(1226), - [sym_variable] = ACTIONS(1226), - [anon_sym_js] = ACTIONS(1226), - [anon_sym_grit] = ACTIONS(1226), - [anon_sym_html] = ACTIONS(1226), - [anon_sym_css] = ACTIONS(1226), - [anon_sym_json] = ACTIONS(1226), - [anon_sym_java] = ACTIONS(1226), - [anon_sym_csharp] = ACTIONS(1226), - [anon_sym_python] = ACTIONS(1226), - [anon_sym_go] = ACTIONS(1226), - [anon_sym_markdown] = ACTIONS(1226), - [anon_sym_rust] = ACTIONS(1226), - [anon_sym_ruby] = ACTIONS(1226), - [anon_sym_sol] = ACTIONS(1226), - [anon_sym_solidity] = ACTIONS(1226), - [anon_sym_hcl] = ACTIONS(1226), - [anon_sym_yaml] = ACTIONS(1226), - [anon_sym_ast] = ACTIONS(1226), - [anon_sym_universal] = ACTIONS(1226), - [anon_sym_sql] = ACTIONS(1226), - [anon_sym_toml] = ACTIONS(1226), - [anon_sym_php] = ACTIONS(1226), - [anon_sym_c] = ACTIONS(1226), - [anon_sym_cpp] = ACTIONS(1226), - [sym_backtickSnippet] = ACTIONS(1226), - [sym_rawBacktickSnippet] = ACTIONS(1226), - [sym_undefined] = ACTIONS(1226), - [sym_top] = ACTIONS(1226), - [sym_bottom] = ACTIONS(1226), - [sym_intConstant] = ACTIONS(1226), - [sym_doubleConstant] = ACTIONS(1226), - [sym_stringConstant] = ACTIONS(1226), - [sym_regex] = ACTIONS(1226), - [anon_sym_r] = ACTIONS(1226), + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_name] = ACTIONS(1228), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_sequential] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_multifile] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_not] = ACTIONS(1228), + [anon_sym_or] = ACTIONS(1228), + [anon_sym_orelse] = ACTIONS(1228), + [anon_sym_any] = ACTIONS(1228), + [anon_sym_and] = ACTIONS(1228), + [anon_sym_maybe] = ACTIONS(1228), + [anon_sym_after] = ACTIONS(1228), + [anon_sym_before] = ACTIONS(1228), + [anon_sym_contains] = ACTIONS(1228), + [anon_sym_includes] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_within] = ACTIONS(1228), + [anon_sym_bubble] = ACTIONS(1228), + [anon_sym_like] = ACTIONS(1228), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_some] = ACTIONS(1228), + [anon_sym_every] = ACTIONS(1228), + [sym_underscore] = ACTIONS(1228), + [anon_sym_private] = ACTIONS(1228), + [anon_sym_pattern] = ACTIONS(1228), + [anon_sym_predicate] = ACTIONS(1228), + [anon_sym_function] = ACTIONS(1228), + [anon_sym_log_LPAREN] = ACTIONS(1228), + [anon_sym_range_LPAREN] = ACTIONS(1228), + [sym_booleanConstant] = ACTIONS(1228), + [sym_variable] = ACTIONS(1228), + [anon_sym_js] = ACTIONS(1228), + [anon_sym_grit] = ACTIONS(1228), + [anon_sym_html] = ACTIONS(1228), + [anon_sym_css] = ACTIONS(1228), + [anon_sym_json] = ACTIONS(1228), + [anon_sym_java] = ACTIONS(1228), + [anon_sym_csharp] = ACTIONS(1228), + [anon_sym_python] = ACTIONS(1228), + [anon_sym_go] = ACTIONS(1228), + [anon_sym_markdown] = ACTIONS(1228), + [anon_sym_rust] = ACTIONS(1228), + [anon_sym_ruby] = ACTIONS(1228), + [anon_sym_sol] = ACTIONS(1228), + [anon_sym_solidity] = ACTIONS(1228), + [anon_sym_hcl] = ACTIONS(1228), + [anon_sym_yaml] = ACTIONS(1228), + [anon_sym_ast] = ACTIONS(1228), + [anon_sym_universal] = ACTIONS(1228), + [anon_sym_sql] = ACTIONS(1228), + [anon_sym_toml] = ACTIONS(1228), + [anon_sym_php] = ACTIONS(1228), + [anon_sym_c] = ACTIONS(1228), + [anon_sym_cpp] = ACTIONS(1228), + [anon_sym_kotlin] = ACTIONS(1228), + [sym_backtickSnippet] = ACTIONS(1228), + [sym_rawBacktickSnippet] = ACTIONS(1228), + [sym_undefined] = ACTIONS(1228), + [sym_top] = ACTIONS(1228), + [sym_bottom] = ACTIONS(1228), + [sym_intConstant] = ACTIONS(1228), + [sym_doubleConstant] = ACTIONS(1228), + [sym_stringConstant] = ACTIONS(1228), + [sym_regex] = ACTIONS(1228), + [anon_sym_r] = ACTIONS(1228), [sym_comment] = ACTIONS(113), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_name] = ACTIONS(1230), - [anon_sym_LF] = ACTIONS(1228), - [anon_sym_sequential] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_multifile] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_not] = ACTIONS(1230), - [anon_sym_or] = ACTIONS(1230), - [anon_sym_orelse] = ACTIONS(1230), - [anon_sym_any] = ACTIONS(1230), - [anon_sym_and] = ACTIONS(1230), - [anon_sym_maybe] = ACTIONS(1230), - [anon_sym_after] = ACTIONS(1230), - [anon_sym_before] = ACTIONS(1230), - [anon_sym_contains] = ACTIONS(1230), - [anon_sym_includes] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_within] = ACTIONS(1230), - [anon_sym_bubble] = ACTIONS(1230), - [anon_sym_like] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_some] = ACTIONS(1230), - [anon_sym_every] = ACTIONS(1230), - [sym_underscore] = ACTIONS(1230), - [anon_sym_private] = ACTIONS(1230), - [anon_sym_pattern] = ACTIONS(1230), - [anon_sym_predicate] = ACTIONS(1230), - [anon_sym_function] = ACTIONS(1230), - [anon_sym_log_LPAREN] = ACTIONS(1230), - [anon_sym_range_LPAREN] = ACTIONS(1230), - [sym_booleanConstant] = ACTIONS(1230), - [sym_variable] = ACTIONS(1230), - [anon_sym_js] = ACTIONS(1230), - [anon_sym_grit] = ACTIONS(1230), - [anon_sym_html] = ACTIONS(1230), - [anon_sym_css] = ACTIONS(1230), - [anon_sym_json] = ACTIONS(1230), - [anon_sym_java] = ACTIONS(1230), - [anon_sym_csharp] = ACTIONS(1230), - [anon_sym_python] = ACTIONS(1230), - [anon_sym_go] = ACTIONS(1230), - [anon_sym_markdown] = ACTIONS(1230), - [anon_sym_rust] = ACTIONS(1230), - [anon_sym_ruby] = ACTIONS(1230), - [anon_sym_sol] = ACTIONS(1230), - [anon_sym_solidity] = ACTIONS(1230), - [anon_sym_hcl] = ACTIONS(1230), - [anon_sym_yaml] = ACTIONS(1230), - [anon_sym_ast] = ACTIONS(1230), - [anon_sym_universal] = ACTIONS(1230), - [anon_sym_sql] = ACTIONS(1230), - [anon_sym_toml] = ACTIONS(1230), - [anon_sym_php] = ACTIONS(1230), - [anon_sym_c] = ACTIONS(1230), - [anon_sym_cpp] = ACTIONS(1230), - [sym_backtickSnippet] = ACTIONS(1230), - [sym_rawBacktickSnippet] = ACTIONS(1230), - [sym_undefined] = ACTIONS(1230), - [sym_top] = ACTIONS(1230), - [sym_bottom] = ACTIONS(1230), - [sym_intConstant] = ACTIONS(1230), - [sym_doubleConstant] = ACTIONS(1230), - [sym_stringConstant] = ACTIONS(1230), - [sym_regex] = ACTIONS(1230), - [anon_sym_r] = ACTIONS(1230), + [ts_builtin_sym_end] = ACTIONS(1230), + [sym_name] = ACTIONS(1232), + [anon_sym_LF] = ACTIONS(1230), + [anon_sym_sequential] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_multifile] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_not] = ACTIONS(1232), + [anon_sym_or] = ACTIONS(1232), + [anon_sym_orelse] = ACTIONS(1232), + [anon_sym_any] = ACTIONS(1232), + [anon_sym_and] = ACTIONS(1232), + [anon_sym_maybe] = ACTIONS(1232), + [anon_sym_after] = ACTIONS(1232), + [anon_sym_before] = ACTIONS(1232), + [anon_sym_contains] = ACTIONS(1232), + [anon_sym_includes] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_within] = ACTIONS(1232), + [anon_sym_bubble] = ACTIONS(1232), + [anon_sym_like] = ACTIONS(1232), + [anon_sym_DOT] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_some] = ACTIONS(1232), + [anon_sym_every] = ACTIONS(1232), + [sym_underscore] = ACTIONS(1232), + [anon_sym_private] = ACTIONS(1232), + [anon_sym_pattern] = ACTIONS(1232), + [anon_sym_predicate] = ACTIONS(1232), + [anon_sym_function] = ACTIONS(1232), + [anon_sym_log_LPAREN] = ACTIONS(1232), + [anon_sym_range_LPAREN] = ACTIONS(1232), + [sym_booleanConstant] = ACTIONS(1232), + [sym_variable] = ACTIONS(1232), + [anon_sym_js] = ACTIONS(1232), + [anon_sym_grit] = ACTIONS(1232), + [anon_sym_html] = ACTIONS(1232), + [anon_sym_css] = ACTIONS(1232), + [anon_sym_json] = ACTIONS(1232), + [anon_sym_java] = ACTIONS(1232), + [anon_sym_csharp] = ACTIONS(1232), + [anon_sym_python] = ACTIONS(1232), + [anon_sym_go] = ACTIONS(1232), + [anon_sym_markdown] = ACTIONS(1232), + [anon_sym_rust] = ACTIONS(1232), + [anon_sym_ruby] = ACTIONS(1232), + [anon_sym_sol] = ACTIONS(1232), + [anon_sym_solidity] = ACTIONS(1232), + [anon_sym_hcl] = ACTIONS(1232), + [anon_sym_yaml] = ACTIONS(1232), + [anon_sym_ast] = ACTIONS(1232), + [anon_sym_universal] = ACTIONS(1232), + [anon_sym_sql] = ACTIONS(1232), + [anon_sym_toml] = ACTIONS(1232), + [anon_sym_php] = ACTIONS(1232), + [anon_sym_c] = ACTIONS(1232), + [anon_sym_cpp] = ACTIONS(1232), + [anon_sym_kotlin] = ACTIONS(1232), + [sym_backtickSnippet] = ACTIONS(1232), + [sym_rawBacktickSnippet] = ACTIONS(1232), + [sym_undefined] = ACTIONS(1232), + [sym_top] = ACTIONS(1232), + [sym_bottom] = ACTIONS(1232), + [sym_intConstant] = ACTIONS(1232), + [sym_doubleConstant] = ACTIONS(1232), + [sym_stringConstant] = ACTIONS(1232), + [sym_regex] = ACTIONS(1232), + [anon_sym_r] = ACTIONS(1232), [sym_comment] = ACTIONS(113), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_name] = ACTIONS(1234), - [anon_sym_LF] = ACTIONS(1232), - [anon_sym_sequential] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_multifile] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_not] = ACTIONS(1234), - [anon_sym_or] = ACTIONS(1234), - [anon_sym_orelse] = ACTIONS(1234), - [anon_sym_any] = ACTIONS(1234), - [anon_sym_and] = ACTIONS(1234), - [anon_sym_maybe] = ACTIONS(1234), - [anon_sym_after] = ACTIONS(1234), - [anon_sym_before] = ACTIONS(1234), - [anon_sym_contains] = ACTIONS(1234), - [anon_sym_includes] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_within] = ACTIONS(1234), - [anon_sym_bubble] = ACTIONS(1234), - [anon_sym_like] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_some] = ACTIONS(1234), - [anon_sym_every] = ACTIONS(1234), - [sym_underscore] = ACTIONS(1234), - [anon_sym_private] = ACTIONS(1234), - [anon_sym_pattern] = ACTIONS(1234), - [anon_sym_predicate] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(1234), - [anon_sym_log_LPAREN] = ACTIONS(1234), - [anon_sym_range_LPAREN] = ACTIONS(1234), - [sym_booleanConstant] = ACTIONS(1234), - [sym_variable] = ACTIONS(1234), - [anon_sym_js] = ACTIONS(1234), - [anon_sym_grit] = ACTIONS(1234), - [anon_sym_html] = ACTIONS(1234), - [anon_sym_css] = ACTIONS(1234), - [anon_sym_json] = ACTIONS(1234), - [anon_sym_java] = ACTIONS(1234), - [anon_sym_csharp] = ACTIONS(1234), - [anon_sym_python] = ACTIONS(1234), - [anon_sym_go] = ACTIONS(1234), - [anon_sym_markdown] = ACTIONS(1234), - [anon_sym_rust] = ACTIONS(1234), - [anon_sym_ruby] = ACTIONS(1234), - [anon_sym_sol] = ACTIONS(1234), - [anon_sym_solidity] = ACTIONS(1234), - [anon_sym_hcl] = ACTIONS(1234), - [anon_sym_yaml] = ACTIONS(1234), - [anon_sym_ast] = ACTIONS(1234), - [anon_sym_universal] = ACTIONS(1234), - [anon_sym_sql] = ACTIONS(1234), - [anon_sym_toml] = ACTIONS(1234), - [anon_sym_php] = ACTIONS(1234), - [anon_sym_c] = ACTIONS(1234), - [anon_sym_cpp] = ACTIONS(1234), - [sym_backtickSnippet] = ACTIONS(1234), - [sym_rawBacktickSnippet] = ACTIONS(1234), - [sym_undefined] = ACTIONS(1234), - [sym_top] = ACTIONS(1234), - [sym_bottom] = ACTIONS(1234), - [sym_intConstant] = ACTIONS(1234), - [sym_doubleConstant] = ACTIONS(1234), - [sym_stringConstant] = ACTIONS(1234), - [sym_regex] = ACTIONS(1234), - [anon_sym_r] = ACTIONS(1234), - [sym_comment] = ACTIONS(113), - }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_name] = ACTIONS(1238), - [anon_sym_sequential] = ACTIONS(1238), + [ts_builtin_sym_end] = ACTIONS(1234), + [sym_name] = ACTIONS(1236), + [anon_sym_LF] = ACTIONS(1234), + [anon_sym_sequential] = ACTIONS(1236), [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_multifile] = ACTIONS(1238), + [anon_sym_multifile] = ACTIONS(1236), [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1240), [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_not] = ACTIONS(1238), - [anon_sym_or] = ACTIONS(1238), - [anon_sym_orelse] = ACTIONS(1238), - [anon_sym_any] = ACTIONS(1238), - [anon_sym_and] = ACTIONS(1238), - [anon_sym_maybe] = ACTIONS(1238), - [anon_sym_after] = ACTIONS(1238), - [anon_sym_before] = ACTIONS(1238), - [anon_sym_contains] = ACTIONS(1238), - [anon_sym_includes] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_within] = ACTIONS(1238), - [anon_sym_bubble] = ACTIONS(1238), - [anon_sym_like] = ACTIONS(1238), + [anon_sym_not] = ACTIONS(1236), + [anon_sym_or] = ACTIONS(1236), + [anon_sym_orelse] = ACTIONS(1236), + [anon_sym_any] = ACTIONS(1236), + [anon_sym_and] = ACTIONS(1236), + [anon_sym_maybe] = ACTIONS(1236), + [anon_sym_after] = ACTIONS(1236), + [anon_sym_before] = ACTIONS(1236), + [anon_sym_contains] = ACTIONS(1236), + [anon_sym_includes] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_within] = ACTIONS(1236), + [anon_sym_bubble] = ACTIONS(1236), + [anon_sym_like] = ACTIONS(1236), [anon_sym_DOT] = ACTIONS(1236), [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_some] = ACTIONS(1238), - [anon_sym_every] = ACTIONS(1238), - [sym_underscore] = ACTIONS(1238), - [anon_sym_private] = ACTIONS(1238), + [anon_sym_some] = ACTIONS(1236), + [anon_sym_every] = ACTIONS(1236), + [sym_underscore] = ACTIONS(1236), + [anon_sym_private] = ACTIONS(1236), [anon_sym_pattern] = ACTIONS(1236), [anon_sym_predicate] = ACTIONS(1236), [anon_sym_function] = ACTIONS(1236), [anon_sym_log_LPAREN] = ACTIONS(1236), [anon_sym_range_LPAREN] = ACTIONS(1236), - [sym_booleanConstant] = ACTIONS(1238), - [sym_variable] = ACTIONS(1238), - [anon_sym_js] = ACTIONS(1238), - [anon_sym_grit] = ACTIONS(1238), - [anon_sym_html] = ACTIONS(1238), - [anon_sym_css] = ACTIONS(1238), - [anon_sym_json] = ACTIONS(1238), - [anon_sym_java] = ACTIONS(1238), - [anon_sym_csharp] = ACTIONS(1238), - [anon_sym_python] = ACTIONS(1238), - [anon_sym_go] = ACTIONS(1238), - [anon_sym_markdown] = ACTIONS(1238), - [anon_sym_rust] = ACTIONS(1238), - [anon_sym_ruby] = ACTIONS(1238), - [anon_sym_sol] = ACTIONS(1238), - [anon_sym_solidity] = ACTIONS(1238), - [anon_sym_hcl] = ACTIONS(1238), - [anon_sym_yaml] = ACTIONS(1238), - [anon_sym_ast] = ACTIONS(1238), - [anon_sym_universal] = ACTIONS(1238), - [anon_sym_sql] = ACTIONS(1238), - [anon_sym_toml] = ACTIONS(1238), - [anon_sym_php] = ACTIONS(1238), - [anon_sym_c] = ACTIONS(1238), - [anon_sym_cpp] = ACTIONS(1238), + [sym_booleanConstant] = ACTIONS(1236), + [sym_variable] = ACTIONS(1236), + [anon_sym_js] = ACTIONS(1236), + [anon_sym_grit] = ACTIONS(1236), + [anon_sym_html] = ACTIONS(1236), + [anon_sym_css] = ACTIONS(1236), + [anon_sym_json] = ACTIONS(1236), + [anon_sym_java] = ACTIONS(1236), + [anon_sym_csharp] = ACTIONS(1236), + [anon_sym_python] = ACTIONS(1236), + [anon_sym_go] = ACTIONS(1236), + [anon_sym_markdown] = ACTIONS(1236), + [anon_sym_rust] = ACTIONS(1236), + [anon_sym_ruby] = ACTIONS(1236), + [anon_sym_sol] = ACTIONS(1236), + [anon_sym_solidity] = ACTIONS(1236), + [anon_sym_hcl] = ACTIONS(1236), + [anon_sym_yaml] = ACTIONS(1236), + [anon_sym_ast] = ACTIONS(1236), + [anon_sym_universal] = ACTIONS(1236), + [anon_sym_sql] = ACTIONS(1236), + [anon_sym_toml] = ACTIONS(1236), + [anon_sym_php] = ACTIONS(1236), + [anon_sym_c] = ACTIONS(1236), + [anon_sym_cpp] = ACTIONS(1236), + [anon_sym_kotlin] = ACTIONS(1236), [sym_backtickSnippet] = ACTIONS(1236), [sym_rawBacktickSnippet] = ACTIONS(1236), - [sym_undefined] = ACTIONS(1238), - [sym_top] = ACTIONS(1238), - [sym_bottom] = ACTIONS(1238), - [sym_intConstant] = ACTIONS(1238), + [sym_undefined] = ACTIONS(1236), + [sym_top] = ACTIONS(1236), + [sym_bottom] = ACTIONS(1236), + [sym_intConstant] = ACTIONS(1236), [sym_doubleConstant] = ACTIONS(1236), [sym_stringConstant] = ACTIONS(1236), [sym_regex] = ACTIONS(1236), - [anon_sym_r] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), + [anon_sym_r] = ACTIONS(1236), + [sym_comment] = ACTIONS(113), + }, + [280] = { + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_name] = ACTIONS(1240), + [anon_sym_LF] = ACTIONS(1238), + [anon_sym_sequential] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_multifile] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_not] = ACTIONS(1240), + [anon_sym_or] = ACTIONS(1240), + [anon_sym_orelse] = ACTIONS(1240), + [anon_sym_any] = ACTIONS(1240), + [anon_sym_and] = ACTIONS(1240), + [anon_sym_maybe] = ACTIONS(1240), + [anon_sym_after] = ACTIONS(1240), + [anon_sym_before] = ACTIONS(1240), + [anon_sym_contains] = ACTIONS(1240), + [anon_sym_includes] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_within] = ACTIONS(1240), + [anon_sym_bubble] = ACTIONS(1240), + [anon_sym_like] = ACTIONS(1240), + [anon_sym_DOT] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_some] = ACTIONS(1240), + [anon_sym_every] = ACTIONS(1240), + [sym_underscore] = ACTIONS(1240), + [anon_sym_private] = ACTIONS(1240), + [anon_sym_pattern] = ACTIONS(1240), + [anon_sym_predicate] = ACTIONS(1240), + [anon_sym_function] = ACTIONS(1240), + [anon_sym_log_LPAREN] = ACTIONS(1240), + [anon_sym_range_LPAREN] = ACTIONS(1240), + [sym_booleanConstant] = ACTIONS(1240), + [sym_variable] = ACTIONS(1240), + [anon_sym_js] = ACTIONS(1240), + [anon_sym_grit] = ACTIONS(1240), + [anon_sym_html] = ACTIONS(1240), + [anon_sym_css] = ACTIONS(1240), + [anon_sym_json] = ACTIONS(1240), + [anon_sym_java] = ACTIONS(1240), + [anon_sym_csharp] = ACTIONS(1240), + [anon_sym_python] = ACTIONS(1240), + [anon_sym_go] = ACTIONS(1240), + [anon_sym_markdown] = ACTIONS(1240), + [anon_sym_rust] = ACTIONS(1240), + [anon_sym_ruby] = ACTIONS(1240), + [anon_sym_sol] = ACTIONS(1240), + [anon_sym_solidity] = ACTIONS(1240), + [anon_sym_hcl] = ACTIONS(1240), + [anon_sym_yaml] = ACTIONS(1240), + [anon_sym_ast] = ACTIONS(1240), + [anon_sym_universal] = ACTIONS(1240), + [anon_sym_sql] = ACTIONS(1240), + [anon_sym_toml] = ACTIONS(1240), + [anon_sym_php] = ACTIONS(1240), + [anon_sym_c] = ACTIONS(1240), + [anon_sym_cpp] = ACTIONS(1240), + [anon_sym_kotlin] = ACTIONS(1240), + [sym_backtickSnippet] = ACTIONS(1240), + [sym_rawBacktickSnippet] = ACTIONS(1240), + [sym_undefined] = ACTIONS(1240), + [sym_top] = ACTIONS(1240), + [sym_bottom] = ACTIONS(1240), + [sym_intConstant] = ACTIONS(1240), + [sym_doubleConstant] = ACTIONS(1240), + [sym_stringConstant] = ACTIONS(1240), + [sym_regex] = ACTIONS(1240), + [anon_sym_r] = ACTIONS(1240), + [sym_comment] = ACTIONS(113), }, [281] = { [ts_builtin_sym_end] = ACTIONS(1242), @@ -36775,6 +37082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1244), [anon_sym_c] = ACTIONS(1244), [anon_sym_cpp] = ACTIONS(1244), + [anon_sym_kotlin] = ACTIONS(1244), [sym_backtickSnippet] = ACTIONS(1244), [sym_rawBacktickSnippet] = ACTIONS(1244), [sym_undefined] = ACTIONS(1244), @@ -36846,6 +37154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1248), [anon_sym_c] = ACTIONS(1248), [anon_sym_cpp] = ACTIONS(1248), + [anon_sym_kotlin] = ACTIONS(1248), [sym_backtickSnippet] = ACTIONS(1248), [sym_rawBacktickSnippet] = ACTIONS(1248), [sym_undefined] = ACTIONS(1248), @@ -36917,6 +37226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1252), [anon_sym_c] = ACTIONS(1252), [anon_sym_cpp] = ACTIONS(1252), + [anon_sym_kotlin] = ACTIONS(1252), [sym_backtickSnippet] = ACTIONS(1252), [sym_rawBacktickSnippet] = ACTIONS(1252), [sym_undefined] = ACTIONS(1252), @@ -36988,6 +37298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1256), [anon_sym_c] = ACTIONS(1256), [anon_sym_cpp] = ACTIONS(1256), + [anon_sym_kotlin] = ACTIONS(1256), [sym_backtickSnippet] = ACTIONS(1256), [sym_rawBacktickSnippet] = ACTIONS(1256), [sym_undefined] = ACTIONS(1256), @@ -37059,6 +37370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1260), [anon_sym_c] = ACTIONS(1260), [anon_sym_cpp] = ACTIONS(1260), + [anon_sym_kotlin] = ACTIONS(1260), [sym_backtickSnippet] = ACTIONS(1260), [sym_rawBacktickSnippet] = ACTIONS(1260), [sym_undefined] = ACTIONS(1260), @@ -37130,6 +37442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1264), [anon_sym_c] = ACTIONS(1264), [anon_sym_cpp] = ACTIONS(1264), + [anon_sym_kotlin] = ACTIONS(1264), [sym_backtickSnippet] = ACTIONS(1264), [sym_rawBacktickSnippet] = ACTIONS(1264), [sym_undefined] = ACTIONS(1264), @@ -37201,6 +37514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1268), [anon_sym_c] = ACTIONS(1268), [anon_sym_cpp] = ACTIONS(1268), + [anon_sym_kotlin] = ACTIONS(1268), [sym_backtickSnippet] = ACTIONS(1268), [sym_rawBacktickSnippet] = ACTIONS(1268), [sym_undefined] = ACTIONS(1268), @@ -37272,6 +37586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1272), [anon_sym_c] = ACTIONS(1272), [anon_sym_cpp] = ACTIONS(1272), + [anon_sym_kotlin] = ACTIONS(1272), [sym_backtickSnippet] = ACTIONS(1272), [sym_rawBacktickSnippet] = ACTIONS(1272), [sym_undefined] = ACTIONS(1272), @@ -37343,6 +37658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1276), [anon_sym_c] = ACTIONS(1276), [anon_sym_cpp] = ACTIONS(1276), + [anon_sym_kotlin] = ACTIONS(1276), [sym_backtickSnippet] = ACTIONS(1276), [sym_rawBacktickSnippet] = ACTIONS(1276), [sym_undefined] = ACTIONS(1276), @@ -37414,6 +37730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1280), [anon_sym_c] = ACTIONS(1280), [anon_sym_cpp] = ACTIONS(1280), + [anon_sym_kotlin] = ACTIONS(1280), [sym_backtickSnippet] = ACTIONS(1280), [sym_rawBacktickSnippet] = ACTIONS(1280), [sym_undefined] = ACTIONS(1280), @@ -37485,6 +37802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1284), [anon_sym_c] = ACTIONS(1284), [anon_sym_cpp] = ACTIONS(1284), + [anon_sym_kotlin] = ACTIONS(1284), [sym_backtickSnippet] = ACTIONS(1284), [sym_rawBacktickSnippet] = ACTIONS(1284), [sym_undefined] = ACTIONS(1284), @@ -37556,6 +37874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1288), [anon_sym_c] = ACTIONS(1288), [anon_sym_cpp] = ACTIONS(1288), + [anon_sym_kotlin] = ACTIONS(1288), [sym_backtickSnippet] = ACTIONS(1288), [sym_rawBacktickSnippet] = ACTIONS(1288), [sym_undefined] = ACTIONS(1288), @@ -37627,6 +37946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1292), [anon_sym_c] = ACTIONS(1292), [anon_sym_cpp] = ACTIONS(1292), + [anon_sym_kotlin] = ACTIONS(1292), [sym_backtickSnippet] = ACTIONS(1292), [sym_rawBacktickSnippet] = ACTIONS(1292), [sym_undefined] = ACTIONS(1292), @@ -37698,6 +38018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1296), [anon_sym_c] = ACTIONS(1296), [anon_sym_cpp] = ACTIONS(1296), + [anon_sym_kotlin] = ACTIONS(1296), [sym_backtickSnippet] = ACTIONS(1296), [sym_rawBacktickSnippet] = ACTIONS(1296), [sym_undefined] = ACTIONS(1296), @@ -37769,6 +38090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1300), [anon_sym_c] = ACTIONS(1300), [anon_sym_cpp] = ACTIONS(1300), + [anon_sym_kotlin] = ACTIONS(1300), [sym_backtickSnippet] = ACTIONS(1300), [sym_rawBacktickSnippet] = ACTIONS(1300), [sym_undefined] = ACTIONS(1300), @@ -37840,6 +38162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1304), [anon_sym_c] = ACTIONS(1304), [anon_sym_cpp] = ACTIONS(1304), + [anon_sym_kotlin] = ACTIONS(1304), [sym_backtickSnippet] = ACTIONS(1304), [sym_rawBacktickSnippet] = ACTIONS(1304), [sym_undefined] = ACTIONS(1304), @@ -37911,6 +38234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1308), [anon_sym_c] = ACTIONS(1308), [anon_sym_cpp] = ACTIONS(1308), + [anon_sym_kotlin] = ACTIONS(1308), [sym_backtickSnippet] = ACTIONS(1308), [sym_rawBacktickSnippet] = ACTIONS(1308), [sym_undefined] = ACTIONS(1308), @@ -37982,6 +38306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1312), [anon_sym_c] = ACTIONS(1312), [anon_sym_cpp] = ACTIONS(1312), + [anon_sym_kotlin] = ACTIONS(1312), [sym_backtickSnippet] = ACTIONS(1312), [sym_rawBacktickSnippet] = ACTIONS(1312), [sym_undefined] = ACTIONS(1312), @@ -38000,7 +38325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sequential] = ACTIONS(1316), [anon_sym_LBRACE] = ACTIONS(1314), [anon_sym_multifile] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1314), [anon_sym_BANG] = ACTIONS(1314), [anon_sym_not] = ACTIONS(1316), [anon_sym_or] = ACTIONS(1316), @@ -38052,6 +38377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_php] = ACTIONS(1316), [anon_sym_c] = ACTIONS(1316), [anon_sym_cpp] = ACTIONS(1316), + [anon_sym_kotlin] = ACTIONS(1316), [sym_backtickSnippet] = ACTIONS(1314), [sym_rawBacktickSnippet] = ACTIONS(1314), [sym_undefined] = ACTIONS(1316), @@ -38065,143 +38391,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_name] = ACTIONS(1322), - [anon_sym_sequential] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_multifile] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_not] = ACTIONS(1322), - [anon_sym_or] = ACTIONS(1322), - [anon_sym_orelse] = ACTIONS(1322), - [anon_sym_any] = ACTIONS(1322), - [anon_sym_and] = ACTIONS(1322), - [anon_sym_maybe] = ACTIONS(1322), - [anon_sym_after] = ACTIONS(1322), - [anon_sym_before] = ACTIONS(1322), - [anon_sym_contains] = ACTIONS(1322), - [anon_sym_includes] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_within] = ACTIONS(1322), - [anon_sym_bubble] = ACTIONS(1322), - [anon_sym_like] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_some] = ACTIONS(1322), - [anon_sym_every] = ACTIONS(1322), - [sym_underscore] = ACTIONS(1322), - [anon_sym_private] = ACTIONS(1322), - [anon_sym_pattern] = ACTIONS(1320), - [anon_sym_predicate] = ACTIONS(1320), - [anon_sym_function] = ACTIONS(1320), - [anon_sym_log_LPAREN] = ACTIONS(1320), - [anon_sym_range_LPAREN] = ACTIONS(1320), - [sym_booleanConstant] = ACTIONS(1322), - [sym_variable] = ACTIONS(1322), - [anon_sym_js] = ACTIONS(1322), - [anon_sym_grit] = ACTIONS(1322), - [anon_sym_html] = ACTIONS(1322), - [anon_sym_css] = ACTIONS(1322), - [anon_sym_json] = ACTIONS(1322), - [anon_sym_java] = ACTIONS(1322), - [anon_sym_csharp] = ACTIONS(1322), - [anon_sym_python] = ACTIONS(1322), - [anon_sym_go] = ACTIONS(1322), - [anon_sym_markdown] = ACTIONS(1322), - [anon_sym_rust] = ACTIONS(1322), - [anon_sym_ruby] = ACTIONS(1322), - [anon_sym_sol] = ACTIONS(1322), - [anon_sym_solidity] = ACTIONS(1322), - [anon_sym_hcl] = ACTIONS(1322), - [anon_sym_yaml] = ACTIONS(1322), - [anon_sym_ast] = ACTIONS(1322), - [anon_sym_universal] = ACTIONS(1322), - [anon_sym_sql] = ACTIONS(1322), - [anon_sym_toml] = ACTIONS(1322), - [anon_sym_php] = ACTIONS(1322), - [anon_sym_c] = ACTIONS(1322), - [anon_sym_cpp] = ACTIONS(1322), - [sym_backtickSnippet] = ACTIONS(1320), - [sym_rawBacktickSnippet] = ACTIONS(1320), - [sym_undefined] = ACTIONS(1322), - [sym_top] = ACTIONS(1322), - [sym_bottom] = ACTIONS(1322), - [sym_intConstant] = ACTIONS(1322), - [sym_doubleConstant] = ACTIONS(1320), - [sym_stringConstant] = ACTIONS(1320), - [sym_regex] = ACTIONS(1320), - [anon_sym_r] = ACTIONS(1322), + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_name] = ACTIONS(1320), + [anon_sym_sequential] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_multifile] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_not] = ACTIONS(1320), + [anon_sym_or] = ACTIONS(1320), + [anon_sym_orelse] = ACTIONS(1320), + [anon_sym_any] = ACTIONS(1320), + [anon_sym_and] = ACTIONS(1320), + [anon_sym_maybe] = ACTIONS(1320), + [anon_sym_after] = ACTIONS(1320), + [anon_sym_before] = ACTIONS(1320), + [anon_sym_contains] = ACTIONS(1320), + [anon_sym_includes] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_within] = ACTIONS(1320), + [anon_sym_bubble] = ACTIONS(1320), + [anon_sym_like] = ACTIONS(1320), + [anon_sym_DOT] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_some] = ACTIONS(1320), + [anon_sym_every] = ACTIONS(1320), + [sym_underscore] = ACTIONS(1320), + [anon_sym_private] = ACTIONS(1320), + [anon_sym_pattern] = ACTIONS(1318), + [anon_sym_predicate] = ACTIONS(1318), + [anon_sym_function] = ACTIONS(1318), + [anon_sym_log_LPAREN] = ACTIONS(1318), + [anon_sym_range_LPAREN] = ACTIONS(1318), + [sym_booleanConstant] = ACTIONS(1320), + [sym_variable] = ACTIONS(1320), + [anon_sym_js] = ACTIONS(1320), + [anon_sym_grit] = ACTIONS(1320), + [anon_sym_html] = ACTIONS(1320), + [anon_sym_css] = ACTIONS(1320), + [anon_sym_json] = ACTIONS(1320), + [anon_sym_java] = ACTIONS(1320), + [anon_sym_csharp] = ACTIONS(1320), + [anon_sym_python] = ACTIONS(1320), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_markdown] = ACTIONS(1320), + [anon_sym_rust] = ACTIONS(1320), + [anon_sym_ruby] = ACTIONS(1320), + [anon_sym_sol] = ACTIONS(1320), + [anon_sym_solidity] = ACTIONS(1320), + [anon_sym_hcl] = ACTIONS(1320), + [anon_sym_yaml] = ACTIONS(1320), + [anon_sym_ast] = ACTIONS(1320), + [anon_sym_universal] = ACTIONS(1320), + [anon_sym_sql] = ACTIONS(1320), + [anon_sym_toml] = ACTIONS(1320), + [anon_sym_php] = ACTIONS(1320), + [anon_sym_c] = ACTIONS(1320), + [anon_sym_cpp] = ACTIONS(1320), + [anon_sym_kotlin] = ACTIONS(1320), + [sym_backtickSnippet] = ACTIONS(1318), + [sym_rawBacktickSnippet] = ACTIONS(1318), + [sym_undefined] = ACTIONS(1320), + [sym_top] = ACTIONS(1320), + [sym_bottom] = ACTIONS(1320), + [sym_intConstant] = ACTIONS(1320), + [sym_doubleConstant] = ACTIONS(1318), + [sym_stringConstant] = ACTIONS(1318), + [sym_regex] = ACTIONS(1318), + [anon_sym_r] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_name] = ACTIONS(1326), - [anon_sym_sequential] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_multifile] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_not] = ACTIONS(1326), - [anon_sym_or] = ACTIONS(1326), - [anon_sym_orelse] = ACTIONS(1326), - [anon_sym_any] = ACTIONS(1326), - [anon_sym_and] = ACTIONS(1326), - [anon_sym_maybe] = ACTIONS(1326), - [anon_sym_after] = ACTIONS(1326), - [anon_sym_before] = ACTIONS(1326), - [anon_sym_contains] = ACTIONS(1326), - [anon_sym_includes] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_within] = ACTIONS(1326), - [anon_sym_bubble] = ACTIONS(1326), - [anon_sym_like] = ACTIONS(1326), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_some] = ACTIONS(1326), - [anon_sym_every] = ACTIONS(1326), - [sym_underscore] = ACTIONS(1326), - [anon_sym_private] = ACTIONS(1326), - [anon_sym_pattern] = ACTIONS(1324), - [anon_sym_predicate] = ACTIONS(1324), - [anon_sym_function] = ACTIONS(1324), - [anon_sym_log_LPAREN] = ACTIONS(1324), - [anon_sym_range_LPAREN] = ACTIONS(1324), - [sym_booleanConstant] = ACTIONS(1326), - [sym_variable] = ACTIONS(1326), - [anon_sym_js] = ACTIONS(1326), - [anon_sym_grit] = ACTIONS(1326), - [anon_sym_html] = ACTIONS(1326), - [anon_sym_css] = ACTIONS(1326), - [anon_sym_json] = ACTIONS(1326), - [anon_sym_java] = ACTIONS(1326), - [anon_sym_csharp] = ACTIONS(1326), - [anon_sym_python] = ACTIONS(1326), - [anon_sym_go] = ACTIONS(1326), - [anon_sym_markdown] = ACTIONS(1326), - [anon_sym_rust] = ACTIONS(1326), - [anon_sym_ruby] = ACTIONS(1326), - [anon_sym_sol] = ACTIONS(1326), - [anon_sym_solidity] = ACTIONS(1326), - [anon_sym_hcl] = ACTIONS(1326), - [anon_sym_yaml] = ACTIONS(1326), - [anon_sym_ast] = ACTIONS(1326), - [anon_sym_universal] = ACTIONS(1326), - [anon_sym_sql] = ACTIONS(1326), - [anon_sym_toml] = ACTIONS(1326), - [anon_sym_php] = ACTIONS(1326), - [anon_sym_c] = ACTIONS(1326), - [anon_sym_cpp] = ACTIONS(1326), - [sym_backtickSnippet] = ACTIONS(1324), - [sym_rawBacktickSnippet] = ACTIONS(1324), - [sym_undefined] = ACTIONS(1326), - [sym_top] = ACTIONS(1326), - [sym_bottom] = ACTIONS(1326), - [sym_intConstant] = ACTIONS(1326), - [sym_doubleConstant] = ACTIONS(1324), - [sym_stringConstant] = ACTIONS(1324), - [sym_regex] = ACTIONS(1324), - [anon_sym_r] = ACTIONS(1326), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_name] = ACTIONS(1324), + [anon_sym_sequential] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_multifile] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_not] = ACTIONS(1324), + [anon_sym_or] = ACTIONS(1324), + [anon_sym_orelse] = ACTIONS(1324), + [anon_sym_any] = ACTIONS(1324), + [anon_sym_and] = ACTIONS(1324), + [anon_sym_maybe] = ACTIONS(1324), + [anon_sym_after] = ACTIONS(1324), + [anon_sym_before] = ACTIONS(1324), + [anon_sym_contains] = ACTIONS(1324), + [anon_sym_includes] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_within] = ACTIONS(1324), + [anon_sym_bubble] = ACTIONS(1324), + [anon_sym_like] = ACTIONS(1324), + [anon_sym_DOT] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_some] = ACTIONS(1324), + [anon_sym_every] = ACTIONS(1324), + [sym_underscore] = ACTIONS(1324), + [anon_sym_private] = ACTIONS(1324), + [anon_sym_pattern] = ACTIONS(1322), + [anon_sym_predicate] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(1322), + [anon_sym_log_LPAREN] = ACTIONS(1322), + [anon_sym_range_LPAREN] = ACTIONS(1322), + [sym_booleanConstant] = ACTIONS(1324), + [sym_variable] = ACTIONS(1324), + [anon_sym_js] = ACTIONS(1324), + [anon_sym_grit] = ACTIONS(1324), + [anon_sym_html] = ACTIONS(1324), + [anon_sym_css] = ACTIONS(1324), + [anon_sym_json] = ACTIONS(1324), + [anon_sym_java] = ACTIONS(1324), + [anon_sym_csharp] = ACTIONS(1324), + [anon_sym_python] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1324), + [anon_sym_markdown] = ACTIONS(1324), + [anon_sym_rust] = ACTIONS(1324), + [anon_sym_ruby] = ACTIONS(1324), + [anon_sym_sol] = ACTIONS(1324), + [anon_sym_solidity] = ACTIONS(1324), + [anon_sym_hcl] = ACTIONS(1324), + [anon_sym_yaml] = ACTIONS(1324), + [anon_sym_ast] = ACTIONS(1324), + [anon_sym_universal] = ACTIONS(1324), + [anon_sym_sql] = ACTIONS(1324), + [anon_sym_toml] = ACTIONS(1324), + [anon_sym_php] = ACTIONS(1324), + [anon_sym_c] = ACTIONS(1324), + [anon_sym_cpp] = ACTIONS(1324), + [anon_sym_kotlin] = ACTIONS(1324), + [sym_backtickSnippet] = ACTIONS(1322), + [sym_rawBacktickSnippet] = ACTIONS(1322), + [sym_undefined] = ACTIONS(1324), + [sym_top] = ACTIONS(1324), + [sym_bottom] = ACTIONS(1324), + [sym_intConstant] = ACTIONS(1324), + [sym_doubleConstant] = ACTIONS(1322), + [sym_stringConstant] = ACTIONS(1322), + [sym_regex] = ACTIONS(1322), + [anon_sym_r] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, }; @@ -38223,7 +38551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doubleConstant, sym_stringConstant, sym_regex, - ACTIONS(1328), 50, + ACTIONS(1328), 51, anon_sym_sequential, anon_sym_multifile, anon_sym_not, @@ -38269,12 +38597,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_php, anon_sym_c, anon_sym_cpp, + anon_sym_kotlin, sym_undefined, sym_top, sym_bottom, sym_intConstant, anon_sym_r, - [70] = 3, + [71] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1334), 12, @@ -38290,7 +38619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doubleConstant, sym_stringConstant, sym_regex, - ACTIONS(1332), 50, + ACTIONS(1332), 51, anon_sym_sequential, anon_sym_multifile, anon_sym_not, @@ -38336,17 +38665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_php, anon_sym_c, anon_sym_cpp, + anon_sym_kotlin, sym_undefined, sym_top, sym_bottom, sym_intConstant, anon_sym_r, - [140] = 3, + [142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 12, - anon_sym_LBRACE, + ACTIONS(1340), 1, anon_sym_LPAREN, + ACTIONS(1338), 11, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_DOT, anon_sym_LBRACK, @@ -38357,7 +38688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doubleConstant, sym_stringConstant, sym_regex, - ACTIONS(1336), 50, + ACTIONS(1336), 51, anon_sym_sequential, anon_sym_multifile, anon_sym_not, @@ -38403,18 +38734,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_php, anon_sym_c, anon_sym_cpp, + anon_sym_kotlin, sym_undefined, sym_top, sym_bottom, sym_intConstant, anon_sym_r, - [210] = 4, + [215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 1, - anon_sym_LPAREN, - ACTIONS(1342), 11, + ACTIONS(1344), 12, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_BANG, anon_sym_DOT, anon_sym_LBRACK, @@ -38425,7 +38756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doubleConstant, sym_stringConstant, sym_regex, - ACTIONS(1340), 50, + ACTIONS(1342), 51, anon_sym_sequential, anon_sym_multifile, anon_sym_not, @@ -38471,12 +38802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_php, anon_sym_c, anon_sym_cpp, + anon_sym_kotlin, sym_undefined, sym_top, sym_bottom, sym_intConstant, anon_sym_r, - [282] = 3, + [286] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1348), 12, @@ -38492,7 +38824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doubleConstant, sym_stringConstant, sym_regex, - ACTIONS(1346), 50, + ACTIONS(1346), 51, anon_sym_sequential, anon_sym_multifile, anon_sym_not, @@ -38538,21 +38870,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_php, anon_sym_c, anon_sym_cpp, + anon_sym_kotlin, sym_undefined, sym_top, sym_bottom, sym_intConstant, anon_sym_r, - [352] = 4, + [357] = 4, ACTIONS(3), 1, sym_comment, - STATE(1246), 1, + STATE(1260), 1, sym_languageName, ACTIONS(75), 3, anon_sym_js, anon_sym_sol, anon_sym_c, - ACTIONS(1350), 20, + ACTIONS(1350), 21, anon_sym_grit, anon_sym_html, anon_sym_css, @@ -38573,16 +38906,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_toml, anon_sym_php, anon_sym_cpp, - [386] = 4, + anon_sym_kotlin, + [392] = 4, ACTIONS(3), 1, sym_comment, - STATE(299), 1, + STATE(301), 1, sym_languageName, ACTIONS(1352), 3, anon_sym_js, anon_sym_sol, anon_sym_c, - ACTIONS(1354), 20, + ACTIONS(1354), 21, anon_sym_grit, anon_sym_html, anon_sym_css, @@ -38603,7 +38937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_toml, anon_sym_php, anon_sym_cpp, - [420] = 22, + anon_sym_kotlin, + [427] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38638,62 +38973,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1056), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1096), 1, sym_definition, - [487] = 22, + [494] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(63), 1, + ACTIONS(1386), 1, + anon_sym_EQ, + ACTIONS(1384), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1388), 2, + anon_sym_DOT, + anon_sym_LBRACK, + ACTIONS(1382), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_private, anon_sym_pattern, - ACTIONS(65), 1, anon_sym_predicate, - ACTIONS(67), 1, anon_sym_function, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + sym_annotation, + [527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1392), 3, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + anon_sym_EQ, + ACTIONS(1390), 18, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, + anon_sym_until, anon_sym_EQ_GT, - ACTIONS(1378), 1, + anon_sym_else, + anon_sym_DOT, + anon_sym_LBRACK, anon_sym_private, - ACTIONS(1380), 1, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, sym_annotation, - ACTIONS(1382), 1, - ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, - sym_predicateDefinition, - STATE(290), 1, - sym_functionDefinition, - STATE(1080), 1, - sym_definition, - [554] = 22, + [556] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38726,19 +39070,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1384), 1, + ACTIONS(1394), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1106), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1162), 1, sym_definition, - [621] = 22, + [623] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38771,45 +39115,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1386), 1, + ACTIONS(1396), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1092), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1108), 1, sym_definition, - [688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 3, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_EQ, - ACTIONS(1388), 18, - ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - sym_annotation, - [717] = 22, + [690] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38842,19 +39160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1392), 1, + ACTIONS(1398), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1045), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1109), 1, sym_definition, - [784] = 22, + [757] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38887,19 +39205,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1394), 1, + ACTIONS(1400), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1157), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1066), 1, sym_definition, - [851] = 22, + [824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 3, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_EQ, + ACTIONS(1402), 18, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + sym_annotation, + [853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 3, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_EQ, + ACTIONS(1402), 18, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_COLON, + sym_annotation, + [882] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38932,19 +39302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1396), 1, + ACTIONS(1406), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1161), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1198), 1, sym_definition, - [918] = 22, + [949] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -38977,19 +39347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1398), 1, + ACTIONS(1408), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1155), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1166), 1, sym_definition, - [985] = 22, + [1016] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -39022,125 +39392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1400), 1, + ACTIONS(1410), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1066), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1088), 1, sym_definition, - [1052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 3, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_EQ, - ACTIONS(1402), 18, - ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - sym_annotation, - [1081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 3, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_EQ, - ACTIONS(1402), 18, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_COLON, - sym_annotation, - [1110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 3, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_EQ, - ACTIONS(1388), 18, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_COLON, - sym_annotation, - [1139] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1410), 1, - anon_sym_EQ, - ACTIONS(1408), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1412), 2, - anon_sym_DOT, - anon_sym_LBRACK, - ACTIONS(1406), 16, - ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - sym_annotation, - [1172] = 22, + [1083] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -39173,19 +39437,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1414), 1, + ACTIONS(1412), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1179), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1082), 1, sym_definition, - [1239] = 22, + [1150] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -39218,19 +39482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1416), 1, + ACTIONS(1414), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1166), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1128), 1, sym_definition, - [1306] = 22, + [1217] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -39263,19 +39527,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1418), 1, + ACTIONS(1416), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1180), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1084), 1, sym_definition, - [1373] = 22, + [1284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1392), 3, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_EQ, + ACTIONS(1390), 18, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_COLON, + sym_annotation, + [1313] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -39308,19 +39598,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1420), 1, + ACTIONS(1418), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1143), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1114), 1, sym_definition, - [1440] = 22, + [1380] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -39353,19 +39643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1422), 1, + ACTIONS(1420), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1041), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1093), 1, sym_definition, - [1507] = 22, + [1447] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -39398,19 +39688,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1424), 1, + ACTIONS(1422), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1039), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1064), 1, sym_definition, - [1574] = 22, + [1514] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -39443,46 +39733,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(1380), 1, sym_annotation, - ACTIONS(1426), 1, + ACTIONS(1424), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - STATE(1169), 1, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1131), 1, sym_definition, - [1641] = 5, + [1581] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 1, - anon_sym_EQ, - ACTIONS(1408), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1412), 2, - anon_sym_DOT, - anon_sym_LBRACK, - ACTIONS(1406), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(63), 1, + anon_sym_pattern, + ACTIONS(65), 1, + anon_sym_predicate, + ACTIONS(67), 1, + anon_sym_function, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, + ACTIONS(1378), 1, + anon_sym_private, + ACTIONS(1380), 1, sym_annotation, - [1673] = 4, + ACTIONS(1426), 1, + ts_builtin_sym_end, + STATE(261), 1, + sym_predicateDefinition, + STATE(262), 1, + sym_functionDefinition, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + STATE(1117), 1, + sym_definition, + [1648] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1430), 2, @@ -39508,14 +39816,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [1703] = 3, + [1678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 2, + ACTIONS(1386), 1, + anon_sym_EQ, + ACTIONS(1384), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1434), 17, - ts_builtin_sym_end, + ACTIONS(1388), 2, + anon_sym_DOT, + anon_sym_LBRACK, + ACTIONS(1382), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -39526,19 +39841,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_LBRACK, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, + anon_sym_RBRACK, sym_annotation, - [1730] = 3, + [1710] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 2, + ACTIONS(1438), 1, + anon_sym_DOT, + ACTIONS(1436), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1438), 17, + ACTIONS(1434), 16, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -39552,19 +39865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [1757] = 4, + [1739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 1, - anon_sym_LPAREN, - ACTIONS(1446), 2, + ACTIONS(1442), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1442), 16, + ACTIONS(1440), 17, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -39576,18 +39886,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, + anon_sym_LBRACK, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, sym_annotation, - [1786] = 3, + [1766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 2, + ACTIONS(1446), 1, + anon_sym_LPAREN, + ACTIONS(1448), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1448), 17, + ACTIONS(1444), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -39599,71 +39912,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_LBRACK, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, sym_annotation, - [1813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_LBRACK, - ACTIONS(1454), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1452), 16, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_LT_COLON, - sym_annotation, - [1842] = 4, + [1795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 2, + ACTIONS(1452), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1432), 2, - anon_sym_DOT, - anon_sym_LT_COLON, - ACTIONS(1428), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - sym_annotation, - [1871] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1458), 1, - anon_sym_DOT, - ACTIONS(1454), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1452), 16, + ACTIONS(1450), 17, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -39675,20 +39935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, + anon_sym_DOT, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, sym_annotation, - [1900] = 4, + [1822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1460), 1, - anon_sym_LBRACK, - ACTIONS(1454), 2, + ACTIONS(1456), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1452), 16, + ACTIONS(1454), 17, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -39700,20 +39959,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, + anon_sym_DOT, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, sym_annotation, - [1929] = 3, + [1849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 2, + ACTIONS(1460), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1462), 17, + ACTIONS(1458), 17, ts_builtin_sym_end, - anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -39724,18 +39983,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, + anon_sym_LBRACK, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, sym_annotation, - [1956] = 3, + [1876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 2, + ACTIONS(1430), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1466), 17, + ACTIONS(1432), 2, + anon_sym_DOT, + anon_sym_LT_COLON, + ACTIONS(1428), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -39749,18 +40012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_DOT, anon_sym_RBRACK, - anon_sym_LT_COLON, sym_annotation, - [1983] = 3, + [1905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 2, + ACTIONS(1464), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1466), 17, + ACTIONS(1462), 17, ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -39771,22 +40033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_DOT, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, sym_annotation, - [2010] = 3, + [1932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1472), 2, + ACTIONS(1466), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1470), 17, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1432), 17, + ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -39797,17 +40056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_COLON, + anon_sym_DOT, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, sym_annotation, - [2037] = 3, + [1959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1476), 2, + ACTIONS(1470), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1474), 17, + ACTIONS(1468), 17, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -39819,21 +40080,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_DOT, + anon_sym_LBRACK, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, sym_annotation, - [2064] = 4, + [1986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_LT_COLON, - ACTIONS(1480), 2, + ACTIONS(1472), 1, + anon_sym_DOT, + ACTIONS(1436), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1478), 16, + ACTIONS(1434), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -39850,13 +40111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2093] = 3, + [2015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1484), 2, + ACTIONS(1476), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1482), 17, + ACTIONS(1474), 17, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -39874,15 +40135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2120] = 4, + [2042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1486), 1, - anon_sym_DOT, - ACTIONS(1454), 2, + ACTIONS(1478), 1, + anon_sym_LBRACK, + ACTIONS(1436), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1452), 16, + ACTIONS(1434), 16, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -39899,13 +40160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2149] = 3, + [2071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 2, + ACTIONS(1482), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1448), 17, + ACTIONS(1480), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -39923,13 +40184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2176] = 3, + [2098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 2, + ACTIONS(1484), 1, + anon_sym_LBRACK, + ACTIONS(1436), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1488), 17, + ACTIONS(1434), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -39941,22 +40204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_LBRACK, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, sym_annotation, - [2203] = 3, + [2127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1488), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1492), 17, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1486), 17, + ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -39968,16 +40228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_else, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_COLON, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, sym_annotation, - [2230] = 3, + [2154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 2, + ACTIONS(1456), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1496), 17, + ACTIONS(1454), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -39995,13 +40257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2257] = 3, + [2181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1500), 2, + ACTIONS(1434), 1, + anon_sym_LT_COLON, + ACTIONS(1492), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1432), 17, + ACTIONS(1490), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -40013,19 +40277,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_DOT, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, sym_annotation, - [2284] = 3, + [2210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1484), 2, + ACTIONS(1488), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1482), 17, + ACTIONS(1486), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -40043,14 +40306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2311] = 3, + [2237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1496), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1492), 17, - ts_builtin_sym_end, + ACTIONS(1494), 17, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -40062,18 +40327,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_else, anon_sym_LBRACK, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, + anon_sym_RBRACK, + anon_sym_LT_COLON, + sym_annotation, + [2264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1452), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1450), 17, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_DOT, + anon_sym_RBRACK, + anon_sym_LT_COLON, sym_annotation, - [2338] = 3, + [2291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 2, + ACTIONS(1500), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1496), 17, + ACTIONS(1498), 17, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -40091,13 +40378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2365] = 3, + [2318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 2, + ACTIONS(1470), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1488), 17, + ACTIONS(1468), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -40115,13 +40402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2392] = 3, + [2345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 2, + ACTIONS(1476), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1434), 17, + ACTIONS(1474), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -40139,14 +40426,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2419] = 3, + [2372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1500), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1498), 17, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_DOT, + anon_sym_RBRACK, + anon_sym_LT_COLON, + sym_annotation, + [2399] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1504), 2, anon_sym_SLASH, anon_sym_PLUS, ACTIONS(1502), 17, - ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -40158,18 +40471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_else, anon_sym_LBRACK, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, + anon_sym_RBRACK, + anon_sym_LT_COLON, sym_annotation, - [2446] = 3, + [2426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1476), 2, + ACTIONS(1442), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1474), 17, + ACTIONS(1440), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -40183,17 +40494,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_DOT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LT_COLON, sym_annotation, - [2473] = 3, + [2453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 2, + ACTIONS(1496), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1438), 17, + ACTIONS(1494), 17, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -40211,13 +40522,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2500] = 3, + [2480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1460), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1458), 17, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_COLON, + sym_annotation, + [2507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1472), 2, + ACTIONS(1504), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1470), 17, + ACTIONS(1502), 17, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -40235,16 +40570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2527] = 3, + [2534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1504), 2, + ACTIONS(1482), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1502), 17, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1480), 17, + ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -40256,10 +40589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_else, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_COLON, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, sym_annotation, - [2554] = 3, + [2561] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1508), 2, @@ -40282,7 +40617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2580] = 3, + [2587] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1512), 2, @@ -40305,7 +40640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2606] = 3, + [2613] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1516), 2, @@ -40328,7 +40663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2632] = 3, + [2639] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1520), 2, @@ -40351,7 +40686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2658] = 3, + [2665] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1524), 2, @@ -40374,7 +40709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2684] = 3, + [2691] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1528), 2, @@ -40397,7 +40732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2710] = 3, + [2717] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1532), 2, @@ -40420,7 +40755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2736] = 3, + [2743] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1536), 2, @@ -40443,7 +40778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2762] = 3, + [2769] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1540), 2, @@ -40466,7 +40801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2788] = 3, + [2795] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1544), 2, @@ -40489,7 +40824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2814] = 3, + [2821] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1548), 2, @@ -40512,7 +40847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2840] = 3, + [2847] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1552), 2, @@ -40535,7 +40870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2866] = 3, + [2873] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1556), 2, @@ -40558,7 +40893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2892] = 3, + [2899] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1560), 2, @@ -40581,7 +40916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2918] = 3, + [2925] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1564), 2, @@ -40604,7 +40939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2944] = 3, + [2951] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1568), 2, @@ -40627,7 +40962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2970] = 3, + [2977] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1572), 2, @@ -40650,7 +40985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [2996] = 3, + [3003] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1576), 2, @@ -40673,7 +41008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3022] = 3, + [3029] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1580), 2, @@ -40696,18 +41031,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3048] = 3, + [3055] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 2, + ACTIONS(1358), 1, + anon_sym_STAR, + ACTIONS(1360), 1, anon_sym_SLASH, + ACTIONS(1362), 1, + anon_sym_PERCENT, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(1584), 1, anon_sym_PLUS, - ACTIONS(1582), 16, + ACTIONS(1582), 13, ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_DASH, - anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -40719,7 +41058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3074] = 3, + [3089] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1588), 2, @@ -40742,7 +41081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3100] = 3, + [3115] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1592), 2, @@ -40765,7 +41104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3126] = 3, + [3141] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1596), 2, @@ -40788,7 +41127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3152] = 3, + [3167] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1600), 2, @@ -40811,13 +41150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3178] = 3, + [3193] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1606), 1, + anon_sym_until, ACTIONS(1604), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1602), 16, + ACTIONS(1602), 15, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -40826,7 +41167,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, - anon_sym_until, anon_sym_EQ_GT, anon_sym_else, anon_sym_private, @@ -40834,30 +41174,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3204] = 3, + [3221] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1606), 16, - ts_builtin_sym_end, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(1608), 7, + ts_builtin_sym_end, + anon_sym_until, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [3230] = 3, + [3267] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1612), 2, @@ -40880,7 +41230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3256] = 3, + [3293] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1616), 2, @@ -40903,13 +41253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3282] = 3, + [3319] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1622), 1, + anon_sym_else, ACTIONS(1620), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1618), 16, + ACTIONS(1618), 15, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -40920,36 +41272,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_until, anon_sym_EQ_GT, - anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, sym_annotation, - [3308] = 3, + [3347] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1622), 16, - ts_builtin_sym_end, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(1624), 7, + ts_builtin_sym_end, + anon_sym_until, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [3334] = 3, + [3393] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1628), 2, @@ -40972,7 +41333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3360] = 3, + [3419] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1632), 2, @@ -40995,7 +41356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3386] = 3, + [3445] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1636), 2, @@ -41018,13 +41379,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3412] = 3, + [3471] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, + anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, + anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, + anon_sym_DASH, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(1370), 1, + anon_sym_limit, + ACTIONS(1372), 1, + anon_sym_PLUS_EQ, + ACTIONS(1374), 1, + anon_sym_where, + ACTIONS(1376), 1, + anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(1638), 7, + ts_builtin_sym_end, + anon_sym_until, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + [3517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1642), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1640), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + sym_annotation, + [3543] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, + anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, + anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, + anon_sym_DASH, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(1370), 1, + anon_sym_limit, + ACTIONS(1372), 1, + anon_sym_PLUS_EQ, + ACTIONS(1374), 1, + anon_sym_where, + ACTIONS(1376), 1, + anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(1644), 7, + ts_builtin_sym_end, + anon_sym_until, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + [3589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1646), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + sym_annotation, + [3615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1652), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1650), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + sym_annotation, + [3641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1640), 2, + ACTIONS(1656), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1638), 16, + ACTIONS(1654), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41041,13 +41537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3438] = 3, + [3667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1644), 2, + ACTIONS(1660), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1642), 16, + ACTIONS(1658), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41064,13 +41560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3464] = 3, + [3693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(1664), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1646), 16, + ACTIONS(1662), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41087,13 +41583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3490] = 3, + [3719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 2, + ACTIONS(1668), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1650), 16, + ACTIONS(1666), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41110,44 +41606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3516] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, - anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, - anon_sym_PLUS, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(1372), 1, - anon_sym_PLUS_EQ, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(1654), 9, - ts_builtin_sym_end, - anon_sym_limit, - anon_sym_where, - anon_sym_until, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - [3558] = 3, + [3745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1658), 2, + ACTIONS(1672), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1656), 16, + ACTIONS(1670), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41164,13 +41629,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3584] = 3, + [3771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1662), 2, + ACTIONS(1676), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1660), 16, + ACTIONS(1674), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41187,13 +41652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3610] = 3, + [3797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1680), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1664), 16, + ACTIONS(1678), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41210,13 +41675,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3636] = 3, + [3823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 2, + ACTIONS(1684), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1668), 16, + ACTIONS(1682), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41233,13 +41698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3662] = 3, + [3849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1674), 2, + ACTIONS(1688), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1672), 16, + ACTIONS(1686), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41256,13 +41721,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3688] = 3, + [3875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 2, + ACTIONS(1692), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1676), 16, + ACTIONS(1690), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41279,13 +41744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3714] = 3, + [3901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1682), 2, + ACTIONS(1696), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1680), 16, + ACTIONS(1694), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41302,13 +41767,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3740] = 3, + [3927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1686), 2, + ACTIONS(1700), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1684), 16, + ACTIONS(1698), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41325,13 +41790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3766] = 3, + [3953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 2, + ACTIONS(1704), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1688), 16, + ACTIONS(1702), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41348,13 +41813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3792] = 3, + [3979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1694), 2, + ACTIONS(1708), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1692), 16, + ACTIONS(1706), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41371,13 +41836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3818] = 3, + [4005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1698), 2, + ACTIONS(1712), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1696), 16, + ACTIONS(1710), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41394,13 +41859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3844] = 3, + [4031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1702), 2, + ACTIONS(1716), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1700), 16, + ACTIONS(1714), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41417,13 +41882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3870] = 3, + [4057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1706), 2, + ACTIONS(1720), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1704), 16, + ACTIONS(1718), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41440,13 +41905,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3896] = 3, + [4083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1710), 2, + ACTIONS(1724), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1708), 16, + ACTIONS(1722), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41463,13 +41928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3922] = 3, + [4109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1714), 2, + ACTIONS(1728), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1712), 16, + ACTIONS(1726), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41486,13 +41951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3948] = 3, + [4135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1718), 2, + ACTIONS(1732), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1716), 16, + ACTIONS(1730), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41509,13 +41974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [3974] = 3, + [4161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1722), 2, + ACTIONS(1736), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1720), 16, + ACTIONS(1734), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41532,13 +41997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4000] = 3, + [4187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1740), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1724), 16, + ACTIONS(1738), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41555,59 +42020,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4026] = 3, + [4213] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1728), 16, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_LT_COLON, + ACTIONS(1380), 1, sym_annotation, - [4052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1732), 16, + ACTIONS(1742), 7, ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [4078] = 3, + [4259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1746), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1736), 16, + ACTIONS(1744), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41624,37 +42076,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4104] = 4, + [4285] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1740), 1, - anon_sym_LPAREN, - ACTIONS(1446), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1442), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, + ACTIONS(1380), 1, sym_annotation, - [4132] = 3, + ACTIONS(1750), 1, + anon_sym_until, + ACTIONS(1748), 6, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + [4333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1500), 2, + ACTIONS(1434), 1, + anon_sym_LT_COLON, + ACTIONS(1492), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1432), 16, + ACTIONS(1490), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -41668,16 +42132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_DOT, anon_sym_RBRACK, sym_annotation, - [4158] = 3, + [4361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1744), 2, + ACTIONS(1756), 1, + anon_sym_until, + ACTIONS(1754), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1742), 16, + ACTIONS(1752), 15, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41686,7 +42151,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, - anon_sym_until, anon_sym_EQ_GT, anon_sym_else, anon_sym_private, @@ -41694,59 +42158,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4184] = 3, + [4389] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1746), 16, - ts_builtin_sym_end, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, + ACTIONS(1380), 1, sym_annotation, - [4210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1752), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1750), 16, + ACTIONS(1758), 7, ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [4236] = 3, + [4435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1756), 2, + ACTIONS(1762), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1754), 16, + ACTIONS(1760), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -41763,53 +42214,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4262] = 3, + [4461] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1758), 16, - ts_builtin_sym_end, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, - anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, + ACTIONS(1380), 1, sym_annotation, - [4288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1762), 16, + ACTIONS(1764), 9, ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, anon_sym_limit, - anon_sym_PLUS_EQ, anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [4314] = 3, + [4503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1768), 2, @@ -41832,7 +42268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4340] = 3, + [4529] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1772), 2, @@ -41855,7 +42291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4366] = 3, + [4555] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1776), 2, @@ -41878,7 +42314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4392] = 3, + [4581] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1780), 2, @@ -41901,7 +42337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4418] = 3, + [4607] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1784), 2, @@ -41924,30 +42360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1462), 16, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - sym_annotation, - [4470] = 3, + [4633] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1788), 2, @@ -41970,48 +42383,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4496] = 13, + [4659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(1792), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(1790), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(1790), 7, - ts_builtin_sym_end, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [4542] = 4, + sym_annotation, + [4685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_until, - ACTIONS(1794), 2, + ACTIONS(1796), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1792), 15, + ACTIONS(1794), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42020,6 +42421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, + anon_sym_until, anon_sym_EQ_GT, anon_sym_else, anon_sym_private, @@ -42027,16 +42429,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4570] = 3, + [4711] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1800), 2, anon_sym_SLASH, anon_sym_PLUS, ACTIONS(1798), 16, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -42047,10 +42447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_RBRACK, - anon_sym_LT_COLON, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, sym_annotation, - [4596] = 3, + [4737] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1804), 2, @@ -42073,46 +42475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4622] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, - anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, - anon_sym_PLUS, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(1370), 1, - anon_sym_limit, - ACTIONS(1372), 1, - anon_sym_PLUS_EQ, - ACTIONS(1374), 1, - anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(1806), 7, - ts_builtin_sym_end, - anon_sym_until, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - [4668] = 3, + [4763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1810), 2, + ACTIONS(1808), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1808), 16, + ACTIONS(1806), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42129,40 +42498,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4694] = 13, + [4789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(1812), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(1810), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(1812), 7, - ts_builtin_sym_end, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [4740] = 3, + sym_annotation, + [4815] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1816), 2, @@ -42185,7 +42544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4766] = 3, + [4841] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1820), 2, @@ -42208,7 +42567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4792] = 3, + [4867] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1824), 2, @@ -42231,15 +42590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4818] = 4, + [4893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, - anon_sym_until, ACTIONS(1828), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1826), 15, + ACTIONS(1826), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42248,6 +42605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, + anon_sym_until, anon_sym_EQ_GT, anon_sym_else, anon_sym_private, @@ -42255,47 +42613,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4846] = 14, + [4919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(1832), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(1830), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, + anon_sym_until, anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(1834), 1, anon_sym_else, - ACTIONS(1832), 6, - ts_builtin_sym_end, - anon_sym_until, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [4894] = 3, + sym_annotation, + [4945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1838), 2, + ACTIONS(1836), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1836), 16, + ACTIONS(1834), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42312,38 +42659,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4920] = 11, + [4971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(1840), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(1838), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1372), 1, - anon_sym_PLUS_EQ, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(1840), 9, - ts_builtin_sym_end, anon_sym_limit, + anon_sym_PLUS_EQ, anon_sym_where, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [4962] = 3, + sym_annotation, + [4997] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1844), 2, @@ -42366,7 +42705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [4988] = 3, + [5023] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1848), 2, @@ -42389,7 +42728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5014] = 3, + [5049] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1852), 2, @@ -42412,7 +42751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5040] = 3, + [5075] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1856), 2, @@ -42435,7 +42774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5066] = 3, + [5101] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1860), 2, @@ -42458,7 +42797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5092] = 3, + [5127] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1864), 2, @@ -42481,7 +42820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5118] = 3, + [5153] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1868), 2, @@ -42504,13 +42843,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5144] = 3, + [5179] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1872), 2, + ACTIONS(1358), 1, + anon_sym_STAR, + ACTIONS(1360), 1, anon_sym_SLASH, + ACTIONS(1362), 1, + anon_sym_PERCENT, + ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1870), 16, + ACTIONS(1366), 1, + anon_sym_DASH, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(1370), 1, + anon_sym_limit, + ACTIONS(1372), 1, + anon_sym_PLUS_EQ, + ACTIONS(1374), 1, + anon_sym_where, + ACTIONS(1376), 1, + anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(1870), 7, + ts_builtin_sym_end, + anon_sym_until, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + [5225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1874), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1872), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42527,13 +42899,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5170] = 3, + [5251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1876), 2, + ACTIONS(1878), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1874), 16, + ACTIONS(1876), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42550,13 +42922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5196] = 3, + [5277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1880), 2, + ACTIONS(1882), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1878), 16, + ACTIONS(1880), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42573,13 +42945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5222] = 3, + [5303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 2, + ACTIONS(1886), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1882), 16, + ACTIONS(1884), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42596,13 +42968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5248] = 3, + [5329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1888), 2, + ACTIONS(1890), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1886), 16, + ACTIONS(1888), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42619,13 +42991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5274] = 3, + [5355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1892), 2, + ACTIONS(1894), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1890), 16, + ACTIONS(1892), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42642,13 +43014,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5300] = 3, + [5381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 2, + ACTIONS(1898), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1894), 16, + ACTIONS(1896), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42665,13 +43037,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5326] = 3, + [5407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1900), 2, + ACTIONS(1902), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1898), 16, + ACTIONS(1900), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42688,13 +43060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5352] = 3, + [5433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 2, + ACTIONS(1906), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1902), 16, + ACTIONS(1904), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42711,13 +43083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5378] = 3, + [5459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1908), 2, + ACTIONS(1910), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1906), 16, + ACTIONS(1908), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42734,13 +43106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5404] = 3, + [5485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 2, + ACTIONS(1914), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1910), 16, + ACTIONS(1912), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42757,13 +43129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5430] = 3, + [5511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 2, + ACTIONS(1918), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1914), 16, + ACTIONS(1916), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42780,13 +43152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5456] = 3, + [5537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 2, + ACTIONS(1922), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1918), 16, + ACTIONS(1920), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42803,46 +43175,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5482] = 13, + [5563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(1926), 2, anon_sym_SLASH, - ACTIONS(1362), 1, + anon_sym_PLUS, + ACTIONS(1924), 16, + ts_builtin_sym_end, + anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1364), 1, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + sym_annotation, + [5589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1930), 2, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(1928), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, + anon_sym_until, anon_sym_EQ_GT, - ACTIONS(1380), 1, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, sym_annotation, - ACTIONS(1922), 7, + [5615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1934), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1932), 16, ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [5528] = 3, + sym_annotation, + [5641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 2, + ACTIONS(1938), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1924), 16, + ACTIONS(1936), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42859,46 +43267,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5554] = 13, + [5667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, + ACTIONS(1942), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1940), 16, + ts_builtin_sym_end, anon_sym_STAR, - ACTIONS(1360), 1, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + sym_annotation, + [5693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 2, anon_sym_SLASH, - ACTIONS(1362), 1, + anon_sym_PLUS, + ACTIONS(1944), 16, + ts_builtin_sym_end, + anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1364), 1, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + sym_annotation, + [5719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1950), 2, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(1948), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, + anon_sym_until, anon_sym_EQ_GT, - ACTIONS(1380), 1, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, sym_annotation, - ACTIONS(1928), 7, + [5745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1954), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1952), 16, ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [5600] = 3, + sym_annotation, + [5771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1932), 2, + ACTIONS(1958), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1930), 16, + ACTIONS(1956), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42915,13 +43382,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5626] = 3, + [5797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 2, + ACTIONS(1962), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1934), 16, + ACTIONS(1960), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42938,13 +43405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5652] = 3, + [5823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 2, + ACTIONS(1966), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1938), 16, + ACTIONS(1964), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42961,13 +43428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5678] = 3, + [5849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 2, + ACTIONS(1970), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1942), 16, + ACTIONS(1968), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -42984,13 +43451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5704] = 3, + [5875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 2, + ACTIONS(1974), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1946), 16, + ACTIONS(1972), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43007,13 +43474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5730] = 3, + [5901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1952), 2, + ACTIONS(1978), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1950), 16, + ACTIONS(1976), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43030,13 +43497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5756] = 3, + [5927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 2, + ACTIONS(1982), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1954), 16, + ACTIONS(1980), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43053,13 +43520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5782] = 3, + [5953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1960), 2, + ACTIONS(1986), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1958), 16, + ACTIONS(1984), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43076,13 +43543,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5808] = 3, + [5979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 2, + ACTIONS(1990), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1962), 16, + ACTIONS(1988), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43099,13 +43566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5834] = 3, + [6005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 2, + ACTIONS(1994), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1966), 16, + ACTIONS(1992), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43122,13 +43589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5860] = 3, + [6031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 2, + ACTIONS(1998), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1970), 16, + ACTIONS(1996), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43145,13 +43612,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5886] = 3, + [6057] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, + anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, + anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, + anon_sym_DASH, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(1370), 1, + anon_sym_limit, + ACTIONS(1372), 1, + anon_sym_PLUS_EQ, + ACTIONS(1374), 1, + anon_sym_where, + ACTIONS(1376), 1, + anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(2000), 7, + ts_builtin_sym_end, + anon_sym_until, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + [6103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1976), 2, + ACTIONS(2004), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1974), 16, + ACTIONS(2002), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43168,13 +43668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5912] = 3, + [6129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 2, + ACTIONS(2008), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1978), 16, + ACTIONS(2006), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43191,13 +43691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5938] = 3, + [6155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 2, + ACTIONS(2012), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1982), 16, + ACTIONS(2010), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43214,44 +43714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [5964] = 11, + [6181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(2016), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(1372), 1, - anon_sym_PLUS_EQ, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(1986), 9, - ts_builtin_sym_end, - anon_sym_limit, - anon_sym_where, - anon_sym_until, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - [6006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1988), 16, + ACTIONS(2014), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43268,13 +43737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6032] = 3, + [6207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1994), 2, + ACTIONS(2020), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1992), 16, + ACTIONS(2018), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43291,13 +43760,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6058] = 3, + [6233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1998), 2, + ACTIONS(2024), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1996), 16, + ACTIONS(2022), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43314,13 +43783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6084] = 3, + [6259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 2, + ACTIONS(2028), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2000), 16, + ACTIONS(2026), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43337,13 +43806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6110] = 3, + [6285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2006), 2, + ACTIONS(2032), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2004), 16, + ACTIONS(2030), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43360,40 +43829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6136] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, - anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(2010), 1, - anon_sym_PLUS, - ACTIONS(2008), 13, - ts_builtin_sym_end, - anon_sym_DASH, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - sym_annotation, - [6170] = 3, + [6311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 2, + ACTIONS(2036), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2012), 16, + ACTIONS(2034), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43410,40 +43852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6196] = 7, + [6337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, - anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(2018), 1, - anon_sym_PLUS, - ACTIONS(2016), 13, - ts_builtin_sym_end, - anon_sym_DASH, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - sym_annotation, - [6230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2022), 2, + ACTIONS(2040), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2020), 16, + ACTIONS(2038), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43460,37 +43875,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6256] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(2026), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2024), 15, - ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - sym_annotation, - [6284] = 3, + [6363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 2, + ACTIONS(2044), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2028), 16, + ACTIONS(2042), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43507,37 +43898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6310] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(2034), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2032), 15, - ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - sym_annotation, - [6338] = 3, + [6389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 2, + ACTIONS(2048), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2036), 16, + ACTIONS(2046), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43554,37 +43921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6364] = 4, + [6415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(2042), 2, + ACTIONS(2052), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2040), 15, - ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - sym_annotation, - [6392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2046), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2044), 16, + ACTIONS(2050), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43601,13 +43944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6418] = 3, + [6441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 2, + ACTIONS(2056), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2048), 16, + ACTIONS(2054), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43624,13 +43967,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6444] = 3, + [6467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 2, + ACTIONS(2060), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2052), 16, + ACTIONS(2058), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43647,13 +43990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6470] = 3, + [6493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2058), 2, + ACTIONS(2064), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2056), 16, + ACTIONS(2062), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43670,13 +44013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6496] = 3, + [6519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 2, + ACTIONS(2068), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2060), 16, + ACTIONS(2066), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43693,13 +44036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6522] = 3, + [6545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 2, + ACTIONS(2072), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2064), 16, + ACTIONS(2070), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43716,13 +44059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6548] = 3, + [6571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 2, + ACTIONS(2076), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2068), 16, + ACTIONS(2074), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43739,13 +44082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6574] = 3, + [6597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 2, + ACTIONS(2080), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2072), 16, + ACTIONS(2078), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43762,13 +44105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6600] = 3, + [6623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 2, + ACTIONS(2084), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2076), 16, + ACTIONS(2082), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43785,13 +44128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6626] = 3, + [6649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2082), 2, + ACTIONS(2088), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2080), 16, + ACTIONS(2086), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43808,13 +44151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6652] = 3, + [6675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 2, + ACTIONS(2092), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2084), 16, + ACTIONS(2090), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43831,13 +44174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6678] = 3, + [6701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 2, + ACTIONS(2096), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2088), 16, + ACTIONS(2094), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43854,13 +44197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6704] = 3, + [6727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 2, + ACTIONS(2100), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2092), 16, + ACTIONS(2098), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43877,13 +44220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6730] = 3, + [6753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 2, + ACTIONS(2104), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2096), 16, + ACTIONS(2102), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43900,13 +44243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6756] = 3, + [6779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(2108), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2100), 16, + ACTIONS(2106), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43923,13 +44266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6782] = 3, + [6805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 2, + ACTIONS(2112), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2104), 16, + ACTIONS(2110), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -43946,14 +44289,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6808] = 3, + [6831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 2, + ACTIONS(2116), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2108), 16, - ts_builtin_sym_end, + ACTIONS(2114), 16, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -43964,19 +44309,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, + anon_sym_RBRACK, + anon_sym_LT_COLON, sym_annotation, - [6834] = 3, + [6857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2114), 2, + ACTIONS(2118), 1, + anon_sym_LPAREN, + ACTIONS(1448), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2112), 16, - ts_builtin_sym_end, + ACTIONS(1444), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -43987,18 +44334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, + anon_sym_RBRACK, sym_annotation, - [6860] = 3, + [6885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2118), 2, + ACTIONS(2122), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2116), 16, + ACTIONS(2120), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44015,14 +44359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6886] = 3, + [6911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(1466), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2120), 16, - ts_builtin_sym_end, + ACTIONS(1432), 16, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -44033,12 +44379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, + anon_sym_DOT, + anon_sym_RBRACK, sym_annotation, - [6912] = 3, + [6937] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2126), 2, @@ -44061,7 +44405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6938] = 3, + [6963] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2130), 2, @@ -44084,7 +44428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6964] = 3, + [6989] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2134), 2, @@ -44107,47 +44451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [6990] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, - anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, - anon_sym_PLUS, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(1370), 1, - anon_sym_limit, - ACTIONS(1372), 1, - anon_sym_PLUS_EQ, - ACTIONS(1374), 1, - anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(2136), 7, - ts_builtin_sym_end, - anon_sym_until, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - [7036] = 3, + [7015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 2, + ACTIONS(1464), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2138), 16, - ts_builtin_sym_end, + ACTIONS(1462), 16, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -44158,51 +44472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - sym_annotation, - [7062] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, - anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, - anon_sym_PLUS, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(1370), 1, - anon_sym_limit, - ACTIONS(1372), 1, - anon_sym_PLUS_EQ, - ACTIONS(1374), 1, - anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, + anon_sym_RBRACK, sym_annotation, - ACTIONS(2142), 7, - ts_builtin_sym_end, - anon_sym_until, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - [7108] = 3, + [7041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 2, + ACTIONS(2138), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2144), 16, + ACTIONS(2136), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44219,13 +44497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7134] = 3, + [7067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2150), 2, + ACTIONS(2142), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2148), 16, + ACTIONS(2140), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44242,14 +44520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7160] = 3, + [7093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2146), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2152), 16, - ts_builtin_sym_end, + ACTIONS(2144), 16, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, @@ -44260,35 +44540,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_until, anon_sym_EQ_GT, anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, + anon_sym_RBRACK, + anon_sym_LT_COLON, sym_annotation, - [7186] = 3, + [7119] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(1358), 1, + anon_sym_STAR, + ACTIONS(1360), 1, anon_sym_SLASH, + ACTIONS(1362), 1, + anon_sym_PERCENT, + ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(2156), 16, + ACTIONS(1366), 1, + anon_sym_DASH, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(1370), 1, + anon_sym_limit, + ACTIONS(1372), 1, + anon_sym_PLUS_EQ, + ACTIONS(1374), 1, + anon_sym_where, + ACTIONS(1376), 1, + anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(2148), 7, ts_builtin_sym_end, + anon_sym_until, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + [7165] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, - anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1376), 1, + anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(2150), 9, + ts_builtin_sym_end, + anon_sym_limit, anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [7212] = 13, + [7207] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -44303,31 +44622,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, - anon_sym_limit, ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, - anon_sym_where, ACTIONS(1376), 1, anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2160), 7, + ACTIONS(2152), 9, ts_builtin_sym_end, + anon_sym_limit, + anon_sym_where, anon_sym_until, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7258] = 3, + [7249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2164), 2, + ACTIONS(2146), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2162), 16, + ACTIONS(2144), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44344,13 +44661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7284] = 3, + [7275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2168), 2, + ACTIONS(2156), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2166), 16, + ACTIONS(2154), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44367,13 +44684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7310] = 3, + [7301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 2, + ACTIONS(2160), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2170), 16, + ACTIONS(2158), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44390,13 +44707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7336] = 3, + [7327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2176), 2, + ACTIONS(2164), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2174), 16, + ACTIONS(2162), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44413,13 +44730,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7362] = 3, + [7353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 2, + ACTIONS(2168), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2178), 16, + ACTIONS(2166), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44436,13 +44753,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7388] = 3, + [7379] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, + anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, + anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, + anon_sym_DASH, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(1370), 1, + anon_sym_limit, + ACTIONS(1372), 1, + anon_sym_PLUS_EQ, + ACTIONS(1374), 1, + anon_sym_where, + ACTIONS(1376), 1, + anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(2170), 7, + ts_builtin_sym_end, + anon_sym_until, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + [7425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 2, + ACTIONS(2174), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2182), 16, + ACTIONS(2172), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44459,13 +44809,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7414] = 3, + [7451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 2, + ACTIONS(2178), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2186), 16, + ACTIONS(2176), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44482,13 +44832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7440] = 3, + [7477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 2, + ACTIONS(2182), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2190), 16, + ACTIONS(2180), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44505,13 +44855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7466] = 3, + [7503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 2, + ACTIONS(2186), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2194), 16, + ACTIONS(2184), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44528,40 +44878,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7492] = 13, + [7529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(2190), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(2188), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, + anon_sym_until, anon_sym_EQ_GT, - ACTIONS(1380), 1, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, sym_annotation, - ACTIONS(2198), 7, + [7555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2194), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2192), 16, ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7538] = 13, + sym_annotation, + [7581] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -44586,7 +44949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2200), 7, + ACTIONS(2196), 7, ts_builtin_sym_end, anon_sym_until, anon_sym_else, @@ -44594,13 +44957,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7584] = 3, + [7627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 2, + ACTIONS(2200), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2202), 16, + ACTIONS(2198), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44617,13 +44980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7610] = 3, + [7653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 2, + ACTIONS(2204), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2206), 16, + ACTIONS(2202), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44640,46 +45003,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7636] = 13, + [7679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(2208), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(2206), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(2210), 7, - ts_builtin_sym_end, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7682] = 3, + sym_annotation, + [7705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 2, + ACTIONS(2212), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2212), 16, + ACTIONS(2210), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -44696,40 +45049,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7708] = 13, + [7731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(2216), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(2214), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(2216), 7, - ts_builtin_sym_end, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7754] = 3, + sym_annotation, + [7757] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2220), 2, @@ -44752,7 +45095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7780] = 3, + [7783] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2224), 2, @@ -44775,53 +45118,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [7806] = 3, + [7809] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2226), 16, - ts_builtin_sym_end, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(2226), 7, + ts_builtin_sym_end, + anon_sym_until, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [7832] = 3, + [7855] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 2, + ACTIONS(1358), 1, + anon_sym_STAR, + ACTIONS(1360), 1, anon_sym_SLASH, + ACTIONS(1362), 1, + anon_sym_PERCENT, + ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(2230), 16, + ACTIONS(1366), 1, + anon_sym_DASH, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(1370), 1, + anon_sym_limit, + ACTIONS(1372), 1, + anon_sym_PLUS_EQ, + ACTIONS(1374), 1, + anon_sym_where, + ACTIONS(1376), 1, + anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(2228), 7, ts_builtin_sym_end, + anon_sym_until, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + [7901] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(2230), 7, + ts_builtin_sym_end, + anon_sym_until, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [7858] = 13, + [7947] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -44846,7 +45242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2234), 7, + ACTIONS(2232), 7, ts_builtin_sym_end, anon_sym_until, anon_sym_else, @@ -44854,53 +45250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [7904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2238), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2236), 16, - ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - sym_annotation, - [7930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2242), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2240), 16, - ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, - sym_annotation, - [7956] = 13, + [7993] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -44925,7 +45275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2244), 7, + ACTIONS(2234), 7, ts_builtin_sym_end, anon_sym_until, anon_sym_else, @@ -44933,53 +45283,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8002] = 3, + [8039] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2246), 16, - ts_builtin_sym_end, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, + ACTIONS(1380), 1, sym_annotation, - [8028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2252), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2250), 16, + ACTIONS(2236), 7, ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [8054] = 13, + [8085] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -45004,7 +45341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2254), 7, + ACTIONS(2238), 7, ts_builtin_sym_end, anon_sym_until, anon_sym_else, @@ -45012,7 +45349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8100] = 13, + [8131] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -45037,7 +45374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2256), 7, + ACTIONS(2240), 7, ts_builtin_sym_end, anon_sym_until, anon_sym_else, @@ -45045,13 +45382,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8146] = 3, + [8177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2260), 2, + ACTIONS(2244), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2258), 16, + ACTIONS(2242), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45068,13 +45405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8172] = 3, + [8203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 2, + ACTIONS(2248), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2262), 16, + ACTIONS(2246), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45091,53 +45428,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8198] = 3, + [8229] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2268), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2266), 16, - ts_builtin_sym_end, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_private, - anon_sym_pattern, - anon_sym_predicate, - anon_sym_function, + ACTIONS(1380), 1, sym_annotation, - [8224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2270), 16, + ACTIONS(2250), 7, ts_builtin_sym_end, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [8250] = 13, + [8275] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -45162,7 +45486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2274), 7, + ACTIONS(2252), 7, ts_builtin_sym_end, anon_sym_until, anon_sym_else, @@ -45170,13 +45494,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8296] = 3, + [8321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 2, + ACTIONS(2256), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2276), 16, + ACTIONS(2254), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45193,18 +45517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8322] = 3, + [8347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 2, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(2260), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2280), 16, + ACTIONS(2258), 15, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, - anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -45216,13 +45541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8348] = 3, + [8375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 2, + ACTIONS(2264), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2284), 16, + ACTIONS(2262), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45239,13 +45564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8374] = 3, + [8401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 2, + ACTIONS(2268), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2288), 16, + ACTIONS(2266), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45262,37 +45587,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8400] = 4, + [8427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, - anon_sym_LT_COLON, - ACTIONS(1480), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1478), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - sym_annotation, - [8428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2294), 2, + ACTIONS(2272), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2292), 16, + ACTIONS(2270), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45309,15 +45610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8454] = 4, + [8453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_else, - ACTIONS(2298), 2, + ACTIONS(2276), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2296), 15, + ACTIONS(2274), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45328,35 +45627,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_until, anon_sym_EQ_GT, + anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, sym_annotation, - [8482] = 3, + [8479] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2302), 16, - ts_builtin_sym_end, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(2278), 7, + ts_builtin_sym_end, + anon_sym_until, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [8508] = 13, + [8525] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -45381,7 +45691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2306), 7, + ACTIONS(2280), 7, ts_builtin_sym_end, anon_sym_until, anon_sym_else, @@ -45389,13 +45699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8554] = 3, + [8571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 2, + ACTIONS(2284), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2308), 16, + ACTIONS(2282), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45412,13 +45722,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8580] = 3, + [8597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 2, + ACTIONS(2288), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2312), 16, + ACTIONS(2286), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45435,13 +45745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8606] = 3, + [8623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 2, + ACTIONS(2292), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2316), 16, + ACTIONS(2290), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45458,46 +45768,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8632] = 13, + [8649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(2296), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(2294), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(2320), 7, - ts_builtin_sym_end, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8678] = 3, + sym_annotation, + [8675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 2, + ACTIONS(2300), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2322), 16, + ACTIONS(2298), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45514,13 +45814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8704] = 3, + [8701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 2, + ACTIONS(2304), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2326), 16, + ACTIONS(2302), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45537,15 +45837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8730] = 4, + [8727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 1, + ACTIONS(2310), 1, anon_sym_else, - ACTIONS(2332), 2, + ACTIONS(2308), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2330), 15, + ACTIONS(2306), 15, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45561,13 +45861,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8758] = 3, + [8755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2338), 2, + ACTIONS(2314), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2336), 16, + ACTIONS(2312), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45584,13 +45884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8784] = 3, + [8781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 2, + ACTIONS(2318), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2340), 16, + ACTIONS(2316), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45607,13 +45907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8810] = 3, + [8807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 2, + ACTIONS(2322), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2344), 16, + ACTIONS(2320), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45630,13 +45930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8836] = 3, + [8833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 2, + ACTIONS(2326), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2348), 16, + ACTIONS(2324), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45653,13 +45953,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8862] = 3, + [8859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2354), 2, + ACTIONS(2330), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2352), 16, + ACTIONS(2328), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45676,13 +45976,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8888] = 3, + [8885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1800), 2, + ACTIONS(2334), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1798), 16, + ACTIONS(2332), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45699,40 +45999,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [8914] = 13, + [8911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(2338), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(2336), 15, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, + anon_sym_until, anon_sym_EQ_GT, - ACTIONS(1380), 1, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, sym_annotation, - ACTIONS(2356), 7, + [8939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2342), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2340), 16, ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [8960] = 13, + sym_annotation, + [8965] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -45757,15 +46071,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2358), 7, - ts_builtin_sym_end, + ACTIONS(2346), 1, anon_sym_until, + ACTIONS(2344), 6, + ts_builtin_sym_end, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9006] = 13, + [9013] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -45790,15 +46105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2360), 7, + ACTIONS(2350), 1, + anon_sym_else, + ACTIONS(2348), 6, ts_builtin_sym_end, anon_sym_until, - anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9052] = 14, + [9061] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -45823,49 +46139,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2364), 1, - anon_sym_until, - ACTIONS(2362), 6, + ACTIONS(2352), 7, ts_builtin_sym_end, + anon_sym_until, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9100] = 13, + [9107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(2356), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(2354), 15, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, - anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(2366), 7, - ts_builtin_sym_end, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9146] = 14, + sym_annotation, + [9135] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -45874,38 +46180,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1362), 1, anon_sym_PERCENT, - ACTIONS(1364), 1, - anon_sym_PLUS, - ACTIONS(1366), 1, - anon_sym_DASH, ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, + ACTIONS(2360), 1, + anon_sym_PLUS, + ACTIONS(2358), 13, + ts_builtin_sym_end, + anon_sym_DASH, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(2370), 1, anon_sym_until, - ACTIONS(2368), 6, - ts_builtin_sym_end, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9194] = 3, + sym_annotation, + [9169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 2, + ACTIONS(2364), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2372), 16, + ACTIONS(2362), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -45922,7 +46221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9220] = 13, + [9195] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -45947,7 +46246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1380), 1, sym_annotation, - ACTIONS(2376), 7, + ACTIONS(2366), 7, ts_builtin_sym_end, anon_sym_until, anon_sym_else, @@ -45955,112 +46254,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9266] = 13, + [9241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(2116), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(2114), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(2378), 7, - ts_builtin_sym_end, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9312] = 13, + sym_annotation, + [9267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(2370), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(2368), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, - anon_sym_EQ_GT, - ACTIONS(1380), 1, - sym_annotation, - ACTIONS(2380), 7, - ts_builtin_sym_end, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9358] = 13, + sym_annotation, + [9293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, - anon_sym_STAR, - ACTIONS(1360), 1, + ACTIONS(2374), 2, anon_sym_SLASH, - ACTIONS(1362), 1, - anon_sym_PERCENT, - ACTIONS(1364), 1, anon_sym_PLUS, - ACTIONS(1366), 1, + ACTIONS(2372), 16, + ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(1368), 1, anon_sym_as, - ACTIONS(1370), 1, anon_sym_limit, - ACTIONS(1372), 1, anon_sym_PLUS_EQ, - ACTIONS(1374), 1, anon_sym_where, - ACTIONS(1376), 1, + anon_sym_until, anon_sym_EQ_GT, - ACTIONS(1380), 1, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, sym_annotation, - ACTIONS(2382), 7, + [9319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2378), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2376), 16, ts_builtin_sym_end, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - [9404] = 3, + sym_annotation, + [9345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2386), 2, + ACTIONS(2382), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2384), 16, + ACTIONS(2380), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -46077,13 +46369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9430] = 3, + [9371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 2, + ACTIONS(2386), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1728), 16, + ACTIONS(2384), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -46100,7 +46392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9456] = 3, + [9397] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2390), 2, @@ -46123,7 +46415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9482] = 3, + [9423] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2394), 2, @@ -46146,7 +46438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9508] = 3, + [9449] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2398), 2, @@ -46169,7 +46461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9534] = 3, + [9475] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2402), 2, @@ -46192,7 +46484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9560] = 3, + [9501] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2406), 2, @@ -46215,7 +46507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9586] = 3, + [9527] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2410), 2, @@ -46238,7 +46530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9612] = 3, + [9553] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2414), 2, @@ -46261,7 +46553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9638] = 3, + [9579] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2418), 2, @@ -46284,7 +46576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9664] = 3, + [9605] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 2, @@ -46307,7 +46599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9690] = 3, + [9631] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2426), 2, @@ -46330,36 +46622,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9716] = 3, + [9657] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2428), 16, - ts_builtin_sym_end, + ACTIONS(1358), 1, anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, anon_sym_DASH, + ACTIONS(1368), 1, anon_sym_as, + ACTIONS(1370), 1, anon_sym_limit, + ACTIONS(1372), 1, anon_sym_PLUS_EQ, + ACTIONS(1374), 1, anon_sym_where, - anon_sym_until, + ACTIONS(1376), 1, anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(2428), 7, + ts_builtin_sym_end, + anon_sym_until, anon_sym_else, anon_sym_private, anon_sym_pattern, anon_sym_predicate, anon_sym_function, - sym_annotation, - [9742] = 3, + [9703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 2, + ACTIONS(2432), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2432), 16, + ACTIONS(2430), 16, ts_builtin_sym_end, anon_sym_STAR, anon_sym_PERCENT, @@ -46376,7 +46678,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9768] = 3, + [9729] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, + anon_sym_STAR, + ACTIONS(1360), 1, + anon_sym_SLASH, + ACTIONS(1362), 1, + anon_sym_PERCENT, + ACTIONS(1364), 1, + anon_sym_PLUS, + ACTIONS(1366), 1, + anon_sym_DASH, + ACTIONS(1368), 1, + anon_sym_as, + ACTIONS(1370), 1, + anon_sym_limit, + ACTIONS(1372), 1, + anon_sym_PLUS_EQ, + ACTIONS(1374), 1, + anon_sym_where, + ACTIONS(1376), 1, + anon_sym_EQ_GT, + ACTIONS(1380), 1, + sym_annotation, + ACTIONS(2434), 7, + ts_builtin_sym_end, + anon_sym_until, + anon_sym_else, + anon_sym_private, + anon_sym_pattern, + anon_sym_predicate, + anon_sym_function, + [9775] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2438), 2, @@ -46399,13 +46734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, anon_sym_function, sym_annotation, - [9794] = 3, + [9801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 2, + ACTIONS(2100), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2178), 15, + ACTIONS(2098), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46421,13 +46756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9819] = 3, + [9826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1890), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1724), 15, + ACTIONS(1888), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46443,13 +46778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9844] = 3, + [9851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1776), 2, + ACTIONS(1894), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1774), 15, + ACTIONS(1892), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46465,13 +46800,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9869] = 3, + [9876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1898), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1802), 15, + ACTIONS(1896), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, + sym_annotation, + [9901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2102), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, + sym_annotation, + [9926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2276), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2274), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, + sym_annotation, + [9951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2112), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2110), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, + sym_annotation, + [9976] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, + anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, + anon_sym_DASH, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2452), 1, + anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2150), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_limit, + anon_sym_where, + anon_sym_until, + anon_sym_else, + anon_sym_RBRACK, + [10017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2168), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2166), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, + sym_annotation, + [10042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2160), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2158), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, + sym_annotation, + [10067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2174), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2172), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46487,7 +46984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9894] = 13, + [10092] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -46503,29 +47000,225 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(2280), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_until, + anon_sym_else, + anon_sym_RBRACK, + [10137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2176), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, + sym_annotation, + [10162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2190), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2188), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, + sym_annotation, + [10187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2194), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2192), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, + sym_annotation, + [10212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2204), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2202), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, + sym_annotation, + [10237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2256), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2254), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, + sym_annotation, + [10262] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, + anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, + anon_sym_DASH, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2452), 1, + anon_sym_PLUS_EQ, + ACTIONS(2454), 1, anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(2366), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_until, + anon_sym_else, + anon_sym_RBRACK, + [10307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2314), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2312), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, sym_annotation, - ACTIONS(1806), 6, + [10332] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, + anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, + anon_sym_DASH, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2452), 1, + anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(2428), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [9939] = 3, + [10377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2058), 2, + ACTIONS(2334), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2056), 15, + ACTIONS(2332), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46541,13 +47234,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9964] = 3, + [10402] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, + anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, + anon_sym_DASH, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2452), 1, + anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(2170), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_until, + anon_sym_else, + anon_sym_RBRACK, + [10447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 2, + ACTIONS(2318), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2064), 15, + ACTIONS(2316), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46563,13 +47288,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [9989] = 3, + [10472] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1816), 2, + ACTIONS(2440), 1, + anon_sym_STAR, + ACTIONS(2442), 1, anon_sym_SLASH, + ACTIONS(2444), 1, + anon_sym_PERCENT, + ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(1814), 15, + ACTIONS(2448), 1, + anon_sym_DASH, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2452), 1, + anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(2434), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_until, + anon_sym_else, + anon_sym_RBRACK, + [10517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2322), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2320), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46585,13 +47342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10014] = 3, + [10542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1820), 2, + ACTIONS(2364), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1818), 15, + ACTIONS(2362), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46607,13 +47364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10039] = 3, + [10567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1824), 2, + ACTIONS(1512), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1822), 15, + ACTIONS(1510), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46629,13 +47386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10064] = 3, + [10592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 2, + ACTIONS(1592), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1842), 15, + ACTIONS(1590), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46651,13 +47408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10089] = 3, + [10617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1848), 2, + ACTIONS(1632), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1846), 15, + ACTIONS(1630), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46673,13 +47430,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10114] = 3, + [10642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 2, + ACTIONS(1636), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1850), 15, + ACTIONS(1634), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46695,13 +47452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10139] = 3, + [10667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 2, + ACTIONS(2264), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1858), 15, + ACTIONS(2262), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46717,13 +47474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10164] = 3, + [10692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1872), 2, + ACTIONS(2326), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1870), 15, + ACTIONS(2324), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46739,13 +47496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10189] = 3, + [10717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1876), 2, + ACTIONS(2300), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1874), 15, + ACTIONS(2298), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46761,13 +47518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10214] = 3, + [10742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 2, + ACTIONS(2138), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1882), 15, + ACTIONS(2136), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46783,13 +47540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10239] = 3, + [10767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1892), 2, + ACTIONS(2142), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1890), 15, + ACTIONS(2140), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46805,13 +47562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10264] = 3, + [10792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 2, + ACTIONS(2156), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1894), 15, + ACTIONS(2154), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46827,13 +47584,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10289] = 3, + [10817] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, + anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, + anon_sym_DASH, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2452), 1, + anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(2462), 1, + anon_sym_else, + ACTIONS(2348), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_until, + anon_sym_RBRACK, + [10864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1900), 2, + ACTIONS(2284), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1898), 15, + ACTIONS(2282), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46849,13 +47639,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10314] = 3, + [10889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 2, + ACTIONS(2370), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1910), 15, + ACTIONS(2368), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46871,13 +47661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10339] = 3, + [10914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 2, + ACTIONS(2374), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1914), 15, + ACTIONS(2372), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46893,13 +47683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10364] = 3, + [10939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 2, + ACTIONS(2378), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1918), 15, + ACTIONS(2376), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46915,13 +47705,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10389] = 3, + [10964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 2, + ACTIONS(2382), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1924), 15, + ACTIONS(2380), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46937,13 +47727,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10414] = 3, + [10989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1932), 2, + ACTIONS(2386), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1930), 15, + ACTIONS(2384), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46959,13 +47749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10439] = 3, + [11014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 2, + ACTIONS(2390), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1934), 15, + ACTIONS(2388), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -46981,13 +47771,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10464] = 3, + [11039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 2, + ACTIONS(2394), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1938), 15, + ACTIONS(2392), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47003,13 +47793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10489] = 3, + [11064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 2, + ACTIONS(2398), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1942), 15, + ACTIONS(2396), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47025,13 +47815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10514] = 3, + [11089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 2, + ACTIONS(2402), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1946), 15, + ACTIONS(2400), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47047,13 +47837,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10539] = 3, + [11114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 2, + ACTIONS(2406), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1954), 15, + ACTIONS(2404), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47069,13 +47859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10564] = 3, + [11139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 2, + ACTIONS(2410), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1962), 15, + ACTIONS(2408), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47091,13 +47881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10589] = 3, + [11164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 2, + ACTIONS(2414), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2068), 15, + ACTIONS(2412), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47113,13 +47903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10614] = 3, + [11189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 2, + ACTIONS(2418), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2072), 15, + ACTIONS(2416), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47135,13 +47925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10639] = 3, + [11214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 2, + ACTIONS(2422), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2096), 15, + ACTIONS(2420), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47157,13 +47947,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10664] = 3, + [11239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(2426), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2100), 15, + ACTIONS(2424), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47179,13 +47969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10689] = 3, + [11264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 2, + ACTIONS(2182), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2104), 15, + ACTIONS(2180), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47201,13 +47991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10714] = 3, + [11289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 2, + ACTIONS(1524), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2108), 15, + ACTIONS(1522), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47223,13 +48013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10739] = 3, + [11314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2114), 2, + ACTIONS(1746), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2112), 15, + ACTIONS(1744), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47245,13 +48035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10764] = 3, + [11339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2118), 2, + ACTIONS(1902), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2116), 15, + ACTIONS(1900), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47267,7 +48057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10789] = 3, + [11364] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2122), 2, @@ -47289,7 +48079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10814] = 3, + [11389] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2126), 2, @@ -47311,7 +48101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10839] = 3, + [11414] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2130), 2, @@ -47333,7 +48123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10864] = 3, + [11439] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2134), 2, @@ -47355,79 +48145,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10889] = 3, + [11464] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2150), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2148), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2440), 1, anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, anon_sym_DASH, + ACTIONS(2450), 1, anon_sym_as, - anon_sym_limit, + ACTIONS(2452), 1, anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, + ACTIONS(2454), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, + ACTIONS(2456), 1, sym_annotation, - [10914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2154), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2152), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, + ACTIONS(2458), 1, anon_sym_limit, - anon_sym_PLUS_EQ, + ACTIONS(2460), 1, anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - sym_annotation, - [10939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2158), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2156), 15, + ACTIONS(2148), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - sym_annotation, - [10964] = 3, + [11509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2164), 2, + ACTIONS(2186), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2162), 15, + ACTIONS(2184), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47443,13 +48199,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [10989] = 3, + [11534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2168), 2, + ACTIONS(2200), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2166), 15, + ACTIONS(2198), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47465,13 +48221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11014] = 3, + [11559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 2, + ACTIONS(2244), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2170), 15, + ACTIONS(2242), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47487,13 +48243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11039] = 3, + [11584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2176), 2, + ACTIONS(2330), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2174), 15, + ACTIONS(2328), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47509,13 +48265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11064] = 3, + [11609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1768), 2, + ACTIONS(2342), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1766), 15, + ACTIONS(2340), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47531,20 +48287,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11089] = 3, + [11634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 2, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2338), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2182), 15, + ACTIONS(2336), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, - anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -47553,20 +48310,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11114] = 3, + [11661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 2, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2260), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2186), 15, + ACTIONS(2258), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, - anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -47575,79 +48333,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11139] = 3, + [11688] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2190), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2440), 1, anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, anon_sym_DASH, + ACTIONS(2450), 1, anon_sym_as, - anon_sym_limit, + ACTIONS(2452), 1, anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, + ACTIONS(2454), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, + ACTIONS(2456), 1, sym_annotation, - [11164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2196), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2194), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, + ACTIONS(2458), 1, anon_sym_limit, - anon_sym_PLUS_EQ, + ACTIONS(2460), 1, anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - sym_annotation, - [11189] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2282), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2280), 15, + ACTIONS(2278), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - sym_annotation, - [11214] = 3, + [11733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 2, + ACTIONS(1520), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2202), 15, + ACTIONS(1518), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47663,13 +48387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11239] = 3, + [11758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 2, + ACTIONS(1508), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2284), 15, + ACTIONS(1506), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47685,13 +48409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11264] = 3, + [11783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 2, + ACTIONS(1528), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2236), 15, + ACTIONS(1526), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47707,13 +48431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11289] = 3, + [11808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 2, + ACTIONS(1532), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2288), 15, + ACTIONS(1530), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47729,13 +48453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11314] = 3, + [11833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 2, + ACTIONS(1536), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2316), 15, + ACTIONS(1534), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47751,13 +48475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11339] = 3, + [11858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2294), 2, + ACTIONS(1540), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2292), 15, + ACTIONS(1538), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47773,47 +48497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11364] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, - anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, - anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2320), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [11409] = 4, + [11883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, - anon_sym_else, - ACTIONS(2298), 2, + ACTIONS(1544), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2296), 14, + ACTIONS(1542), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47826,15 +48516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_until, anon_sym_EQ_GT, + anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11436] = 3, + [11908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 2, + ACTIONS(1548), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2302), 15, + ACTIONS(1546), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47850,13 +48541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11461] = 3, + [11933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 2, + ACTIONS(1552), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2088), 15, + ACTIONS(1550), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47872,13 +48563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11486] = 3, + [11958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 2, + ACTIONS(1556), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1762), 15, + ACTIONS(1554), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47894,15 +48585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11511] = 4, + [11983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 1, - anon_sym_else, - ACTIONS(2332), 2, + ACTIONS(1560), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2330), 14, + ACTIONS(1558), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47915,15 +48604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_until, anon_sym_EQ_GT, + anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11538] = 3, + [12008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 2, + ACTIONS(1564), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1758), 15, + ACTIONS(1562), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47939,13 +48629,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11563] = 3, + [12033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1756), 2, + ACTIONS(1568), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1754), 15, + ACTIONS(1566), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47961,13 +48651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11588] = 3, + [12058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1772), 2, + ACTIONS(1572), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1770), 15, + ACTIONS(1570), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -47983,13 +48673,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11613] = 3, + [12083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1752), 2, + ACTIONS(1576), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1750), 15, + ACTIONS(1574), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48005,20 +48695,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11638] = 3, + [12108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 2, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2356), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1746), 15, + ACTIONS(2354), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, - anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -48027,13 +48718,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11663] = 3, + [12135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 2, + ACTIONS(1588), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2372), 15, + ACTIONS(1586), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48049,42 +48740,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11688] = 3, + [12160] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1744), 2, - anon_sym_SLASH, + ACTIONS(2360), 1, anon_sym_PLUS, - ACTIONS(1742), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2440), 1, anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, anon_sym_PERCENT, - anon_sym_DASH, + ACTIONS(2450), 1, anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - sym_annotation, - [11713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2386), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2384), 15, + ACTIONS(2358), 12, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_DASH, - anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -48093,42 +48766,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11738] = 3, + [12193] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 2, - anon_sym_SLASH, + ACTIONS(1584), 1, anon_sym_PLUS, - ACTIONS(2432), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2440), 1, anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, anon_sym_PERCENT, - anon_sym_DASH, + ACTIONS(2450), 1, anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - sym_annotation, - [11763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2414), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2412), 15, + ACTIONS(1582), 12, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_DASH, - anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -48137,13 +48792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11788] = 3, + [12226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 2, + ACTIONS(1616), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2436), 15, + ACTIONS(1614), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48159,13 +48814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11813] = 3, + [12251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 2, + ACTIONS(1642), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2276), 15, + ACTIONS(1640), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48181,7 +48836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11838] = 13, + [12276] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -48197,51 +48852,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, + ACTIONS(2454), 1, anon_sym_EQ_GT, - ACTIONS(2460), 1, + ACTIONS(2456), 1, sym_annotation, - ACTIONS(2274), 6, + ACTIONS(1764), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [11883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2394), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2392), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, anon_sym_limit, - anon_sym_PLUS_EQ, anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - sym_annotation, - [11908] = 3, + [12317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 2, + ACTIONS(2108), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2420), 15, + ACTIONS(2106), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48257,13 +48888,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11933] = 3, + [12342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 2, + ACTIONS(2464), 1, + anon_sym_else, + ACTIONS(1620), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2270), 15, + ACTIONS(1618), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48276,16 +48909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_until, anon_sym_EQ_GT, - anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11958] = 3, + [12369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 2, + ACTIONS(2208), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2388), 15, + ACTIONS(2206), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48301,79 +48933,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [11983] = 3, + [12394] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2424), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2440), 1, anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, anon_sym_DASH, + ACTIONS(2450), 1, anon_sym_as, - anon_sym_limit, + ACTIONS(2452), 1, anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, + ACTIONS(2454), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, + ACTIONS(2456), 1, sym_annotation, - [12008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2410), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2408), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, + ACTIONS(2458), 1, anon_sym_limit, - anon_sym_PLUS_EQ, + ACTIONS(2460), 1, anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - sym_annotation, - [12033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2268), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2266), 15, + ACTIONS(1624), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - sym_annotation, - [12058] = 3, + [12439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 2, + ACTIONS(1628), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2312), 15, + ACTIONS(1626), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48389,13 +48987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12083] = 3, + [12464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 2, + ACTIONS(1648), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2428), 15, + ACTIONS(1646), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48411,13 +49009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12108] = 3, + [12489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 2, + ACTIONS(1652), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2416), 15, + ACTIONS(1650), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48433,13 +49031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12133] = 3, + [12514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 2, + ACTIONS(1656), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2404), 15, + ACTIONS(1654), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48455,13 +49053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12158] = 3, + [12539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 2, + ACTIONS(1660), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2400), 15, + ACTIONS(1658), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48477,13 +49075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12183] = 3, + [12564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 2, + ACTIONS(1664), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2262), 15, + ACTIONS(1662), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48499,13 +49097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12208] = 3, + [12589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 2, + ACTIONS(1668), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2396), 15, + ACTIONS(1666), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48521,109 +49119,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12233] = 13, + [12614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(1672), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2306), 6, + ACTIONS(1670), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [12278] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, anon_sym_STAR, - ACTIONS(2442), 1, - anon_sym_SLASH, - ACTIONS(2444), 1, anon_sym_PERCENT, - ACTIONS(2446), 1, - anon_sym_PLUS, - ACTIONS(2448), 1, anon_sym_DASH, - ACTIONS(2450), 1, anon_sym_as, - ACTIONS(2452), 1, anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, - ACTIONS(2456), 1, anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2136), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [12323] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, - anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, - anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2234), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [12368] = 3, + sym_annotation, + [12639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 2, + ACTIONS(1676), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2230), 15, + ACTIONS(1674), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48639,13 +49163,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12393] = 3, + [12664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 2, + ACTIONS(1680), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2226), 15, + ACTIONS(1678), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48661,13 +49185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12418] = 3, + [12689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2260), 2, + ACTIONS(1684), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2258), 15, + ACTIONS(1682), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48683,13 +49207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12443] = 3, + [12714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 2, + ACTIONS(1688), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2222), 15, + ACTIONS(1686), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48705,13 +49229,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12468] = 3, + [12739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 2, + ACTIONS(1692), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2218), 15, + ACTIONS(1690), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48727,13 +49251,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12493] = 3, + [12764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 2, + ACTIONS(1696), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1688), 15, + ACTIONS(1694), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48749,13 +49273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12518] = 3, + [12789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 2, + ACTIONS(1700), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2212), 15, + ACTIONS(1698), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48771,13 +49295,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12543] = 3, + [12814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 2, + ACTIONS(1704), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2206), 15, + ACTIONS(1702), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48793,13 +49317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12568] = 3, + [12839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 2, + ACTIONS(1708), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2084), 15, + ACTIONS(1706), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48815,13 +49339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12593] = 3, + [12864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1682), 2, + ACTIONS(1712), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1680), 15, + ACTIONS(1710), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48837,13 +49361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12618] = 3, + [12889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 2, + ACTIONS(1716), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2060), 15, + ACTIONS(1714), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48859,13 +49383,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12643] = 3, + [12914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 2, + ACTIONS(1720), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2052), 15, + ACTIONS(1718), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48881,13 +49405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12668] = 3, + [12939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 2, + ACTIONS(1724), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2044), 15, + ACTIONS(1722), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48903,13 +49427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12693] = 3, + [12964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 2, + ACTIONS(1728), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2036), 15, + ACTIONS(1726), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48925,13 +49449,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12718] = 3, + [12989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 2, + ACTIONS(1732), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2028), 15, + ACTIONS(1730), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48947,13 +49471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12743] = 3, + [13014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2022), 2, + ACTIONS(1736), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2020), 15, + ACTIONS(1734), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48969,13 +49493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12768] = 3, + [13039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 2, + ACTIONS(1740), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2012), 15, + ACTIONS(1738), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -48991,123 +49515,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12793] = 3, + [13064] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2006), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(2004), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2440), 1, anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, anon_sym_DASH, + ACTIONS(2450), 1, anon_sym_as, - anon_sym_limit, + ACTIONS(2452), 1, anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, + ACTIONS(2454), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, + ACTIONS(2456), 1, sym_annotation, - [12818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1998), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1996), 15, + ACTIONS(2152), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, anon_sym_limit, - anon_sym_PLUS_EQ, anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - sym_annotation, - [12843] = 3, + [13105] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1990), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1988), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2440), 1, anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, anon_sym_DASH, + ACTIONS(2450), 1, anon_sym_as, - anon_sym_limit, + ACTIONS(2452), 1, anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_until, + ACTIONS(2454), 1, anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, + ACTIONS(2456), 1, sym_annotation, - [12868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1984), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1982), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, + ACTIONS(2458), 1, anon_sym_limit, - anon_sym_PLUS_EQ, + ACTIONS(2460), 1, anon_sym_where, - anon_sym_until, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - sym_annotation, - [12893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1974), 15, + ACTIONS(2196), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - sym_annotation, - [12918] = 3, + [13150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 2, + ACTIONS(2296), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1966), 15, + ACTIONS(2294), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49123,13 +49599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12943] = 3, + [13175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1960), 2, + ACTIONS(2212), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1958), 15, + ACTIONS(2210), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49145,13 +49621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12968] = 3, + [13200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1952), 2, + ACTIONS(2288), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1950), 15, + ACTIONS(2286), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49167,13 +49643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [12993] = 3, + [13225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1674), 2, + ACTIONS(2216), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1672), 15, + ACTIONS(2214), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49189,13 +49665,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13018] = 3, + [13250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1658), 2, + ACTIONS(1776), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1656), 15, + ACTIONS(1774), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49211,46 +49687,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13043] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, - anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, - anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2466), 1, - anon_sym_else, - ACTIONS(1832), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_until, - anon_sym_RBRACK, - [13090] = 3, + [13275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 2, + ACTIONS(1780), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1650), 15, + ACTIONS(1778), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49266,13 +49709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13115] = 3, + [13300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(1784), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1646), 15, + ACTIONS(1782), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49288,13 +49731,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13140] = 3, + [13325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1644), 2, + ACTIONS(1788), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1642), 15, + ACTIONS(1786), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49310,13 +49753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13165] = 3, + [13350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1636), 2, + ACTIONS(1792), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1634), 15, + ACTIONS(1790), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49332,13 +49775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13190] = 3, + [13375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 2, + ACTIONS(1886), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1630), 15, + ACTIONS(1884), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49354,13 +49797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13215] = 3, + [13400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1800), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1626), 15, + ACTIONS(1798), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49376,13 +49819,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13240] = 3, + [13425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 2, + ACTIONS(1804), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1614), 15, + ACTIONS(1802), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49398,77 +49841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13265] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, - anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, - anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2142), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [13310] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, - anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, - anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2160), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [13355] = 3, + [13450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 2, + ACTIONS(1808), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1732), 15, + ACTIONS(1806), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49484,45 +49863,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13380] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, - anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, - anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2198), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [13425] = 3, + [13475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1718), 2, + ACTIONS(1812), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1716), 15, + ACTIONS(1810), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49538,13 +49885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13450] = 3, + [13500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1710), 2, + ACTIONS(1816), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1708), 15, + ACTIONS(1814), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49560,13 +49907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13475] = 3, + [13525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1612), 2, + ACTIONS(1820), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1610), 15, + ACTIONS(1818), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49582,13 +49929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13500] = 3, + [13550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1694), 2, + ACTIONS(1824), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1692), 15, + ACTIONS(1822), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49604,13 +49951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13525] = 3, + [13575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 2, + ACTIONS(1828), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1668), 15, + ACTIONS(1826), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49626,13 +49973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13550] = 3, + [13600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1832), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1664), 15, + ACTIONS(1830), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49648,43 +49995,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13575] = 11, + [13625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(1836), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(1654), 8, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_limit, - anon_sym_where, - anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [13616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1520), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1518), 15, + ACTIONS(1834), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49700,13 +50017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13641] = 3, + [13650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1620), 2, + ACTIONS(1840), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1618), 15, + ACTIONS(1838), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49722,13 +50039,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13666] = 3, + [13675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 2, + ACTIONS(1844), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1566), 15, + ACTIONS(1842), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49744,13 +50061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13691] = 3, + [13700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1848), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1538), 15, + ACTIONS(1846), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49766,13 +50083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13716] = 3, + [13725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1600), 2, + ACTIONS(1852), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1598), 15, + ACTIONS(1850), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49788,13 +50105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13741] = 3, + [13750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1706), 2, + ACTIONS(1856), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1704), 15, + ACTIONS(1854), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49810,13 +50127,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13766] = 3, + [13775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1722), 2, + ACTIONS(1860), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1720), 15, + ACTIONS(1858), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49832,13 +50149,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13791] = 3, + [13800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1864), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1736), 15, + ACTIONS(1862), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49854,13 +50171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13816] = 3, + [13825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1780), 2, + ACTIONS(1868), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1778), 15, + ACTIONS(1866), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49876,13 +50193,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13841] = 3, + [13850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 2, + ACTIONS(2268), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1782), 15, + ACTIONS(2266), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49898,13 +50215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13866] = 3, + [13875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1788), 2, + ACTIONS(2220), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1786), 15, + ACTIONS(2218), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49920,7 +50237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13891] = 13, + [13900] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -49936,52 +50253,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(1790), 6, + anon_sym_where, + ACTIONS(1870), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [13936] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2468), 1, - anon_sym_until, - ACTIONS(1794), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1792), 14, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_as, - anon_sym_limit, - anon_sym_PLUS_EQ, - anon_sym_where, - anon_sym_EQ_GT, - anon_sym_else, - anon_sym_RBRACK, - sym_annotation, - [13963] = 3, + [13945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 2, + ACTIONS(1874), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1606), 15, + ACTIONS(1872), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -49997,13 +50291,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [13988] = 3, + [13970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 2, + ACTIONS(1906), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1594), 15, + ACTIONS(1904), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50019,13 +50313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14013] = 3, + [13995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 2, + ACTIONS(1910), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1586), 15, + ACTIONS(1908), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50041,13 +50335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14038] = 3, + [14020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 2, + ACTIONS(1914), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2308), 15, + ACTIONS(1912), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50063,13 +50357,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14063] = 3, + [14045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1508), 2, + ACTIONS(1918), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1506), 15, + ACTIONS(1916), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50085,13 +50379,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14088] = 3, + [14070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 2, + ACTIONS(1922), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2322), 15, + ACTIONS(1920), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50107,13 +50401,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14113] = 3, + [14095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1576), 2, + ACTIONS(1926), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1574), 15, + ACTIONS(1924), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50129,13 +50423,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14138] = 3, + [14120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2338), 2, + ACTIONS(1930), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2336), 15, + ACTIONS(1928), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50151,45 +50445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14163] = 13, + [14145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(1934), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2200), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [14208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1572), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1570), 15, + ACTIONS(1932), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50205,13 +50467,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14233] = 3, + [14170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1810), 2, + ACTIONS(1938), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1808), 15, + ACTIONS(1936), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50227,47 +50489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14258] = 13, + [14195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(1942), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(1812), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [14303] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_until, - ACTIONS(1828), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1826), 14, + ACTIONS(1940), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50278,17 +50506,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, + anon_sym_until, anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14330] = 3, + [14220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1838), 2, + ACTIONS(1946), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1836), 15, + ACTIONS(1944), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50304,13 +50533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14355] = 3, + [14245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 2, + ACTIONS(1950), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1676), 15, + ACTIONS(1948), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50326,45 +50555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14380] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, - anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, - anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2210), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [14425] = 3, + [14270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1856), 2, + ACTIONS(1954), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1854), 15, + ACTIONS(1952), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50380,13 +50577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14450] = 3, + [14295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1864), 2, + ACTIONS(1958), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1862), 15, + ACTIONS(1956), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50402,13 +50599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14475] = 3, + [14320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1868), 2, + ACTIONS(1962), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1866), 15, + ACTIONS(1960), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50424,13 +50621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14500] = 3, + [14345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1880), 2, + ACTIONS(1966), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1878), 15, + ACTIONS(1964), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50446,13 +50643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14525] = 3, + [14370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 2, + ACTIONS(1970), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1902), 15, + ACTIONS(1968), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50468,75 +50665,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14550] = 13, + [14395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(1974), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(1928), 6, + ACTIONS(1972), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_until, - anon_sym_else, - anon_sym_RBRACK, - [14595] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, anon_sym_STAR, - ACTIONS(2442), 1, - anon_sym_SLASH, - ACTIONS(2444), 1, anon_sym_PERCENT, - ACTIONS(2446), 1, - anon_sym_PLUS, - ACTIONS(2448), 1, anon_sym_DASH, - ACTIONS(2450), 1, anon_sym_as, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(1840), 8, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_limit, + anon_sym_PLUS_EQ, anon_sym_where, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - [14636] = 3, + sym_annotation, + [14420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 2, + ACTIONS(1978), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1978), 15, + ACTIONS(1976), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50552,43 +50709,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14661] = 11, + [14445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(1982), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(1986), 8, + ACTIONS(1980), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, anon_sym_limit, + anon_sym_PLUS_EQ, anon_sym_where, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - [14702] = 3, + sym_annotation, + [14470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1994), 2, + ACTIONS(1986), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1992), 15, + ACTIONS(1984), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50604,13 +50753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14727] = 3, + [14495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 2, + ACTIONS(1990), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2000), 15, + ACTIONS(1988), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50626,24 +50775,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14752] = 7, + [14520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2010), 1, - anon_sym_PLUS, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(1994), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2008), 12, + anon_sym_PLUS, + ACTIONS(1992), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, + anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -50652,24 +50797,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14785] = 7, + [14545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2018), 1, - anon_sym_PLUS, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(1998), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2016), 12, + anon_sym_PLUS, + ACTIONS(1996), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, + anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -50678,21 +50819,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14818] = 4, + [14570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2026), 2, + ACTIONS(2004), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2024), 14, + ACTIONS(2002), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, + anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -50701,21 +50841,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14845] = 4, + [14595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2034), 2, + ACTIONS(2008), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2032), 14, + ACTIONS(2006), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, + anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -50724,21 +50863,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14872] = 4, + [14620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2042), 2, + ACTIONS(2012), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2040), 14, + ACTIONS(2010), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_DASH, + anon_sym_as, anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, @@ -50747,13 +50885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14899] = 3, + [14645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 2, + ACTIONS(2016), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2048), 15, + ACTIONS(2014), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50769,13 +50907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14924] = 3, + [14670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1560), 2, + ACTIONS(2020), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1558), 15, + ACTIONS(2018), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50791,13 +50929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14949] = 3, + [14695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 2, + ACTIONS(2024), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2076), 15, + ACTIONS(2022), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50813,13 +50951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14974] = 3, + [14720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2082), 2, + ACTIONS(2028), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2080), 15, + ACTIONS(2026), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50835,13 +50973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [14999] = 3, + [14745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 2, + ACTIONS(2032), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2092), 15, + ACTIONS(2030), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50857,13 +50995,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15024] = 3, + [14770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 2, + ACTIONS(2438), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2138), 15, + ACTIONS(2436), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50879,13 +51017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15049] = 3, + [14795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 2, + ACTIONS(2040), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2144), 15, + ACTIONS(2038), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50901,13 +51039,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15074] = 3, + [14820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 2, + ACTIONS(2044), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2240), 15, + ACTIONS(2042), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50923,13 +51061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15099] = 3, + [14845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 2, + ACTIONS(2048), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2246), 15, + ACTIONS(2046), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50945,13 +51083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15124] = 3, + [14870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1548), 2, + ACTIONS(2052), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1546), 15, + ACTIONS(2050), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50967,13 +51105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15149] = 3, + [14895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 2, + ACTIONS(2056), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1970), 15, + ACTIONS(2054), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -50989,13 +51127,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15174] = 3, + [14920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 2, + ACTIONS(2060), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2340), 15, + ACTIONS(2058), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51011,13 +51149,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15199] = 3, + [14945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 2, + ACTIONS(2064), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2344), 15, + ACTIONS(2062), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51033,13 +51171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15224] = 3, + [14970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2354), 2, + ACTIONS(2068), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2352), 15, + ACTIONS(2066), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51055,45 +51193,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15249] = 13, + [14995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(2072), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_DASH, - ACTIONS(2450), 1, - anon_sym_as, - ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, - anon_sym_PLUS_EQ, - ACTIONS(2456), 1, - anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2356), 6, + ACTIONS(2070), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - [15294] = 3, + sym_annotation, + [15020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1544), 2, + ACTIONS(2076), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1542), 15, + ACTIONS(2074), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51109,13 +51237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15319] = 3, + [15045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1888), 2, + ACTIONS(2080), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1886), 15, + ACTIONS(2078), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51131,13 +51259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15344] = 3, + [15070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1714), 2, + ACTIONS(2084), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1712), 15, + ACTIONS(2082), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51153,13 +51281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15369] = 3, + [15095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1908), 2, + ACTIONS(2088), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1906), 15, + ACTIONS(2086), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51175,45 +51303,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15394] = 13, + [15120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(2092), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(2448), 1, + ACTIONS(2090), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(2450), 1, anon_sym_as, - ACTIONS(2452), 1, anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, - ACTIONS(2456), 1, anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(1922), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - [15439] = 3, + sym_annotation, + [15145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1536), 2, + ACTIONS(2096), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1534), 15, + ACTIONS(2094), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51229,13 +51347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15464] = 3, + [15170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 2, + ACTIONS(2432), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1530), 15, + ACTIONS(2430), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51251,13 +51369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15489] = 3, + [15195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1528), 2, + ACTIONS(2224), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1526), 15, + ACTIONS(2222), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51273,7 +51391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15514] = 13, + [15220] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -51289,23 +51407,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2216), 6, + anon_sym_where, + ACTIONS(2226), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15559] = 13, + [15265] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -51321,45 +51439,55 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2358), 6, + anon_sym_where, + ACTIONS(2228), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15604] = 3, + [15310] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1524), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1522), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2440), 1, anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, anon_sym_DASH, + ACTIONS(2450), 1, anon_sym_as, - anon_sym_limit, + ACTIONS(2452), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, anon_sym_where, + ACTIONS(2230), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - sym_annotation, - [15629] = 13, + [15355] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -51375,45 +51503,55 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2360), 6, + anon_sym_where, + ACTIONS(2232), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15674] = 3, + [15400] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 2, - anon_sym_SLASH, - anon_sym_PLUS, - ACTIONS(1514), 15, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2440), 1, anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, anon_sym_DASH, + ACTIONS(2450), 1, anon_sym_as, - anon_sym_limit, + ACTIONS(2452), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, anon_sym_where, + ACTIONS(2234), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_until, - anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - sym_annotation, - [15699] = 14, + [15445] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -51429,24 +51567,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2472), 1, - anon_sym_until, - ACTIONS(2362), 5, + anon_sym_where, + ACTIONS(2236), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15746] = 13, + [15490] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -51462,23 +51599,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2366), 6, + anon_sym_where, + ACTIONS(2238), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15791] = 14, + [15535] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -51494,30 +51631,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2474), 1, - anon_sym_until, - ACTIONS(2368), 5, + anon_sym_where, + ACTIONS(2240), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15838] = 3, + [15580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1512), 2, + ACTIONS(2036), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1510), 15, + ACTIONS(2034), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51533,39 +51669,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [15863] = 13, + [15605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(2248), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(2448), 1, + ACTIONS(2246), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(2450), 1, anon_sym_as, - ACTIONS(2452), 1, anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, - ACTIONS(2456), 1, anon_sym_where, - ACTIONS(2458), 1, - anon_sym_EQ_GT, - ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2376), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - [15908] = 13, + sym_annotation, + [15630] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -51581,23 +51707,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2378), 6, + anon_sym_where, + ACTIONS(2250), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15953] = 13, + [15675] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -51613,61 +51739,73 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2380), 6, + anon_sym_where, + ACTIONS(2252), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [15998] = 13, + [15720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_STAR, - ACTIONS(2442), 1, + ACTIONS(1516), 2, anon_sym_SLASH, - ACTIONS(2444), 1, - anon_sym_PERCENT, - ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(2448), 1, + ACTIONS(1514), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(2450), 1, anon_sym_as, - ACTIONS(2452), 1, anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, - ACTIONS(2456), 1, anon_sym_where, - ACTIONS(2458), 1, + anon_sym_until, anon_sym_EQ_GT, - ACTIONS(2460), 1, + anon_sym_else, + anon_sym_RBRACK, sym_annotation, - ACTIONS(2382), 6, + [15745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1580), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1578), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - [16043] = 3, + sym_annotation, + [15770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 2, + ACTIONS(1596), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1622), 15, + ACTIONS(1594), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51683,13 +51821,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16068] = 3, + [15795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1592), 2, + ACTIONS(1600), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1590), 15, + ACTIONS(1598), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51705,13 +51843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16093] = 3, + [15820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 2, + ACTIONS(2466), 1, + anon_sym_until, + ACTIONS(1604), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1582), 15, + ACTIONS(1602), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51722,12 +51862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, - anon_sym_until, anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16118] = 13, + [15847] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -51743,29 +51882,73 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(1608), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_until, + anon_sym_else, + anon_sym_RBRACK, + [15892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1612), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(1610), 15, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, + anon_sym_until, + anon_sym_EQ_GT, + anon_sym_else, + anon_sym_RBRACK, sym_annotation, - ACTIONS(2244), 6, + [15917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2164), 2, + anon_sym_SLASH, + anon_sym_PLUS, + ACTIONS(2162), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_as, + anon_sym_limit, + anon_sym_PLUS_EQ, + anon_sym_where, anon_sym_until, + anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, - [16163] = 3, + sym_annotation, + [15942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 2, + ACTIONS(2304), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1578), 15, + ACTIONS(2302), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51781,13 +51964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16188] = 3, + [15967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1564), 2, + ACTIONS(2292), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1562), 15, + ACTIONS(2290), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51803,7 +51986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16213] = 13, + [15992] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -51819,29 +52002,61 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(2352), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_until, + anon_sym_else, + anon_sym_RBRACK, + [16037] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, + anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, + anon_sym_DASH, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2452), 1, + anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, sym_annotation, - ACTIONS(2256), 6, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(1638), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [16258] = 3, + [16082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 2, + ACTIONS(2272), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1554), 15, + ACTIONS(2270), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51857,7 +52072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16283] = 13, + [16107] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -51873,73 +52088,161 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2254), 6, + anon_sym_where, + ACTIONS(1644), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_until, anon_sym_else, anon_sym_RBRACK, - [16328] = 3, + [16152] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 2, + ACTIONS(2440), 1, + anon_sym_STAR, + ACTIONS(2442), 1, anon_sym_SLASH, + ACTIONS(2444), 1, + anon_sym_PERCENT, + ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(1550), 15, + ACTIONS(2448), 1, + anon_sym_DASH, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2452), 1, + anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(1742), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_until, + anon_sym_else, + anon_sym_RBRACK, + [16197] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, anon_sym_DASH, + ACTIONS(2450), 1, anon_sym_as, - anon_sym_limit, + ACTIONS(2452), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, anon_sym_where, + ACTIONS(2468), 1, anon_sym_until, - anon_sym_EQ_GT, + ACTIONS(1748), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, anon_sym_RBRACK, - sym_annotation, - [16353] = 3, + [16244] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1662), 2, + ACTIONS(2440), 1, + anon_sym_STAR, + ACTIONS(2442), 1, anon_sym_SLASH, + ACTIONS(2444), 1, + anon_sym_PERCENT, + ACTIONS(2446), 1, anon_sym_PLUS, - ACTIONS(1660), 15, + ACTIONS(2448), 1, + anon_sym_DASH, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2452), 1, + anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(2000), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_until, + anon_sym_else, + anon_sym_RBRACK, + [16289] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, anon_sym_DASH, + ACTIONS(2450), 1, anon_sym_as, - anon_sym_limit, + ACTIONS(2452), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, anon_sym_where, + ACTIONS(2470), 1, anon_sym_until, - anon_sym_EQ_GT, + ACTIONS(2344), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_else, anon_sym_RBRACK, - sym_annotation, - [16378] = 3, + [16336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1640), 2, + ACTIONS(2472), 1, + anon_sym_until, + ACTIONS(1754), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1638), 15, + ACTIONS(1752), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51950,18 +52253,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_limit, anon_sym_PLUS_EQ, anon_sym_where, - anon_sym_until, anon_sym_EQ_GT, anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16403] = 3, + [16363] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + anon_sym_STAR, + ACTIONS(2442), 1, + anon_sym_SLASH, + ACTIONS(2444), 1, + anon_sym_PERCENT, + ACTIONS(2446), 1, + anon_sym_PLUS, + ACTIONS(2448), 1, + anon_sym_DASH, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2452), 1, + anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, + ACTIONS(2456), 1, + sym_annotation, + ACTIONS(2458), 1, + anon_sym_limit, + ACTIONS(2460), 1, + anon_sym_where, + ACTIONS(1758), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_until, + anon_sym_else, + anon_sym_RBRACK, + [16408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 2, + ACTIONS(1762), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2326), 15, + ACTIONS(1760), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51977,13 +52311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16428] = 3, + [16433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1604), 2, + ACTIONS(2474), 1, + anon_sym_else, + ACTIONS(2308), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1602), 15, + ACTIONS(2306), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -51996,16 +52332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_until, anon_sym_EQ_GT, - anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16453] = 3, + [16460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1686), 2, + ACTIONS(1768), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1684), 15, + ACTIONS(1766), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -52021,13 +52356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16478] = 3, + [16485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1698), 2, + ACTIONS(1772), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1696), 15, + ACTIONS(1770), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -52043,13 +52378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16503] = 3, + [16510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 2, + ACTIONS(1878), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2348), 15, + ACTIONS(1876), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -52065,13 +52400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16528] = 3, + [16535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1702), 2, + ACTIONS(1882), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(1700), 15, + ACTIONS(1880), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -52087,13 +52422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16553] = 3, + [16560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 2, + ACTIONS(1796), 2, anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(2250), 15, + ACTIONS(1794), 15, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -52109,7 +52444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_RBRACK, sym_annotation, - [16578] = 15, + [16585] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52125,22 +52460,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2476), 1, anon_sym_COMMA, ACTIONS(2478), 1, - anon_sym_RBRACK, - STATE(1207), 1, - aux_sym_list_repeat1, - [16624] = 15, + anon_sym_RBRACE, + STATE(1142), 1, + aux_sym_sequential_repeat1, + [16631] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52156,22 +52491,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2480), 1, anon_sym_COMMA, ACTIONS(2482), 1, - anon_sym_RBRACE, - STATE(1033), 1, - aux_sym_sequential_repeat1, - [16670] = 15, + anon_sym_RBRACK, + STATE(1132), 1, + aux_sym_list_repeat1, + [16677] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52187,22 +52522,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2484), 1, anon_sym_COMMA, ACTIONS(2486), 1, anon_sym_RBRACK, - STATE(1118), 1, + STATE(1102), 1, aux_sym_list_repeat1, - [16716] = 15, + [16723] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52218,22 +52553,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2488), 1, anon_sym_COMMA, ACTIONS(2490), 1, anon_sym_RBRACE, - STATE(1096), 1, + STATE(1159), 1, aux_sym_sequential_repeat1, - [16762] = 15, + [16769] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52249,22 +52584,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2492), 1, anon_sym_COMMA, ACTIONS(2494), 1, anon_sym_RBRACE, - STATE(1084), 1, + STATE(1024), 1, aux_sym_sequential_repeat1, - [16808] = 15, + [16815] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52280,22 +52615,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2496), 1, anon_sym_COMMA, ACTIONS(2498), 1, anon_sym_RBRACE, - STATE(1100), 1, + STATE(1203), 1, aux_sym_sequential_repeat1, - [16854] = 15, + [16861] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52311,22 +52646,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2500), 1, anon_sym_COMMA, ACTIONS(2502), 1, - anon_sym_RBRACK, - STATE(1145), 1, - aux_sym_list_repeat1, - [16900] = 15, + anon_sym_RBRACE, + STATE(1139), 1, + aux_sym_sequential_repeat1, + [16907] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52342,22 +52677,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2504), 1, anon_sym_COMMA, ACTIONS(2506), 1, anon_sym_RBRACE, - STATE(1112), 1, + STATE(1141), 1, aux_sym_sequential_repeat1, - [16946] = 15, + [16953] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52373,22 +52708,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2508), 1, anon_sym_COMMA, ACTIONS(2510), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1143), 1, aux_sym_sequential_repeat1, - [16992] = 15, + [16999] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52404,22 +52739,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2512), 1, anon_sym_COMMA, ACTIONS(2514), 1, anon_sym_RBRACE, - STATE(1078), 1, + STATE(1144), 1, aux_sym_sequential_repeat1, - [17038] = 15, + [17045] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52435,22 +52770,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2516), 1, anon_sym_COMMA, ACTIONS(2518), 1, anon_sym_RBRACE, - STATE(1171), 1, + STATE(1145), 1, aux_sym_sequential_repeat1, - [17084] = 15, + [17091] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52466,22 +52801,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2520), 1, anon_sym_COMMA, ACTIONS(2522), 1, anon_sym_RBRACE, - STATE(1138), 1, + STATE(1208), 1, aux_sym_sequential_repeat1, - [17130] = 15, + [17137] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52497,22 +52832,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2524), 1, anon_sym_COMMA, ACTIONS(2526), 1, - anon_sym_RBRACE, - STATE(1036), 1, - aux_sym_sequential_repeat1, - [17176] = 15, + anon_sym_RBRACK, + STATE(1149), 1, + aux_sym_list_repeat1, + [17183] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52528,22 +52863,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2528), 1, anon_sym_COMMA, ACTIONS(2530), 1, - anon_sym_RBRACE, - STATE(1028), 1, - aux_sym_sequential_repeat1, - [17222] = 15, + anon_sym_RBRACK, + STATE(1026), 1, + aux_sym_list_repeat1, + [17229] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52559,22 +52894,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2532), 1, anon_sym_COMMA, ACTIONS(2534), 1, - anon_sym_RBRACK, - STATE(1062), 1, - aux_sym_list_repeat1, - [17268] = 15, + anon_sym_RBRACE, + STATE(1122), 1, + aux_sym_sequential_repeat1, + [17275] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52590,22 +52925,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2536), 1, anon_sym_COMMA, ACTIONS(2538), 1, anon_sym_RBRACE, - STATE(1043), 1, + STATE(1172), 1, aux_sym_sequential_repeat1, - [17314] = 15, + [17321] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52621,49 +52956,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2540), 1, anon_sym_COMMA, ACTIONS(2542), 1, anon_sym_RBRACE, - STATE(1038), 1, + STATE(1023), 1, aux_sym_sequential_repeat1, - [17360] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1410), 1, - anon_sym_EQ, - ACTIONS(2544), 1, - anon_sym_PLUS_EQ, - ACTIONS(2546), 1, - anon_sym_EQ_GT, - ACTIONS(2548), 1, - anon_sym_GT, - ACTIONS(2550), 1, - anon_sym_LT, - ACTIONS(2552), 1, - anon_sym_GT_EQ, - ACTIONS(2554), 1, - anon_sym_LT_EQ, - ACTIONS(2556), 1, - anon_sym_BANG_EQ, - ACTIONS(2558), 1, - anon_sym_EQ_EQ, - ACTIONS(2560), 1, - sym_annotation, - ACTIONS(1412), 3, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_LT_COLON, - [17399] = 13, + [17367] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52679,46 +52987,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2562), 2, + anon_sym_where, + ACTIONS(2544), 2, anon_sym_COMMA, anon_sym_RBRACK, - [17440] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1410), 1, - anon_sym_EQ, - ACTIONS(2564), 1, - anon_sym_PLUS_EQ, - ACTIONS(2566), 1, - anon_sym_EQ_GT, - ACTIONS(2568), 1, - anon_sym_GT, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(2572), 1, - anon_sym_GT_EQ, - ACTIONS(2574), 1, - anon_sym_LT_EQ, - ACTIONS(2576), 1, - anon_sym_BANG_EQ, - ACTIONS(2578), 1, - anon_sym_EQ_EQ, - ACTIONS(2580), 1, - sym_annotation, - ACTIONS(1412), 3, - anon_sym_DOT, - anon_sym_LBRACK, - anon_sym_LT_COLON, - [17479] = 13, + [17408] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52734,19 +53015,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2582), 2, + anon_sym_where, + ACTIONS(2546), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [17520] = 13, + anon_sym_RBRACE, + [17449] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52762,19 +53043,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2584), 2, + anon_sym_where, + ACTIONS(2548), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [17561] = 13, + anon_sym_RBRACK, + [17490] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52790,19 +53071,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2586), 2, + anon_sym_where, + ACTIONS(2550), 2, anon_sym_COMMA, anon_sym_RBRACE, - [17602] = 13, + [17531] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52818,19 +53099,73 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, - ACTIONS(2588), 2, + anon_sym_where, + ACTIONS(2552), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [17643] = 13, + anon_sym_RPAREN, + [17572] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1386), 1, + anon_sym_EQ, + ACTIONS(2554), 1, + anon_sym_PLUS_EQ, + ACTIONS(2556), 1, + anon_sym_EQ_GT, + ACTIONS(2558), 1, + anon_sym_GT, + ACTIONS(2560), 1, + anon_sym_LT, + ACTIONS(2562), 1, + anon_sym_GT_EQ, + ACTIONS(2564), 1, + anon_sym_LT_EQ, + ACTIONS(2566), 1, + anon_sym_BANG_EQ, + ACTIONS(2568), 1, + anon_sym_EQ_EQ, + ACTIONS(2570), 1, + sym_annotation, + ACTIONS(1388), 3, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_LT_COLON, + [17611] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1386), 1, + anon_sym_EQ, + ACTIONS(2572), 1, + anon_sym_PLUS_EQ, + ACTIONS(2574), 1, + anon_sym_EQ_GT, + ACTIONS(2576), 1, + anon_sym_GT, + ACTIONS(2578), 1, + anon_sym_LT, + ACTIONS(2580), 1, + anon_sym_GT_EQ, + ACTIONS(2582), 1, + anon_sym_LT_EQ, + ACTIONS(2584), 1, + anon_sym_BANG_EQ, + ACTIONS(2586), 1, + anon_sym_EQ_EQ, + ACTIONS(2588), 1, + sym_annotation, + ACTIONS(1388), 3, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_LT_COLON, + [17650] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52846,19 +53181,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2590), 2, anon_sym_COMMA, anon_sym_RPAREN, - [17684] = 13, + [17691] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52874,18 +53209,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2592), 1, - anon_sym_RPAREN, - [17724] = 13, + anon_sym_RBRACE, + [17731] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52901,18 +53236,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2594), 1, - anon_sym_RBRACE, - [17764] = 13, + anon_sym_RPAREN, + [17771] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52928,18 +53263,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2596), 1, - anon_sym_RPAREN, - [17804] = 13, + anon_sym_RBRACE, + [17811] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52955,18 +53290,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2598), 1, anon_sym_RBRACE, - [17844] = 13, + [17851] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -52982,18 +53317,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2600), 1, - anon_sym_RBRACE, - [17884] = 13, + anon_sym_RPAREN, + [17891] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53009,18 +53344,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2602), 1, anon_sym_RBRACE, - [17924] = 13, + [17931] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53036,18 +53371,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2604), 1, - anon_sym_RBRACE, - [17964] = 13, + anon_sym_RPAREN, + [17971] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53063,18 +53398,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2606), 1, anon_sym_RBRACE, - [18004] = 13, + [18011] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53090,18 +53425,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2608), 1, anon_sym_RBRACE, - [18044] = 13, + [18051] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53117,18 +53452,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2610), 1, anon_sym_RBRACE, - [18084] = 13, + [18091] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53144,18 +53479,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2612), 1, anon_sym_RPAREN, - [18124] = 13, + [18131] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53171,18 +53506,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2614), 1, anon_sym_RBRACE, - [18164] = 13, + [18171] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53198,18 +53533,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2616), 1, anon_sym_RBRACE, - [18204] = 13, + [18211] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53225,18 +53560,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2618), 1, anon_sym_RBRACE, - [18244] = 13, + [18251] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53252,18 +53587,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2620), 1, anon_sym_RBRACE, - [18284] = 13, + [18291] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53279,18 +53614,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2622), 1, anon_sym_RBRACE, - [18324] = 13, + [18331] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53306,18 +53641,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2624), 1, anon_sym_RBRACE, - [18364] = 13, + [18371] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53333,18 +53668,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2626), 1, anon_sym_RBRACE, - [18404] = 13, + [18411] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53360,18 +53695,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2628), 1, anon_sym_RBRACE, - [18444] = 13, + [18451] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53387,18 +53722,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2630), 1, - anon_sym_RPAREN, - [18484] = 13, + anon_sym_RBRACE, + [18491] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53414,18 +53749,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2632), 1, anon_sym_RBRACE, - [18524] = 13, + [18531] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53441,18 +53776,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2634), 1, anon_sym_RBRACE, - [18564] = 13, + [18571] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53468,18 +53803,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2636), 1, anon_sym_RBRACE, - [18604] = 13, + [18611] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53495,18 +53830,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2638), 1, anon_sym_RBRACE, - [18644] = 13, + [18651] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53522,18 +53857,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2640), 1, anon_sym_RBRACE, - [18684] = 13, + [18691] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53549,18 +53884,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2642), 1, anon_sym_RBRACE, - [18724] = 13, + [18731] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53576,18 +53911,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2644), 1, anon_sym_RBRACE, - [18764] = 13, + [18771] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53603,18 +53938,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2646), 1, anon_sym_RBRACE, - [18804] = 13, + [18811] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 1, @@ -53630,18 +53965,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2450), 1, anon_sym_as, ACTIONS(2452), 1, - anon_sym_limit, - ACTIONS(2454), 1, anon_sym_PLUS_EQ, + ACTIONS(2454), 1, + anon_sym_EQ_GT, ACTIONS(2456), 1, - anon_sym_where, + sym_annotation, ACTIONS(2458), 1, - anon_sym_EQ_GT, + anon_sym_limit, ACTIONS(2460), 1, - sym_annotation, + anon_sym_where, ACTIONS(2648), 1, anon_sym_RBRACE, - [18844] = 11, + [18851] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53654,17 +53989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2650), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [18878] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [18885] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53677,17 +54012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2652), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [18912] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [18919] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53700,17 +54035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2654), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [18946] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [18953] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53723,17 +54058,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2656), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [18980] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [18987] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53742,21 +54077,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, ACTIONS(67), 1, anon_sym_function, + ACTIONS(195), 1, + ts_builtin_sym_end, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2658), 1, - ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19014] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19021] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53767,19 +54102,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2660), 1, + ACTIONS(2658), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19048] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19055] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53790,19 +54125,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2662), 1, + ACTIONS(2660), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19082] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19089] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53813,19 +54148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2664), 1, + ACTIONS(2662), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19116] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19123] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53836,19 +54171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2666), 1, + ACTIONS(2664), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19150] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19157] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53859,19 +54194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2668), 1, + ACTIONS(2666), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19184] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19191] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53880,21 +54215,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, ACTIONS(67), 1, anon_sym_function, - ACTIONS(183), 1, - ts_builtin_sym_end, ACTIONS(1378), 1, anon_sym_private, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + ACTIONS(2668), 1, + ts_builtin_sym_end, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19218] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19225] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53907,17 +54242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2670), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19252] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19259] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53930,40 +54265,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2672), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19286] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(63), 1, - anon_sym_pattern, - ACTIONS(65), 1, - anon_sym_predicate, - ACTIONS(67), 1, - anon_sym_function, - ACTIONS(165), 1, - ts_builtin_sym_end, - ACTIONS(1378), 1, - anon_sym_private, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, - sym_definition, - STATE(288), 1, + STATE(275), 1, sym_patternDefinition, - STATE(289), 1, - sym_predicateDefinition, - STATE(290), 1, - sym_functionDefinition, - [19320] = 11, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19293] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53976,17 +54288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2674), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19354] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19327] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -53999,17 +54311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2676), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19388] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19361] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54022,17 +54334,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2678), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19422] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19395] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54045,17 +54357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2680), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19456] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19429] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54068,17 +54380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2682), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19490] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19463] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54091,17 +54403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2684), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19524] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19497] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54114,17 +54426,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2686), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19558] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19531] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54137,38 +54449,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2688), 1, ts_builtin_sym_end, - STATE(251), 1, + STATE(260), 1, + sym_definition, + STATE(261), 1, + sym_predicateDefinition, + STATE(262), 1, + sym_functionDefinition, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, sym_foreignFunctionDefinition, - STATE(266), 1, + [19565] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_pattern, + ACTIONS(65), 1, + anon_sym_predicate, + ACTIONS(67), 1, + anon_sym_function, + ACTIONS(177), 1, + ts_builtin_sym_end, + ACTIONS(1378), 1, + anon_sym_private, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19592] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_LBRACE, - ACTIONS(247), 1, - anon_sym_LBRACK, - ACTIONS(2690), 1, - sym_name, - ACTIONS(2692), 1, - sym_variable, - ACTIONS(2694), 1, - sym_signedIntConstant, - STATE(1483), 1, - sym_map, - STATE(1484), 1, - sym_list, - STATE(1034), 3, - sym__container, - sym_mapAccessor, - sym_listIndex, - [19622] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19599] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54179,19 +54493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2696), 1, + ACTIONS(2690), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19656] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19633] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54202,19 +54516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2698), 1, + ACTIONS(2692), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19690] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19667] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54225,19 +54539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2700), 1, + ACTIONS(2694), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19724] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19701] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54248,19 +54562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2702), 1, + ACTIONS(2696), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19758] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19735] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54271,19 +54585,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2704), 1, + ACTIONS(2698), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19792] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19769] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54294,19 +54608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2706), 1, + ACTIONS(2700), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19826] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19803] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54317,19 +54631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2708), 1, + ACTIONS(2702), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19860] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19837] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54340,19 +54654,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2710), 1, + ACTIONS(2704), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19894] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19871] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(211), 1, + anon_sym_LBRACE, + ACTIONS(247), 1, + anon_sym_LBRACK, + ACTIONS(2706), 1, + sym_name, + ACTIONS(2708), 1, + sym_variable, + ACTIONS(2710), 1, + sym_signedIntConstant, + STATE(1479), 1, + sym_map, + STATE(1544), 1, + sym_list, + STATE(1156), 3, + sym__container, + sym_mapAccessor, + sym_listIndex, + [19901] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54365,17 +54700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2712), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19928] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19935] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54388,17 +54723,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2714), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19962] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [19969] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54411,17 +54746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2716), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [19996] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20003] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54434,17 +54769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2718), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20030] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20037] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54457,17 +54792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2720), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20064] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20071] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54480,17 +54815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2722), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20098] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20105] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54503,17 +54838,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2724), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20132] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20139] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54522,42 +54857,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, ACTIONS(67), 1, anon_sym_function, - ACTIONS(177), 1, - ts_builtin_sym_end, ACTIONS(1378), 1, anon_sym_private, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + ACTIONS(2726), 1, + ts_builtin_sym_end, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20166] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_LBRACE, - ACTIONS(247), 1, - anon_sym_LBRACK, - ACTIONS(2690), 1, - sym_name, - ACTIONS(2726), 1, - sym_variable, - ACTIONS(2728), 1, - sym_signedIntConstant, - STATE(1483), 1, - sym_map, - STATE(1484), 1, - sym_list, - STATE(1116), 3, - sym__container, - sym_mapAccessor, - sym_listIndex, - [20196] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20173] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54568,19 +54882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2730), 1, + ACTIONS(2728), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20230] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20207] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54591,19 +54905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2732), 1, + ACTIONS(2730), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20264] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20241] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54612,21 +54926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, ACTIONS(67), 1, anon_sym_function, - ACTIONS(191), 1, - ts_builtin_sym_end, ACTIONS(1378), 1, anon_sym_private, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + ACTIONS(2732), 1, + ts_builtin_sym_end, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20298] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20275] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54639,17 +54953,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2734), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20332] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20309] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54662,17 +54976,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2736), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20366] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20343] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54685,17 +54999,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_private, ACTIONS(2738), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20400] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20377] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(211), 1, + anon_sym_LBRACE, + ACTIONS(247), 1, + anon_sym_LBRACK, + ACTIONS(2706), 1, + sym_name, + ACTIONS(2740), 1, + sym_variable, + ACTIONS(2742), 1, + sym_signedIntConstant, + STATE(1479), 1, + sym_map, + STATE(1544), 1, + sym_list, + STATE(1137), 3, + sym__container, + sym_mapAccessor, + sym_listIndex, + [20407] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54704,21 +55039,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, ACTIONS(67), 1, anon_sym_function, + ACTIONS(187), 1, + ts_builtin_sym_end, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2740), 1, - ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20434] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20441] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54729,19 +55064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2742), 1, + ACTIONS(2744), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20468] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20475] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54752,19 +55087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2744), 1, + ACTIONS(2746), 1, ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20502] = 11, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20509] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54773,21 +55108,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_predicate, ACTIONS(67), 1, anon_sym_function, + ACTIONS(201), 1, + ts_builtin_sym_end, ACTIONS(1378), 1, anon_sym_private, - ACTIONS(2746), 1, - ts_builtin_sym_end, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20536] = 10, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20543] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(63), 1, @@ -54798,17 +55133,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1378), 1, anon_sym_private, - STATE(251), 1, - sym_foreignFunctionDefinition, - STATE(266), 1, + STATE(260), 1, sym_definition, - STATE(288), 1, - sym_patternDefinition, - STATE(289), 1, + STATE(261), 1, sym_predicateDefinition, - STATE(290), 1, + STATE(262), 1, sym_functionDefinition, - [20567] = 9, + STATE(275), 1, + sym_patternDefinition, + STATE(279), 1, + sym_foreignFunctionDefinition, + [20574] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, @@ -54819,15 +55154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_start_column, ACTIONS(2754), 1, anon_sym_end_column, - STATE(1281), 1, + STATE(1244), 1, sym__start_line, - STATE(1282), 1, + STATE(1246), 1, sym__end_line, - STATE(1283), 1, + STATE(1249), 1, sym__start_column, - STATE(1284), 1, + STATE(1250), 1, sym__end_column, - [20595] = 9, + [20602] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, @@ -54838,32 +55173,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_start_column, ACTIONS(2754), 1, anon_sym_end_column, - STATE(1267), 1, - sym__end_column, - STATE(1304), 1, - sym__start_column, - STATE(1305), 1, - sym__end_line, - STATE(1306), 1, + STATE(1234), 1, sym__start_line, - [20623] = 8, + STATE(1235), 1, + sym__end_line, + STATE(1236), 1, + sym__start_column, + STATE(1237), 1, + sym__end_column, + [20630] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, ACTIONS(2750), 1, anon_sym_end_line, - ACTIONS(2752), 1, - anon_sym_start_column, + ACTIONS(2754), 1, + anon_sym_end_column, ACTIONS(2756), 1, anon_sym_RPAREN, - STATE(1266), 1, + STATE(1293), 1, sym__start_line, - STATE(1268), 1, + STATE(1294), 1, sym__end_line, - STATE(1270), 1, - sym__start_column, - [20648] = 8, + STATE(1295), 1, + sym__end_column, + [20655] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, @@ -54874,13 +55209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end_column, ACTIONS(2758), 1, anon_sym_RPAREN, - STATE(1354), 1, + STATE(1287), 1, sym__end_line, - STATE(1355), 1, + STATE(1288), 1, sym__start_column, - STATE(1356), 1, + STATE(1289), 1, sym__end_column, - [20673] = 8, + [20680] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, @@ -54891,81 +55226,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end_column, ACTIONS(2760), 1, anon_sym_RPAREN, - STATE(1357), 1, + STATE(1370), 1, sym__start_line, - STATE(1358), 1, + STATE(1372), 1, sym__start_column, - STATE(1359), 1, + STATE(1373), 1, sym__end_column, - [20698] = 8, + [20705] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, ACTIONS(2750), 1, anon_sym_end_line, - ACTIONS(2754), 1, - anon_sym_end_column, + ACTIONS(2752), 1, + anon_sym_start_column, ACTIONS(2762), 1, anon_sym_RPAREN, - STATE(1360), 1, + STATE(1296), 1, sym__start_line, - STATE(1361), 1, + STATE(1297), 1, sym__end_line, - STATE(1362), 1, - sym__end_column, - [20723] = 8, + STATE(1298), 1, + sym__start_column, + [20730] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(2748), 1, + anon_sym_start_line, ACTIONS(2750), 1, anon_sym_end_line, ACTIONS(2752), 1, anon_sym_start_column, - ACTIONS(2754), 1, - anon_sym_end_column, ACTIONS(2764), 1, anon_sym_RPAREN, - STATE(1255), 1, + STATE(1403), 1, + sym__start_line, + STATE(1404), 1, sym__end_line, - STATE(1256), 1, + STATE(1405), 1, sym__start_column, - STATE(1257), 1, - sym__end_column, - [20748] = 8, + [20755] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, - anon_sym_start_line, + ACTIONS(2750), 1, + anon_sym_end_line, ACTIONS(2752), 1, anon_sym_start_column, ACTIONS(2754), 1, anon_sym_end_column, ACTIONS(2766), 1, anon_sym_RPAREN, - STATE(1258), 1, - sym__start_line, - STATE(1259), 1, + STATE(1357), 1, + sym__end_line, + STATE(1363), 1, sym__start_column, - STATE(1262), 1, + STATE(1366), 1, sym__end_column, - [20773] = 8, + [20780] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(2750), 1, - anon_sym_end_line, ACTIONS(2752), 1, anon_sym_start_column, + ACTIONS(2754), 1, + anon_sym_end_column, ACTIONS(2768), 1, anon_sym_RPAREN, - STATE(1363), 1, + STATE(1290), 1, sym__start_line, - STATE(1364), 1, - sym__end_line, - STATE(1365), 1, + STATE(1291), 1, sym__start_column, - [20798] = 8, + STATE(1292), 1, + sym__end_column, + [20805] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, @@ -54976,13 +55311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end_column, ACTIONS(2770), 1, anon_sym_RPAREN, - STATE(1263), 1, + STATE(1398), 1, sym__start_line, - STATE(1264), 1, + STATE(1399), 1, sym__end_line, - STATE(1265), 1, + STATE(1401), 1, sym__end_column, - [20823] = 7, + [20830] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2772), 1, @@ -54993,11 +55328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_variable, ACTIONS(2778), 1, sym_variable, - STATE(1279), 1, + STATE(1232), 1, sym__logMessage, - STATE(1280), 1, + STATE(1233), 1, sym__logVariable, - [20845] = 7, + [20852] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2772), 1, @@ -55008,63 +55343,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_variable, ACTIONS(2778), 1, sym_variable, - STATE(1338), 1, - sym__logVariable, - STATE(1340), 1, + STATE(1220), 1, sym__logMessage, - [20867] = 6, + STATE(1222), 1, + sym__logVariable, + [20874] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(2754), 1, - anon_sym_end_column, + ACTIONS(2750), 1, + anon_sym_end_line, ACTIONS(2780), 1, anon_sym_RPAREN, - STATE(1349), 1, - sym__end_column, - STATE(1350), 1, + STATE(1306), 1, sym__start_line, - [20886] = 6, + STATE(1311), 1, + sym__end_line, + [20893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, - anon_sym_start_line, - ACTIONS(2750), 1, - anon_sym_end_line, + ACTIONS(2752), 1, + anon_sym_start_column, + ACTIONS(2754), 1, + anon_sym_end_column, ACTIONS(2782), 1, anon_sym_RPAREN, - STATE(1346), 1, - sym__end_line, - STATE(1348), 1, - sym__start_line, - [20905] = 6, + STATE(1259), 1, + sym__start_column, + STATE(1261), 1, + sym__end_column, + [20912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, - anon_sym_start_line, ACTIONS(2752), 1, anon_sym_start_column, + ACTIONS(2754), 1, + anon_sym_end_column, ACTIONS(2784), 1, anon_sym_RPAREN, - STATE(1333), 1, + STATE(1330), 1, sym__start_column, - STATE(1335), 1, - sym__start_line, - [20924] = 6, + STATE(1331), 1, + sym__end_column, + [20931] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, - anon_sym_start_line, ACTIONS(2750), 1, anon_sym_end_line, + ACTIONS(2754), 1, + anon_sym_end_column, ACTIONS(2786), 1, anon_sym_RPAREN, - STATE(1310), 1, - sym__start_line, - STATE(1311), 1, + STATE(1332), 1, sym__end_line, - [20943] = 6, + STATE(1333), 1, + sym__end_column, + [20950] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, @@ -55073,89 +55408,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_start_column, ACTIONS(2788), 1, anon_sym_RPAREN, - STATE(1336), 1, - sym__start_column, - STATE(1345), 1, + STATE(1334), 1, sym__end_line, - [20962] = 6, + STATE(1335), 1, + sym__start_column, + [20969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, - anon_sym_start_line, ACTIONS(2752), 1, anon_sym_start_column, + ACTIONS(2754), 1, + anon_sym_end_column, ACTIONS(2790), 1, anon_sym_RPAREN, - STATE(1211), 1, + STATE(1336), 1, sym__start_column, - STATE(1308), 1, - sym__start_line, - [20981] = 6, + STATE(1337), 1, + sym__end_column, + [20988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, - anon_sym_end_line, - ACTIONS(2752), 1, - anon_sym_start_column, + ACTIONS(2748), 1, + anon_sym_start_line, + ACTIONS(2754), 1, + anon_sym_end_column, ACTIONS(2792), 1, anon_sym_RPAREN, - STATE(1303), 1, - sym__end_line, - STATE(1307), 1, - sym__start_column, - [21000] = 6, + STATE(1338), 1, + sym__start_line, + STATE(1339), 1, + sym__end_column, + [21007] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(2750), 1, - anon_sym_end_line, + ACTIONS(2752), 1, + anon_sym_start_column, ACTIONS(2794), 1, anon_sym_RPAREN, - STATE(1300), 1, + STATE(1340), 1, sym__start_line, - STATE(1302), 1, - sym__end_line, - [21019] = 6, + STATE(1341), 1, + sym__start_column, + [21026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, - anon_sym_start_line, + ACTIONS(2750), 1, + anon_sym_end_line, ACTIONS(2754), 1, anon_sym_end_column, ACTIONS(2796), 1, anon_sym_RPAREN, - STATE(1298), 1, - sym__start_line, - STATE(1299), 1, + STATE(1342), 1, + sym__end_line, + STATE(1343), 1, sym__end_column, - [21038] = 6, + [21045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, - anon_sym_end_line, + ACTIONS(2748), 1, + anon_sym_start_line, ACTIONS(2754), 1, anon_sym_end_column, ACTIONS(2798), 1, anon_sym_RPAREN, - STATE(1296), 1, - sym__end_line, - STATE(1297), 1, + STATE(1344), 1, + sym__start_line, + STATE(1345), 1, sym__end_column, - [21057] = 6, + [21064] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(2752), 1, - anon_sym_start_column, + ACTIONS(2750), 1, + anon_sym_end_line, ACTIONS(2800), 1, anon_sym_RPAREN, - STATE(1293), 1, + STATE(1346), 1, sym__start_line, - STATE(1295), 1, - sym__start_column, - [21076] = 6, + STATE(1347), 1, + sym__end_line, + [21083] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, @@ -55164,63 +55499,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_start_column, ACTIONS(2802), 1, anon_sym_RPAREN, - STATE(1386), 1, - sym__start_column, - STATE(1390), 1, + STATE(1348), 1, sym__end_line, - [21095] = 6, + STATE(1349), 1, + sym__start_column, + [21102] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(2754), 1, - anon_sym_end_column, - ACTIONS(2804), 1, - anon_sym_RPAREN, - STATE(1290), 1, - sym__start_line, - STATE(1291), 1, - sym__end_column, - [21114] = 6, - ACTIONS(3), 1, - sym_comment, ACTIONS(2752), 1, anon_sym_start_column, - ACTIONS(2754), 1, - anon_sym_end_column, - ACTIONS(2806), 1, + ACTIONS(2804), 1, anon_sym_RPAREN, - STATE(1288), 1, + STATE(1350), 1, + sym__start_line, + STATE(1351), 1, sym__start_column, - STATE(1289), 1, - sym__end_column, - [21133] = 6, + [21121] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(2748), 1, + anon_sym_start_line, ACTIONS(2750), 1, anon_sym_end_line, - ACTIONS(2752), 1, - anon_sym_start_column, - ACTIONS(2808), 1, + ACTIONS(2806), 1, anon_sym_RPAREN, - STATE(1221), 1, + STATE(1352), 1, + sym__start_line, + STATE(1353), 1, sym__end_line, - STATE(1226), 1, - sym__start_column, - [21152] = 6, + [21140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, - anon_sym_end_line, + ACTIONS(2748), 1, + anon_sym_start_line, ACTIONS(2754), 1, anon_sym_end_column, - ACTIONS(2810), 1, + ACTIONS(2808), 1, anon_sym_RPAREN, - STATE(1216), 1, - sym__end_line, - STATE(1220), 1, + STATE(1263), 1, + sym__start_line, + STATE(1266), 1, sym__end_column, - [21171] = 6, + [21159] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2748), 1, + anon_sym_start_line, + ACTIONS(2752), 1, + anon_sym_start_column, + ACTIONS(2810), 1, + anon_sym_RPAREN, + STATE(1270), 1, + sym__start_line, + STATE(1272), 1, + sym__start_column, + [21178] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, @@ -55229,63 +55564,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end_column, ACTIONS(2812), 1, anon_sym_RPAREN, - STATE(1351), 1, - sym__end_column, - STATE(1366), 1, + STATE(1275), 1, sym__end_line, - [21190] = 6, + STATE(1277), 1, + sym__end_column, + [21197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_start_column, + ACTIONS(2748), 1, + anon_sym_start_line, ACTIONS(2754), 1, anon_sym_end_column, ACTIONS(2814), 1, anon_sym_RPAREN, - STATE(1212), 1, - sym__start_column, - STATE(1213), 1, + STATE(1281), 1, + sym__start_line, + STATE(1282), 1, sym__end_column, - [21209] = 6, + [21216] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(2752), 1, - anon_sym_start_column, + ACTIONS(2750), 1, + anon_sym_end_line, ACTIONS(2816), 1, anon_sym_RPAREN, - STATE(1368), 1, - sym__start_column, - STATE(1376), 1, + STATE(1284), 1, sym__start_line, - [21228] = 6, + STATE(1299), 1, + sym__end_line, + [21235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, - anon_sym_start_line, - ACTIONS(2754), 1, - anon_sym_end_column, + ACTIONS(2750), 1, + anon_sym_end_line, + ACTIONS(2752), 1, + anon_sym_start_column, ACTIONS(2818), 1, anon_sym_RPAREN, - STATE(1378), 1, - sym__end_column, - STATE(1379), 1, - sym__start_line, - [21247] = 6, + STATE(1302), 1, + sym__end_line, + STATE(1303), 1, + sym__start_column, + [21254] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(2748), 1, + anon_sym_start_line, ACTIONS(2752), 1, anon_sym_start_column, - ACTIONS(2754), 1, - anon_sym_end_column, ACTIONS(2820), 1, anon_sym_RPAREN, - STATE(1383), 1, - sym__end_column, - STATE(1385), 1, + STATE(1304), 1, + sym__start_line, + STATE(1305), 1, sym__start_column, - [21266] = 6, + [21273] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2752), 1, @@ -55294,3394 +55629,3389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end_column, ACTIONS(2822), 1, anon_sym_RPAREN, - STATE(1402), 1, + STATE(1251), 1, sym__start_column, - STATE(1403), 1, + STATE(1252), 1, sym__end_column, - [21285] = 6, + [21292] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, - anon_sym_start_line, ACTIONS(2750), 1, anon_sym_end_line, + ACTIONS(2754), 1, + anon_sym_end_column, ACTIONS(2824), 1, anon_sym_RPAREN, - STATE(1327), 1, + STATE(1254), 1, sym__end_line, - STATE(1330), 1, - sym__start_line, - [21304] = 6, + STATE(1255), 1, + sym__end_column, + [21311] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, anon_sym_end_line, - ACTIONS(2754), 1, - anon_sym_end_column, + ACTIONS(2752), 1, + anon_sym_start_column, ACTIONS(2826), 1, anon_sym_RPAREN, - STATE(1399), 1, - sym__end_column, - STATE(1408), 1, + STATE(1257), 1, sym__end_line, - [21323] = 5, + STATE(1258), 1, + sym__start_column, + [21330] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(1438), 1, + anon_sym_DOT, + ACTIONS(1478), 1, + anon_sym_LBRACK, ACTIONS(2828), 1, - anon_sym_LBRACE, + anon_sym_EQ, ACTIONS(2830), 1, - anon_sym_language, - STATE(287), 1, - sym_patternDefinitionBody, - STATE(1320), 1, - sym_langdecl, - [21339] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2834), 1, - anon_sym_js, - STATE(255), 1, - sym_functionDefinitionBody, - STATE(1381), 1, - sym_foreignLanguageName, - [21355] = 5, + anon_sym_LT_COLON, + [21346] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2832), 1, anon_sym_LBRACE, ACTIONS(2834), 1, - anon_sym_js, - STATE(267), 1, - sym_functionDefinitionBody, - STATE(1322), 1, - sym_foreignLanguageName, - [21371] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, - ACTIONS(2830), 1, - anon_sym_language, - STATE(260), 1, - sym_patternDefinitionBody, - STATE(1392), 1, - sym_langdecl, - [21387] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, - ACTIONS(2830), 1, anon_sym_language, - STATE(268), 1, + STATE(281), 1, sym_patternDefinitionBody, - STATE(1404), 1, + STATE(1245), 1, sym_langdecl, - [21403] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_LBRACK, - ACTIONS(1486), 1, - anon_sym_DOT, - ACTIONS(2836), 1, - anon_sym_EQ, - ACTIONS(2838), 1, - anon_sym_LT_COLON, - [21419] = 5, + [21362] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2834), 1, anon_sym_language, - STATE(275), 1, + STATE(252), 1, sym_patternDefinitionBody, - STATE(1318), 1, + STATE(1223), 1, sym_langdecl, - [21435] = 4, - ACTIONS(2840), 1, - anon_sym_LBRACE, - STATE(1017), 1, - aux_sym_foreignLanguageCode_repeat1, - STATE(1415), 1, - sym_foreignLanguageCode, - ACTIONS(2842), 2, - sym_noBraces, - sym_comment, - [21449] = 5, + [21378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2834), 1, anon_sym_language, - STATE(293), 1, + STATE(298), 1, sym_patternDefinitionBody, - STATE(1400), 1, + STATE(1228), 1, sym_langdecl, - [21465] = 5, + [21394] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 1, - anon_sym_LBRACK, - ACTIONS(1486), 1, - anon_sym_DOT, - ACTIONS(2844), 1, - anon_sym_EQ, - ACTIONS(2846), 1, - anon_sym_LT_COLON, - [21481] = 4, - ACTIONS(2848), 1, - anon_sym_LBRACE, - ACTIONS(2851), 1, - anon_sym_RBRACE, - STATE(1010), 1, - aux_sym_foreignLanguageCode_repeat1, - ACTIONS(2853), 2, - sym_noBraces, - sym_comment, - [21495] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2776), 1, - anon_sym_variable, - ACTIONS(2856), 1, - anon_sym_RPAREN, - ACTIONS(2858), 1, - sym_variable, - STATE(1352), 1, - sym__logVariable, - [21511] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2832), 1, + ACTIONS(2836), 1, anon_sym_LBRACE, - ACTIONS(2834), 1, + ACTIONS(2838), 1, anon_sym_js, - STATE(269), 1, + STATE(288), 1, sym_functionDefinitionBody, - STATE(1406), 1, + STATE(1271), 1, sym_foreignLanguageName, - [21527] = 5, + [21410] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2772), 1, anon_sym_message, - ACTIONS(2860), 1, + ACTIONS(2840), 1, anon_sym_RPAREN, - ACTIONS(2862), 1, + ACTIONS(2842), 1, anon_sym_DOLLARmessage, - STATE(1353), 1, + STATE(1286), 1, sym__logMessage, - [21543] = 5, + [21426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2834), 1, anon_sym_language, - STATE(292), 1, + STATE(276), 1, sym_patternDefinitionBody, - STATE(1397), 1, + STATE(1230), 1, sym_langdecl, - [21559] = 4, - ACTIONS(2840), 1, - anon_sym_LBRACE, - STATE(1017), 1, - aux_sym_foreignLanguageCode_repeat1, - STATE(1411), 1, - sym_foreignLanguageCode, - ACTIONS(2842), 2, - sym_noBraces, - sym_comment, - [21573] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2776), 1, - anon_sym_variable, - ACTIONS(2858), 1, - sym_variable, - ACTIONS(2864), 1, - anon_sym_RPAREN, - STATE(1249), 1, - sym__logVariable, - [21589] = 4, - ACTIONS(2840), 1, - anon_sym_LBRACE, - ACTIONS(2866), 1, - anon_sym_RBRACE, - STATE(1010), 1, - aux_sym_foreignLanguageCode_repeat1, - ACTIONS(2868), 2, - sym_noBraces, - sym_comment, - [21603] = 5, + [21442] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2832), 1, anon_sym_LBRACE, ACTIONS(2834), 1, - anon_sym_js, - STATE(254), 1, - sym_functionDefinitionBody, - STATE(1395), 1, - sym_foreignLanguageName, - [21619] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2772), 1, - anon_sym_message, - ACTIONS(2862), 1, - anon_sym_DOLLARmessage, - ACTIONS(2870), 1, - anon_sym_RPAREN, - STATE(1250), 1, - sym__logMessage, - [21635] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, - ACTIONS(2830), 1, anon_sym_language, - STATE(277), 1, + STATE(266), 1, sym_patternDefinitionBody, - STATE(1315), 1, + STATE(1242), 1, sym_langdecl, - [21651] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, + [21458] = 4, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, - anon_sym_language, - STATE(263), 1, - sym_patternDefinitionBody, - STATE(1339), 1, - sym_langdecl, - [21667] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, - anon_sym_COMMA, - ACTIONS(2874), 1, - anon_sym_RPAREN, - STATE(1150), 1, - aux_sym__bubbleScope_repeat1, - [21680] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1017), 1, - anon_sym_RBRACE, - ACTIONS(2876), 1, - anon_sym_COMMA, - STATE(1125), 1, - aux_sym_predicateDefinitionBody_repeat1, - [21693] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2878), 1, - sym_name, - ACTIONS(2880), 1, - anon_sym_RBRACE, - STATE(1236), 1, - sym_mapElement, - [21706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2882), 1, - anon_sym_COMMA, - ACTIONS(2885), 1, - anon_sym_RBRACE, - STATE(1025), 1, - aux_sym_map_repeat1, - [21719] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2887), 1, - anon_sym_COMMA, - ACTIONS(2890), 1, - anon_sym_RPAREN, - STATE(1026), 1, - aux_sym_nodeLike_repeat1, - [21732] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(183), 1, - ts_builtin_sym_end, - ACTIONS(2892), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [21745] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(515), 1, - anon_sym_RBRACE, - ACTIONS(2894), 1, - anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [21758] = 4, - ACTIONS(3), 1, + STATE(1018), 1, + aux_sym_foreignLanguageCode_repeat1, + STATE(1526), 1, + sym_foreignLanguageCode, + ACTIONS(2846), 2, + sym_noBraces, sym_comment, - ACTIONS(2896), 1, - anon_sym_COMMA, - ACTIONS(2898), 1, - anon_sym_RPAREN, - STATE(1120), 1, - aux_sym__bubbleScope_repeat1, - [21771] = 4, + [21472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2900), 1, - anon_sym_COMMA, - ACTIONS(2902), 1, + ACTIONS(2772), 1, + anon_sym_message, + ACTIONS(2842), 1, + anon_sym_DOLLARmessage, + ACTIONS(2848), 1, anon_sym_RPAREN, - STATE(1141), 1, - aux_sym_nodeLike_repeat1, - [21784] = 4, + STATE(1312), 1, + sym__logMessage, + [21488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2904), 1, - anon_sym_COMMA, - ACTIONS(2906), 1, - anon_sym_RBRACE, - STATE(1132), 1, - aux_sym_predicateDefinitionBody_repeat1, - [21797] = 4, + ACTIONS(2836), 1, + anon_sym_LBRACE, + ACTIONS(2838), 1, + anon_sym_js, + STATE(259), 1, + sym_functionDefinitionBody, + STATE(1247), 1, + sym_foreignLanguageName, + [21504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, + ACTIONS(1438), 1, anon_sym_DOT, - ACTIONS(1460), 1, + ACTIONS(1478), 1, anon_sym_LBRACK, - ACTIONS(2908), 1, + ACTIONS(2850), 1, anon_sym_EQ, - [21810] = 4, + ACTIONS(2852), 1, + anon_sym_LT_COLON, + [21520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(487), 1, - anon_sym_RBRACE, - ACTIONS(2910), 1, - anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [21823] = 4, + ACTIONS(2832), 1, + anon_sym_LBRACE, + ACTIONS(2834), 1, + anon_sym_language, + STATE(283), 1, + sym_patternDefinitionBody, + STATE(1406), 1, + sym_langdecl, + [21536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 1, - anon_sym_LBRACK, - ACTIONS(1486), 1, - anon_sym_DOT, - ACTIONS(2912), 1, - anon_sym_RBRACK, - [21836] = 4, - ACTIONS(113), 1, + ACTIONS(2836), 1, + anon_sym_LBRACE, + ACTIONS(2838), 1, + anon_sym_js, + STATE(251), 1, + sym_functionDefinitionBody, + STATE(1355), 1, + sym_foreignLanguageName, + [21552] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, - ts_builtin_sym_end, - ACTIONS(2914), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [21849] = 4, + ACTIONS(2832), 1, + anon_sym_LBRACE, + ACTIONS(2834), 1, + anon_sym_language, + STATE(264), 1, + sym_patternDefinitionBody, + STATE(1308), 1, + sym_langdecl, + [21568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 1, - anon_sym_RBRACE, - ACTIONS(2916), 1, - anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [21862] = 4, - ACTIONS(113), 1, + ACTIONS(2836), 1, + anon_sym_LBRACE, + ACTIONS(2838), 1, + anon_sym_js, + STATE(272), 1, + sym_functionDefinitionBody, + STATE(1265), 1, + sym_foreignLanguageName, + [21584] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2686), 1, - ts_builtin_sym_end, - ACTIONS(2918), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [21875] = 4, + ACTIONS(2776), 1, + anon_sym_variable, + ACTIONS(2854), 1, + anon_sym_RPAREN, + ACTIONS(2856), 1, + sym_variable, + STATE(1279), 1, + sym__logVariable, + [21600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 1, + ACTIONS(2776), 1, + anon_sym_variable, + ACTIONS(2856), 1, + sym_variable, + ACTIONS(2858), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym__logVariable, + [21616] = 4, + ACTIONS(2844), 1, + anon_sym_LBRACE, + ACTIONS(2860), 1, anon_sym_RBRACE, - ACTIONS(2920), 1, - anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [21888] = 4, - ACTIONS(113), 1, + STATE(1019), 1, + aux_sym_foreignLanguageCode_repeat1, + ACTIONS(2862), 2, + sym_noBraces, sym_comment, - ACTIONS(2922), 1, - ts_builtin_sym_end, - ACTIONS(2924), 1, - anon_sym_LF, - STATE(1205), 1, - aux_sym_source_file_repeat1, - [21901] = 4, - ACTIONS(113), 1, + [21630] = 4, + ACTIONS(2864), 1, + anon_sym_LBRACE, + ACTIONS(2867), 1, + anon_sym_RBRACE, + STATE(1019), 1, + aux_sym_foreignLanguageCode_repeat1, + ACTIONS(2869), 2, + sym_noBraces, sym_comment, - ACTIONS(145), 1, - ts_builtin_sym_end, - ACTIONS(2926), 1, - anon_sym_LF, - STATE(1027), 1, - aux_sym_source_file_repeat1, - [21914] = 4, - ACTIONS(113), 1, + [21644] = 4, + ACTIONS(2844), 1, + anon_sym_LBRACE, + STATE(1018), 1, + aux_sym_foreignLanguageCode_repeat1, + STATE(1414), 1, + sym_foreignLanguageCode, + ACTIONS(2846), 2, + sym_noBraces, sym_comment, - ACTIONS(2928), 1, - ts_builtin_sym_end, - ACTIONS(2930), 1, - anon_sym_LF, - STATE(1174), 1, - aux_sym_source_file_repeat1, - [21927] = 4, - ACTIONS(85), 1, - ts_builtin_sym_end, - ACTIONS(113), 1, + [21658] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2932), 1, - anon_sym_LF, - STATE(1160), 1, - aux_sym_source_file_repeat1, - [21940] = 4, + ACTIONS(2832), 1, + anon_sym_LBRACE, + ACTIONS(2834), 1, + anon_sym_language, + STATE(290), 1, + sym_patternDefinitionBody, + STATE(1402), 1, + sym_langdecl, + [21674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(2754), 1, + anon_sym_end_column, + ACTIONS(2872), 1, + anon_sym_RPAREN, + STATE(1380), 1, + sym__end_column, + [21687] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(455), 1, anon_sym_RBRACE, - ACTIONS(2934), 1, + ACTIONS(2874), 1, anon_sym_COMMA, - STATE(1208), 1, + STATE(1157), 1, aux_sym_sequential_repeat1, - [21953] = 4, + [21700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, - anon_sym_COMMA, - ACTIONS(2938), 1, + ACTIONS(451), 1, anon_sym_RBRACE, - STATE(1128), 1, - aux_sym_predicateDefinitionBody_repeat1, - [21966] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(2940), 1, - ts_builtin_sym_end, - ACTIONS(2942), 1, - anon_sym_LF, - STATE(1127), 1, - aux_sym_source_file_repeat1, - [21979] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(177), 1, - ts_builtin_sym_end, - ACTIONS(2944), 1, - anon_sym_LF, - STATE(1151), 1, - aux_sym_source_file_repeat1, - [21992] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(2702), 1, - ts_builtin_sym_end, - ACTIONS(2946), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [22005] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2948), 1, + ACTIONS(2876), 1, anon_sym_COMMA, - ACTIONS(2950), 1, - anon_sym_RBRACE, - STATE(1023), 1, - aux_sym_predicateDefinitionBody_repeat1, - [22018] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(2652), 1, - ts_builtin_sym_end, - ACTIONS(2952), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [22031] = 4, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [21713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 1, - anon_sym_RBRACE, - ACTIONS(2954), 1, + ACTIONS(2878), 1, anon_sym_COMMA, - STATE(1125), 1, - aux_sym_predicateDefinitionBody_repeat1, - [22044] = 4, + ACTIONS(2880), 1, + anon_sym_RPAREN, + STATE(1110), 1, + aux_sym_nodeLike_repeat1, + [21726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(283), 1, + anon_sym_RBRACK, + ACTIONS(2882), 1, anon_sym_COMMA, - ACTIONS(2958), 1, - anon_sym_RBRACE, - STATE(1140), 1, - aux_sym_map_repeat1, - [22057] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(2704), 1, - ts_builtin_sym_end, - ACTIONS(2960), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [22070] = 4, + STATE(1072), 1, + aux_sym_list_repeat1, + [21739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(2884), 1, anon_sym_LPAREN, - ACTIONS(2964), 1, + ACTIONS(2886), 1, anon_sym_COLON, - ACTIONS(2966), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - [22083] = 4, + [21752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_COMMA, - ACTIONS(2970), 1, + ACTIONS(1003), 1, anon_sym_RBRACE, - STATE(1083), 1, + ACTIONS(2890), 1, + anon_sym_COMMA, + STATE(1101), 1, aux_sym_predicateDefinitionBody_repeat1, - [22096] = 4, + [21765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2892), 1, anon_sym_COMMA, - ACTIONS(2974), 1, - anon_sym_RPAREN, - STATE(1120), 1, - aux_sym__bubbleScope_repeat1, - [22109] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(2976), 1, - ts_builtin_sym_end, - ACTIONS(2978), 1, - anon_sym_LF, - STATE(1159), 1, - aux_sym_source_file_repeat1, - [22122] = 4, + ACTIONS(2894), 1, + anon_sym_RBRACE, + STATE(1199), 1, + aux_sym_predicateDefinitionBody_repeat1, + [21778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 1, + ACTIONS(1005), 1, + anon_sym_RBRACE, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2486), 1, - anon_sym_RBRACK, - STATE(1118), 1, - aux_sym_list_repeat1, - [22135] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(2666), 1, - ts_builtin_sym_end, - ACTIONS(2980), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [22148] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(177), 1, - ts_builtin_sym_end, - ACTIONS(2944), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [22161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2748), 1, - anon_sym_start_line, - ACTIONS(2982), 1, - anon_sym_RPAREN, - STATE(1321), 1, - sym__start_line, - [22174] = 4, + STATE(1101), 1, + aux_sym_predicateDefinitionBody_repeat1, + [21791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 1, + ACTIONS(2898), 1, anon_sym_COMMA, - ACTIONS(2986), 1, + ACTIONS(2901), 1, anon_sym_RPAREN, - STATE(1120), 1, + STATE(1031), 1, aux_sym__bubbleScope_repeat1, - [22187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(281), 1, - anon_sym_RBRACK, - ACTIONS(2988), 1, - anon_sym_COMMA, - STATE(1088), 1, - aux_sym_list_repeat1, - [22200] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2750), 1, - anon_sym_end_line, - ACTIONS(2990), 1, - anon_sym_RPAREN, - STATE(1210), 1, - sym__end_line, - [22213] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(2678), 1, - ts_builtin_sym_end, - ACTIONS(2992), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [22226] = 4, + [21804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, - anon_sym_start_line, - ACTIONS(2994), 1, + ACTIONS(2754), 1, + anon_sym_end_column, + ACTIONS(2903), 1, anon_sym_RPAREN, - STATE(1323), 1, - sym__start_line, - [22239] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(2996), 1, - ts_builtin_sym_end, - ACTIONS(2998), 1, - anon_sym_LF, - STATE(1175), 1, - aux_sym_source_file_repeat1, - [22252] = 4, + STATE(1274), 1, + sym__end_column, + [21817] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2752), 1, anon_sym_start_column, - ACTIONS(3000), 1, + ACTIONS(2905), 1, anon_sym_RPAREN, - STATE(1325), 1, + STATE(1278), 1, sym__start_column, - [22265] = 4, + [21830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(2754), 1, + anon_sym_end_column, + ACTIONS(2907), 1, anon_sym_RPAREN, - ACTIONS(3002), 1, - anon_sym_COMMA, - STATE(1026), 1, - aux_sym_nodeLike_repeat1, - [22278] = 4, + STATE(1280), 1, + sym__end_column, + [21843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(2909), 1, anon_sym_COMMA, - ACTIONS(3006), 1, + ACTIONS(2911), 1, anon_sym_RPAREN, - STATE(1149), 1, + STATE(1115), 1, aux_sym__bubbleScope_repeat1, - [22291] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2500), 1, - anon_sym_COMMA, - ACTIONS(2502), 1, - anon_sym_RBRACK, - STATE(1145), 1, - aux_sym_list_repeat1, - [22304] = 4, + [21856] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, anon_sym_end_line, - ACTIONS(3008), 1, + ACTIONS(2913), 1, anon_sym_RPAREN, - STATE(1328), 1, + STATE(1300), 1, sym__end_line, - [22317] = 4, + [21869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, - anon_sym_COMMA, - ACTIONS(3012), 1, + ACTIONS(2752), 1, + anon_sym_start_column, + ACTIONS(2915), 1, anon_sym_RPAREN, - STATE(1144), 1, - aux_sym_nodeLike_repeat1, - [22330] = 4, - ACTIONS(113), 1, + STATE(1307), 1, + sym__start_column, + [21882] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2730), 1, - ts_builtin_sym_end, - ACTIONS(3014), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [22343] = 4, + ACTIONS(2750), 1, + anon_sym_end_line, + ACTIONS(2917), 1, + anon_sym_RPAREN, + STATE(1309), 1, + sym__end_line, + [21895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 1, - anon_sym_LBRACK, - ACTIONS(3016), 1, - anon_sym_LPAREN, - ACTIONS(3018), 1, - anon_sym_EQ, - [22356] = 4, + ACTIONS(2754), 1, + anon_sym_end_column, + ACTIONS(2919), 1, + anon_sym_RPAREN, + STATE(1310), 1, + sym__end_column, + [21908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, - anon_sym_COMMA, - ACTIONS(3022), 1, + ACTIONS(2752), 1, + anon_sym_start_column, + ACTIONS(2921), 1, anon_sym_RPAREN, - STATE(1120), 1, - aux_sym__bubbleScope_repeat1, - [22369] = 4, + STATE(1313), 1, + sym__start_column, + [21921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, + ACTIONS(2754), 1, + anon_sym_end_column, + ACTIONS(2923), 1, anon_sym_RPAREN, - STATE(1120), 1, - aux_sym__bubbleScope_repeat1, - [22382] = 4, + STATE(1317), 1, + sym__end_column, + [21934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(2925), 1, anon_sym_COMMA, - ACTIONS(3030), 1, - anon_sym_RBRACE, - STATE(1050), 1, - aux_sym_predicateDefinitionBody_repeat1, - [22395] = 4, + ACTIONS(2927), 1, + anon_sym_RPAREN, + STATE(1031), 1, + aux_sym__bubbleScope_repeat1, + [21947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, - anon_sym_RBRACE, - ACTIONS(3032), 1, - anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [22408] = 4, + ACTIONS(2748), 1, + anon_sym_start_line, + ACTIONS(2929), 1, + anon_sym_RPAREN, + STATE(1319), 1, + sym__start_line, + [21960] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2752), 1, anon_sym_start_column, - ACTIONS(3034), 1, + ACTIONS(2931), 1, anon_sym_RPAREN, - STATE(1329), 1, + STATE(1322), 1, sym__start_column, - [22421] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(3036), 1, - ts_builtin_sym_end, - ACTIONS(3038), 1, - anon_sym_LF, - STATE(1172), 1, - aux_sym_source_file_repeat1, - [22434] = 4, + [21973] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(3040), 1, + ACTIONS(2933), 1, anon_sym_RPAREN, - STATE(1332), 1, + STATE(1323), 1, sym__start_line, - [22447] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(2878), 1, - sym_name, - STATE(1051), 1, - sym_mapElement, - [22460] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 1, - anon_sym_RBRACE, - ACTIONS(3042), 1, - anon_sym_COMMA, - STATE(1125), 1, - aux_sym_predicateDefinitionBody_repeat1, - [22473] = 4, + [21986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, - anon_sym_RBRACE, - ACTIONS(3044), 1, - anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [22486] = 4, + ACTIONS(2754), 1, + anon_sym_end_column, + ACTIONS(2935), 1, + anon_sym_RPAREN, + STATE(1325), 1, + sym__end_column, + [21999] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, anon_sym_end_line, - ACTIONS(3046), 1, + ACTIONS(2937), 1, anon_sym_RPAREN, - STATE(1334), 1, + STATE(1328), 1, sym__end_line, - [22499] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(2734), 1, - ts_builtin_sym_end, - ACTIONS(3048), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [22512] = 4, + [22012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, - anon_sym_start_line, - ACTIONS(3050), 1, - anon_sym_RPAREN, - STATE(1337), 1, - sym__start_line, - [22525] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2562), 1, - anon_sym_RBRACK, - ACTIONS(3052), 1, + ACTIONS(2939), 1, anon_sym_COMMA, - STATE(1088), 1, - aux_sym_list_repeat1, - [22538] = 4, + ACTIONS(2941), 1, + anon_sym_RPAREN, + STATE(1031), 1, + aux_sym__bubbleScope_repeat1, + [22025] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2754), 1, anon_sym_end_column, - ACTIONS(3055), 1, + ACTIONS(2943), 1, anon_sym_RPAREN, - STATE(1341), 1, + STATE(1354), 1, sym__end_column, - [22551] = 4, - ACTIONS(113), 1, + [22038] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(191), 1, - ts_builtin_sym_end, - ACTIONS(3057), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [22564] = 4, + ACTIONS(2748), 1, + anon_sym_start_line, + ACTIONS(2945), 1, + anon_sym_RPAREN, + STATE(1356), 1, + sym__start_line, + [22051] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, anon_sym_end_line, - ACTIONS(3059), 1, + ACTIONS(2947), 1, anon_sym_RPAREN, - STATE(1344), 1, + STATE(1358), 1, sym__end_line, - [22577] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(3061), 1, - ts_builtin_sym_end, - ACTIONS(3063), 1, - anon_sym_LF, - STATE(1164), 1, - aux_sym_source_file_repeat1, - [22590] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2754), 1, - anon_sym_end_column, - ACTIONS(3065), 1, - anon_sym_RPAREN, - STATE(1367), 1, - sym__end_column, - [22603] = 4, - ACTIONS(113), 1, - sym_comment, - ACTIONS(191), 1, - ts_builtin_sym_end, - ACTIONS(3057), 1, - anon_sym_LF, - STATE(1167), 1, - aux_sym_source_file_repeat1, - [22616] = 4, + [22064] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(3067), 1, + ACTIONS(2949), 1, anon_sym_RPAREN, - STATE(1369), 1, + STATE(1360), 1, sym__start_line, - [22629] = 4, + [22077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 1, - anon_sym_RBRACE, - ACTIONS(3069), 1, - anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [22642] = 4, + ACTIONS(2752), 1, + anon_sym_start_column, + ACTIONS(2951), 1, + anon_sym_RPAREN, + STATE(1362), 1, + sym__start_column, + [22090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2750), 1, + anon_sym_end_line, + ACTIONS(2953), 1, + anon_sym_RPAREN, + STATE(1364), 1, + sym__end_line, + [22103] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2752), 1, anon_sym_start_column, - ACTIONS(3071), 1, + ACTIONS(2955), 1, anon_sym_RPAREN, - STATE(1372), 1, + STATE(1365), 1, sym__start_column, - [22655] = 4, - ACTIONS(113), 1, + [22116] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 1, - ts_builtin_sym_end, - ACTIONS(3073), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [22668] = 4, + ACTIONS(2957), 1, + anon_sym_COMMA, + ACTIONS(2959), 1, + anon_sym_RPAREN, + STATE(1031), 1, + aux_sym__bubbleScope_repeat1, + [22129] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(3075), 1, + ACTIONS(2961), 1, anon_sym_RPAREN, - STATE(1375), 1, + STATE(1367), 1, sym__start_line, - [22681] = 4, + [22142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 1, - anon_sym_RBRACE, - ACTIONS(3077), 1, - anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [22694] = 4, + ACTIONS(2750), 1, + anon_sym_end_line, + ACTIONS(2963), 1, + anon_sym_RPAREN, + STATE(1368), 1, + sym__end_line, + [22155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 1, - anon_sym_end_column, - ACTIONS(3079), 1, + ACTIONS(2748), 1, + anon_sym_start_line, + ACTIONS(2965), 1, anon_sym_RPAREN, - STATE(1377), 1, - sym__end_column, - [22707] = 4, + STATE(1369), 1, + sym__start_line, + [22168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(2967), 1, anon_sym_COMMA, - ACTIONS(3083), 1, - anon_sym_RPAREN, - STATE(1075), 1, - aux_sym__bubbleScope_repeat1, - [22720] = 4, + ACTIONS(2969), 1, + anon_sym_RBRACE, + STATE(1086), 1, + aux_sym_map_repeat1, + [22181] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(2736), 1, + ts_builtin_sym_end, + ACTIONS(2971), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_start_column, - ACTIONS(3085), 1, - anon_sym_RPAREN, - STATE(1380), 1, - sym__start_column, - [22733] = 4, + ACTIONS(1314), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_doubleQuoteSnippet, + [22203] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(2656), 1, + ts_builtin_sym_end, + ACTIONS(2973), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22216] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(2744), 1, + ACTIONS(2975), 1, ts_builtin_sym_end, - ACTIONS(3087), 1, + ACTIONS(2977), 1, anon_sym_LF, - STATE(250), 1, + STATE(1147), 1, aux_sym_source_file_repeat1, - [22746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2754), 1, - anon_sym_end_column, - ACTIONS(3089), 1, - anon_sym_RPAREN, - STATE(1382), 1, - sym__end_column, - [22759] = 4, + [22229] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(2652), 1, ts_builtin_sym_end, - ACTIONS(3093), 1, + ACTIONS(2979), 1, anon_sym_LF, - STATE(1158), 1, + STATE(247), 1, aux_sym_source_file_repeat1, - [22772] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2750), 1, - anon_sym_end_line, - ACTIONS(3095), 1, - anon_sym_RPAREN, - STATE(1387), 1, - sym__end_line, - [22785] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2878), 1, - sym_name, - ACTIONS(3097), 1, - anon_sym_RBRACE, - STATE(1236), 1, - sym_mapElement, - [22798] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_start_column, - ACTIONS(3099), 1, - anon_sym_RPAREN, - STATE(1388), 1, - sym__start_column, - [22811] = 4, + [22242] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(2742), 1, + ACTIONS(2981), 1, ts_builtin_sym_end, - ACTIONS(3101), 1, + ACTIONS(2983), 1, anon_sym_LF, - STATE(250), 1, + STATE(1094), 1, aux_sym_source_file_repeat1, - [22824] = 4, - ACTIONS(3), 1, + [22255] = 4, + ACTIONS(113), 1, sym_comment, - ACTIONS(2750), 1, - anon_sym_end_line, - ACTIONS(3103), 1, - anon_sym_RPAREN, - STATE(1389), 1, - sym__end_line, - [22837] = 4, + ACTIONS(2666), 1, + ts_builtin_sym_end, + ACTIONS(2985), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(523), 1, - anon_sym_RBRACE, - ACTIONS(3105), 1, + ACTIONS(2528), 1, anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [22850] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2754), 1, - anon_sym_end_column, - ACTIONS(3107), 1, - anon_sym_RPAREN, - STATE(1391), 1, - sym__end_column, - [22863] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_start_column, - ACTIONS(3109), 1, - anon_sym_RPAREN, - STATE(1393), 1, - sym__start_column, - [22876] = 4, + ACTIONS(2530), 1, + anon_sym_RBRACK, + STATE(1026), 1, + aux_sym_list_repeat1, + [22281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 1, - anon_sym_RBRACE, - ACTIONS(3111), 1, + ACTIONS(2987), 1, anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [22889] = 4, + ACTIONS(2989), 1, + anon_sym_RPAREN, + STATE(1031), 1, + aux_sym__bubbleScope_repeat1, + [22294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(1486), 1, - anon_sym_DOT, - ACTIONS(3113), 1, - anon_sym_RBRACK, - [22902] = 4, + ACTIONS(2991), 1, + anon_sym_LPAREN, + ACTIONS(2993), 1, + anon_sym_EQ, + [22307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3117), 1, + ACTIONS(2997), 1, anon_sym_RPAREN, - STATE(1055), 1, - aux_sym__bubbleScope_repeat1, - [22915] = 4, + STATE(1099), 1, + aux_sym_nodeLike_repeat1, + [22320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(303), 1, + ACTIONS(2548), 1, anon_sym_RBRACK, - ACTIONS(3119), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - STATE(1088), 1, + STATE(1072), 1, aux_sym_list_repeat1, - [22928] = 4, + [22333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 1, - anon_sym_end_column, - ACTIONS(3121), 1, - anon_sym_RPAREN, - STATE(1394), 1, - sym__end_column, - [22941] = 4, + ACTIONS(2484), 1, + anon_sym_COMMA, + ACTIONS(2486), 1, + anon_sym_RBRACK, + STATE(1102), 1, + aux_sym_list_repeat1, + [22346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3002), 1, anon_sym_COMMA, - ACTIONS(3126), 1, + ACTIONS(3004), 1, anon_sym_RPAREN, - STATE(1120), 1, + STATE(1042), 1, aux_sym__bubbleScope_repeat1, - [22954] = 4, + [22359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 1, + ACTIONS(3006), 1, anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(3008), 1, anon_sym_RPAREN, - STATE(1029), 1, + STATE(1048), 1, aux_sym__bubbleScope_repeat1, - [22967] = 4, + [22372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3132), 1, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3012), 1, anon_sym_RPAREN, - STATE(1076), 1, + STATE(1105), 1, aux_sym__bubbleScope_repeat1, - [22980] = 4, + [22385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(3014), 1, anon_sym_COMMA, - ACTIONS(2534), 1, - anon_sym_RBRACK, - STATE(1062), 1, - aux_sym_list_repeat1, - [22993] = 4, + ACTIONS(3017), 1, + anon_sym_RPAREN, + STATE(1077), 1, + aux_sym_nodeLike_repeat1, + [22398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 1, + ACTIONS(3019), 1, anon_sym_COMMA, - ACTIONS(3138), 1, + ACTIONS(3021), 1, anon_sym_RPAREN, - STATE(1068), 1, - aux_sym_nodeLike_repeat1, - [23006] = 4, + STATE(1056), 1, + aux_sym__bubbleScope_repeat1, + [22411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 1, - anon_sym_COMMA, - ACTIONS(3143), 1, + ACTIONS(3023), 1, + sym_name, + ACTIONS(3025), 1, anon_sym_RBRACE, - STATE(1125), 1, - aux_sym_predicateDefinitionBody_repeat1, - [23019] = 2, - ACTIONS(3), 1, + STATE(1326), 1, + sym_mapElement, + [22424] = 4, + ACTIONS(113), 1, sym_comment, - ACTIONS(1320), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_doubleQuoteSnippet, - [23028] = 4, + ACTIONS(2650), 1, + ts_builtin_sym_end, + ACTIONS(3027), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22437] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(2714), 1, + ACTIONS(2674), 1, + ts_builtin_sym_end, + ACTIONS(3029), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22450] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(3031), 1, + ts_builtin_sym_end, + ACTIONS(3033), 1, + anon_sym_LF, + STATE(1158), 1, + aux_sym_source_file_repeat1, + [22463] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(2700), 1, + ts_builtin_sym_end, + ACTIONS(3035), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22476] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(3037), 1, + ts_builtin_sym_end, + ACTIONS(3039), 1, + anon_sym_LF, + STATE(1160), 1, + aux_sym_source_file_repeat1, + [22489] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(2704), 1, ts_builtin_sym_end, - ACTIONS(3145), 1, + ACTIONS(3041), 1, anon_sym_LF, - STATE(250), 1, + STATE(247), 1, aux_sym_source_file_repeat1, - [23041] = 4, + [22502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + ACTIONS(3025), 1, anon_sym_RBRACE, - ACTIONS(3147), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1125), 1, - aux_sym_predicateDefinitionBody_repeat1, - [23054] = 4, + STATE(1171), 1, + aux_sym_map_repeat1, + [22515] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(201), 1, + ts_builtin_sym_end, + ACTIONS(3045), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22528] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(3047), 1, + ts_builtin_sym_end, + ACTIONS(3049), 1, + anon_sym_LF, + STATE(1169), 1, + aux_sym_source_file_repeat1, + [22541] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(201), 1, + ts_builtin_sym_end, + ACTIONS(3045), 1, + anon_sym_LF, + STATE(1164), 1, + aux_sym_source_file_repeat1, + [22554] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(2714), 1, + ts_builtin_sym_end, + ACTIONS(3051), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22567] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(177), 1, + ts_builtin_sym_end, + ACTIONS(3053), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22580] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(2718), 1, + ts_builtin_sym_end, + ACTIONS(3055), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22593] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(3057), 1, + ts_builtin_sym_end, + ACTIONS(3059), 1, + anon_sym_LF, + STATE(1179), 1, + aux_sym_source_file_repeat1, + [22606] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(2684), 1, + ts_builtin_sym_end, + ACTIONS(3061), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22619] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(2722), 1, + ts_builtin_sym_end, + ACTIONS(3063), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22632] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(3065), 1, + ts_builtin_sym_end, + ACTIONS(3067), 1, + anon_sym_LF, + STATE(1111), 1, + aux_sym_source_file_repeat1, + [22645] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(177), 1, + ts_builtin_sym_end, + ACTIONS(3053), 1, + anon_sym_LF, + STATE(1107), 1, + aux_sym_source_file_repeat1, + [22658] = 1, + ACTIONS(3069), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_noBraces, + sym_comment, + [22665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, - anon_sym_COMMA, - ACTIONS(3151), 1, + ACTIONS(323), 1, anon_sym_RPAREN, - STATE(1139), 1, + ACTIONS(3071), 1, + anon_sym_COMMA, + STATE(1077), 1, aux_sym_nodeLike_repeat1, - [23067] = 4, + [22678] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(139), 1, + ts_builtin_sym_end, + ACTIONS(3073), 1, + anon_sym_LF, + STATE(1116), 1, + aux_sym_source_file_repeat1, + [22691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 1, - anon_sym_RBRACE, - ACTIONS(3153), 1, + ACTIONS(3075), 1, anon_sym_COMMA, - STATE(1125), 1, + ACTIONS(3078), 1, + anon_sym_RBRACE, + STATE(1101), 1, aux_sym_predicateDefinitionBody_repeat1, - [23080] = 4, + [22704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1003), 1, - anon_sym_RBRACE, - ACTIONS(3155), 1, + ACTIONS(273), 1, + anon_sym_RBRACK, + ACTIONS(3080), 1, anon_sym_COMMA, - STATE(1125), 1, - aux_sym_predicateDefinitionBody_repeat1, - [23093] = 4, + STATE(1072), 1, + aux_sym_list_repeat1, + [22717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1011), 1, + ACTIONS(997), 1, anon_sym_RBRACE, - ACTIONS(3157), 1, + ACTIONS(3082), 1, anon_sym_COMMA, - STATE(1125), 1, + STATE(1101), 1, aux_sym_predicateDefinitionBody_repeat1, - [23106] = 4, + [22730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 1, + ACTIONS(1013), 1, anon_sym_RBRACE, - ACTIONS(3159), 1, + ACTIONS(3084), 1, anon_sym_COMMA, - STATE(1125), 1, + STATE(1101), 1, aux_sym_predicateDefinitionBody_repeat1, - [23119] = 4, + [22743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_RBRACE, - ACTIONS(3161), 1, + ACTIONS(3086), 1, anon_sym_COMMA, - STATE(1125), 1, - aux_sym_predicateDefinitionBody_repeat1, - [23132] = 4, + ACTIONS(3088), 1, + anon_sym_RPAREN, + STATE(1031), 1, + aux_sym__bubbleScope_repeat1, + [22756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 1, + ACTIONS(1027), 1, anon_sym_RBRACE, - ACTIONS(3163), 1, + ACTIONS(3090), 1, anon_sym_COMMA, - STATE(1125), 1, + STATE(1101), 1, aux_sym_predicateDefinitionBody_repeat1, - [23145] = 1, - ACTIONS(3165), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_noBraces, + [22769] = 4, + ACTIONS(113), 1, sym_comment, - [23152] = 4, - ACTIONS(3), 1, + ACTIONS(2746), 1, + ts_builtin_sym_end, + ACTIONS(3092), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22782] = 4, + ACTIONS(113), 1, sym_comment, - ACTIONS(321), 1, - anon_sym_RBRACE, - ACTIONS(2878), 1, - sym_name, - STATE(1168), 1, - sym_mapElement, - [23165] = 4, - ACTIONS(3), 1, + ACTIONS(3094), 1, + ts_builtin_sym_end, + ACTIONS(3096), 1, + anon_sym_LF, + STATE(1080), 1, + aux_sym_source_file_repeat1, + [22795] = 4, + ACTIONS(113), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_RBRACE, - ACTIONS(3167), 1, - anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [23178] = 4, + ACTIONS(3098), 1, + ts_builtin_sym_end, + ACTIONS(3100), 1, + anon_sym_LF, + STATE(1129), 1, + aux_sym_source_file_repeat1, + [22808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, + ACTIONS(369), 1, anon_sym_RPAREN, - ACTIONS(3169), 1, + ACTIONS(3102), 1, anon_sym_COMMA, - STATE(1026), 1, + STATE(1077), 1, aux_sym_nodeLike_repeat1, - [23191] = 4, - ACTIONS(3), 1, + [22821] = 4, + ACTIONS(113), 1, sym_comment, - ACTIONS(3171), 1, - anon_sym_COMMA, - ACTIONS(3173), 1, - anon_sym_RBRACE, - STATE(1025), 1, - aux_sym_map_repeat1, - [23204] = 4, - ACTIONS(3), 1, + ACTIONS(2692), 1, + ts_builtin_sym_end, + ACTIONS(3104), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22834] = 4, + ACTIONS(113), 1, sym_comment, - ACTIONS(343), 1, - anon_sym_RPAREN, - ACTIONS(3175), 1, - anon_sym_COMMA, - STATE(1026), 1, - aux_sym_nodeLike_repeat1, - [23217] = 4, + ACTIONS(157), 1, + ts_builtin_sym_end, + ACTIONS(3106), 1, + anon_sym_LF, + STATE(1130), 1, + aux_sym_source_file_repeat1, + [22847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, - sym_name, - ACTIONS(3173), 1, + ACTIONS(345), 1, anon_sym_RBRACE, - STATE(1236), 1, + ACTIONS(3023), 1, + sym_name, + STATE(1120), 1, sym_mapElement, - [23230] = 4, + [22860] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3108), 1, ts_builtin_sym_end, - ACTIONS(3179), 1, + ACTIONS(3110), 1, anon_sym_LF, - STATE(1037), 1, + STATE(1138), 1, aux_sym_source_file_repeat1, - [23243] = 4, + [22873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(387), 1, - anon_sym_RPAREN, - ACTIONS(3181), 1, + ACTIONS(3112), 1, anon_sym_COMMA, - STATE(1026), 1, - aux_sym_nodeLike_repeat1, - [23256] = 4, - ACTIONS(3), 1, + ACTIONS(3114), 1, + anon_sym_RPAREN, + STATE(1031), 1, + aux_sym__bubbleScope_repeat1, + [22886] = 4, + ACTIONS(113), 1, sym_comment, - ACTIONS(283), 1, - anon_sym_RBRACK, - ACTIONS(3183), 1, - anon_sym_COMMA, - STATE(1088), 1, - aux_sym_list_repeat1, - [23269] = 4, + ACTIONS(187), 1, + ts_builtin_sym_end, + ACTIONS(3116), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [22899] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(3118), 1, + ts_builtin_sym_end, + ACTIONS(3120), 1, + anon_sym_LF, + STATE(1085), 1, + aux_sym_source_file_repeat1, + [22912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 1, + ACTIONS(2886), 1, + anon_sym_COLON, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(1486), 1, + ACTIONS(2991), 1, + anon_sym_LPAREN, + [22925] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1438), 1, anon_sym_DOT, - ACTIONS(3185), 1, + ACTIONS(1478), 1, + anon_sym_LBRACK, + ACTIONS(3122), 1, anon_sym_EQ, - [23282] = 4, + [22938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 1, - anon_sym_end_column, - ACTIONS(3187), 1, - anon_sym_RPAREN, - STATE(1285), 1, - sym__end_column, - [23295] = 4, - ACTIONS(3), 1, + ACTIONS(3124), 1, + anon_sym_COMMA, + ACTIONS(3126), 1, + anon_sym_RBRACE, + STATE(1126), 1, + aux_sym_map_repeat1, + [22951] = 4, + ACTIONS(113), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_start_column, - ACTIONS(3189), 1, - anon_sym_RPAREN, - STATE(1278), 1, - sym__start_column, - [23308] = 4, + ACTIONS(187), 1, + ts_builtin_sym_end, + ACTIONS(3116), 1, + anon_sym_LF, + STATE(1083), 1, + aux_sym_source_file_repeat1, + [22964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(499), 1, + anon_sym_RBRACE, + ACTIONS(3128), 1, anon_sym_COMMA, - ACTIONS(3193), 1, - anon_sym_RPAREN, - STATE(1120), 1, - aux_sym__bubbleScope_repeat1, - [23321] = 4, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [22977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(2480), 1, anon_sym_COMMA, - ACTIONS(3197), 1, - anon_sym_RPAREN, - STATE(1120), 1, - aux_sym__bubbleScope_repeat1, - [23334] = 4, - ACTIONS(113), 1, + ACTIONS(2482), 1, + anon_sym_RBRACK, + STATE(1132), 1, + aux_sym_list_repeat1, + [22990] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - ts_builtin_sym_end, - ACTIONS(3199), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [23347] = 4, + ACTIONS(3130), 1, + anon_sym_COMMA, + ACTIONS(3132), 1, + anon_sym_RBRACE, + STATE(1028), 1, + aux_sym_predicateDefinitionBody_repeat1, + [23003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 1, - anon_sym_end_column, - ACTIONS(3201), 1, - anon_sym_RPAREN, - STATE(1277), 1, - sym__end_column, - [23360] = 4, + ACTIONS(3023), 1, + sym_name, + ACTIONS(3134), 1, + anon_sym_RBRACE, + STATE(1326), 1, + sym_mapElement, + [23016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, - anon_sym_end_line, - ACTIONS(3203), 1, - anon_sym_RPAREN, - STATE(1276), 1, - sym__end_line, - [23373] = 4, + ACTIONS(3134), 1, + anon_sym_RBRACE, + ACTIONS(3136), 1, + anon_sym_COMMA, + STATE(1171), 1, + aux_sym_map_repeat1, + [23029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3138), 1, anon_sym_COMMA, - ACTIONS(3207), 1, + ACTIONS(3140), 1, anon_sym_RBRACE, - STATE(1134), 1, + STATE(1030), 1, aux_sym_predicateDefinitionBody_repeat1, - [23386] = 4, + [23042] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3142), 1, ts_builtin_sym_end, - ACTIONS(3211), 1, + ACTIONS(3144), 1, anon_sym_LF, - STATE(1035), 1, + STATE(1090), 1, aux_sym_source_file_repeat1, - [23399] = 4, + [23055] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(2670), 1, + ACTIONS(2654), 1, ts_builtin_sym_end, - ACTIONS(3213), 1, + ACTIONS(3146), 1, anon_sym_LF, - STATE(250), 1, + STATE(247), 1, aux_sym_source_file_repeat1, - [23412] = 4, + [23068] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(3215), 1, + ACTIONS(195), 1, ts_builtin_sym_end, - ACTIONS(3217), 1, + ACTIONS(3148), 1, anon_sym_LF, - STATE(1058), 1, + STATE(247), 1, aux_sym_source_file_repeat1, - [23425] = 4, + [23081] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(2672), 1, + ACTIONS(3150), 1, ts_builtin_sym_end, - ACTIONS(3219), 1, + ACTIONS(3152), 1, anon_sym_LF, - STATE(250), 1, + STATE(1095), 1, aux_sym_source_file_repeat1, - [23438] = 4, - ACTIONS(113), 1, + [23094] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 1, - ts_builtin_sym_end, - ACTIONS(3221), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [23451] = 4, + ACTIONS(249), 1, + anon_sym_RBRACK, + ACTIONS(3154), 1, + anon_sym_COMMA, + STATE(1072), 1, + aux_sym_list_repeat1, + [23107] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(165), 1, + ACTIONS(195), 1, ts_builtin_sym_end, - ACTIONS(3223), 1, + ACTIONS(3148), 1, anon_sym_LF, - STATE(250), 1, + STATE(1092), 1, aux_sym_source_file_repeat1, - [23464] = 4, - ACTIONS(113), 1, + [23120] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, - ts_builtin_sym_end, - ACTIONS(3227), 1, - anon_sym_LF, - STATE(1086), 1, - aux_sym_source_file_repeat1, - [23477] = 4, + ACTIONS(3156), 1, + anon_sym_COMMA, + ACTIONS(3158), 1, + anon_sym_RPAREN, + STATE(1148), 1, + aux_sym_nodeLike_repeat1, + [23133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_start_column, - ACTIONS(3229), 1, + ACTIONS(2524), 1, + anon_sym_COMMA, + ACTIONS(2526), 1, + anon_sym_RBRACK, + STATE(1149), 1, + aux_sym_list_repeat1, + [23146] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3160), 1, + anon_sym_COMMA, + ACTIONS(3162), 1, anon_sym_RPAREN, - STATE(1275), 1, - sym__start_column, - [23490] = 4, - ACTIONS(113), 1, + STATE(1150), 1, + aux_sym__bubbleScope_repeat1, + [23159] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(165), 1, - ts_builtin_sym_end, - ACTIONS(3223), 1, - anon_sym_LF, - STATE(1073), 1, - aux_sym_source_file_repeat1, - [23503] = 4, + ACTIONS(1438), 1, + anon_sym_DOT, + ACTIONS(1478), 1, + anon_sym_LBRACK, + ACTIONS(3164), 1, + anon_sym_RBRACK, + [23172] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(2664), 1, + ACTIONS(2702), 1, ts_builtin_sym_end, - ACTIONS(3231), 1, + ACTIONS(3166), 1, anon_sym_LF, - STATE(250), 1, + STATE(247), 1, aux_sym_source_file_repeat1, - [23516] = 4, + [23185] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(493), 1, + anon_sym_RBRACE, + ACTIONS(3168), 1, + anon_sym_COMMA, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [23198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, + sym_name, + ACTIONS(3170), 1, + anon_sym_RBRACE, + STATE(1326), 1, + sym_mapElement, + [23211] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 1, + anon_sym_RBRACE, + ACTIONS(3172), 1, + anon_sym_COMMA, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [23224] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(497), 1, + anon_sym_RBRACE, + ACTIONS(3174), 1, + anon_sym_COMMA, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [23237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(537), 1, + anon_sym_RBRACE, + ACTIONS(3176), 1, + anon_sym_COMMA, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [23250] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(501), 1, + anon_sym_RBRACE, + ACTIONS(3178), 1, + anon_sym_COMMA, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [23263] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(503), 1, + anon_sym_RBRACE, + ACTIONS(3180), 1, + anon_sym_COMMA, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [23276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3182), 1, + anon_sym_COMMA, + ACTIONS(3184), 1, + anon_sym_RBRACE, + STATE(1151), 1, + aux_sym_predicateDefinitionBody_repeat1, + [23289] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(133), 1, + ACTIONS(2688), 1, ts_builtin_sym_end, - ACTIONS(3233), 1, + ACTIONS(3186), 1, anon_sym_LF, - STATE(1090), 1, + STATE(247), 1, aux_sym_source_file_repeat1, - [23529] = 4, - ACTIONS(113), 1, + [23302] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 1, - ts_builtin_sym_end, - ACTIONS(3237), 1, - anon_sym_LF, - STATE(1049), 1, - aux_sym_source_file_repeat1, - [23542] = 4, - ACTIONS(113), 1, + ACTIONS(431), 1, + anon_sym_RPAREN, + ACTIONS(3188), 1, + anon_sym_COMMA, + STATE(1077), 1, + aux_sym_nodeLike_repeat1, + [23315] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2662), 1, - ts_builtin_sym_end, - ACTIONS(3239), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [23555] = 4, + ACTIONS(307), 1, + anon_sym_RBRACK, + ACTIONS(3190), 1, + anon_sym_COMMA, + STATE(1072), 1, + aux_sym_list_repeat1, + [23328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3192), 1, anon_sym_COMMA, - ACTIONS(3243), 1, + ACTIONS(3194), 1, + anon_sym_RPAREN, + STATE(1031), 1, + aux_sym__bubbleScope_repeat1, + [23341] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1001), 1, anon_sym_RBRACE, - STATE(1204), 1, - aux_sym_map_repeat1, - [23568] = 4, - ACTIONS(113), 1, + ACTIONS(3196), 1, + anon_sym_COMMA, + STATE(1101), 1, + aux_sym_predicateDefinitionBody_repeat1, + [23354] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 1, - ts_builtin_sym_end, - ACTIONS(3247), 1, - anon_sym_LF, - STATE(1052), 1, - aux_sym_source_file_repeat1, - [23581] = 4, - ACTIONS(113), 1, + ACTIONS(3198), 1, + anon_sym_COMMA, + ACTIONS(3200), 1, + anon_sym_RBRACE, + STATE(1163), 1, + aux_sym_predicateDefinitionBody_repeat1, + [23367] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, - ts_builtin_sym_end, - ACTIONS(3249), 1, - anon_sym_LF, - STATE(250), 1, - aux_sym_source_file_repeat1, - [23594] = 4, + ACTIONS(3202), 1, + anon_sym_COMMA, + ACTIONS(3204), 1, + anon_sym_RBRACE, + STATE(1165), 1, + aux_sym_predicateDefinitionBody_repeat1, + [23380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(457), 1, + ACTIONS(3206), 1, + anon_sym_COMMA, + ACTIONS(3208), 1, anon_sym_RBRACE, - ACTIONS(3251), 1, + STATE(1167), 1, + aux_sym_predicateDefinitionBody_repeat1, + [23393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3210), 1, anon_sym_COMMA, - STATE(1208), 1, + ACTIONS(3212), 1, + anon_sym_RPAREN, + STATE(1168), 1, + aux_sym_nodeLike_repeat1, + [23406] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1438), 1, + anon_sym_DOT, + ACTIONS(1478), 1, + anon_sym_LBRACK, + ACTIONS(3214), 1, + anon_sym_RBRACK, + [23419] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 1, + anon_sym_RBRACE, + ACTIONS(3216), 1, + anon_sym_COMMA, + STATE(1157), 1, aux_sym_sequential_repeat1, - [23607] = 4, + [23432] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2670), 1, ts_builtin_sym_end, - ACTIONS(3253), 1, + ACTIONS(3219), 1, anon_sym_LF, - STATE(250), 1, + STATE(247), 1, aux_sym_source_file_repeat1, - [23620] = 4, + [23445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 1, - anon_sym_COMMA, - ACTIONS(3257), 1, + ACTIONS(511), 1, anon_sym_RBRACE, - STATE(1135), 1, - aux_sym_predicateDefinitionBody_repeat1, - [23633] = 4, + ACTIONS(3221), 1, + anon_sym_COMMA, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [23458] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(2660), 1, + ACTIONS(2676), 1, ts_builtin_sym_end, - ACTIONS(3259), 1, + ACTIONS(3223), 1, anon_sym_LF, - STATE(250), 1, + STATE(247), 1, aux_sym_source_file_repeat1, - [23646] = 4, + [23471] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(2732), 1, + ACTIONS(2672), 1, ts_builtin_sym_end, - ACTIONS(3261), 1, + ACTIONS(3225), 1, anon_sym_LF, - STATE(250), 1, + STATE(247), 1, aux_sym_source_file_repeat1, - [23659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - anon_sym_COMMA, - ACTIONS(2478), 1, - anon_sym_RBRACK, - STATE(1207), 1, - aux_sym_list_repeat1, - [23672] = 4, + [23484] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(139), 1, + ACTIONS(3227), 1, ts_builtin_sym_end, - ACTIONS(3263), 1, + ACTIONS(3229), 1, anon_sym_LF, - STATE(1059), 1, + STATE(1061), 1, aux_sym_source_file_repeat1, - [23685] = 4, + [23497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 1, - anon_sym_COLON, - ACTIONS(2966), 1, - anon_sym_LBRACK, - ACTIONS(3016), 1, - anon_sym_LPAREN, - [23698] = 4, + ACTIONS(1009), 1, + anon_sym_RBRACE, + ACTIONS(3231), 1, + anon_sym_COMMA, + STATE(1101), 1, + aux_sym_predicateDefinitionBody_repeat1, + [23510] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(2680), 1, ts_builtin_sym_end, - ACTIONS(3267), 1, + ACTIONS(3233), 1, anon_sym_LF, - STATE(1098), 1, + STATE(247), 1, aux_sym_source_file_repeat1, - [23711] = 4, + [23523] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1011), 1, + anon_sym_RBRACE, + ACTIONS(3235), 1, + anon_sym_COMMA, + STATE(1101), 1, + aux_sym_predicateDefinitionBody_repeat1, + [23536] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3237), 1, ts_builtin_sym_end, - ACTIONS(3271), 1, + ACTIONS(3239), 1, anon_sym_LF, - STATE(1110), 1, + STATE(1063), 1, aux_sym_source_file_repeat1, - [23724] = 4, + [23549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3273), 1, + ACTIONS(1021), 1, + anon_sym_RBRACE, + ACTIONS(3241), 1, anon_sym_COMMA, - ACTIONS(3275), 1, - anon_sym_RPAREN, - STATE(1061), 1, - aux_sym__bubbleScope_repeat1, - [23737] = 4, + STATE(1101), 1, + aux_sym_predicateDefinitionBody_repeat1, + [23562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(435), 1, + anon_sym_RPAREN, + ACTIONS(3243), 1, anon_sym_COMMA, - ACTIONS(3279), 1, - anon_sym_RBRACE, - STATE(1130), 1, - aux_sym_predicateDefinitionBody_repeat1, - [23750] = 4, + STATE(1077), 1, + aux_sym_nodeLike_repeat1, + [23575] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(183), 1, + ACTIONS(2698), 1, ts_builtin_sym_end, - ACTIONS(2892), 1, + ACTIONS(3245), 1, anon_sym_LF, - STATE(1104), 1, + STATE(247), 1, aux_sym_source_file_repeat1, - [23763] = 4, + [23588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(3023), 1, sym_name, - ACTIONS(3281), 1, + ACTIONS(3247), 1, anon_sym_RBRACE, - STATE(1236), 1, + STATE(1326), 1, sym_mapElement, - [23776] = 4, + [23601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2750), 1, - anon_sym_end_line, - ACTIONS(3283), 1, + ACTIONS(3249), 1, + anon_sym_COMMA, + ACTIONS(3252), 1, + anon_sym_RBRACE, + STATE(1171), 1, + aux_sym_map_repeat1, + [23614] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(515), 1, + anon_sym_RBRACE, + ACTIONS(3254), 1, + anon_sym_COMMA, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [23627] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2754), 1, + anon_sym_end_column, + ACTIONS(3256), 1, anon_sym_RPAREN, - STATE(1274), 1, - sym__end_line, - [23789] = 4, + STATE(1374), 1, + sym__end_column, + [23640] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2752), 1, + anon_sym_start_column, + ACTIONS(3258), 1, + anon_sym_RPAREN, + STATE(1375), 1, + sym__start_column, + [23653] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2754), 1, anon_sym_end_column, - ACTIONS(3285), 1, + ACTIONS(3260), 1, anon_sym_RPAREN, - STATE(1273), 1, + STATE(1376), 1, sym__end_column, - [23802] = 4, + [23666] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2750), 1, + anon_sym_end_line, + ACTIONS(3262), 1, + anon_sym_RPAREN, + STATE(1377), 1, + sym__end_line, + [23679] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2752), 1, anon_sym_start_column, - ACTIONS(3287), 1, + ACTIONS(3264), 1, anon_sym_RPAREN, - STATE(1271), 1, + STATE(1378), 1, + sym__start_column, + [23692] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2750), 1, + anon_sym_end_line, + ACTIONS(3266), 1, + anon_sym_RPAREN, + STATE(1379), 1, + sym__end_line, + [23705] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(2720), 1, + ts_builtin_sym_end, + ACTIONS(3268), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [23718] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2752), 1, + anon_sym_start_column, + ACTIONS(3270), 1, + anon_sym_RPAREN, + STATE(1381), 1, sym__start_column, - [23815] = 4, + [23731] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2754), 1, anon_sym_end_column, - ACTIONS(3289), 1, + ACTIONS(3272), 1, anon_sym_RPAREN, - STATE(1269), 1, + STATE(1382), 1, sym__end_column, - [23828] = 4, + [23744] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(3291), 1, + ACTIONS(3274), 1, anon_sym_RPAREN, - STATE(1261), 1, + STATE(1383), 1, sym__start_line, - [23841] = 4, + [23757] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2752), 1, anon_sym_start_column, - ACTIONS(3293), 1, + ACTIONS(3276), 1, anon_sym_RPAREN, - STATE(1260), 1, + STATE(1384), 1, sym__start_column, - [23854] = 4, + [23770] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(3295), 1, + ACTIONS(3278), 1, anon_sym_RPAREN, - STATE(1242), 1, + STATE(1385), 1, sym__start_line, - [23867] = 4, + [23783] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2754), 1, anon_sym_end_column, - ACTIONS(3297), 1, + ACTIONS(3280), 1, anon_sym_RPAREN, - STATE(1240), 1, + STATE(1386), 1, sym__end_column, - [23880] = 4, + [23796] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, anon_sym_end_line, - ACTIONS(3299), 1, + ACTIONS(3282), 1, anon_sym_RPAREN, - STATE(1239), 1, + STATE(1387), 1, sym__end_line, - [23893] = 4, + [23809] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2754), 1, anon_sym_end_column, - ACTIONS(3301), 1, + ACTIONS(3284), 1, anon_sym_RPAREN, - STATE(1238), 1, + STATE(1388), 1, sym__end_column, - [23906] = 4, + [23822] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(3303), 1, + ACTIONS(3286), 1, anon_sym_RPAREN, - STATE(1237), 1, + STATE(1389), 1, sym__start_line, - [23919] = 4, + [23835] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, anon_sym_end_line, - ACTIONS(3305), 1, + ACTIONS(3288), 1, anon_sym_RPAREN, - STATE(1235), 1, + STATE(1390), 1, sym__end_line, - [23932] = 4, + [23848] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(3307), 1, + ACTIONS(3290), 1, anon_sym_RPAREN, - STATE(1234), 1, + STATE(1391), 1, sym__start_line, - [23945] = 4, + [23861] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2752), 1, anon_sym_start_column, - ACTIONS(3309), 1, + ACTIONS(3292), 1, anon_sym_RPAREN, - STATE(1233), 1, + STATE(1392), 1, sym__start_column, - [23958] = 4, + [23874] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, anon_sym_end_line, - ACTIONS(3311), 1, + ACTIONS(3294), 1, anon_sym_RPAREN, - STATE(1232), 1, + STATE(1393), 1, sym__end_line, - [23971] = 4, + [23887] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2752), 1, anon_sym_start_column, - ACTIONS(3313), 1, + ACTIONS(3296), 1, anon_sym_RPAREN, - STATE(1230), 1, + STATE(1394), 1, sym__start_column, - [23984] = 4, + [23900] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(3315), 1, + ACTIONS(3298), 1, anon_sym_RPAREN, - STATE(1229), 1, + STATE(1395), 1, sym__start_line, - [23997] = 4, + [23913] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, anon_sym_end_line, - ACTIONS(3317), 1, + ACTIONS(3300), 1, anon_sym_RPAREN, - STATE(1228), 1, + STATE(1396), 1, sym__end_line, - [24010] = 4, + [23926] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, anon_sym_start_line, - ACTIONS(3319), 1, + ACTIONS(3302), 1, anon_sym_RPAREN, - STATE(1227), 1, + STATE(1397), 1, sym__start_line, - [24023] = 4, + [23939] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(2716), 1, + ts_builtin_sym_end, + ACTIONS(3304), 1, + anon_sym_LF, + STATE(247), 1, + aux_sym_source_file_repeat1, + [23952] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(3306), 1, + ts_builtin_sym_end, + ACTIONS(3308), 1, + anon_sym_LF, + STATE(1067), 1, + aux_sym_source_file_repeat1, + [23965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(1029), 1, anon_sym_RBRACE, - ACTIONS(3321), 1, + ACTIONS(3310), 1, anon_sym_COMMA, - STATE(1025), 1, - aux_sym_map_repeat1, - [24036] = 4, + STATE(1101), 1, + aux_sym_predicateDefinitionBody_repeat1, + [23978] = 4, ACTIONS(113), 1, sym_comment, - ACTIONS(2684), 1, + ACTIONS(133), 1, ts_builtin_sym_end, - ACTIONS(3323), 1, + ACTIONS(3312), 1, anon_sym_LF, - STATE(250), 1, + STATE(1091), 1, aux_sym_source_file_repeat1, - [24049] = 4, + [23991] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1472), 1, + anon_sym_DOT, + ACTIONS(1484), 1, + anon_sym_LBRACK, + ACTIONS(3314), 1, + anon_sym_EQ, + [24004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3316), 1, anon_sym_COMMA, - ACTIONS(3327), 1, + ACTIONS(3318), 1, anon_sym_RBRACE, - STATE(1133), 1, + STATE(1103), 1, aux_sym_predicateDefinitionBody_repeat1, - [24062] = 4, + [24017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(301), 1, - anon_sym_RBRACK, - ACTIONS(3329), 1, + ACTIONS(531), 1, + anon_sym_RBRACE, + ACTIONS(3320), 1, anon_sym_COMMA, - STATE(1088), 1, - aux_sym_list_repeat1, - [24075] = 4, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [24030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2588), 1, + ACTIONS(3322), 1, + anon_sym_COMMA, + ACTIONS(3324), 1, + anon_sym_RBRACE, + STATE(1104), 1, + aux_sym_predicateDefinitionBody_repeat1, + [24043] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(3023), 1, + sym_name, + STATE(1060), 1, + sym_mapElement, + [24056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3326), 1, + anon_sym_COMMA, + ACTIONS(3328), 1, anon_sym_RBRACE, - ACTIONS(3331), 1, + STATE(1106), 1, + aux_sym_predicateDefinitionBody_repeat1, + [24069] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3330), 1, anon_sym_COMMA, - STATE(1208), 1, - aux_sym_sequential_repeat1, - [24088] = 4, + ACTIONS(3332), 1, + anon_sym_RPAREN, + STATE(1069), 1, + aux_sym__bubbleScope_repeat1, + [24082] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(527), 1, + anon_sym_RBRACE, ACTIONS(3334), 1, anon_sym_COMMA, + STATE(1157), 1, + aux_sym_sequential_repeat1, + [24095] = 4, + ACTIONS(113), 1, + sym_comment, + ACTIONS(151), 1, + ts_builtin_sym_end, ACTIONS(3336), 1, - anon_sym_RBRACE, - STATE(1131), 1, - aux_sym_predicateDefinitionBody_repeat1, - [24101] = 3, + anon_sym_LF, + STATE(1087), 1, + aux_sym_source_file_repeat1, + [24108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3338), 2, + sym_variable, + sym_stringConstant, + [24116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 1, + ACTIONS(3078), 2, anon_sym_COMMA, - ACTIONS(3340), 1, + anon_sym_RBRACE, + [24124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3088), 1, anon_sym_RPAREN, - [24111] = 3, + ACTIONS(3340), 1, + sym_variable, + [24134] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(1212), 1, + anon_sym_LBRACE, ACTIONS(3342), 1, + anon_sym_SEMI, + [24144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3344), 2, anon_sym_COMMA, - ACTIONS(3344), 1, anon_sym_RPAREN, - [24121] = 3, + [24152] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3346), 1, - anon_sym_COMMA, - ACTIONS(3348), 1, + anon_sym_LBRACE, + STATE(284), 1, + sym_predicateDefinitionBody, + [24162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2927), 1, anon_sym_RPAREN, - [24131] = 3, + ACTIONS(3340), 1, + sym_variable, + [24172] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3348), 1, + anon_sym_RPAREN, ACTIONS(3350), 1, + sym_variable, + [24182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3352), 2, anon_sym_COMMA, - ACTIONS(3352), 1, anon_sym_RPAREN, - [24141] = 3, + [24190] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3354), 1, - anon_sym_LBRACE, + sym_name, ACTIONS(3356), 1, - anon_sym_LPAREN, - [24151] = 3, + sym_variable, + [24200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 1, - anon_sym_LBRACK, ACTIONS(3358), 1, - anon_sym_LPAREN, - [24161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3360), 1, anon_sym_COMMA, - ACTIONS(3362), 1, + ACTIONS(3360), 1, anon_sym_RPAREN, - [24171] = 3, + [24210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 1, - anon_sym_LPAREN, - ACTIONS(2966), 1, - anon_sym_LBRACK, - [24181] = 3, + ACTIONS(2989), 1, + anon_sym_RPAREN, + ACTIONS(3340), 1, + sym_variable, + [24220] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3362), 1, + anon_sym_COMMA, ACTIONS(3364), 1, + anon_sym_RPAREN, + [24230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(3366), 1, - anon_sym_LPAREN, - [24191] = 3, + STATE(263), 1, + sym_patternDefinitionBody, + [24240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 1, - anon_sym_LBRACK, - ACTIONS(3016), 1, - anon_sym_LPAREN, - [24201] = 3, + ACTIONS(2901), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [24248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3114), 1, + anon_sym_RPAREN, + ACTIONS(3340), 1, + sym_variable, + [24258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3340), 1, + sym_variable, + ACTIONS(3366), 1, + anon_sym_RPAREN, + [24268] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3368), 1, - anon_sym_COMMA, + anon_sym_LPAREN, ACTIONS(3370), 1, - anon_sym_RPAREN, - [24211] = 3, + anon_sym_LBRACK, + [24278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2832), 1, + anon_sym_LBRACE, + STATE(267), 1, + sym_patternDefinitionBody, + [24288] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3340), 1, + sym_variable, ACTIONS(3372), 1, - anon_sym_COMMA, - ACTIONS(3374), 1, anon_sym_RPAREN, - [24221] = 3, + [24298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2832), 1, + anon_sym_LBRACE, + STATE(289), 1, + sym_patternDefinitionBody, + [24308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2548), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [24316] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3374), 1, + anon_sym_COMMA, ACTIONS(3376), 1, anon_sym_RPAREN, - ACTIONS(3378), 1, - sym_variable, - [24231] = 3, + [24326] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3378), 1, + anon_sym_COMMA, ACTIONS(3380), 1, anon_sym_RPAREN, - ACTIONS(3382), 1, - sym_variable, - [24241] = 3, + [24336] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3382), 1, + anon_sym_COMMA, ACTIONS(3384), 1, anon_sym_RPAREN, - ACTIONS(3386), 1, - sym_variable, - [24251] = 2, + [24346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3388), 2, - sym_variable, - sym_stringConstant, - [24259] = 3, + ACTIONS(3386), 1, + anon_sym_COMMA, + ACTIONS(3388), 1, + anon_sym_RPAREN, + [24356] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3390), 1, anon_sym_COMMA, ACTIONS(3392), 1, anon_sym_RPAREN, - [24269] = 3, + [24366] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3394), 1, anon_sym_COMMA, ACTIONS(3396), 1, anon_sym_RPAREN, - [24279] = 3, + [24376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3346), 1, + anon_sym_LBRACE, + STATE(269), 1, + sym_predicateDefinitionBody, + [24386] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3398), 1, - anon_sym_COMMA, - ACTIONS(3400), 1, anon_sym_RPAREN, - [24289] = 3, + ACTIONS(3400), 1, + sym_variable, + [24396] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3402), 1, - anon_sym_COMMA, + sym_name, ACTIONS(3404), 1, - anon_sym_RPAREN, - [24299] = 3, + sym_variable, + [24406] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3340), 1, + sym_variable, ACTIONS(3406), 1, - anon_sym_COMMA, - ACTIONS(3408), 1, anon_sym_RPAREN, - [24309] = 3, + [24416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, + STATE(280), 1, + sym_patternDefinitionBody, + [24426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3408), 1, + anon_sym_RPAREN, ACTIONS(3410), 1, - anon_sym_SEMI, - [24319] = 3, + sym_variable, + [24436] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3412), 1, anon_sym_COMMA, ACTIONS(3414), 1, anon_sym_RPAREN, - [24329] = 3, + [24446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2832), 1, + anon_sym_LBRACE, + STATE(292), 1, + sym_patternDefinitionBody, + [24456] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3416), 1, anon_sym_COMMA, ACTIONS(3418), 1, anon_sym_RPAREN, - [24339] = 3, + [24466] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3420), 1, - anon_sym_COMMA, + anon_sym_LBRACE, + STATE(273), 1, + sym_foreignFunctionBody, + [24476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3340), 1, + sym_variable, ACTIONS(3422), 1, anon_sym_RPAREN, - [24349] = 3, + [24486] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3424), 1, anon_sym_COMMA, ACTIONS(3426), 1, anon_sym_RPAREN, - [24359] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2885), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [24367] = 3, + [24496] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3428), 1, anon_sym_COMMA, ACTIONS(3430), 1, anon_sym_RPAREN, - [24377] = 3, + [24506] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3432), 1, anon_sym_COMMA, ACTIONS(3434), 1, anon_sym_RPAREN, - [24387] = 3, + [24516] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3436), 1, anon_sym_COMMA, ACTIONS(3438), 1, anon_sym_RPAREN, - [24397] = 3, + [24526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2941), 1, + anon_sym_RPAREN, + ACTIONS(3340), 1, + sym_variable, + [24536] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3440), 1, anon_sym_COMMA, ACTIONS(3442), 1, anon_sym_RPAREN, - [24407] = 3, + [24546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_RPAREN, ACTIONS(3444), 1, - sym_variable, - [24417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3448), 1, + ACTIONS(3446), 1, anon_sym_RPAREN, - [24427] = 2, + [24556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [24435] = 3, + ACTIONS(3346), 1, + anon_sym_LBRACE, + STATE(297), 1, + sym_predicateDefinitionBody, + [24566] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3448), 1, + anon_sym_COMMA, ACTIONS(3450), 1, anon_sym_RPAREN, - ACTIONS(3452), 1, - sym_variable, - [24445] = 3, + [24576] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3452), 1, + anon_sym_COMMA, ACTIONS(3454), 1, - anon_sym_LBRACE, - STATE(261), 1, - sym_predicateDefinitionBody, - [24455] = 3, + anon_sym_RPAREN, + [24586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, - anon_sym_LBRACE, ACTIONS(3456), 1, - anon_sym_LPAREN, - [24465] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3458), 2, anon_sym_COMMA, + ACTIONS(3458), 1, anon_sym_RPAREN, - [24473] = 2, + [24596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [24481] = 3, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(3460), 1, + anon_sym_LPAREN, + [24606] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3462), 1, anon_sym_COMMA, ACTIONS(3464), 1, anon_sym_RPAREN, - [24491] = 3, + [24616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 1, + ACTIONS(3017), 2, anon_sym_COMMA, - ACTIONS(3468), 1, anon_sym_RPAREN, - [24501] = 2, + [24624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 2, + ACTIONS(3466), 1, anon_sym_COMMA, + ACTIONS(3468), 1, anon_sym_RPAREN, - [24509] = 2, + [24634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3346), 1, + anon_sym_LBRACE, + STATE(256), 1, + sym_predicateDefinitionBody, + [24644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3420), 1, + anon_sym_LBRACE, + STATE(287), 1, + sym_foreignFunctionBody, + [24654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 2, + ACTIONS(3470), 1, anon_sym_COMMA, + ACTIONS(3472), 1, anon_sym_RPAREN, - [24517] = 2, + [24664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3474), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [24525] = 2, + anon_sym_RBRACK, + [24672] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3476), 2, anon_sym_COMMA, anon_sym_RPAREN, - [24533] = 3, + [24680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(3478), 2, anon_sym_COMMA, - ACTIONS(3480), 1, anon_sym_RPAREN, - [24543] = 3, + [24688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3482), 1, + ACTIONS(3480), 1, anon_sym_COMMA, - ACTIONS(3484), 1, + ACTIONS(3482), 1, anon_sym_RPAREN, - [24553] = 3, + [24698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3486), 1, + ACTIONS(3420), 1, + anon_sym_LBRACE, + STATE(295), 1, + sym_foreignFunctionBody, + [24708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3484), 1, anon_sym_COMMA, + ACTIONS(3486), 1, + anon_sym_RPAREN, + [24718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3340), 1, + sym_variable, ACTIONS(3488), 1, anon_sym_RPAREN, - [24563] = 3, + [24728] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3490), 1, anon_sym_COMMA, ACTIONS(3492), 1, anon_sym_RPAREN, - [24573] = 3, + [24738] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3494), 1, anon_sym_COMMA, ACTIONS(3496), 1, anon_sym_RPAREN, - [24583] = 3, + [24748] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3498), 1, - anon_sym_COMMA, - ACTIONS(3500), 1, anon_sym_RPAREN, - [24593] = 3, + ACTIONS(3500), 1, + sym_variable, + [24758] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3502), 1, anon_sym_COMMA, ACTIONS(3504), 1, anon_sym_RPAREN, - [24603] = 3, + [24768] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3506), 1, anon_sym_COMMA, ACTIONS(3508), 1, anon_sym_RPAREN, - [24613] = 3, + [24778] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3510), 1, anon_sym_COMMA, ACTIONS(3512), 1, anon_sym_RPAREN, - [24623] = 3, + [24788] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3514), 1, anon_sym_COMMA, ACTIONS(3516), 1, anon_sym_RPAREN, - [24633] = 3, + [24798] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3518), 1, anon_sym_COMMA, ACTIONS(3520), 1, anon_sym_RPAREN, - [24643] = 3, + [24808] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3522), 1, anon_sym_COMMA, ACTIONS(3524), 1, anon_sym_RPAREN, - [24653] = 3, + [24818] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3526), 1, - anon_sym_COMMA, + anon_sym_LBRACE, ACTIONS(3528), 1, - anon_sym_RPAREN, - [24663] = 3, + anon_sym_LPAREN, + [24828] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3530), 1, anon_sym_COMMA, ACTIONS(3532), 1, anon_sym_RPAREN, - [24673] = 3, + [24838] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3534), 1, anon_sym_COMMA, ACTIONS(3536), 1, anon_sym_RPAREN, - [24683] = 3, + [24848] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3538), 1, anon_sym_COMMA, ACTIONS(3540), 1, anon_sym_RPAREN, - [24693] = 3, + [24858] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3542), 1, anon_sym_COMMA, ACTIONS(3544), 1, anon_sym_RPAREN, - [24703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 1, - anon_sym_RPAREN, - ACTIONS(3444), 1, - sym_variable, - [24713] = 3, + [24868] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3546), 1, anon_sym_COMMA, ACTIONS(3548), 1, anon_sym_RPAREN, - [24723] = 3, + [24878] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3550), 1, anon_sym_COMMA, ACTIONS(3552), 1, anon_sym_RPAREN, - [24733] = 3, + [24888] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3554), 1, anon_sym_COMMA, ACTIONS(3556), 1, anon_sym_RPAREN, - [24743] = 3, + [24898] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3558), 1, anon_sym_COMMA, ACTIONS(3560), 1, anon_sym_RPAREN, - [24753] = 3, + [24908] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3562), 1, anon_sym_COMMA, ACTIONS(3564), 1, anon_sym_RPAREN, - [24763] = 3, + [24918] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3566), 1, anon_sym_COMMA, ACTIONS(3568), 1, anon_sym_RPAREN, - [24773] = 3, + [24928] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3570), 1, anon_sym_COMMA, ACTIONS(3572), 1, anon_sym_RPAREN, - [24783] = 3, + [24938] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3574), 1, anon_sym_COMMA, ACTIONS(3576), 1, anon_sym_RPAREN, - [24793] = 3, + [24948] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3578), 1, anon_sym_COMMA, ACTIONS(3580), 1, anon_sym_RPAREN, - [24803] = 3, + [24958] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3582), 1, anon_sym_COMMA, ACTIONS(3584), 1, anon_sym_RPAREN, - [24813] = 3, + [24968] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3586), 1, anon_sym_COMMA, ACTIONS(3588), 1, anon_sym_RPAREN, - [24823] = 3, + [24978] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3590), 1, anon_sym_COMMA, ACTIONS(3592), 1, anon_sym_RPAREN, - [24833] = 3, + [24988] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3594), 1, anon_sym_COMMA, ACTIONS(3596), 1, anon_sym_RPAREN, - [24843] = 3, + [24998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, + ACTIONS(3194), 1, anon_sym_RPAREN, - ACTIONS(3600), 1, + ACTIONS(3340), 1, sym_variable, - [24853] = 3, + [25008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3598), 1, + anon_sym_COMMA, + ACTIONS(3600), 1, anon_sym_RPAREN, + [25018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3602), 1, + anon_sym_COMMA, ACTIONS(3604), 1, - sym_variable, - [24863] = 3, + anon_sym_RPAREN, + [25028] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3606), 1, anon_sym_COMMA, ACTIONS(3608), 1, anon_sym_RPAREN, - [24873] = 3, + [25038] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3610), 1, anon_sym_COMMA, ACTIONS(3612), 1, anon_sym_RPAREN, - [24883] = 3, + [25048] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3614), 1, anon_sym_COMMA, ACTIONS(3616), 1, anon_sym_RPAREN, - [24893] = 3, + [25058] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3618), 1, anon_sym_COMMA, ACTIONS(3620), 1, anon_sym_RPAREN, - [24903] = 3, + [25068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2832), 1, + anon_sym_LBRACE, + STATE(277), 1, + sym_patternDefinitionBody, + [25078] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3622), 1, - sym_name, + anon_sym_COMMA, ACTIONS(3624), 1, - sym_variable, - [24913] = 3, + anon_sym_RPAREN, + [25088] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3626), 1, anon_sym_COMMA, ACTIONS(3628), 1, anon_sym_RPAREN, - [24923] = 3, + [25098] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3630), 1, - sym_name, + anon_sym_COMMA, ACTIONS(3632), 1, - sym_variable, - [24933] = 3, + anon_sym_RPAREN, + [25108] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3634), 1, anon_sym_COMMA, ACTIONS(3636), 1, anon_sym_RPAREN, - [24943] = 3, + [25118] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3638), 1, anon_sym_COMMA, ACTIONS(3640), 1, anon_sym_RPAREN, - [24953] = 3, + [25128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, + sym_name, + STATE(1326), 1, + sym_mapElement, + [25138] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3642), 1, - anon_sym_COMMA, - ACTIONS(3644), 1, anon_sym_RPAREN, - [24963] = 3, + ACTIONS(3644), 1, + sym_variable, + [25148] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3646), 1, - anon_sym_COMMA, - ACTIONS(3648), 1, anon_sym_RPAREN, - [24973] = 3, + ACTIONS(3648), 1, + sym_variable, + [25158] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3650), 1, anon_sym_COMMA, ACTIONS(3652), 1, anon_sym_RPAREN, - [24983] = 3, + [25168] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3654), 1, - anon_sym_COMMA, + anon_sym_LBRACE, ACTIONS(3656), 1, - anon_sym_RPAREN, - [24993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2878), 1, - sym_name, - STATE(1236), 1, - sym_mapElement, - [25003] = 3, + anon_sym_LPAREN, + [25178] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3658), 1, anon_sym_COMMA, ACTIONS(3660), 1, anon_sym_RPAREN, - [25013] = 3, + [25188] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3340), 1, + sym_variable, ACTIONS(3662), 1, + anon_sym_RPAREN, + [25198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3664), 2, anon_sym_COMMA, - ACTIONS(3664), 1, anon_sym_RPAREN, - [25023] = 3, + [25206] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3666), 1, anon_sym_COMMA, ACTIONS(3668), 1, anon_sym_RPAREN, - [25033] = 3, + [25216] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3670), 1, anon_sym_COMMA, ACTIONS(3672), 1, anon_sym_RPAREN, - [25043] = 3, + [25226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, + ACTIONS(3674), 2, anon_sym_COMMA, - ACTIONS(3676), 1, anon_sym_RPAREN, - [25053] = 3, + [25234] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3676), 1, + anon_sym_COMMA, ACTIONS(3678), 1, + anon_sym_RPAREN, + [25244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3680), 2, anon_sym_COMMA, - ACTIONS(3680), 1, anon_sym_RPAREN, - [25063] = 3, + [25260] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3682), 1, anon_sym_COMMA, ACTIONS(3684), 1, anon_sym_RPAREN, - [25073] = 3, + [25270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym_predicateDefinitionBody, - [25083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3686), 1, + ACTIONS(3686), 2, anon_sym_COMMA, - ACTIONS(3688), 1, anon_sym_RPAREN, - [25093] = 3, + [25278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3688), 1, anon_sym_COMMA, - ACTIONS(3692), 1, + ACTIONS(3690), 1, anon_sym_RPAREN, - [25103] = 3, + [25288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 1, - sym_variable, + ACTIONS(3692), 1, + anon_sym_COMMA, ACTIONS(3694), 1, anon_sym_RPAREN, - [25113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, - anon_sym_LBRACE, - STATE(257), 1, - sym_predicateDefinitionBody, - [25123] = 3, + [25298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 1, - sym_variable, ACTIONS(3696), 1, - anon_sym_RPAREN, - [25133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, - STATE(259), 1, - sym_patternDefinitionBody, - [25143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3444), 1, - sym_variable, + anon_sym_COMMA, ACTIONS(3698), 1, anon_sym_RPAREN, - [25153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 1, - anon_sym_RPAREN, - ACTIONS(3444), 1, - sym_variable, - [25163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, - STATE(272), 1, - sym_patternDefinitionBody, - [25173] = 3, + [25308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 1, - sym_variable, ACTIONS(3700), 1, - anon_sym_RPAREN, - [25183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, - STATE(264), 1, - sym_patternDefinitionBody, - [25193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3702), 1, anon_sym_COMMA, - ACTIONS(3704), 1, + ACTIONS(3702), 1, anon_sym_RPAREN, - [25203] = 3, + [25318] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3704), 1, + anon_sym_COMMA, ACTIONS(3706), 1, - anon_sym_LBRACE, - STATE(270), 1, - sym_foreignFunctionBody, - [25213] = 3, + anon_sym_RPAREN, + [25328] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3708), 1, anon_sym_COMMA, ACTIONS(3710), 1, anon_sym_RPAREN, - [25223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3126), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [25231] = 3, + [25338] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3712), 1, anon_sym_COMMA, ACTIONS(3714), 1, anon_sym_RPAREN, - [25241] = 3, + [25348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 1, - sym_variable, ACTIONS(3716), 1, - anon_sym_RPAREN, - [25251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3718), 1, anon_sym_COMMA, - ACTIONS(3720), 1, + ACTIONS(3718), 1, anon_sym_RPAREN, - [25261] = 3, + [25358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3720), 1, anon_sym_COMMA, - ACTIONS(3724), 1, + ACTIONS(3722), 1, anon_sym_RPAREN, - [25271] = 3, + [25368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3724), 1, anon_sym_COMMA, - ACTIONS(3728), 1, + ACTIONS(3726), 1, anon_sym_RPAREN, - [25281] = 3, + [25378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3728), 1, anon_sym_COMMA, - ACTIONS(3732), 1, + ACTIONS(3730), 1, anon_sym_RPAREN, - [25291] = 2, + [25388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(3732), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [25299] = 3, + ACTIONS(3734), 1, + anon_sym_RPAREN, + [25398] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3736), 1, anon_sym_COMMA, ACTIONS(3738), 1, anon_sym_RPAREN, - [25309] = 3, + [25408] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3740), 1, anon_sym_COMMA, ACTIONS(3742), 1, anon_sym_RPAREN, - [25319] = 3, + [25418] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3744), 1, anon_sym_COMMA, ACTIONS(3746), 1, anon_sym_RPAREN, - [25329] = 3, + [25428] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3748), 1, anon_sym_COMMA, ACTIONS(3750), 1, anon_sym_RPAREN, - [25339] = 3, + [25438] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3752), 1, anon_sym_COMMA, ACTIONS(3754), 1, anon_sym_RPAREN, - [25349] = 3, + [25448] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3756), 1, anon_sym_COMMA, ACTIONS(3758), 1, anon_sym_RPAREN, - [25359] = 3, + [25458] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3760), 1, anon_sym_COMMA, ACTIONS(3762), 1, anon_sym_RPAREN, - [25369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, - STATE(278), 1, - sym_patternDefinitionBody, - [25379] = 3, + [25468] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3764), 1, anon_sym_COMMA, ACTIONS(3766), 1, anon_sym_RPAREN, - [25389] = 3, + [25478] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3768), 1, anon_sym_COMMA, ACTIONS(3770), 1, anon_sym_RPAREN, - [25399] = 2, + [25488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 2, + ACTIONS(3772), 1, anon_sym_COMMA, + ACTIONS(3774), 1, anon_sym_RPAREN, - [25407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3022), 1, - anon_sym_RPAREN, - ACTIONS(3444), 1, - sym_variable, - [25417] = 3, + [25498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 1, - anon_sym_COMMA, ACTIONS(3776), 1, + anon_sym_COMMA, + ACTIONS(3778), 1, anon_sym_RPAREN, - [25427] = 3, + [25508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, - anon_sym_COMMA, ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3782), 1, anon_sym_RPAREN, - [25437] = 3, + [25518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 1, - anon_sym_COMMA, ACTIONS(3784), 1, + anon_sym_COMMA, + ACTIONS(3786), 1, anon_sym_RPAREN, - [25447] = 2, + [25528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3786), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [25455] = 3, + ACTIONS(3420), 1, + anon_sym_LBRACE, + STATE(258), 1, + sym_foreignFunctionBody, + [25538] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3788), 1, anon_sym_COMMA, ACTIONS(3790), 1, anon_sym_RPAREN, - [25465] = 3, + [25548] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3792), 1, anon_sym_COMMA, ACTIONS(3794), 1, anon_sym_RPAREN, - [25475] = 3, + [25558] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3796), 1, anon_sym_COMMA, ACTIONS(3798), 1, anon_sym_RPAREN, - [25485] = 3, + [25568] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3800), 1, - anon_sym_COMMA, - ACTIONS(3802), 1, anon_sym_RPAREN, - [25495] = 3, + ACTIONS(3802), 1, + sym_variable, + [25578] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3804), 1, anon_sym_COMMA, ACTIONS(3806), 1, anon_sym_RPAREN, - [25505] = 3, + [25588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2959), 1, + anon_sym_RPAREN, + ACTIONS(3340), 1, + sym_variable, + [25598] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3808), 1, anon_sym_COMMA, ACTIONS(3810), 1, anon_sym_RPAREN, - [25515] = 3, + [25608] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3812), 1, anon_sym_COMMA, ACTIONS(3814), 1, anon_sym_RPAREN, - [25525] = 3, + [25618] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3816), 1, anon_sym_COMMA, ACTIONS(3818), 1, anon_sym_RPAREN, - [25535] = 3, + [25628] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3820), 1, anon_sym_COMMA, ACTIONS(3822), 1, anon_sym_RPAREN, - [25545] = 3, + [25638] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3824), 1, anon_sym_COMMA, ACTIONS(3826), 1, anon_sym_RPAREN, - [25555] = 3, + [25648] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3828), 1, anon_sym_COMMA, ACTIONS(3830), 1, anon_sym_RPAREN, - [25565] = 3, + [25658] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3832), 1, anon_sym_COMMA, ACTIONS(3834), 1, anon_sym_RPAREN, - [25575] = 3, + [25668] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3836), 1, anon_sym_COMMA, ACTIONS(3838), 1, anon_sym_RPAREN, - [25585] = 3, + [25678] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3840), 1, anon_sym_COMMA, ACTIONS(3842), 1, anon_sym_RPAREN, - [25595] = 3, + [25688] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(3340), 1, + sym_variable, ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(3846), 1, - anon_sym_RPAREN, - [25605] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3848), 1, - anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_RPAREN, - [25615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3852), 1, - anon_sym_COMMA, - ACTIONS(3854), 1, anon_sym_RPAREN, - [25625] = 3, + [25698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - anon_sym_COMMA, - ACTIONS(3858), 1, - anon_sym_RPAREN, - [25635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3860), 1, - anon_sym_COMMA, - ACTIONS(3862), 1, - anon_sym_RPAREN, - [25645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3864), 1, - anon_sym_COMMA, - ACTIONS(3866), 1, - anon_sym_RPAREN, - [25655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3868), 1, - anon_sym_COMMA, - ACTIONS(3870), 1, - anon_sym_RPAREN, - [25665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3872), 1, + ACTIONS(3846), 1, anon_sym_COMMA, - ACTIONS(3874), 1, - anon_sym_RPAREN, - [25675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2986), 1, - anon_sym_RPAREN, - ACTIONS(3444), 1, - sym_variable, - [25685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2974), 1, + ACTIONS(3848), 1, anon_sym_RPAREN, - ACTIONS(3444), 1, - sym_variable, - [25695] = 3, + [25708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, + ACTIONS(3850), 1, anon_sym_COMMA, - ACTIONS(3878), 1, + ACTIONS(3852), 1, anon_sym_RPAREN, - [25705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, - anon_sym_LBRACE, - STATE(279), 1, - sym_predicateDefinitionBody, - [25715] = 3, + [25718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(3856), 1, anon_sym_RPAREN, - ACTIONS(3882), 1, - sym_variable, - [25725] = 3, + [25728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 1, + ACTIONS(3858), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3860), 1, anon_sym_RPAREN, - [25735] = 3, + [25738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 1, + ACTIONS(3862), 1, anon_sym_COMMA, - ACTIONS(3890), 1, + ACTIONS(3864), 1, anon_sym_RPAREN, - [25745] = 3, + [25748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, + ACTIONS(3866), 1, anon_sym_COMMA, - ACTIONS(3894), 1, + ACTIONS(3868), 1, anon_sym_RPAREN, - [25755] = 3, + [25758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, + ACTIONS(3870), 1, anon_sym_COMMA, - ACTIONS(3898), 1, + ACTIONS(3872), 1, anon_sym_RPAREN, - [25765] = 3, + [25768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3900), 1, + ACTIONS(3874), 1, anon_sym_COMMA, - ACTIONS(3902), 1, + ACTIONS(3876), 1, anon_sym_RPAREN, - [25775] = 3, + [25778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 1, + ACTIONS(3878), 1, anon_sym_COMMA, - ACTIONS(3906), 1, + ACTIONS(3880), 1, anon_sym_RPAREN, - [25785] = 3, + [25788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_LBRACE, - STATE(286), 1, - sym_foreignFunctionBody, - [25795] = 3, + ACTIONS(3882), 1, + anon_sym_COMMA, + ACTIONS(3884), 1, + anon_sym_RPAREN, + [25798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(3886), 1, anon_sym_COMMA, - ACTIONS(3910), 1, + ACTIONS(3888), 1, anon_sym_RPAREN, - [25805] = 3, + [25808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3912), 1, + ACTIONS(3890), 1, anon_sym_COMMA, - ACTIONS(3914), 1, + ACTIONS(3892), 1, anon_sym_RPAREN, - [25815] = 3, + [25818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, + ACTIONS(3894), 1, + anon_sym_COMMA, + ACTIONS(3896), 1, anon_sym_RPAREN, - ACTIONS(3444), 1, - sym_variable, - [25825] = 3, + [25828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3916), 1, + ACTIONS(3898), 1, anon_sym_COMMA, - ACTIONS(3918), 1, + ACTIONS(3900), 1, anon_sym_RPAREN, - [25835] = 3, + [25838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3920), 1, + ACTIONS(3902), 1, anon_sym_COMMA, - ACTIONS(3922), 1, + ACTIONS(3904), 1, anon_sym_RPAREN, - [25845] = 3, + [25848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3924), 1, + ACTIONS(3906), 1, anon_sym_COMMA, - ACTIONS(3926), 1, + ACTIONS(3908), 1, anon_sym_RPAREN, - [25855] = 3, + [25858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3928), 1, + ACTIONS(3910), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3912), 1, anon_sym_RPAREN, - [25865] = 3, + [25868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, + ACTIONS(3914), 1, anon_sym_COMMA, - ACTIONS(3934), 1, + ACTIONS(3916), 1, anon_sym_RPAREN, - [25875] = 3, + [25878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3918), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3920), 1, anon_sym_RPAREN, - [25885] = 3, + [25888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, + ACTIONS(3922), 1, anon_sym_COMMA, - ACTIONS(3942), 1, + ACTIONS(3924), 1, anon_sym_RPAREN, - [25895] = 3, + [25898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_patternDefinitionBody, - [25905] = 3, + ACTIONS(3926), 1, + anon_sym_COMMA, + ACTIONS(3928), 1, + anon_sym_RPAREN, + [25908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3944), 1, + ACTIONS(3930), 1, anon_sym_COMMA, - ACTIONS(3946), 1, + ACTIONS(3932), 1, anon_sym_RPAREN, - [25915] = 3, + [25918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3948), 1, + ACTIONS(3934), 1, anon_sym_COMMA, - ACTIONS(3950), 1, + ACTIONS(3936), 1, anon_sym_RPAREN, - [25925] = 3, + [25928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_LBRACE, - STATE(294), 1, - sym_foreignFunctionBody, - [25935] = 3, + ACTIONS(3938), 1, + anon_sym_COMMA, + ACTIONS(3940), 1, + anon_sym_RPAREN, + [25938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 1, - sym_variable, - ACTIONS(3952), 1, + ACTIONS(3942), 1, + anon_sym_COMMA, + ACTIONS(3944), 1, anon_sym_RPAREN, - [25945] = 3, + [25948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, - STATE(273), 1, - sym_patternDefinitionBody, - [25955] = 2, + ACTIONS(3946), 1, + anon_sym_COMMA, + ACTIONS(3948), 1, + anon_sym_RPAREN, + [25958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 2, + ACTIONS(3950), 1, anon_sym_COMMA, + ACTIONS(3952), 1, anon_sym_RPAREN, - [25963] = 3, + [25968] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3954), 1, anon_sym_COMMA, ACTIONS(3956), 1, anon_sym_RPAREN, - [25973] = 3, + [25978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, - STATE(285), 1, - sym_patternDefinitionBody, - [25983] = 3, + ACTIONS(2888), 1, + anon_sym_LBRACK, + ACTIONS(2991), 1, + anon_sym_LPAREN, + [25988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 1, - sym_variable, ACTIONS(3958), 1, + anon_sym_COMMA, + ACTIONS(3960), 1, anon_sym_RPAREN, - [25993] = 3, + [25998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COMMA, - ACTIONS(3962), 1, - anon_sym_RPAREN, - [26003] = 3, + ACTIONS(2832), 1, + anon_sym_LBRACE, + STATE(296), 1, + sym_patternDefinitionBody, + [26008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(3962), 1, anon_sym_COMMA, - ACTIONS(3966), 1, + ACTIONS(3964), 1, anon_sym_RPAREN, - [26013] = 3, + [26018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, - STATE(295), 1, - sym_patternDefinitionBody, - [26023] = 2, + ACTIONS(3966), 1, + anon_sym_COMMA, + ACTIONS(3968), 1, + anon_sym_RPAREN, + [26028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 2, + ACTIONS(3970), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [26031] = 3, + ACTIONS(3972), 1, + anon_sym_RPAREN, + [26038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - STATE(253), 1, - sym_foreignFunctionBody, - [26041] = 3, + STATE(254), 1, + sym_patternDefinitionBody, + [26048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3968), 1, - anon_sym_LPAREN, - ACTIONS(3970), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - [26051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3972), 1, - anon_sym_COMMA, ACTIONS(3974), 1, - anon_sym_RPAREN, - [26061] = 2, + anon_sym_LPAREN, + [26058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3976), 1, - anon_sym_RPAREN, + ACTIONS(2884), 1, + anon_sym_LPAREN, + ACTIONS(2888), 1, + anon_sym_LBRACK, [26068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, - anon_sym_RPAREN, + ACTIONS(3976), 1, + anon_sym_LBRACE, [26075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3980), 1, - anon_sym_RBRACE, + ACTIONS(3978), 1, + sym_backtickSnippet, [26082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 1, - sym_doubleQuoteSnippet, + ACTIONS(3980), 1, + anon_sym_RPAREN, [26089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 1, - ts_builtin_sym_end, + ACTIONS(3982), 1, + sym_doubleQuoteSnippet, [26096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3986), 1, - sym_backtickSnippet, + ACTIONS(3984), 1, + anon_sym_LBRACE, [26103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, + ACTIONS(3986), 1, anon_sym_RBRACE, [26110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 1, - sym_variable, + ACTIONS(3988), 1, + anon_sym_RPAREN, [26117] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3990), 1, - anon_sym_RPAREN, + anon_sym_EQ, [26124] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3992), 1, - anon_sym_RPAREN, + anon_sym_EQ, [26131] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3994), 1, - anon_sym_RPAREN, + anon_sym_LBRACE, [26138] = 2, ACTIONS(3), 1, sym_comment, @@ -58696,72 +59026,72 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4000), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, [26159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 1, - anon_sym_COLON, + ACTIONS(4002), 1, + anon_sym_EQ_GT, [26166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 1, - anon_sym_LPAREN, + ACTIONS(4004), 1, + anon_sym_RPAREN, [26173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 1, - sym_name, + ACTIONS(4006), 1, + anon_sym_RPAREN, [26180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4006), 1, - anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_RPAREN, [26187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4008), 1, - anon_sym_LPAREN, + ACTIONS(4010), 1, + anon_sym_RPAREN, [26194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 1, - anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_RPAREN, [26201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4012), 1, - anon_sym_EQ_GT, + ACTIONS(4014), 1, + anon_sym_RPAREN, [26208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4014), 1, - anon_sym_EQ, + ACTIONS(4016), 1, + anon_sym_EQ_GT, [26215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 1, - anon_sym_EQ, + ACTIONS(4018), 1, + sym_backtickSnippet, [26222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_RPAREN, + ACTIONS(2886), 1, + anon_sym_COLON, [26229] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4020), 1, - anon_sym_EQ, + anon_sym_RPAREN, [26236] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4022), 1, - anon_sym_RPAREN, + sym_variable, [26243] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4024), 1, - anon_sym_EQ, + sym_intConstant, [26250] = 2, ACTIONS(3), 1, sym_comment, @@ -58771,82 +59101,82 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4028), 1, - anon_sym_LBRACE, + anon_sym_EQ_GT, [26264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4030), 1, - sym_name, + ACTIONS(2830), 1, + anon_sym_LT_COLON, [26271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 1, - sym_name, + ACTIONS(4030), 1, + anon_sym_RPAREN, [26278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4034), 1, - sym_name, + ACTIONS(1318), 1, + anon_sym_LBRACE, [26285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3113), 1, - anon_sym_RBRACK, + ACTIONS(4032), 1, + anon_sym_RPAREN, [26292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 1, - anon_sym_RPAREN, + ACTIONS(4034), 1, + sym_variable, [26299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4038), 1, - anon_sym_RPAREN, + ACTIONS(4036), 1, + ts_builtin_sym_end, [26306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 1, - anon_sym_RPAREN, + ACTIONS(4038), 1, + anon_sym_EQ, [26313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 1, - anon_sym_RPAREN, + ACTIONS(4040), 1, + anon_sym_EQ, [26320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, + ACTIONS(4042), 1, anon_sym_RPAREN, [26327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 1, - anon_sym_EQ, + ACTIONS(4044), 1, + anon_sym_RPAREN, [26334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 1, + ACTIONS(4046), 1, anon_sym_RPAREN, [26341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4050), 1, + ACTIONS(4048), 1, anon_sym_RPAREN, [26348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 1, - anon_sym_RPAREN, + ACTIONS(4050), 1, + sym_doubleQuoteSnippet, [26355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 1, - anon_sym_LT_COLON, + ACTIONS(4052), 1, + sym_intConstant, [26362] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4054), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, [26369] = 2, ACTIONS(3), 1, sym_comment, @@ -58856,22 +59186,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4058), 1, - anon_sym_RPAREN, + sym_intConstant, [26383] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4060), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, [26390] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4062), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, [26397] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4064), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, [26404] = 2, ACTIONS(3), 1, sym_comment, @@ -58881,357 +59211,357 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4068), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, [26418] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4070), 1, - anon_sym_RPAREN, + sym_name, [26425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, - anon_sym_RPAREN, + ACTIONS(2888), 1, + anon_sym_LBRACK, [26432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4074), 1, + ACTIONS(4072), 1, anon_sym_RPAREN, [26439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4076), 1, - anon_sym_EQ_GT, + ACTIONS(4074), 1, + anon_sym_LBRACE, [26446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, - anon_sym_RPAREN, + ACTIONS(4076), 1, + sym_name, [26453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, - sym_intConstant, + ACTIONS(4078), 1, + anon_sym_RPAREN, [26460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4082), 1, - sym_variable, + ACTIONS(4080), 1, + anon_sym_RPAREN, [26467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4084), 1, - anon_sym_RPAREN, + ACTIONS(3214), 1, + anon_sym_RBRACK, [26474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(4082), 1, anon_sym_RPAREN, [26481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - anon_sym_RPAREN, + ACTIONS(2852), 1, + anon_sym_LT_COLON, [26488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, - sym_variable, + ACTIONS(4084), 1, + anon_sym_RPAREN, [26495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4092), 1, - sym_intConstant, + ACTIONS(4086), 1, + anon_sym_RPAREN, [26502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4094), 1, - anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_LBRACE, [26509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4096), 1, + ACTIONS(4090), 1, anon_sym_RPAREN, [26516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4098), 1, - sym_doubleQuoteSnippet, + ACTIONS(4092), 1, + sym_language_flavor, [26523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4100), 1, - sym_backtickSnippet, + ACTIONS(4094), 1, + anon_sym_RPAREN, [26530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4102), 1, - sym_doubleConstant, + ACTIONS(4096), 1, + anon_sym_RPAREN, [26537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4104), 1, - sym_language_flavor, + ACTIONS(4098), 1, + anon_sym_RPAREN, [26544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_LBRACE, + ACTIONS(3340), 1, + sym_variable, [26551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4108), 1, - anon_sym_EQ_GT, + ACTIONS(4100), 1, + anon_sym_LBRACE, [26558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4110), 1, - anon_sym_RPAREN, + ACTIONS(1438), 1, + anon_sym_DOT, [26565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4102), 1, anon_sym_RPAREN, [26572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4114), 1, - anon_sym_RPAREN, + ACTIONS(4104), 1, + anon_sym_LPAREN, [26579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1486), 1, - anon_sym_DOT, + ACTIONS(4106), 1, + anon_sym_LBRACE, [26586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 1, - anon_sym_LBRACK, + ACTIONS(4108), 1, + anon_sym_LBRACE, [26593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 1, - anon_sym_RBRACK, + ACTIONS(4110), 1, + anon_sym_LPAREN, [26600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 1, - anon_sym_LBRACK, + ACTIONS(4112), 1, + anon_sym_marzano, [26607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4116), 1, - sym_intConstant, + ACTIONS(4114), 1, + anon_sym_RPAREN, [26614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 1, + ACTIONS(4116), 1, sym_intConstant, [26621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, - sym_intConstant, + ACTIONS(4118), 1, + sym_variable, [26628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4122), 1, + ACTIONS(4120), 1, anon_sym_RPAREN, [26635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4122), 1, anon_sym_RPAREN, [26642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4126), 1, + ACTIONS(4124), 1, anon_sym_RPAREN, [26649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4128), 1, + ACTIONS(4126), 1, anon_sym_RPAREN, [26656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4130), 1, + ACTIONS(4128), 1, anon_sym_RPAREN, [26663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 1, + ACTIONS(4130), 1, anon_sym_RPAREN, [26670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4134), 1, + ACTIONS(4132), 1, anon_sym_RPAREN, [26677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4136), 1, + ACTIONS(4134), 1, anon_sym_RPAREN, [26684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, + ACTIONS(4136), 1, anon_sym_RPAREN, [26691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4140), 1, + ACTIONS(4138), 1, anon_sym_RPAREN, [26698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, + ACTIONS(4140), 1, anon_sym_RPAREN, [26705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4144), 1, + ACTIONS(4142), 1, anon_sym_RPAREN, [26712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4146), 1, + ACTIONS(4144), 1, anon_sym_RPAREN, [26719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 1, + ACTIONS(4146), 1, anon_sym_RPAREN, [26726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4150), 1, + ACTIONS(4148), 1, anon_sym_RPAREN, [26733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 1, + ACTIONS(4150), 1, anon_sym_RPAREN, [26740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, + ACTIONS(4152), 1, anon_sym_RPAREN, [26747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4154), 1, anon_sym_RPAREN, [26754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_RPAREN, [26761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 1, + ACTIONS(4158), 1, anon_sym_RPAREN, [26768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4160), 1, anon_sym_RPAREN, [26775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4164), 1, + ACTIONS(4162), 1, anon_sym_RPAREN, [26782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4164), 1, anon_sym_RPAREN, [26789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4168), 1, + ACTIONS(4166), 1, anon_sym_RPAREN, [26796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4170), 1, + ACTIONS(4168), 1, sym_intConstant, [26803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4172), 1, - anon_sym_pattern, + ACTIONS(4170), 1, + anon_sym_RPAREN, [26810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 1, + ACTIONS(4172), 1, anon_sym_LBRACE, [26817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, + ACTIONS(4174), 1, anon_sym_LBRACE, [26824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_LBRACE, + ACTIONS(4176), 1, + anon_sym_RPAREN, [26831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4180), 1, - sym_variable, + ACTIONS(4178), 1, + anon_sym_RPAREN, [26838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - anon_sym_LPAREN, + ACTIONS(4180), 1, + anon_sym_LBRACE, [26845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 1, - anon_sym_LBRACE, + ACTIONS(4182), 1, + anon_sym_EQ, [26852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4184), 1, - anon_sym_RPAREN, + anon_sym_LBRACE, [26859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4186), 1, - anon_sym_LPAREN, + sym_name, [26866] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4188), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, [26873] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4190), 1, - anon_sym_LBRACE, + sym_name, [26880] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4192), 1, - anon_sym_LBRACE, + sym_intConstant, [26887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 1, - anon_sym_LT_COLON, + ACTIONS(4194), 1, + anon_sym_RBRACE, [26894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 1, + ACTIONS(4196), 1, sym_language_flavor, [26901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4196), 1, - anon_sym_LBRACE, + ACTIONS(3164), 1, + anon_sym_RBRACK, [26908] = 2, ACTIONS(3), 1, sym_comment, @@ -59251,17 +59581,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4204), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, [26936] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, - anon_sym_marzano, + anon_sym_RPAREN, [26943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4208), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, [26950] = 2, ACTIONS(3), 1, sym_comment, @@ -59301,1258 +59631,1263 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_comment, ACTIONS(4224), 1, - anon_sym_LBRACE, + sym_doubleConstant, [27006] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4226), 1, - anon_sym_LBRACE, + anon_sym_pattern, + [27013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1478), 1, + anon_sym_LBRACK, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(302)] = 0, - [SMALL_STATE(303)] = 70, - [SMALL_STATE(304)] = 140, - [SMALL_STATE(305)] = 210, - [SMALL_STATE(306)] = 282, - [SMALL_STATE(307)] = 352, - [SMALL_STATE(308)] = 386, - [SMALL_STATE(309)] = 420, - [SMALL_STATE(310)] = 487, - [SMALL_STATE(311)] = 554, - [SMALL_STATE(312)] = 621, - [SMALL_STATE(313)] = 688, - [SMALL_STATE(314)] = 717, - [SMALL_STATE(315)] = 784, - [SMALL_STATE(316)] = 851, - [SMALL_STATE(317)] = 918, - [SMALL_STATE(318)] = 985, - [SMALL_STATE(319)] = 1052, - [SMALL_STATE(320)] = 1081, - [SMALL_STATE(321)] = 1110, - [SMALL_STATE(322)] = 1139, - [SMALL_STATE(323)] = 1172, - [SMALL_STATE(324)] = 1239, - [SMALL_STATE(325)] = 1306, - [SMALL_STATE(326)] = 1373, - [SMALL_STATE(327)] = 1440, - [SMALL_STATE(328)] = 1507, - [SMALL_STATE(329)] = 1574, - [SMALL_STATE(330)] = 1641, - [SMALL_STATE(331)] = 1673, - [SMALL_STATE(332)] = 1703, - [SMALL_STATE(333)] = 1730, - [SMALL_STATE(334)] = 1757, - [SMALL_STATE(335)] = 1786, - [SMALL_STATE(336)] = 1813, - [SMALL_STATE(337)] = 1842, - [SMALL_STATE(338)] = 1871, - [SMALL_STATE(339)] = 1900, - [SMALL_STATE(340)] = 1929, - [SMALL_STATE(341)] = 1956, - [SMALL_STATE(342)] = 1983, - [SMALL_STATE(343)] = 2010, - [SMALL_STATE(344)] = 2037, - [SMALL_STATE(345)] = 2064, - [SMALL_STATE(346)] = 2093, - [SMALL_STATE(347)] = 2120, - [SMALL_STATE(348)] = 2149, - [SMALL_STATE(349)] = 2176, - [SMALL_STATE(350)] = 2203, - [SMALL_STATE(351)] = 2230, - [SMALL_STATE(352)] = 2257, - [SMALL_STATE(353)] = 2284, - [SMALL_STATE(354)] = 2311, - [SMALL_STATE(355)] = 2338, - [SMALL_STATE(356)] = 2365, - [SMALL_STATE(357)] = 2392, - [SMALL_STATE(358)] = 2419, - [SMALL_STATE(359)] = 2446, - [SMALL_STATE(360)] = 2473, - [SMALL_STATE(361)] = 2500, - [SMALL_STATE(362)] = 2527, - [SMALL_STATE(363)] = 2554, - [SMALL_STATE(364)] = 2580, - [SMALL_STATE(365)] = 2606, - [SMALL_STATE(366)] = 2632, - [SMALL_STATE(367)] = 2658, - [SMALL_STATE(368)] = 2684, - [SMALL_STATE(369)] = 2710, - [SMALL_STATE(370)] = 2736, - [SMALL_STATE(371)] = 2762, - [SMALL_STATE(372)] = 2788, - [SMALL_STATE(373)] = 2814, - [SMALL_STATE(374)] = 2840, - [SMALL_STATE(375)] = 2866, - [SMALL_STATE(376)] = 2892, - [SMALL_STATE(377)] = 2918, - [SMALL_STATE(378)] = 2944, - [SMALL_STATE(379)] = 2970, - [SMALL_STATE(380)] = 2996, - [SMALL_STATE(381)] = 3022, - [SMALL_STATE(382)] = 3048, - [SMALL_STATE(383)] = 3074, - [SMALL_STATE(384)] = 3100, - [SMALL_STATE(385)] = 3126, - [SMALL_STATE(386)] = 3152, - [SMALL_STATE(387)] = 3178, - [SMALL_STATE(388)] = 3204, - [SMALL_STATE(389)] = 3230, - [SMALL_STATE(390)] = 3256, - [SMALL_STATE(391)] = 3282, - [SMALL_STATE(392)] = 3308, - [SMALL_STATE(393)] = 3334, - [SMALL_STATE(394)] = 3360, - [SMALL_STATE(395)] = 3386, - [SMALL_STATE(396)] = 3412, - [SMALL_STATE(397)] = 3438, - [SMALL_STATE(398)] = 3464, - [SMALL_STATE(399)] = 3490, - [SMALL_STATE(400)] = 3516, - [SMALL_STATE(401)] = 3558, - [SMALL_STATE(402)] = 3584, - [SMALL_STATE(403)] = 3610, - [SMALL_STATE(404)] = 3636, - [SMALL_STATE(405)] = 3662, - [SMALL_STATE(406)] = 3688, - [SMALL_STATE(407)] = 3714, - [SMALL_STATE(408)] = 3740, - [SMALL_STATE(409)] = 3766, - [SMALL_STATE(410)] = 3792, - [SMALL_STATE(411)] = 3818, - [SMALL_STATE(412)] = 3844, - [SMALL_STATE(413)] = 3870, - [SMALL_STATE(414)] = 3896, - [SMALL_STATE(415)] = 3922, - [SMALL_STATE(416)] = 3948, - [SMALL_STATE(417)] = 3974, - [SMALL_STATE(418)] = 4000, - [SMALL_STATE(419)] = 4026, - [SMALL_STATE(420)] = 4052, - [SMALL_STATE(421)] = 4078, - [SMALL_STATE(422)] = 4104, - [SMALL_STATE(423)] = 4132, - [SMALL_STATE(424)] = 4158, - [SMALL_STATE(425)] = 4184, - [SMALL_STATE(426)] = 4210, - [SMALL_STATE(427)] = 4236, - [SMALL_STATE(428)] = 4262, - [SMALL_STATE(429)] = 4288, - [SMALL_STATE(430)] = 4314, - [SMALL_STATE(431)] = 4340, - [SMALL_STATE(432)] = 4366, - [SMALL_STATE(433)] = 4392, - [SMALL_STATE(434)] = 4418, - [SMALL_STATE(435)] = 4444, - [SMALL_STATE(436)] = 4470, - [SMALL_STATE(437)] = 4496, - [SMALL_STATE(438)] = 4542, - [SMALL_STATE(439)] = 4570, - [SMALL_STATE(440)] = 4596, - [SMALL_STATE(441)] = 4622, - [SMALL_STATE(442)] = 4668, - [SMALL_STATE(443)] = 4694, - [SMALL_STATE(444)] = 4740, - [SMALL_STATE(445)] = 4766, - [SMALL_STATE(446)] = 4792, - [SMALL_STATE(447)] = 4818, - [SMALL_STATE(448)] = 4846, - [SMALL_STATE(449)] = 4894, - [SMALL_STATE(450)] = 4920, - [SMALL_STATE(451)] = 4962, - [SMALL_STATE(452)] = 4988, - [SMALL_STATE(453)] = 5014, - [SMALL_STATE(454)] = 5040, - [SMALL_STATE(455)] = 5066, - [SMALL_STATE(456)] = 5092, - [SMALL_STATE(457)] = 5118, - [SMALL_STATE(458)] = 5144, - [SMALL_STATE(459)] = 5170, - [SMALL_STATE(460)] = 5196, - [SMALL_STATE(461)] = 5222, - [SMALL_STATE(462)] = 5248, - [SMALL_STATE(463)] = 5274, - [SMALL_STATE(464)] = 5300, - [SMALL_STATE(465)] = 5326, - [SMALL_STATE(466)] = 5352, - [SMALL_STATE(467)] = 5378, - [SMALL_STATE(468)] = 5404, - [SMALL_STATE(469)] = 5430, - [SMALL_STATE(470)] = 5456, - [SMALL_STATE(471)] = 5482, - [SMALL_STATE(472)] = 5528, - [SMALL_STATE(473)] = 5554, - [SMALL_STATE(474)] = 5600, - [SMALL_STATE(475)] = 5626, - [SMALL_STATE(476)] = 5652, - [SMALL_STATE(477)] = 5678, - [SMALL_STATE(478)] = 5704, - [SMALL_STATE(479)] = 5730, - [SMALL_STATE(480)] = 5756, - [SMALL_STATE(481)] = 5782, - [SMALL_STATE(482)] = 5808, - [SMALL_STATE(483)] = 5834, - [SMALL_STATE(484)] = 5860, - [SMALL_STATE(485)] = 5886, - [SMALL_STATE(486)] = 5912, - [SMALL_STATE(487)] = 5938, - [SMALL_STATE(488)] = 5964, - [SMALL_STATE(489)] = 6006, - [SMALL_STATE(490)] = 6032, - [SMALL_STATE(491)] = 6058, - [SMALL_STATE(492)] = 6084, - [SMALL_STATE(493)] = 6110, - [SMALL_STATE(494)] = 6136, - [SMALL_STATE(495)] = 6170, - [SMALL_STATE(496)] = 6196, - [SMALL_STATE(497)] = 6230, - [SMALL_STATE(498)] = 6256, - [SMALL_STATE(499)] = 6284, - [SMALL_STATE(500)] = 6310, - [SMALL_STATE(501)] = 6338, - [SMALL_STATE(502)] = 6364, - [SMALL_STATE(503)] = 6392, - [SMALL_STATE(504)] = 6418, - [SMALL_STATE(505)] = 6444, - [SMALL_STATE(506)] = 6470, - [SMALL_STATE(507)] = 6496, - [SMALL_STATE(508)] = 6522, - [SMALL_STATE(509)] = 6548, - [SMALL_STATE(510)] = 6574, - [SMALL_STATE(511)] = 6600, - [SMALL_STATE(512)] = 6626, - [SMALL_STATE(513)] = 6652, - [SMALL_STATE(514)] = 6678, - [SMALL_STATE(515)] = 6704, - [SMALL_STATE(516)] = 6730, - [SMALL_STATE(517)] = 6756, - [SMALL_STATE(518)] = 6782, - [SMALL_STATE(519)] = 6808, - [SMALL_STATE(520)] = 6834, - [SMALL_STATE(521)] = 6860, - [SMALL_STATE(522)] = 6886, - [SMALL_STATE(523)] = 6912, - [SMALL_STATE(524)] = 6938, - [SMALL_STATE(525)] = 6964, - [SMALL_STATE(526)] = 6990, - [SMALL_STATE(527)] = 7036, - [SMALL_STATE(528)] = 7062, - [SMALL_STATE(529)] = 7108, - [SMALL_STATE(530)] = 7134, - [SMALL_STATE(531)] = 7160, - [SMALL_STATE(532)] = 7186, - [SMALL_STATE(533)] = 7212, - [SMALL_STATE(534)] = 7258, - [SMALL_STATE(535)] = 7284, - [SMALL_STATE(536)] = 7310, - [SMALL_STATE(537)] = 7336, - [SMALL_STATE(538)] = 7362, - [SMALL_STATE(539)] = 7388, - [SMALL_STATE(540)] = 7414, - [SMALL_STATE(541)] = 7440, - [SMALL_STATE(542)] = 7466, - [SMALL_STATE(543)] = 7492, - [SMALL_STATE(544)] = 7538, - [SMALL_STATE(545)] = 7584, - [SMALL_STATE(546)] = 7610, - [SMALL_STATE(547)] = 7636, - [SMALL_STATE(548)] = 7682, - [SMALL_STATE(549)] = 7708, - [SMALL_STATE(550)] = 7754, - [SMALL_STATE(551)] = 7780, - [SMALL_STATE(552)] = 7806, - [SMALL_STATE(553)] = 7832, - [SMALL_STATE(554)] = 7858, - [SMALL_STATE(555)] = 7904, - [SMALL_STATE(556)] = 7930, - [SMALL_STATE(557)] = 7956, - [SMALL_STATE(558)] = 8002, - [SMALL_STATE(559)] = 8028, - [SMALL_STATE(560)] = 8054, - [SMALL_STATE(561)] = 8100, - [SMALL_STATE(562)] = 8146, - [SMALL_STATE(563)] = 8172, - [SMALL_STATE(564)] = 8198, - [SMALL_STATE(565)] = 8224, - [SMALL_STATE(566)] = 8250, - [SMALL_STATE(567)] = 8296, - [SMALL_STATE(568)] = 8322, - [SMALL_STATE(569)] = 8348, - [SMALL_STATE(570)] = 8374, - [SMALL_STATE(571)] = 8400, - [SMALL_STATE(572)] = 8428, - [SMALL_STATE(573)] = 8454, - [SMALL_STATE(574)] = 8482, - [SMALL_STATE(575)] = 8508, - [SMALL_STATE(576)] = 8554, - [SMALL_STATE(577)] = 8580, - [SMALL_STATE(578)] = 8606, - [SMALL_STATE(579)] = 8632, - [SMALL_STATE(580)] = 8678, - [SMALL_STATE(581)] = 8704, - [SMALL_STATE(582)] = 8730, - [SMALL_STATE(583)] = 8758, - [SMALL_STATE(584)] = 8784, - [SMALL_STATE(585)] = 8810, - [SMALL_STATE(586)] = 8836, - [SMALL_STATE(587)] = 8862, - [SMALL_STATE(588)] = 8888, - [SMALL_STATE(589)] = 8914, - [SMALL_STATE(590)] = 8960, - [SMALL_STATE(591)] = 9006, - [SMALL_STATE(592)] = 9052, - [SMALL_STATE(593)] = 9100, - [SMALL_STATE(594)] = 9146, - [SMALL_STATE(595)] = 9194, - [SMALL_STATE(596)] = 9220, - [SMALL_STATE(597)] = 9266, - [SMALL_STATE(598)] = 9312, - [SMALL_STATE(599)] = 9358, - [SMALL_STATE(600)] = 9404, - [SMALL_STATE(601)] = 9430, - [SMALL_STATE(602)] = 9456, - [SMALL_STATE(603)] = 9482, - [SMALL_STATE(604)] = 9508, - [SMALL_STATE(605)] = 9534, - [SMALL_STATE(606)] = 9560, - [SMALL_STATE(607)] = 9586, - [SMALL_STATE(608)] = 9612, - [SMALL_STATE(609)] = 9638, - [SMALL_STATE(610)] = 9664, - [SMALL_STATE(611)] = 9690, - [SMALL_STATE(612)] = 9716, - [SMALL_STATE(613)] = 9742, - [SMALL_STATE(614)] = 9768, - [SMALL_STATE(615)] = 9794, - [SMALL_STATE(616)] = 9819, - [SMALL_STATE(617)] = 9844, - [SMALL_STATE(618)] = 9869, - [SMALL_STATE(619)] = 9894, - [SMALL_STATE(620)] = 9939, - [SMALL_STATE(621)] = 9964, - [SMALL_STATE(622)] = 9989, - [SMALL_STATE(623)] = 10014, - [SMALL_STATE(624)] = 10039, - [SMALL_STATE(625)] = 10064, - [SMALL_STATE(626)] = 10089, - [SMALL_STATE(627)] = 10114, - [SMALL_STATE(628)] = 10139, - [SMALL_STATE(629)] = 10164, - [SMALL_STATE(630)] = 10189, - [SMALL_STATE(631)] = 10214, - [SMALL_STATE(632)] = 10239, - [SMALL_STATE(633)] = 10264, - [SMALL_STATE(634)] = 10289, - [SMALL_STATE(635)] = 10314, - [SMALL_STATE(636)] = 10339, - [SMALL_STATE(637)] = 10364, - [SMALL_STATE(638)] = 10389, - [SMALL_STATE(639)] = 10414, - [SMALL_STATE(640)] = 10439, - [SMALL_STATE(641)] = 10464, - [SMALL_STATE(642)] = 10489, - [SMALL_STATE(643)] = 10514, - [SMALL_STATE(644)] = 10539, - [SMALL_STATE(645)] = 10564, - [SMALL_STATE(646)] = 10589, - [SMALL_STATE(647)] = 10614, - [SMALL_STATE(648)] = 10639, - [SMALL_STATE(649)] = 10664, - [SMALL_STATE(650)] = 10689, - [SMALL_STATE(651)] = 10714, - [SMALL_STATE(652)] = 10739, - [SMALL_STATE(653)] = 10764, - [SMALL_STATE(654)] = 10789, - [SMALL_STATE(655)] = 10814, - [SMALL_STATE(656)] = 10839, - [SMALL_STATE(657)] = 10864, - [SMALL_STATE(658)] = 10889, - [SMALL_STATE(659)] = 10914, - [SMALL_STATE(660)] = 10939, - [SMALL_STATE(661)] = 10964, - [SMALL_STATE(662)] = 10989, - [SMALL_STATE(663)] = 11014, - [SMALL_STATE(664)] = 11039, - [SMALL_STATE(665)] = 11064, - [SMALL_STATE(666)] = 11089, - [SMALL_STATE(667)] = 11114, - [SMALL_STATE(668)] = 11139, - [SMALL_STATE(669)] = 11164, - [SMALL_STATE(670)] = 11189, - [SMALL_STATE(671)] = 11214, - [SMALL_STATE(672)] = 11239, - [SMALL_STATE(673)] = 11264, - [SMALL_STATE(674)] = 11289, - [SMALL_STATE(675)] = 11314, - [SMALL_STATE(676)] = 11339, - [SMALL_STATE(677)] = 11364, - [SMALL_STATE(678)] = 11409, - [SMALL_STATE(679)] = 11436, - [SMALL_STATE(680)] = 11461, - [SMALL_STATE(681)] = 11486, - [SMALL_STATE(682)] = 11511, - [SMALL_STATE(683)] = 11538, - [SMALL_STATE(684)] = 11563, - [SMALL_STATE(685)] = 11588, - [SMALL_STATE(686)] = 11613, - [SMALL_STATE(687)] = 11638, - [SMALL_STATE(688)] = 11663, - [SMALL_STATE(689)] = 11688, - [SMALL_STATE(690)] = 11713, - [SMALL_STATE(691)] = 11738, - [SMALL_STATE(692)] = 11763, - [SMALL_STATE(693)] = 11788, - [SMALL_STATE(694)] = 11813, - [SMALL_STATE(695)] = 11838, - [SMALL_STATE(696)] = 11883, - [SMALL_STATE(697)] = 11908, - [SMALL_STATE(698)] = 11933, - [SMALL_STATE(699)] = 11958, - [SMALL_STATE(700)] = 11983, - [SMALL_STATE(701)] = 12008, - [SMALL_STATE(702)] = 12033, - [SMALL_STATE(703)] = 12058, - [SMALL_STATE(704)] = 12083, - [SMALL_STATE(705)] = 12108, - [SMALL_STATE(706)] = 12133, - [SMALL_STATE(707)] = 12158, - [SMALL_STATE(708)] = 12183, - [SMALL_STATE(709)] = 12208, - [SMALL_STATE(710)] = 12233, - [SMALL_STATE(711)] = 12278, - [SMALL_STATE(712)] = 12323, - [SMALL_STATE(713)] = 12368, - [SMALL_STATE(714)] = 12393, - [SMALL_STATE(715)] = 12418, - [SMALL_STATE(716)] = 12443, - [SMALL_STATE(717)] = 12468, - [SMALL_STATE(718)] = 12493, - [SMALL_STATE(719)] = 12518, - [SMALL_STATE(720)] = 12543, - [SMALL_STATE(721)] = 12568, - [SMALL_STATE(722)] = 12593, - [SMALL_STATE(723)] = 12618, - [SMALL_STATE(724)] = 12643, - [SMALL_STATE(725)] = 12668, - [SMALL_STATE(726)] = 12693, - [SMALL_STATE(727)] = 12718, - [SMALL_STATE(728)] = 12743, - [SMALL_STATE(729)] = 12768, - [SMALL_STATE(730)] = 12793, - [SMALL_STATE(731)] = 12818, - [SMALL_STATE(732)] = 12843, - [SMALL_STATE(733)] = 12868, - [SMALL_STATE(734)] = 12893, - [SMALL_STATE(735)] = 12918, - [SMALL_STATE(736)] = 12943, - [SMALL_STATE(737)] = 12968, - [SMALL_STATE(738)] = 12993, - [SMALL_STATE(739)] = 13018, - [SMALL_STATE(740)] = 13043, - [SMALL_STATE(741)] = 13090, - [SMALL_STATE(742)] = 13115, - [SMALL_STATE(743)] = 13140, - [SMALL_STATE(744)] = 13165, - [SMALL_STATE(745)] = 13190, - [SMALL_STATE(746)] = 13215, - [SMALL_STATE(747)] = 13240, - [SMALL_STATE(748)] = 13265, - [SMALL_STATE(749)] = 13310, - [SMALL_STATE(750)] = 13355, - [SMALL_STATE(751)] = 13380, - [SMALL_STATE(752)] = 13425, - [SMALL_STATE(753)] = 13450, - [SMALL_STATE(754)] = 13475, - [SMALL_STATE(755)] = 13500, - [SMALL_STATE(756)] = 13525, - [SMALL_STATE(757)] = 13550, - [SMALL_STATE(758)] = 13575, - [SMALL_STATE(759)] = 13616, - [SMALL_STATE(760)] = 13641, - [SMALL_STATE(761)] = 13666, - [SMALL_STATE(762)] = 13691, - [SMALL_STATE(763)] = 13716, - [SMALL_STATE(764)] = 13741, - [SMALL_STATE(765)] = 13766, - [SMALL_STATE(766)] = 13791, - [SMALL_STATE(767)] = 13816, - [SMALL_STATE(768)] = 13841, - [SMALL_STATE(769)] = 13866, - [SMALL_STATE(770)] = 13891, - [SMALL_STATE(771)] = 13936, - [SMALL_STATE(772)] = 13963, - [SMALL_STATE(773)] = 13988, - [SMALL_STATE(774)] = 14013, - [SMALL_STATE(775)] = 14038, - [SMALL_STATE(776)] = 14063, - [SMALL_STATE(777)] = 14088, - [SMALL_STATE(778)] = 14113, - [SMALL_STATE(779)] = 14138, - [SMALL_STATE(780)] = 14163, - [SMALL_STATE(781)] = 14208, - [SMALL_STATE(782)] = 14233, - [SMALL_STATE(783)] = 14258, - [SMALL_STATE(784)] = 14303, - [SMALL_STATE(785)] = 14330, - [SMALL_STATE(786)] = 14355, - [SMALL_STATE(787)] = 14380, - [SMALL_STATE(788)] = 14425, - [SMALL_STATE(789)] = 14450, - [SMALL_STATE(790)] = 14475, - [SMALL_STATE(791)] = 14500, - [SMALL_STATE(792)] = 14525, - [SMALL_STATE(793)] = 14550, - [SMALL_STATE(794)] = 14595, - [SMALL_STATE(795)] = 14636, - [SMALL_STATE(796)] = 14661, - [SMALL_STATE(797)] = 14702, - [SMALL_STATE(798)] = 14727, - [SMALL_STATE(799)] = 14752, - [SMALL_STATE(800)] = 14785, - [SMALL_STATE(801)] = 14818, - [SMALL_STATE(802)] = 14845, - [SMALL_STATE(803)] = 14872, - [SMALL_STATE(804)] = 14899, - [SMALL_STATE(805)] = 14924, - [SMALL_STATE(806)] = 14949, - [SMALL_STATE(807)] = 14974, - [SMALL_STATE(808)] = 14999, - [SMALL_STATE(809)] = 15024, - [SMALL_STATE(810)] = 15049, - [SMALL_STATE(811)] = 15074, - [SMALL_STATE(812)] = 15099, - [SMALL_STATE(813)] = 15124, - [SMALL_STATE(814)] = 15149, - [SMALL_STATE(815)] = 15174, - [SMALL_STATE(816)] = 15199, - [SMALL_STATE(817)] = 15224, - [SMALL_STATE(818)] = 15249, - [SMALL_STATE(819)] = 15294, - [SMALL_STATE(820)] = 15319, - [SMALL_STATE(821)] = 15344, - [SMALL_STATE(822)] = 15369, - [SMALL_STATE(823)] = 15394, - [SMALL_STATE(824)] = 15439, - [SMALL_STATE(825)] = 15464, - [SMALL_STATE(826)] = 15489, - [SMALL_STATE(827)] = 15514, - [SMALL_STATE(828)] = 15559, - [SMALL_STATE(829)] = 15604, - [SMALL_STATE(830)] = 15629, - [SMALL_STATE(831)] = 15674, - [SMALL_STATE(832)] = 15699, - [SMALL_STATE(833)] = 15746, - [SMALL_STATE(834)] = 15791, - [SMALL_STATE(835)] = 15838, - [SMALL_STATE(836)] = 15863, - [SMALL_STATE(837)] = 15908, - [SMALL_STATE(838)] = 15953, - [SMALL_STATE(839)] = 15998, - [SMALL_STATE(840)] = 16043, - [SMALL_STATE(841)] = 16068, - [SMALL_STATE(842)] = 16093, - [SMALL_STATE(843)] = 16118, - [SMALL_STATE(844)] = 16163, - [SMALL_STATE(845)] = 16188, - [SMALL_STATE(846)] = 16213, - [SMALL_STATE(847)] = 16258, - [SMALL_STATE(848)] = 16283, - [SMALL_STATE(849)] = 16328, - [SMALL_STATE(850)] = 16353, - [SMALL_STATE(851)] = 16378, - [SMALL_STATE(852)] = 16403, - [SMALL_STATE(853)] = 16428, - [SMALL_STATE(854)] = 16453, - [SMALL_STATE(855)] = 16478, - [SMALL_STATE(856)] = 16503, - [SMALL_STATE(857)] = 16528, - [SMALL_STATE(858)] = 16553, - [SMALL_STATE(859)] = 16578, - [SMALL_STATE(860)] = 16624, - [SMALL_STATE(861)] = 16670, - [SMALL_STATE(862)] = 16716, - [SMALL_STATE(863)] = 16762, - [SMALL_STATE(864)] = 16808, - [SMALL_STATE(865)] = 16854, - [SMALL_STATE(866)] = 16900, - [SMALL_STATE(867)] = 16946, - [SMALL_STATE(868)] = 16992, - [SMALL_STATE(869)] = 17038, - [SMALL_STATE(870)] = 17084, - [SMALL_STATE(871)] = 17130, - [SMALL_STATE(872)] = 17176, - [SMALL_STATE(873)] = 17222, - [SMALL_STATE(874)] = 17268, - [SMALL_STATE(875)] = 17314, - [SMALL_STATE(876)] = 17360, - [SMALL_STATE(877)] = 17399, - [SMALL_STATE(878)] = 17440, - [SMALL_STATE(879)] = 17479, - [SMALL_STATE(880)] = 17520, - [SMALL_STATE(881)] = 17561, - [SMALL_STATE(882)] = 17602, - [SMALL_STATE(883)] = 17643, - [SMALL_STATE(884)] = 17684, - [SMALL_STATE(885)] = 17724, - [SMALL_STATE(886)] = 17764, - [SMALL_STATE(887)] = 17804, - [SMALL_STATE(888)] = 17844, - [SMALL_STATE(889)] = 17884, - [SMALL_STATE(890)] = 17924, - [SMALL_STATE(891)] = 17964, - [SMALL_STATE(892)] = 18004, - [SMALL_STATE(893)] = 18044, - [SMALL_STATE(894)] = 18084, - [SMALL_STATE(895)] = 18124, - [SMALL_STATE(896)] = 18164, - [SMALL_STATE(897)] = 18204, - [SMALL_STATE(898)] = 18244, - [SMALL_STATE(899)] = 18284, - [SMALL_STATE(900)] = 18324, - [SMALL_STATE(901)] = 18364, - [SMALL_STATE(902)] = 18404, - [SMALL_STATE(903)] = 18444, - [SMALL_STATE(904)] = 18484, - [SMALL_STATE(905)] = 18524, - [SMALL_STATE(906)] = 18564, - [SMALL_STATE(907)] = 18604, - [SMALL_STATE(908)] = 18644, - [SMALL_STATE(909)] = 18684, - [SMALL_STATE(910)] = 18724, - [SMALL_STATE(911)] = 18764, - [SMALL_STATE(912)] = 18804, - [SMALL_STATE(913)] = 18844, - [SMALL_STATE(914)] = 18878, - [SMALL_STATE(915)] = 18912, - [SMALL_STATE(916)] = 18946, - [SMALL_STATE(917)] = 18980, - [SMALL_STATE(918)] = 19014, - [SMALL_STATE(919)] = 19048, - [SMALL_STATE(920)] = 19082, - [SMALL_STATE(921)] = 19116, - [SMALL_STATE(922)] = 19150, - [SMALL_STATE(923)] = 19184, - [SMALL_STATE(924)] = 19218, - [SMALL_STATE(925)] = 19252, - [SMALL_STATE(926)] = 19286, - [SMALL_STATE(927)] = 19320, - [SMALL_STATE(928)] = 19354, - [SMALL_STATE(929)] = 19388, - [SMALL_STATE(930)] = 19422, - [SMALL_STATE(931)] = 19456, - [SMALL_STATE(932)] = 19490, - [SMALL_STATE(933)] = 19524, - [SMALL_STATE(934)] = 19558, - [SMALL_STATE(935)] = 19592, - [SMALL_STATE(936)] = 19622, - [SMALL_STATE(937)] = 19656, - [SMALL_STATE(938)] = 19690, - [SMALL_STATE(939)] = 19724, - [SMALL_STATE(940)] = 19758, - [SMALL_STATE(941)] = 19792, - [SMALL_STATE(942)] = 19826, - [SMALL_STATE(943)] = 19860, - [SMALL_STATE(944)] = 19894, - [SMALL_STATE(945)] = 19928, - [SMALL_STATE(946)] = 19962, - [SMALL_STATE(947)] = 19996, - [SMALL_STATE(948)] = 20030, - [SMALL_STATE(949)] = 20064, - [SMALL_STATE(950)] = 20098, - [SMALL_STATE(951)] = 20132, - [SMALL_STATE(952)] = 20166, - [SMALL_STATE(953)] = 20196, - [SMALL_STATE(954)] = 20230, - [SMALL_STATE(955)] = 20264, - [SMALL_STATE(956)] = 20298, - [SMALL_STATE(957)] = 20332, - [SMALL_STATE(958)] = 20366, - [SMALL_STATE(959)] = 20400, - [SMALL_STATE(960)] = 20434, - [SMALL_STATE(961)] = 20468, - [SMALL_STATE(962)] = 20502, - [SMALL_STATE(963)] = 20536, - [SMALL_STATE(964)] = 20567, - [SMALL_STATE(965)] = 20595, - [SMALL_STATE(966)] = 20623, - [SMALL_STATE(967)] = 20648, - [SMALL_STATE(968)] = 20673, - [SMALL_STATE(969)] = 20698, - [SMALL_STATE(970)] = 20723, - [SMALL_STATE(971)] = 20748, - [SMALL_STATE(972)] = 20773, - [SMALL_STATE(973)] = 20798, - [SMALL_STATE(974)] = 20823, - [SMALL_STATE(975)] = 20845, - [SMALL_STATE(976)] = 20867, - [SMALL_STATE(977)] = 20886, - [SMALL_STATE(978)] = 20905, - [SMALL_STATE(979)] = 20924, - [SMALL_STATE(980)] = 20943, - [SMALL_STATE(981)] = 20962, - [SMALL_STATE(982)] = 20981, - [SMALL_STATE(983)] = 21000, - [SMALL_STATE(984)] = 21019, - [SMALL_STATE(985)] = 21038, - [SMALL_STATE(986)] = 21057, - [SMALL_STATE(987)] = 21076, - [SMALL_STATE(988)] = 21095, - [SMALL_STATE(989)] = 21114, - [SMALL_STATE(990)] = 21133, - [SMALL_STATE(991)] = 21152, - [SMALL_STATE(992)] = 21171, - [SMALL_STATE(993)] = 21190, - [SMALL_STATE(994)] = 21209, - [SMALL_STATE(995)] = 21228, - [SMALL_STATE(996)] = 21247, - [SMALL_STATE(997)] = 21266, - [SMALL_STATE(998)] = 21285, - [SMALL_STATE(999)] = 21304, - [SMALL_STATE(1000)] = 21323, - [SMALL_STATE(1001)] = 21339, - [SMALL_STATE(1002)] = 21355, - [SMALL_STATE(1003)] = 21371, - [SMALL_STATE(1004)] = 21387, - [SMALL_STATE(1005)] = 21403, - [SMALL_STATE(1006)] = 21419, - [SMALL_STATE(1007)] = 21435, - [SMALL_STATE(1008)] = 21449, - [SMALL_STATE(1009)] = 21465, - [SMALL_STATE(1010)] = 21481, - [SMALL_STATE(1011)] = 21495, - [SMALL_STATE(1012)] = 21511, - [SMALL_STATE(1013)] = 21527, - [SMALL_STATE(1014)] = 21543, - [SMALL_STATE(1015)] = 21559, - [SMALL_STATE(1016)] = 21573, - [SMALL_STATE(1017)] = 21589, - [SMALL_STATE(1018)] = 21603, - [SMALL_STATE(1019)] = 21619, - [SMALL_STATE(1020)] = 21635, - [SMALL_STATE(1021)] = 21651, - [SMALL_STATE(1022)] = 21667, - [SMALL_STATE(1023)] = 21680, - [SMALL_STATE(1024)] = 21693, - [SMALL_STATE(1025)] = 21706, - [SMALL_STATE(1026)] = 21719, - [SMALL_STATE(1027)] = 21732, - [SMALL_STATE(1028)] = 21745, - [SMALL_STATE(1029)] = 21758, - [SMALL_STATE(1030)] = 21771, - [SMALL_STATE(1031)] = 21784, - [SMALL_STATE(1032)] = 21797, - [SMALL_STATE(1033)] = 21810, - [SMALL_STATE(1034)] = 21823, - [SMALL_STATE(1035)] = 21836, - [SMALL_STATE(1036)] = 21849, - [SMALL_STATE(1037)] = 21862, - [SMALL_STATE(1038)] = 21875, - [SMALL_STATE(1039)] = 21888, - [SMALL_STATE(1040)] = 21901, - [SMALL_STATE(1041)] = 21914, - [SMALL_STATE(1042)] = 21927, - [SMALL_STATE(1043)] = 21940, - [SMALL_STATE(1044)] = 21953, - [SMALL_STATE(1045)] = 21966, - [SMALL_STATE(1046)] = 21979, - [SMALL_STATE(1047)] = 21992, - [SMALL_STATE(1048)] = 22005, - [SMALL_STATE(1049)] = 22018, - [SMALL_STATE(1050)] = 22031, - [SMALL_STATE(1051)] = 22044, - [SMALL_STATE(1052)] = 22057, - [SMALL_STATE(1053)] = 22070, - [SMALL_STATE(1054)] = 22083, - [SMALL_STATE(1055)] = 22096, - [SMALL_STATE(1056)] = 22109, - [SMALL_STATE(1057)] = 22122, - [SMALL_STATE(1058)] = 22135, - [SMALL_STATE(1059)] = 22148, - [SMALL_STATE(1060)] = 22161, - [SMALL_STATE(1061)] = 22174, - [SMALL_STATE(1062)] = 22187, - [SMALL_STATE(1063)] = 22200, - [SMALL_STATE(1064)] = 22213, - [SMALL_STATE(1065)] = 22226, - [SMALL_STATE(1066)] = 22239, - [SMALL_STATE(1067)] = 22252, - [SMALL_STATE(1068)] = 22265, - [SMALL_STATE(1069)] = 22278, - [SMALL_STATE(1070)] = 22291, - [SMALL_STATE(1071)] = 22304, - [SMALL_STATE(1072)] = 22317, - [SMALL_STATE(1073)] = 22330, - [SMALL_STATE(1074)] = 22343, - [SMALL_STATE(1075)] = 22356, - [SMALL_STATE(1076)] = 22369, - [SMALL_STATE(1077)] = 22382, - [SMALL_STATE(1078)] = 22395, - [SMALL_STATE(1079)] = 22408, - [SMALL_STATE(1080)] = 22421, - [SMALL_STATE(1081)] = 22434, - [SMALL_STATE(1082)] = 22447, - [SMALL_STATE(1083)] = 22460, - [SMALL_STATE(1084)] = 22473, - [SMALL_STATE(1085)] = 22486, - [SMALL_STATE(1086)] = 22499, - [SMALL_STATE(1087)] = 22512, - [SMALL_STATE(1088)] = 22525, - [SMALL_STATE(1089)] = 22538, - [SMALL_STATE(1090)] = 22551, - [SMALL_STATE(1091)] = 22564, - [SMALL_STATE(1092)] = 22577, - [SMALL_STATE(1093)] = 22590, - [SMALL_STATE(1094)] = 22603, - [SMALL_STATE(1095)] = 22616, - [SMALL_STATE(1096)] = 22629, - [SMALL_STATE(1097)] = 22642, - [SMALL_STATE(1098)] = 22655, - [SMALL_STATE(1099)] = 22668, - [SMALL_STATE(1100)] = 22681, - [SMALL_STATE(1101)] = 22694, - [SMALL_STATE(1102)] = 22707, - [SMALL_STATE(1103)] = 22720, - [SMALL_STATE(1104)] = 22733, - [SMALL_STATE(1105)] = 22746, - [SMALL_STATE(1106)] = 22759, - [SMALL_STATE(1107)] = 22772, - [SMALL_STATE(1108)] = 22785, - [SMALL_STATE(1109)] = 22798, - [SMALL_STATE(1110)] = 22811, - [SMALL_STATE(1111)] = 22824, - [SMALL_STATE(1112)] = 22837, - [SMALL_STATE(1113)] = 22850, - [SMALL_STATE(1114)] = 22863, - [SMALL_STATE(1115)] = 22876, - [SMALL_STATE(1116)] = 22889, - [SMALL_STATE(1117)] = 22902, - [SMALL_STATE(1118)] = 22915, - [SMALL_STATE(1119)] = 22928, - [SMALL_STATE(1120)] = 22941, - [SMALL_STATE(1121)] = 22954, - [SMALL_STATE(1122)] = 22967, - [SMALL_STATE(1123)] = 22980, - [SMALL_STATE(1124)] = 22993, - [SMALL_STATE(1125)] = 23006, - [SMALL_STATE(1126)] = 23019, - [SMALL_STATE(1127)] = 23028, - [SMALL_STATE(1128)] = 23041, - [SMALL_STATE(1129)] = 23054, - [SMALL_STATE(1130)] = 23067, - [SMALL_STATE(1131)] = 23080, - [SMALL_STATE(1132)] = 23093, - [SMALL_STATE(1133)] = 23106, - [SMALL_STATE(1134)] = 23119, - [SMALL_STATE(1135)] = 23132, - [SMALL_STATE(1136)] = 23145, - [SMALL_STATE(1137)] = 23152, - [SMALL_STATE(1138)] = 23165, - [SMALL_STATE(1139)] = 23178, - [SMALL_STATE(1140)] = 23191, - [SMALL_STATE(1141)] = 23204, - [SMALL_STATE(1142)] = 23217, - [SMALL_STATE(1143)] = 23230, - [SMALL_STATE(1144)] = 23243, - [SMALL_STATE(1145)] = 23256, - [SMALL_STATE(1146)] = 23269, - [SMALL_STATE(1147)] = 23282, - [SMALL_STATE(1148)] = 23295, - [SMALL_STATE(1149)] = 23308, - [SMALL_STATE(1150)] = 23321, - [SMALL_STATE(1151)] = 23334, - [SMALL_STATE(1152)] = 23347, - [SMALL_STATE(1153)] = 23360, - [SMALL_STATE(1154)] = 23373, - [SMALL_STATE(1155)] = 23386, - [SMALL_STATE(1156)] = 23399, - [SMALL_STATE(1157)] = 23412, - [SMALL_STATE(1158)] = 23425, - [SMALL_STATE(1159)] = 23438, - [SMALL_STATE(1160)] = 23451, - [SMALL_STATE(1161)] = 23464, - [SMALL_STATE(1162)] = 23477, - [SMALL_STATE(1163)] = 23490, - [SMALL_STATE(1164)] = 23503, - [SMALL_STATE(1165)] = 23516, - [SMALL_STATE(1166)] = 23529, - [SMALL_STATE(1167)] = 23542, - [SMALL_STATE(1168)] = 23555, - [SMALL_STATE(1169)] = 23568, - [SMALL_STATE(1170)] = 23581, - [SMALL_STATE(1171)] = 23594, - [SMALL_STATE(1172)] = 23607, - [SMALL_STATE(1173)] = 23620, - [SMALL_STATE(1174)] = 23633, - [SMALL_STATE(1175)] = 23646, - [SMALL_STATE(1176)] = 23659, - [SMALL_STATE(1177)] = 23672, - [SMALL_STATE(1178)] = 23685, - [SMALL_STATE(1179)] = 23698, - [SMALL_STATE(1180)] = 23711, - [SMALL_STATE(1181)] = 23724, - [SMALL_STATE(1182)] = 23737, - [SMALL_STATE(1183)] = 23750, - [SMALL_STATE(1184)] = 23763, - [SMALL_STATE(1185)] = 23776, - [SMALL_STATE(1186)] = 23789, - [SMALL_STATE(1187)] = 23802, - [SMALL_STATE(1188)] = 23815, - [SMALL_STATE(1189)] = 23828, - [SMALL_STATE(1190)] = 23841, - [SMALL_STATE(1191)] = 23854, - [SMALL_STATE(1192)] = 23867, - [SMALL_STATE(1193)] = 23880, - [SMALL_STATE(1194)] = 23893, - [SMALL_STATE(1195)] = 23906, - [SMALL_STATE(1196)] = 23919, - [SMALL_STATE(1197)] = 23932, - [SMALL_STATE(1198)] = 23945, - [SMALL_STATE(1199)] = 23958, - [SMALL_STATE(1200)] = 23971, - [SMALL_STATE(1201)] = 23984, - [SMALL_STATE(1202)] = 23997, - [SMALL_STATE(1203)] = 24010, - [SMALL_STATE(1204)] = 24023, - [SMALL_STATE(1205)] = 24036, - [SMALL_STATE(1206)] = 24049, - [SMALL_STATE(1207)] = 24062, - [SMALL_STATE(1208)] = 24075, - [SMALL_STATE(1209)] = 24088, - [SMALL_STATE(1210)] = 24101, - [SMALL_STATE(1211)] = 24111, - [SMALL_STATE(1212)] = 24121, - [SMALL_STATE(1213)] = 24131, - [SMALL_STATE(1214)] = 24141, - [SMALL_STATE(1215)] = 24151, - [SMALL_STATE(1216)] = 24161, - [SMALL_STATE(1217)] = 24171, - [SMALL_STATE(1218)] = 24181, - [SMALL_STATE(1219)] = 24191, - [SMALL_STATE(1220)] = 24201, - [SMALL_STATE(1221)] = 24211, - [SMALL_STATE(1222)] = 24221, - [SMALL_STATE(1223)] = 24231, - [SMALL_STATE(1224)] = 24241, - [SMALL_STATE(1225)] = 24251, - [SMALL_STATE(1226)] = 24259, - [SMALL_STATE(1227)] = 24269, - [SMALL_STATE(1228)] = 24279, - [SMALL_STATE(1229)] = 24289, - [SMALL_STATE(1230)] = 24299, - [SMALL_STATE(1231)] = 24309, - [SMALL_STATE(1232)] = 24319, - [SMALL_STATE(1233)] = 24329, - [SMALL_STATE(1234)] = 24339, - [SMALL_STATE(1235)] = 24349, - [SMALL_STATE(1236)] = 24359, - [SMALL_STATE(1237)] = 24367, - [SMALL_STATE(1238)] = 24377, - [SMALL_STATE(1239)] = 24387, - [SMALL_STATE(1240)] = 24397, - [SMALL_STATE(1241)] = 24407, - [SMALL_STATE(1242)] = 24417, - [SMALL_STATE(1243)] = 24427, - [SMALL_STATE(1244)] = 24435, - [SMALL_STATE(1245)] = 24445, - [SMALL_STATE(1246)] = 24455, - [SMALL_STATE(1247)] = 24465, - [SMALL_STATE(1248)] = 24473, - [SMALL_STATE(1249)] = 24481, - [SMALL_STATE(1250)] = 24491, - [SMALL_STATE(1251)] = 24501, - [SMALL_STATE(1252)] = 24509, - [SMALL_STATE(1253)] = 24517, - [SMALL_STATE(1254)] = 24525, - [SMALL_STATE(1255)] = 24533, - [SMALL_STATE(1256)] = 24543, - [SMALL_STATE(1257)] = 24553, - [SMALL_STATE(1258)] = 24563, - [SMALL_STATE(1259)] = 24573, - [SMALL_STATE(1260)] = 24583, - [SMALL_STATE(1261)] = 24593, - [SMALL_STATE(1262)] = 24603, - [SMALL_STATE(1263)] = 24613, - [SMALL_STATE(1264)] = 24623, - [SMALL_STATE(1265)] = 24633, - [SMALL_STATE(1266)] = 24643, - [SMALL_STATE(1267)] = 24653, - [SMALL_STATE(1268)] = 24663, - [SMALL_STATE(1269)] = 24673, - [SMALL_STATE(1270)] = 24683, - [SMALL_STATE(1271)] = 24693, - [SMALL_STATE(1272)] = 24703, - [SMALL_STATE(1273)] = 24713, - [SMALL_STATE(1274)] = 24723, - [SMALL_STATE(1275)] = 24733, - [SMALL_STATE(1276)] = 24743, - [SMALL_STATE(1277)] = 24753, - [SMALL_STATE(1278)] = 24763, - [SMALL_STATE(1279)] = 24773, - [SMALL_STATE(1280)] = 24783, - [SMALL_STATE(1281)] = 24793, - [SMALL_STATE(1282)] = 24803, - [SMALL_STATE(1283)] = 24813, - [SMALL_STATE(1284)] = 24823, - [SMALL_STATE(1285)] = 24833, - [SMALL_STATE(1286)] = 24843, - [SMALL_STATE(1287)] = 24853, - [SMALL_STATE(1288)] = 24863, - [SMALL_STATE(1289)] = 24873, - [SMALL_STATE(1290)] = 24883, - [SMALL_STATE(1291)] = 24893, - [SMALL_STATE(1292)] = 24903, - [SMALL_STATE(1293)] = 24913, - [SMALL_STATE(1294)] = 24923, - [SMALL_STATE(1295)] = 24933, - [SMALL_STATE(1296)] = 24943, - [SMALL_STATE(1297)] = 24953, - [SMALL_STATE(1298)] = 24963, - [SMALL_STATE(1299)] = 24973, - [SMALL_STATE(1300)] = 24983, - [SMALL_STATE(1301)] = 24993, - [SMALL_STATE(1302)] = 25003, - [SMALL_STATE(1303)] = 25013, - [SMALL_STATE(1304)] = 25023, - [SMALL_STATE(1305)] = 25033, - [SMALL_STATE(1306)] = 25043, - [SMALL_STATE(1307)] = 25053, - [SMALL_STATE(1308)] = 25063, - [SMALL_STATE(1309)] = 25073, - [SMALL_STATE(1310)] = 25083, - [SMALL_STATE(1311)] = 25093, - [SMALL_STATE(1312)] = 25103, - [SMALL_STATE(1313)] = 25113, - [SMALL_STATE(1314)] = 25123, - [SMALL_STATE(1315)] = 25133, - [SMALL_STATE(1316)] = 25143, - [SMALL_STATE(1317)] = 25153, - [SMALL_STATE(1318)] = 25163, - [SMALL_STATE(1319)] = 25173, - [SMALL_STATE(1320)] = 25183, - [SMALL_STATE(1321)] = 25193, - [SMALL_STATE(1322)] = 25203, - [SMALL_STATE(1323)] = 25213, - [SMALL_STATE(1324)] = 25223, - [SMALL_STATE(1325)] = 25231, - [SMALL_STATE(1326)] = 25241, - [SMALL_STATE(1327)] = 25251, - [SMALL_STATE(1328)] = 25261, - [SMALL_STATE(1329)] = 25271, - [SMALL_STATE(1330)] = 25281, - [SMALL_STATE(1331)] = 25291, - [SMALL_STATE(1332)] = 25299, - [SMALL_STATE(1333)] = 25309, - [SMALL_STATE(1334)] = 25319, - [SMALL_STATE(1335)] = 25329, - [SMALL_STATE(1336)] = 25339, - [SMALL_STATE(1337)] = 25349, - [SMALL_STATE(1338)] = 25359, - [SMALL_STATE(1339)] = 25369, - [SMALL_STATE(1340)] = 25379, - [SMALL_STATE(1341)] = 25389, - [SMALL_STATE(1342)] = 25399, - [SMALL_STATE(1343)] = 25407, - [SMALL_STATE(1344)] = 25417, - [SMALL_STATE(1345)] = 25427, - [SMALL_STATE(1346)] = 25437, - [SMALL_STATE(1347)] = 25447, - [SMALL_STATE(1348)] = 25455, - [SMALL_STATE(1349)] = 25465, - [SMALL_STATE(1350)] = 25475, - [SMALL_STATE(1351)] = 25485, - [SMALL_STATE(1352)] = 25495, - [SMALL_STATE(1353)] = 25505, - [SMALL_STATE(1354)] = 25515, - [SMALL_STATE(1355)] = 25525, - [SMALL_STATE(1356)] = 25535, - [SMALL_STATE(1357)] = 25545, - [SMALL_STATE(1358)] = 25555, - [SMALL_STATE(1359)] = 25565, - [SMALL_STATE(1360)] = 25575, - [SMALL_STATE(1361)] = 25585, - [SMALL_STATE(1362)] = 25595, - [SMALL_STATE(1363)] = 25605, - [SMALL_STATE(1364)] = 25615, - [SMALL_STATE(1365)] = 25625, - [SMALL_STATE(1366)] = 25635, - [SMALL_STATE(1367)] = 25645, - [SMALL_STATE(1368)] = 25655, - [SMALL_STATE(1369)] = 25665, - [SMALL_STATE(1370)] = 25675, - [SMALL_STATE(1371)] = 25685, - [SMALL_STATE(1372)] = 25695, - [SMALL_STATE(1373)] = 25705, - [SMALL_STATE(1374)] = 25715, - [SMALL_STATE(1375)] = 25725, - [SMALL_STATE(1376)] = 25735, - [SMALL_STATE(1377)] = 25745, - [SMALL_STATE(1378)] = 25755, - [SMALL_STATE(1379)] = 25765, - [SMALL_STATE(1380)] = 25775, - [SMALL_STATE(1381)] = 25785, - [SMALL_STATE(1382)] = 25795, - [SMALL_STATE(1383)] = 25805, - [SMALL_STATE(1384)] = 25815, - [SMALL_STATE(1385)] = 25825, - [SMALL_STATE(1386)] = 25835, - [SMALL_STATE(1387)] = 25845, - [SMALL_STATE(1388)] = 25855, - [SMALL_STATE(1389)] = 25865, - [SMALL_STATE(1390)] = 25875, - [SMALL_STATE(1391)] = 25885, - [SMALL_STATE(1392)] = 25895, - [SMALL_STATE(1393)] = 25905, - [SMALL_STATE(1394)] = 25915, - [SMALL_STATE(1395)] = 25925, - [SMALL_STATE(1396)] = 25935, - [SMALL_STATE(1397)] = 25945, - [SMALL_STATE(1398)] = 25955, - [SMALL_STATE(1399)] = 25963, - [SMALL_STATE(1400)] = 25973, - [SMALL_STATE(1401)] = 25983, - [SMALL_STATE(1402)] = 25993, - [SMALL_STATE(1403)] = 26003, - [SMALL_STATE(1404)] = 26013, - [SMALL_STATE(1405)] = 26023, - [SMALL_STATE(1406)] = 26031, - [SMALL_STATE(1407)] = 26041, - [SMALL_STATE(1408)] = 26051, - [SMALL_STATE(1409)] = 26061, - [SMALL_STATE(1410)] = 26068, - [SMALL_STATE(1411)] = 26075, - [SMALL_STATE(1412)] = 26082, - [SMALL_STATE(1413)] = 26089, - [SMALL_STATE(1414)] = 26096, - [SMALL_STATE(1415)] = 26103, - [SMALL_STATE(1416)] = 26110, - [SMALL_STATE(1417)] = 26117, - [SMALL_STATE(1418)] = 26124, - [SMALL_STATE(1419)] = 26131, - [SMALL_STATE(1420)] = 26138, - [SMALL_STATE(1421)] = 26145, - [SMALL_STATE(1422)] = 26152, - [SMALL_STATE(1423)] = 26159, - [SMALL_STATE(1424)] = 26166, - [SMALL_STATE(1425)] = 26173, - [SMALL_STATE(1426)] = 26180, - [SMALL_STATE(1427)] = 26187, - [SMALL_STATE(1428)] = 26194, - [SMALL_STATE(1429)] = 26201, - [SMALL_STATE(1430)] = 26208, - [SMALL_STATE(1431)] = 26215, - [SMALL_STATE(1432)] = 26222, - [SMALL_STATE(1433)] = 26229, - [SMALL_STATE(1434)] = 26236, - [SMALL_STATE(1435)] = 26243, - [SMALL_STATE(1436)] = 26250, - [SMALL_STATE(1437)] = 26257, - [SMALL_STATE(1438)] = 26264, - [SMALL_STATE(1439)] = 26271, - [SMALL_STATE(1440)] = 26278, - [SMALL_STATE(1441)] = 26285, - [SMALL_STATE(1442)] = 26292, - [SMALL_STATE(1443)] = 26299, - [SMALL_STATE(1444)] = 26306, - [SMALL_STATE(1445)] = 26313, - [SMALL_STATE(1446)] = 26320, - [SMALL_STATE(1447)] = 26327, - [SMALL_STATE(1448)] = 26334, - [SMALL_STATE(1449)] = 26341, - [SMALL_STATE(1450)] = 26348, - [SMALL_STATE(1451)] = 26355, - [SMALL_STATE(1452)] = 26362, - [SMALL_STATE(1453)] = 26369, - [SMALL_STATE(1454)] = 26376, - [SMALL_STATE(1455)] = 26383, - [SMALL_STATE(1456)] = 26390, - [SMALL_STATE(1457)] = 26397, - [SMALL_STATE(1458)] = 26404, - [SMALL_STATE(1459)] = 26411, - [SMALL_STATE(1460)] = 26418, - [SMALL_STATE(1461)] = 26425, - [SMALL_STATE(1462)] = 26432, - [SMALL_STATE(1463)] = 26439, - [SMALL_STATE(1464)] = 26446, - [SMALL_STATE(1465)] = 26453, - [SMALL_STATE(1466)] = 26460, - [SMALL_STATE(1467)] = 26467, - [SMALL_STATE(1468)] = 26474, - [SMALL_STATE(1469)] = 26481, - [SMALL_STATE(1470)] = 26488, - [SMALL_STATE(1471)] = 26495, - [SMALL_STATE(1472)] = 26502, - [SMALL_STATE(1473)] = 26509, - [SMALL_STATE(1474)] = 26516, - [SMALL_STATE(1475)] = 26523, - [SMALL_STATE(1476)] = 26530, - [SMALL_STATE(1477)] = 26537, - [SMALL_STATE(1478)] = 26544, - [SMALL_STATE(1479)] = 26551, - [SMALL_STATE(1480)] = 26558, - [SMALL_STATE(1481)] = 26565, - [SMALL_STATE(1482)] = 26572, - [SMALL_STATE(1483)] = 26579, - [SMALL_STATE(1484)] = 26586, - [SMALL_STATE(1485)] = 26593, - [SMALL_STATE(1486)] = 26600, - [SMALL_STATE(1487)] = 26607, - [SMALL_STATE(1488)] = 26614, - [SMALL_STATE(1489)] = 26621, - [SMALL_STATE(1490)] = 26628, - [SMALL_STATE(1491)] = 26635, - [SMALL_STATE(1492)] = 26642, - [SMALL_STATE(1493)] = 26649, - [SMALL_STATE(1494)] = 26656, - [SMALL_STATE(1495)] = 26663, - [SMALL_STATE(1496)] = 26670, - [SMALL_STATE(1497)] = 26677, - [SMALL_STATE(1498)] = 26684, - [SMALL_STATE(1499)] = 26691, - [SMALL_STATE(1500)] = 26698, - [SMALL_STATE(1501)] = 26705, - [SMALL_STATE(1502)] = 26712, - [SMALL_STATE(1503)] = 26719, - [SMALL_STATE(1504)] = 26726, - [SMALL_STATE(1505)] = 26733, - [SMALL_STATE(1506)] = 26740, - [SMALL_STATE(1507)] = 26747, - [SMALL_STATE(1508)] = 26754, - [SMALL_STATE(1509)] = 26761, - [SMALL_STATE(1510)] = 26768, - [SMALL_STATE(1511)] = 26775, - [SMALL_STATE(1512)] = 26782, - [SMALL_STATE(1513)] = 26789, - [SMALL_STATE(1514)] = 26796, - [SMALL_STATE(1515)] = 26803, - [SMALL_STATE(1516)] = 26810, - [SMALL_STATE(1517)] = 26817, - [SMALL_STATE(1518)] = 26824, - [SMALL_STATE(1519)] = 26831, - [SMALL_STATE(1520)] = 26838, - [SMALL_STATE(1521)] = 26845, - [SMALL_STATE(1522)] = 26852, - [SMALL_STATE(1523)] = 26859, - [SMALL_STATE(1524)] = 26866, - [SMALL_STATE(1525)] = 26873, - [SMALL_STATE(1526)] = 26880, - [SMALL_STATE(1527)] = 26887, - [SMALL_STATE(1528)] = 26894, - [SMALL_STATE(1529)] = 26901, - [SMALL_STATE(1530)] = 26908, - [SMALL_STATE(1531)] = 26915, - [SMALL_STATE(1532)] = 26922, - [SMALL_STATE(1533)] = 26929, - [SMALL_STATE(1534)] = 26936, - [SMALL_STATE(1535)] = 26943, - [SMALL_STATE(1536)] = 26950, - [SMALL_STATE(1537)] = 26957, - [SMALL_STATE(1538)] = 26964, - [SMALL_STATE(1539)] = 26971, - [SMALL_STATE(1540)] = 26978, - [SMALL_STATE(1541)] = 26985, - [SMALL_STATE(1542)] = 26992, - [SMALL_STATE(1543)] = 26999, - [SMALL_STATE(1544)] = 27006, + [SMALL_STATE(303)] = 71, + [SMALL_STATE(304)] = 142, + [SMALL_STATE(305)] = 215, + [SMALL_STATE(306)] = 286, + [SMALL_STATE(307)] = 357, + [SMALL_STATE(308)] = 392, + [SMALL_STATE(309)] = 427, + [SMALL_STATE(310)] = 494, + [SMALL_STATE(311)] = 527, + [SMALL_STATE(312)] = 556, + [SMALL_STATE(313)] = 623, + [SMALL_STATE(314)] = 690, + [SMALL_STATE(315)] = 757, + [SMALL_STATE(316)] = 824, + [SMALL_STATE(317)] = 853, + [SMALL_STATE(318)] = 882, + [SMALL_STATE(319)] = 949, + [SMALL_STATE(320)] = 1016, + [SMALL_STATE(321)] = 1083, + [SMALL_STATE(322)] = 1150, + [SMALL_STATE(323)] = 1217, + [SMALL_STATE(324)] = 1284, + [SMALL_STATE(325)] = 1313, + [SMALL_STATE(326)] = 1380, + [SMALL_STATE(327)] = 1447, + [SMALL_STATE(328)] = 1514, + [SMALL_STATE(329)] = 1581, + [SMALL_STATE(330)] = 1648, + [SMALL_STATE(331)] = 1678, + [SMALL_STATE(332)] = 1710, + [SMALL_STATE(333)] = 1739, + [SMALL_STATE(334)] = 1766, + [SMALL_STATE(335)] = 1795, + [SMALL_STATE(336)] = 1822, + [SMALL_STATE(337)] = 1849, + [SMALL_STATE(338)] = 1876, + [SMALL_STATE(339)] = 1905, + [SMALL_STATE(340)] = 1932, + [SMALL_STATE(341)] = 1959, + [SMALL_STATE(342)] = 1986, + [SMALL_STATE(343)] = 2015, + [SMALL_STATE(344)] = 2042, + [SMALL_STATE(345)] = 2071, + [SMALL_STATE(346)] = 2098, + [SMALL_STATE(347)] = 2127, + [SMALL_STATE(348)] = 2154, + [SMALL_STATE(349)] = 2181, + [SMALL_STATE(350)] = 2210, + [SMALL_STATE(351)] = 2237, + [SMALL_STATE(352)] = 2264, + [SMALL_STATE(353)] = 2291, + [SMALL_STATE(354)] = 2318, + [SMALL_STATE(355)] = 2345, + [SMALL_STATE(356)] = 2372, + [SMALL_STATE(357)] = 2399, + [SMALL_STATE(358)] = 2426, + [SMALL_STATE(359)] = 2453, + [SMALL_STATE(360)] = 2480, + [SMALL_STATE(361)] = 2507, + [SMALL_STATE(362)] = 2534, + [SMALL_STATE(363)] = 2561, + [SMALL_STATE(364)] = 2587, + [SMALL_STATE(365)] = 2613, + [SMALL_STATE(366)] = 2639, + [SMALL_STATE(367)] = 2665, + [SMALL_STATE(368)] = 2691, + [SMALL_STATE(369)] = 2717, + [SMALL_STATE(370)] = 2743, + [SMALL_STATE(371)] = 2769, + [SMALL_STATE(372)] = 2795, + [SMALL_STATE(373)] = 2821, + [SMALL_STATE(374)] = 2847, + [SMALL_STATE(375)] = 2873, + [SMALL_STATE(376)] = 2899, + [SMALL_STATE(377)] = 2925, + [SMALL_STATE(378)] = 2951, + [SMALL_STATE(379)] = 2977, + [SMALL_STATE(380)] = 3003, + [SMALL_STATE(381)] = 3029, + [SMALL_STATE(382)] = 3055, + [SMALL_STATE(383)] = 3089, + [SMALL_STATE(384)] = 3115, + [SMALL_STATE(385)] = 3141, + [SMALL_STATE(386)] = 3167, + [SMALL_STATE(387)] = 3193, + [SMALL_STATE(388)] = 3221, + [SMALL_STATE(389)] = 3267, + [SMALL_STATE(390)] = 3293, + [SMALL_STATE(391)] = 3319, + [SMALL_STATE(392)] = 3347, + [SMALL_STATE(393)] = 3393, + [SMALL_STATE(394)] = 3419, + [SMALL_STATE(395)] = 3445, + [SMALL_STATE(396)] = 3471, + [SMALL_STATE(397)] = 3517, + [SMALL_STATE(398)] = 3543, + [SMALL_STATE(399)] = 3589, + [SMALL_STATE(400)] = 3615, + [SMALL_STATE(401)] = 3641, + [SMALL_STATE(402)] = 3667, + [SMALL_STATE(403)] = 3693, + [SMALL_STATE(404)] = 3719, + [SMALL_STATE(405)] = 3745, + [SMALL_STATE(406)] = 3771, + [SMALL_STATE(407)] = 3797, + [SMALL_STATE(408)] = 3823, + [SMALL_STATE(409)] = 3849, + [SMALL_STATE(410)] = 3875, + [SMALL_STATE(411)] = 3901, + [SMALL_STATE(412)] = 3927, + [SMALL_STATE(413)] = 3953, + [SMALL_STATE(414)] = 3979, + [SMALL_STATE(415)] = 4005, + [SMALL_STATE(416)] = 4031, + [SMALL_STATE(417)] = 4057, + [SMALL_STATE(418)] = 4083, + [SMALL_STATE(419)] = 4109, + [SMALL_STATE(420)] = 4135, + [SMALL_STATE(421)] = 4161, + [SMALL_STATE(422)] = 4187, + [SMALL_STATE(423)] = 4213, + [SMALL_STATE(424)] = 4259, + [SMALL_STATE(425)] = 4285, + [SMALL_STATE(426)] = 4333, + [SMALL_STATE(427)] = 4361, + [SMALL_STATE(428)] = 4389, + [SMALL_STATE(429)] = 4435, + [SMALL_STATE(430)] = 4461, + [SMALL_STATE(431)] = 4503, + [SMALL_STATE(432)] = 4529, + [SMALL_STATE(433)] = 4555, + [SMALL_STATE(434)] = 4581, + [SMALL_STATE(435)] = 4607, + [SMALL_STATE(436)] = 4633, + [SMALL_STATE(437)] = 4659, + [SMALL_STATE(438)] = 4685, + [SMALL_STATE(439)] = 4711, + [SMALL_STATE(440)] = 4737, + [SMALL_STATE(441)] = 4763, + [SMALL_STATE(442)] = 4789, + [SMALL_STATE(443)] = 4815, + [SMALL_STATE(444)] = 4841, + [SMALL_STATE(445)] = 4867, + [SMALL_STATE(446)] = 4893, + [SMALL_STATE(447)] = 4919, + [SMALL_STATE(448)] = 4945, + [SMALL_STATE(449)] = 4971, + [SMALL_STATE(450)] = 4997, + [SMALL_STATE(451)] = 5023, + [SMALL_STATE(452)] = 5049, + [SMALL_STATE(453)] = 5075, + [SMALL_STATE(454)] = 5101, + [SMALL_STATE(455)] = 5127, + [SMALL_STATE(456)] = 5153, + [SMALL_STATE(457)] = 5179, + [SMALL_STATE(458)] = 5225, + [SMALL_STATE(459)] = 5251, + [SMALL_STATE(460)] = 5277, + [SMALL_STATE(461)] = 5303, + [SMALL_STATE(462)] = 5329, + [SMALL_STATE(463)] = 5355, + [SMALL_STATE(464)] = 5381, + [SMALL_STATE(465)] = 5407, + [SMALL_STATE(466)] = 5433, + [SMALL_STATE(467)] = 5459, + [SMALL_STATE(468)] = 5485, + [SMALL_STATE(469)] = 5511, + [SMALL_STATE(470)] = 5537, + [SMALL_STATE(471)] = 5563, + [SMALL_STATE(472)] = 5589, + [SMALL_STATE(473)] = 5615, + [SMALL_STATE(474)] = 5641, + [SMALL_STATE(475)] = 5667, + [SMALL_STATE(476)] = 5693, + [SMALL_STATE(477)] = 5719, + [SMALL_STATE(478)] = 5745, + [SMALL_STATE(479)] = 5771, + [SMALL_STATE(480)] = 5797, + [SMALL_STATE(481)] = 5823, + [SMALL_STATE(482)] = 5849, + [SMALL_STATE(483)] = 5875, + [SMALL_STATE(484)] = 5901, + [SMALL_STATE(485)] = 5927, + [SMALL_STATE(486)] = 5953, + [SMALL_STATE(487)] = 5979, + [SMALL_STATE(488)] = 6005, + [SMALL_STATE(489)] = 6031, + [SMALL_STATE(490)] = 6057, + [SMALL_STATE(491)] = 6103, + [SMALL_STATE(492)] = 6129, + [SMALL_STATE(493)] = 6155, + [SMALL_STATE(494)] = 6181, + [SMALL_STATE(495)] = 6207, + [SMALL_STATE(496)] = 6233, + [SMALL_STATE(497)] = 6259, + [SMALL_STATE(498)] = 6285, + [SMALL_STATE(499)] = 6311, + [SMALL_STATE(500)] = 6337, + [SMALL_STATE(501)] = 6363, + [SMALL_STATE(502)] = 6389, + [SMALL_STATE(503)] = 6415, + [SMALL_STATE(504)] = 6441, + [SMALL_STATE(505)] = 6467, + [SMALL_STATE(506)] = 6493, + [SMALL_STATE(507)] = 6519, + [SMALL_STATE(508)] = 6545, + [SMALL_STATE(509)] = 6571, + [SMALL_STATE(510)] = 6597, + [SMALL_STATE(511)] = 6623, + [SMALL_STATE(512)] = 6649, + [SMALL_STATE(513)] = 6675, + [SMALL_STATE(514)] = 6701, + [SMALL_STATE(515)] = 6727, + [SMALL_STATE(516)] = 6753, + [SMALL_STATE(517)] = 6779, + [SMALL_STATE(518)] = 6805, + [SMALL_STATE(519)] = 6831, + [SMALL_STATE(520)] = 6857, + [SMALL_STATE(521)] = 6885, + [SMALL_STATE(522)] = 6911, + [SMALL_STATE(523)] = 6937, + [SMALL_STATE(524)] = 6963, + [SMALL_STATE(525)] = 6989, + [SMALL_STATE(526)] = 7015, + [SMALL_STATE(527)] = 7041, + [SMALL_STATE(528)] = 7067, + [SMALL_STATE(529)] = 7093, + [SMALL_STATE(530)] = 7119, + [SMALL_STATE(531)] = 7165, + [SMALL_STATE(532)] = 7207, + [SMALL_STATE(533)] = 7249, + [SMALL_STATE(534)] = 7275, + [SMALL_STATE(535)] = 7301, + [SMALL_STATE(536)] = 7327, + [SMALL_STATE(537)] = 7353, + [SMALL_STATE(538)] = 7379, + [SMALL_STATE(539)] = 7425, + [SMALL_STATE(540)] = 7451, + [SMALL_STATE(541)] = 7477, + [SMALL_STATE(542)] = 7503, + [SMALL_STATE(543)] = 7529, + [SMALL_STATE(544)] = 7555, + [SMALL_STATE(545)] = 7581, + [SMALL_STATE(546)] = 7627, + [SMALL_STATE(547)] = 7653, + [SMALL_STATE(548)] = 7679, + [SMALL_STATE(549)] = 7705, + [SMALL_STATE(550)] = 7731, + [SMALL_STATE(551)] = 7757, + [SMALL_STATE(552)] = 7783, + [SMALL_STATE(553)] = 7809, + [SMALL_STATE(554)] = 7855, + [SMALL_STATE(555)] = 7901, + [SMALL_STATE(556)] = 7947, + [SMALL_STATE(557)] = 7993, + [SMALL_STATE(558)] = 8039, + [SMALL_STATE(559)] = 8085, + [SMALL_STATE(560)] = 8131, + [SMALL_STATE(561)] = 8177, + [SMALL_STATE(562)] = 8203, + [SMALL_STATE(563)] = 8229, + [SMALL_STATE(564)] = 8275, + [SMALL_STATE(565)] = 8321, + [SMALL_STATE(566)] = 8347, + [SMALL_STATE(567)] = 8375, + [SMALL_STATE(568)] = 8401, + [SMALL_STATE(569)] = 8427, + [SMALL_STATE(570)] = 8453, + [SMALL_STATE(571)] = 8479, + [SMALL_STATE(572)] = 8525, + [SMALL_STATE(573)] = 8571, + [SMALL_STATE(574)] = 8597, + [SMALL_STATE(575)] = 8623, + [SMALL_STATE(576)] = 8649, + [SMALL_STATE(577)] = 8675, + [SMALL_STATE(578)] = 8701, + [SMALL_STATE(579)] = 8727, + [SMALL_STATE(580)] = 8755, + [SMALL_STATE(581)] = 8781, + [SMALL_STATE(582)] = 8807, + [SMALL_STATE(583)] = 8833, + [SMALL_STATE(584)] = 8859, + [SMALL_STATE(585)] = 8885, + [SMALL_STATE(586)] = 8911, + [SMALL_STATE(587)] = 8939, + [SMALL_STATE(588)] = 8965, + [SMALL_STATE(589)] = 9013, + [SMALL_STATE(590)] = 9061, + [SMALL_STATE(591)] = 9107, + [SMALL_STATE(592)] = 9135, + [SMALL_STATE(593)] = 9169, + [SMALL_STATE(594)] = 9195, + [SMALL_STATE(595)] = 9241, + [SMALL_STATE(596)] = 9267, + [SMALL_STATE(597)] = 9293, + [SMALL_STATE(598)] = 9319, + [SMALL_STATE(599)] = 9345, + [SMALL_STATE(600)] = 9371, + [SMALL_STATE(601)] = 9397, + [SMALL_STATE(602)] = 9423, + [SMALL_STATE(603)] = 9449, + [SMALL_STATE(604)] = 9475, + [SMALL_STATE(605)] = 9501, + [SMALL_STATE(606)] = 9527, + [SMALL_STATE(607)] = 9553, + [SMALL_STATE(608)] = 9579, + [SMALL_STATE(609)] = 9605, + [SMALL_STATE(610)] = 9631, + [SMALL_STATE(611)] = 9657, + [SMALL_STATE(612)] = 9703, + [SMALL_STATE(613)] = 9729, + [SMALL_STATE(614)] = 9775, + [SMALL_STATE(615)] = 9801, + [SMALL_STATE(616)] = 9826, + [SMALL_STATE(617)] = 9851, + [SMALL_STATE(618)] = 9876, + [SMALL_STATE(619)] = 9901, + [SMALL_STATE(620)] = 9926, + [SMALL_STATE(621)] = 9951, + [SMALL_STATE(622)] = 9976, + [SMALL_STATE(623)] = 10017, + [SMALL_STATE(624)] = 10042, + [SMALL_STATE(625)] = 10067, + [SMALL_STATE(626)] = 10092, + [SMALL_STATE(627)] = 10137, + [SMALL_STATE(628)] = 10162, + [SMALL_STATE(629)] = 10187, + [SMALL_STATE(630)] = 10212, + [SMALL_STATE(631)] = 10237, + [SMALL_STATE(632)] = 10262, + [SMALL_STATE(633)] = 10307, + [SMALL_STATE(634)] = 10332, + [SMALL_STATE(635)] = 10377, + [SMALL_STATE(636)] = 10402, + [SMALL_STATE(637)] = 10447, + [SMALL_STATE(638)] = 10472, + [SMALL_STATE(639)] = 10517, + [SMALL_STATE(640)] = 10542, + [SMALL_STATE(641)] = 10567, + [SMALL_STATE(642)] = 10592, + [SMALL_STATE(643)] = 10617, + [SMALL_STATE(644)] = 10642, + [SMALL_STATE(645)] = 10667, + [SMALL_STATE(646)] = 10692, + [SMALL_STATE(647)] = 10717, + [SMALL_STATE(648)] = 10742, + [SMALL_STATE(649)] = 10767, + [SMALL_STATE(650)] = 10792, + [SMALL_STATE(651)] = 10817, + [SMALL_STATE(652)] = 10864, + [SMALL_STATE(653)] = 10889, + [SMALL_STATE(654)] = 10914, + [SMALL_STATE(655)] = 10939, + [SMALL_STATE(656)] = 10964, + [SMALL_STATE(657)] = 10989, + [SMALL_STATE(658)] = 11014, + [SMALL_STATE(659)] = 11039, + [SMALL_STATE(660)] = 11064, + [SMALL_STATE(661)] = 11089, + [SMALL_STATE(662)] = 11114, + [SMALL_STATE(663)] = 11139, + [SMALL_STATE(664)] = 11164, + [SMALL_STATE(665)] = 11189, + [SMALL_STATE(666)] = 11214, + [SMALL_STATE(667)] = 11239, + [SMALL_STATE(668)] = 11264, + [SMALL_STATE(669)] = 11289, + [SMALL_STATE(670)] = 11314, + [SMALL_STATE(671)] = 11339, + [SMALL_STATE(672)] = 11364, + [SMALL_STATE(673)] = 11389, + [SMALL_STATE(674)] = 11414, + [SMALL_STATE(675)] = 11439, + [SMALL_STATE(676)] = 11464, + [SMALL_STATE(677)] = 11509, + [SMALL_STATE(678)] = 11534, + [SMALL_STATE(679)] = 11559, + [SMALL_STATE(680)] = 11584, + [SMALL_STATE(681)] = 11609, + [SMALL_STATE(682)] = 11634, + [SMALL_STATE(683)] = 11661, + [SMALL_STATE(684)] = 11688, + [SMALL_STATE(685)] = 11733, + [SMALL_STATE(686)] = 11758, + [SMALL_STATE(687)] = 11783, + [SMALL_STATE(688)] = 11808, + [SMALL_STATE(689)] = 11833, + [SMALL_STATE(690)] = 11858, + [SMALL_STATE(691)] = 11883, + [SMALL_STATE(692)] = 11908, + [SMALL_STATE(693)] = 11933, + [SMALL_STATE(694)] = 11958, + [SMALL_STATE(695)] = 11983, + [SMALL_STATE(696)] = 12008, + [SMALL_STATE(697)] = 12033, + [SMALL_STATE(698)] = 12058, + [SMALL_STATE(699)] = 12083, + [SMALL_STATE(700)] = 12108, + [SMALL_STATE(701)] = 12135, + [SMALL_STATE(702)] = 12160, + [SMALL_STATE(703)] = 12193, + [SMALL_STATE(704)] = 12226, + [SMALL_STATE(705)] = 12251, + [SMALL_STATE(706)] = 12276, + [SMALL_STATE(707)] = 12317, + [SMALL_STATE(708)] = 12342, + [SMALL_STATE(709)] = 12369, + [SMALL_STATE(710)] = 12394, + [SMALL_STATE(711)] = 12439, + [SMALL_STATE(712)] = 12464, + [SMALL_STATE(713)] = 12489, + [SMALL_STATE(714)] = 12514, + [SMALL_STATE(715)] = 12539, + [SMALL_STATE(716)] = 12564, + [SMALL_STATE(717)] = 12589, + [SMALL_STATE(718)] = 12614, + [SMALL_STATE(719)] = 12639, + [SMALL_STATE(720)] = 12664, + [SMALL_STATE(721)] = 12689, + [SMALL_STATE(722)] = 12714, + [SMALL_STATE(723)] = 12739, + [SMALL_STATE(724)] = 12764, + [SMALL_STATE(725)] = 12789, + [SMALL_STATE(726)] = 12814, + [SMALL_STATE(727)] = 12839, + [SMALL_STATE(728)] = 12864, + [SMALL_STATE(729)] = 12889, + [SMALL_STATE(730)] = 12914, + [SMALL_STATE(731)] = 12939, + [SMALL_STATE(732)] = 12964, + [SMALL_STATE(733)] = 12989, + [SMALL_STATE(734)] = 13014, + [SMALL_STATE(735)] = 13039, + [SMALL_STATE(736)] = 13064, + [SMALL_STATE(737)] = 13105, + [SMALL_STATE(738)] = 13150, + [SMALL_STATE(739)] = 13175, + [SMALL_STATE(740)] = 13200, + [SMALL_STATE(741)] = 13225, + [SMALL_STATE(742)] = 13250, + [SMALL_STATE(743)] = 13275, + [SMALL_STATE(744)] = 13300, + [SMALL_STATE(745)] = 13325, + [SMALL_STATE(746)] = 13350, + [SMALL_STATE(747)] = 13375, + [SMALL_STATE(748)] = 13400, + [SMALL_STATE(749)] = 13425, + [SMALL_STATE(750)] = 13450, + [SMALL_STATE(751)] = 13475, + [SMALL_STATE(752)] = 13500, + [SMALL_STATE(753)] = 13525, + [SMALL_STATE(754)] = 13550, + [SMALL_STATE(755)] = 13575, + [SMALL_STATE(756)] = 13600, + [SMALL_STATE(757)] = 13625, + [SMALL_STATE(758)] = 13650, + [SMALL_STATE(759)] = 13675, + [SMALL_STATE(760)] = 13700, + [SMALL_STATE(761)] = 13725, + [SMALL_STATE(762)] = 13750, + [SMALL_STATE(763)] = 13775, + [SMALL_STATE(764)] = 13800, + [SMALL_STATE(765)] = 13825, + [SMALL_STATE(766)] = 13850, + [SMALL_STATE(767)] = 13875, + [SMALL_STATE(768)] = 13900, + [SMALL_STATE(769)] = 13945, + [SMALL_STATE(770)] = 13970, + [SMALL_STATE(771)] = 13995, + [SMALL_STATE(772)] = 14020, + [SMALL_STATE(773)] = 14045, + [SMALL_STATE(774)] = 14070, + [SMALL_STATE(775)] = 14095, + [SMALL_STATE(776)] = 14120, + [SMALL_STATE(777)] = 14145, + [SMALL_STATE(778)] = 14170, + [SMALL_STATE(779)] = 14195, + [SMALL_STATE(780)] = 14220, + [SMALL_STATE(781)] = 14245, + [SMALL_STATE(782)] = 14270, + [SMALL_STATE(783)] = 14295, + [SMALL_STATE(784)] = 14320, + [SMALL_STATE(785)] = 14345, + [SMALL_STATE(786)] = 14370, + [SMALL_STATE(787)] = 14395, + [SMALL_STATE(788)] = 14420, + [SMALL_STATE(789)] = 14445, + [SMALL_STATE(790)] = 14470, + [SMALL_STATE(791)] = 14495, + [SMALL_STATE(792)] = 14520, + [SMALL_STATE(793)] = 14545, + [SMALL_STATE(794)] = 14570, + [SMALL_STATE(795)] = 14595, + [SMALL_STATE(796)] = 14620, + [SMALL_STATE(797)] = 14645, + [SMALL_STATE(798)] = 14670, + [SMALL_STATE(799)] = 14695, + [SMALL_STATE(800)] = 14720, + [SMALL_STATE(801)] = 14745, + [SMALL_STATE(802)] = 14770, + [SMALL_STATE(803)] = 14795, + [SMALL_STATE(804)] = 14820, + [SMALL_STATE(805)] = 14845, + [SMALL_STATE(806)] = 14870, + [SMALL_STATE(807)] = 14895, + [SMALL_STATE(808)] = 14920, + [SMALL_STATE(809)] = 14945, + [SMALL_STATE(810)] = 14970, + [SMALL_STATE(811)] = 14995, + [SMALL_STATE(812)] = 15020, + [SMALL_STATE(813)] = 15045, + [SMALL_STATE(814)] = 15070, + [SMALL_STATE(815)] = 15095, + [SMALL_STATE(816)] = 15120, + [SMALL_STATE(817)] = 15145, + [SMALL_STATE(818)] = 15170, + [SMALL_STATE(819)] = 15195, + [SMALL_STATE(820)] = 15220, + [SMALL_STATE(821)] = 15265, + [SMALL_STATE(822)] = 15310, + [SMALL_STATE(823)] = 15355, + [SMALL_STATE(824)] = 15400, + [SMALL_STATE(825)] = 15445, + [SMALL_STATE(826)] = 15490, + [SMALL_STATE(827)] = 15535, + [SMALL_STATE(828)] = 15580, + [SMALL_STATE(829)] = 15605, + [SMALL_STATE(830)] = 15630, + [SMALL_STATE(831)] = 15675, + [SMALL_STATE(832)] = 15720, + [SMALL_STATE(833)] = 15745, + [SMALL_STATE(834)] = 15770, + [SMALL_STATE(835)] = 15795, + [SMALL_STATE(836)] = 15820, + [SMALL_STATE(837)] = 15847, + [SMALL_STATE(838)] = 15892, + [SMALL_STATE(839)] = 15917, + [SMALL_STATE(840)] = 15942, + [SMALL_STATE(841)] = 15967, + [SMALL_STATE(842)] = 15992, + [SMALL_STATE(843)] = 16037, + [SMALL_STATE(844)] = 16082, + [SMALL_STATE(845)] = 16107, + [SMALL_STATE(846)] = 16152, + [SMALL_STATE(847)] = 16197, + [SMALL_STATE(848)] = 16244, + [SMALL_STATE(849)] = 16289, + [SMALL_STATE(850)] = 16336, + [SMALL_STATE(851)] = 16363, + [SMALL_STATE(852)] = 16408, + [SMALL_STATE(853)] = 16433, + [SMALL_STATE(854)] = 16460, + [SMALL_STATE(855)] = 16485, + [SMALL_STATE(856)] = 16510, + [SMALL_STATE(857)] = 16535, + [SMALL_STATE(858)] = 16560, + [SMALL_STATE(859)] = 16585, + [SMALL_STATE(860)] = 16631, + [SMALL_STATE(861)] = 16677, + [SMALL_STATE(862)] = 16723, + [SMALL_STATE(863)] = 16769, + [SMALL_STATE(864)] = 16815, + [SMALL_STATE(865)] = 16861, + [SMALL_STATE(866)] = 16907, + [SMALL_STATE(867)] = 16953, + [SMALL_STATE(868)] = 16999, + [SMALL_STATE(869)] = 17045, + [SMALL_STATE(870)] = 17091, + [SMALL_STATE(871)] = 17137, + [SMALL_STATE(872)] = 17183, + [SMALL_STATE(873)] = 17229, + [SMALL_STATE(874)] = 17275, + [SMALL_STATE(875)] = 17321, + [SMALL_STATE(876)] = 17367, + [SMALL_STATE(877)] = 17408, + [SMALL_STATE(878)] = 17449, + [SMALL_STATE(879)] = 17490, + [SMALL_STATE(880)] = 17531, + [SMALL_STATE(881)] = 17572, + [SMALL_STATE(882)] = 17611, + [SMALL_STATE(883)] = 17650, + [SMALL_STATE(884)] = 17691, + [SMALL_STATE(885)] = 17731, + [SMALL_STATE(886)] = 17771, + [SMALL_STATE(887)] = 17811, + [SMALL_STATE(888)] = 17851, + [SMALL_STATE(889)] = 17891, + [SMALL_STATE(890)] = 17931, + [SMALL_STATE(891)] = 17971, + [SMALL_STATE(892)] = 18011, + [SMALL_STATE(893)] = 18051, + [SMALL_STATE(894)] = 18091, + [SMALL_STATE(895)] = 18131, + [SMALL_STATE(896)] = 18171, + [SMALL_STATE(897)] = 18211, + [SMALL_STATE(898)] = 18251, + [SMALL_STATE(899)] = 18291, + [SMALL_STATE(900)] = 18331, + [SMALL_STATE(901)] = 18371, + [SMALL_STATE(902)] = 18411, + [SMALL_STATE(903)] = 18451, + [SMALL_STATE(904)] = 18491, + [SMALL_STATE(905)] = 18531, + [SMALL_STATE(906)] = 18571, + [SMALL_STATE(907)] = 18611, + [SMALL_STATE(908)] = 18651, + [SMALL_STATE(909)] = 18691, + [SMALL_STATE(910)] = 18731, + [SMALL_STATE(911)] = 18771, + [SMALL_STATE(912)] = 18811, + [SMALL_STATE(913)] = 18851, + [SMALL_STATE(914)] = 18885, + [SMALL_STATE(915)] = 18919, + [SMALL_STATE(916)] = 18953, + [SMALL_STATE(917)] = 18987, + [SMALL_STATE(918)] = 19021, + [SMALL_STATE(919)] = 19055, + [SMALL_STATE(920)] = 19089, + [SMALL_STATE(921)] = 19123, + [SMALL_STATE(922)] = 19157, + [SMALL_STATE(923)] = 19191, + [SMALL_STATE(924)] = 19225, + [SMALL_STATE(925)] = 19259, + [SMALL_STATE(926)] = 19293, + [SMALL_STATE(927)] = 19327, + [SMALL_STATE(928)] = 19361, + [SMALL_STATE(929)] = 19395, + [SMALL_STATE(930)] = 19429, + [SMALL_STATE(931)] = 19463, + [SMALL_STATE(932)] = 19497, + [SMALL_STATE(933)] = 19531, + [SMALL_STATE(934)] = 19565, + [SMALL_STATE(935)] = 19599, + [SMALL_STATE(936)] = 19633, + [SMALL_STATE(937)] = 19667, + [SMALL_STATE(938)] = 19701, + [SMALL_STATE(939)] = 19735, + [SMALL_STATE(940)] = 19769, + [SMALL_STATE(941)] = 19803, + [SMALL_STATE(942)] = 19837, + [SMALL_STATE(943)] = 19871, + [SMALL_STATE(944)] = 19901, + [SMALL_STATE(945)] = 19935, + [SMALL_STATE(946)] = 19969, + [SMALL_STATE(947)] = 20003, + [SMALL_STATE(948)] = 20037, + [SMALL_STATE(949)] = 20071, + [SMALL_STATE(950)] = 20105, + [SMALL_STATE(951)] = 20139, + [SMALL_STATE(952)] = 20173, + [SMALL_STATE(953)] = 20207, + [SMALL_STATE(954)] = 20241, + [SMALL_STATE(955)] = 20275, + [SMALL_STATE(956)] = 20309, + [SMALL_STATE(957)] = 20343, + [SMALL_STATE(958)] = 20377, + [SMALL_STATE(959)] = 20407, + [SMALL_STATE(960)] = 20441, + [SMALL_STATE(961)] = 20475, + [SMALL_STATE(962)] = 20509, + [SMALL_STATE(963)] = 20543, + [SMALL_STATE(964)] = 20574, + [SMALL_STATE(965)] = 20602, + [SMALL_STATE(966)] = 20630, + [SMALL_STATE(967)] = 20655, + [SMALL_STATE(968)] = 20680, + [SMALL_STATE(969)] = 20705, + [SMALL_STATE(970)] = 20730, + [SMALL_STATE(971)] = 20755, + [SMALL_STATE(972)] = 20780, + [SMALL_STATE(973)] = 20805, + [SMALL_STATE(974)] = 20830, + [SMALL_STATE(975)] = 20852, + [SMALL_STATE(976)] = 20874, + [SMALL_STATE(977)] = 20893, + [SMALL_STATE(978)] = 20912, + [SMALL_STATE(979)] = 20931, + [SMALL_STATE(980)] = 20950, + [SMALL_STATE(981)] = 20969, + [SMALL_STATE(982)] = 20988, + [SMALL_STATE(983)] = 21007, + [SMALL_STATE(984)] = 21026, + [SMALL_STATE(985)] = 21045, + [SMALL_STATE(986)] = 21064, + [SMALL_STATE(987)] = 21083, + [SMALL_STATE(988)] = 21102, + [SMALL_STATE(989)] = 21121, + [SMALL_STATE(990)] = 21140, + [SMALL_STATE(991)] = 21159, + [SMALL_STATE(992)] = 21178, + [SMALL_STATE(993)] = 21197, + [SMALL_STATE(994)] = 21216, + [SMALL_STATE(995)] = 21235, + [SMALL_STATE(996)] = 21254, + [SMALL_STATE(997)] = 21273, + [SMALL_STATE(998)] = 21292, + [SMALL_STATE(999)] = 21311, + [SMALL_STATE(1000)] = 21330, + [SMALL_STATE(1001)] = 21346, + [SMALL_STATE(1002)] = 21362, + [SMALL_STATE(1003)] = 21378, + [SMALL_STATE(1004)] = 21394, + [SMALL_STATE(1005)] = 21410, + [SMALL_STATE(1006)] = 21426, + [SMALL_STATE(1007)] = 21442, + [SMALL_STATE(1008)] = 21458, + [SMALL_STATE(1009)] = 21472, + [SMALL_STATE(1010)] = 21488, + [SMALL_STATE(1011)] = 21504, + [SMALL_STATE(1012)] = 21520, + [SMALL_STATE(1013)] = 21536, + [SMALL_STATE(1014)] = 21552, + [SMALL_STATE(1015)] = 21568, + [SMALL_STATE(1016)] = 21584, + [SMALL_STATE(1017)] = 21600, + [SMALL_STATE(1018)] = 21616, + [SMALL_STATE(1019)] = 21630, + [SMALL_STATE(1020)] = 21644, + [SMALL_STATE(1021)] = 21658, + [SMALL_STATE(1022)] = 21674, + [SMALL_STATE(1023)] = 21687, + [SMALL_STATE(1024)] = 21700, + [SMALL_STATE(1025)] = 21713, + [SMALL_STATE(1026)] = 21726, + [SMALL_STATE(1027)] = 21739, + [SMALL_STATE(1028)] = 21752, + [SMALL_STATE(1029)] = 21765, + [SMALL_STATE(1030)] = 21778, + [SMALL_STATE(1031)] = 21791, + [SMALL_STATE(1032)] = 21804, + [SMALL_STATE(1033)] = 21817, + [SMALL_STATE(1034)] = 21830, + [SMALL_STATE(1035)] = 21843, + [SMALL_STATE(1036)] = 21856, + [SMALL_STATE(1037)] = 21869, + [SMALL_STATE(1038)] = 21882, + [SMALL_STATE(1039)] = 21895, + [SMALL_STATE(1040)] = 21908, + [SMALL_STATE(1041)] = 21921, + [SMALL_STATE(1042)] = 21934, + [SMALL_STATE(1043)] = 21947, + [SMALL_STATE(1044)] = 21960, + [SMALL_STATE(1045)] = 21973, + [SMALL_STATE(1046)] = 21986, + [SMALL_STATE(1047)] = 21999, + [SMALL_STATE(1048)] = 22012, + [SMALL_STATE(1049)] = 22025, + [SMALL_STATE(1050)] = 22038, + [SMALL_STATE(1051)] = 22051, + [SMALL_STATE(1052)] = 22064, + [SMALL_STATE(1053)] = 22077, + [SMALL_STATE(1054)] = 22090, + [SMALL_STATE(1055)] = 22103, + [SMALL_STATE(1056)] = 22116, + [SMALL_STATE(1057)] = 22129, + [SMALL_STATE(1058)] = 22142, + [SMALL_STATE(1059)] = 22155, + [SMALL_STATE(1060)] = 22168, + [SMALL_STATE(1061)] = 22181, + [SMALL_STATE(1062)] = 22194, + [SMALL_STATE(1063)] = 22203, + [SMALL_STATE(1064)] = 22216, + [SMALL_STATE(1065)] = 22229, + [SMALL_STATE(1066)] = 22242, + [SMALL_STATE(1067)] = 22255, + [SMALL_STATE(1068)] = 22268, + [SMALL_STATE(1069)] = 22281, + [SMALL_STATE(1070)] = 22294, + [SMALL_STATE(1071)] = 22307, + [SMALL_STATE(1072)] = 22320, + [SMALL_STATE(1073)] = 22333, + [SMALL_STATE(1074)] = 22346, + [SMALL_STATE(1075)] = 22359, + [SMALL_STATE(1076)] = 22372, + [SMALL_STATE(1077)] = 22385, + [SMALL_STATE(1078)] = 22398, + [SMALL_STATE(1079)] = 22411, + [SMALL_STATE(1080)] = 22424, + [SMALL_STATE(1081)] = 22437, + [SMALL_STATE(1082)] = 22450, + [SMALL_STATE(1083)] = 22463, + [SMALL_STATE(1084)] = 22476, + [SMALL_STATE(1085)] = 22489, + [SMALL_STATE(1086)] = 22502, + [SMALL_STATE(1087)] = 22515, + [SMALL_STATE(1088)] = 22528, + [SMALL_STATE(1089)] = 22541, + [SMALL_STATE(1090)] = 22554, + [SMALL_STATE(1091)] = 22567, + [SMALL_STATE(1092)] = 22580, + [SMALL_STATE(1093)] = 22593, + [SMALL_STATE(1094)] = 22606, + [SMALL_STATE(1095)] = 22619, + [SMALL_STATE(1096)] = 22632, + [SMALL_STATE(1097)] = 22645, + [SMALL_STATE(1098)] = 22658, + [SMALL_STATE(1099)] = 22665, + [SMALL_STATE(1100)] = 22678, + [SMALL_STATE(1101)] = 22691, + [SMALL_STATE(1102)] = 22704, + [SMALL_STATE(1103)] = 22717, + [SMALL_STATE(1104)] = 22730, + [SMALL_STATE(1105)] = 22743, + [SMALL_STATE(1106)] = 22756, + [SMALL_STATE(1107)] = 22769, + [SMALL_STATE(1108)] = 22782, + [SMALL_STATE(1109)] = 22795, + [SMALL_STATE(1110)] = 22808, + [SMALL_STATE(1111)] = 22821, + [SMALL_STATE(1112)] = 22834, + [SMALL_STATE(1113)] = 22847, + [SMALL_STATE(1114)] = 22860, + [SMALL_STATE(1115)] = 22873, + [SMALL_STATE(1116)] = 22886, + [SMALL_STATE(1117)] = 22899, + [SMALL_STATE(1118)] = 22912, + [SMALL_STATE(1119)] = 22925, + [SMALL_STATE(1120)] = 22938, + [SMALL_STATE(1121)] = 22951, + [SMALL_STATE(1122)] = 22964, + [SMALL_STATE(1123)] = 22977, + [SMALL_STATE(1124)] = 22990, + [SMALL_STATE(1125)] = 23003, + [SMALL_STATE(1126)] = 23016, + [SMALL_STATE(1127)] = 23029, + [SMALL_STATE(1128)] = 23042, + [SMALL_STATE(1129)] = 23055, + [SMALL_STATE(1130)] = 23068, + [SMALL_STATE(1131)] = 23081, + [SMALL_STATE(1132)] = 23094, + [SMALL_STATE(1133)] = 23107, + [SMALL_STATE(1134)] = 23120, + [SMALL_STATE(1135)] = 23133, + [SMALL_STATE(1136)] = 23146, + [SMALL_STATE(1137)] = 23159, + [SMALL_STATE(1138)] = 23172, + [SMALL_STATE(1139)] = 23185, + [SMALL_STATE(1140)] = 23198, + [SMALL_STATE(1141)] = 23211, + [SMALL_STATE(1142)] = 23224, + [SMALL_STATE(1143)] = 23237, + [SMALL_STATE(1144)] = 23250, + [SMALL_STATE(1145)] = 23263, + [SMALL_STATE(1146)] = 23276, + [SMALL_STATE(1147)] = 23289, + [SMALL_STATE(1148)] = 23302, + [SMALL_STATE(1149)] = 23315, + [SMALL_STATE(1150)] = 23328, + [SMALL_STATE(1151)] = 23341, + [SMALL_STATE(1152)] = 23354, + [SMALL_STATE(1153)] = 23367, + [SMALL_STATE(1154)] = 23380, + [SMALL_STATE(1155)] = 23393, + [SMALL_STATE(1156)] = 23406, + [SMALL_STATE(1157)] = 23419, + [SMALL_STATE(1158)] = 23432, + [SMALL_STATE(1159)] = 23445, + [SMALL_STATE(1160)] = 23458, + [SMALL_STATE(1161)] = 23471, + [SMALL_STATE(1162)] = 23484, + [SMALL_STATE(1163)] = 23497, + [SMALL_STATE(1164)] = 23510, + [SMALL_STATE(1165)] = 23523, + [SMALL_STATE(1166)] = 23536, + [SMALL_STATE(1167)] = 23549, + [SMALL_STATE(1168)] = 23562, + [SMALL_STATE(1169)] = 23575, + [SMALL_STATE(1170)] = 23588, + [SMALL_STATE(1171)] = 23601, + [SMALL_STATE(1172)] = 23614, + [SMALL_STATE(1173)] = 23627, + [SMALL_STATE(1174)] = 23640, + [SMALL_STATE(1175)] = 23653, + [SMALL_STATE(1176)] = 23666, + [SMALL_STATE(1177)] = 23679, + [SMALL_STATE(1178)] = 23692, + [SMALL_STATE(1179)] = 23705, + [SMALL_STATE(1180)] = 23718, + [SMALL_STATE(1181)] = 23731, + [SMALL_STATE(1182)] = 23744, + [SMALL_STATE(1183)] = 23757, + [SMALL_STATE(1184)] = 23770, + [SMALL_STATE(1185)] = 23783, + [SMALL_STATE(1186)] = 23796, + [SMALL_STATE(1187)] = 23809, + [SMALL_STATE(1188)] = 23822, + [SMALL_STATE(1189)] = 23835, + [SMALL_STATE(1190)] = 23848, + [SMALL_STATE(1191)] = 23861, + [SMALL_STATE(1192)] = 23874, + [SMALL_STATE(1193)] = 23887, + [SMALL_STATE(1194)] = 23900, + [SMALL_STATE(1195)] = 23913, + [SMALL_STATE(1196)] = 23926, + [SMALL_STATE(1197)] = 23939, + [SMALL_STATE(1198)] = 23952, + [SMALL_STATE(1199)] = 23965, + [SMALL_STATE(1200)] = 23978, + [SMALL_STATE(1201)] = 23991, + [SMALL_STATE(1202)] = 24004, + [SMALL_STATE(1203)] = 24017, + [SMALL_STATE(1204)] = 24030, + [SMALL_STATE(1205)] = 24043, + [SMALL_STATE(1206)] = 24056, + [SMALL_STATE(1207)] = 24069, + [SMALL_STATE(1208)] = 24082, + [SMALL_STATE(1209)] = 24095, + [SMALL_STATE(1210)] = 24108, + [SMALL_STATE(1211)] = 24116, + [SMALL_STATE(1212)] = 24124, + [SMALL_STATE(1213)] = 24134, + [SMALL_STATE(1214)] = 24144, + [SMALL_STATE(1215)] = 24152, + [SMALL_STATE(1216)] = 24162, + [SMALL_STATE(1217)] = 24172, + [SMALL_STATE(1218)] = 24182, + [SMALL_STATE(1219)] = 24190, + [SMALL_STATE(1220)] = 24200, + [SMALL_STATE(1221)] = 24210, + [SMALL_STATE(1222)] = 24220, + [SMALL_STATE(1223)] = 24230, + [SMALL_STATE(1224)] = 24240, + [SMALL_STATE(1225)] = 24248, + [SMALL_STATE(1226)] = 24258, + [SMALL_STATE(1227)] = 24268, + [SMALL_STATE(1228)] = 24278, + [SMALL_STATE(1229)] = 24288, + [SMALL_STATE(1230)] = 24298, + [SMALL_STATE(1231)] = 24308, + [SMALL_STATE(1232)] = 24316, + [SMALL_STATE(1233)] = 24326, + [SMALL_STATE(1234)] = 24336, + [SMALL_STATE(1235)] = 24346, + [SMALL_STATE(1236)] = 24356, + [SMALL_STATE(1237)] = 24366, + [SMALL_STATE(1238)] = 24376, + [SMALL_STATE(1239)] = 24386, + [SMALL_STATE(1240)] = 24396, + [SMALL_STATE(1241)] = 24406, + [SMALL_STATE(1242)] = 24416, + [SMALL_STATE(1243)] = 24426, + [SMALL_STATE(1244)] = 24436, + [SMALL_STATE(1245)] = 24446, + [SMALL_STATE(1246)] = 24456, + [SMALL_STATE(1247)] = 24466, + [SMALL_STATE(1248)] = 24476, + [SMALL_STATE(1249)] = 24486, + [SMALL_STATE(1250)] = 24496, + [SMALL_STATE(1251)] = 24506, + [SMALL_STATE(1252)] = 24516, + [SMALL_STATE(1253)] = 24526, + [SMALL_STATE(1254)] = 24536, + [SMALL_STATE(1255)] = 24546, + [SMALL_STATE(1256)] = 24556, + [SMALL_STATE(1257)] = 24566, + [SMALL_STATE(1258)] = 24576, + [SMALL_STATE(1259)] = 24586, + [SMALL_STATE(1260)] = 24596, + [SMALL_STATE(1261)] = 24606, + [SMALL_STATE(1262)] = 24616, + [SMALL_STATE(1263)] = 24624, + [SMALL_STATE(1264)] = 24634, + [SMALL_STATE(1265)] = 24644, + [SMALL_STATE(1266)] = 24654, + [SMALL_STATE(1267)] = 24664, + [SMALL_STATE(1268)] = 24672, + [SMALL_STATE(1269)] = 24680, + [SMALL_STATE(1270)] = 24688, + [SMALL_STATE(1271)] = 24698, + [SMALL_STATE(1272)] = 24708, + [SMALL_STATE(1273)] = 24718, + [SMALL_STATE(1274)] = 24728, + [SMALL_STATE(1275)] = 24738, + [SMALL_STATE(1276)] = 24748, + [SMALL_STATE(1277)] = 24758, + [SMALL_STATE(1278)] = 24768, + [SMALL_STATE(1279)] = 24778, + [SMALL_STATE(1280)] = 24788, + [SMALL_STATE(1281)] = 24798, + [SMALL_STATE(1282)] = 24808, + [SMALL_STATE(1283)] = 24818, + [SMALL_STATE(1284)] = 24828, + [SMALL_STATE(1285)] = 24838, + [SMALL_STATE(1286)] = 24848, + [SMALL_STATE(1287)] = 24858, + [SMALL_STATE(1288)] = 24868, + [SMALL_STATE(1289)] = 24878, + [SMALL_STATE(1290)] = 24888, + [SMALL_STATE(1291)] = 24898, + [SMALL_STATE(1292)] = 24908, + [SMALL_STATE(1293)] = 24918, + [SMALL_STATE(1294)] = 24928, + [SMALL_STATE(1295)] = 24938, + [SMALL_STATE(1296)] = 24948, + [SMALL_STATE(1297)] = 24958, + [SMALL_STATE(1298)] = 24968, + [SMALL_STATE(1299)] = 24978, + [SMALL_STATE(1300)] = 24988, + [SMALL_STATE(1301)] = 24998, + [SMALL_STATE(1302)] = 25008, + [SMALL_STATE(1303)] = 25018, + [SMALL_STATE(1304)] = 25028, + [SMALL_STATE(1305)] = 25038, + [SMALL_STATE(1306)] = 25048, + [SMALL_STATE(1307)] = 25058, + [SMALL_STATE(1308)] = 25068, + [SMALL_STATE(1309)] = 25078, + [SMALL_STATE(1310)] = 25088, + [SMALL_STATE(1311)] = 25098, + [SMALL_STATE(1312)] = 25108, + [SMALL_STATE(1313)] = 25118, + [SMALL_STATE(1314)] = 25128, + [SMALL_STATE(1315)] = 25138, + [SMALL_STATE(1316)] = 25148, + [SMALL_STATE(1317)] = 25158, + [SMALL_STATE(1318)] = 25168, + [SMALL_STATE(1319)] = 25178, + [SMALL_STATE(1320)] = 25188, + [SMALL_STATE(1321)] = 25198, + [SMALL_STATE(1322)] = 25206, + [SMALL_STATE(1323)] = 25216, + [SMALL_STATE(1324)] = 25226, + [SMALL_STATE(1325)] = 25234, + [SMALL_STATE(1326)] = 25244, + [SMALL_STATE(1327)] = 25252, + [SMALL_STATE(1328)] = 25260, + [SMALL_STATE(1329)] = 25270, + [SMALL_STATE(1330)] = 25278, + [SMALL_STATE(1331)] = 25288, + [SMALL_STATE(1332)] = 25298, + [SMALL_STATE(1333)] = 25308, + [SMALL_STATE(1334)] = 25318, + [SMALL_STATE(1335)] = 25328, + [SMALL_STATE(1336)] = 25338, + [SMALL_STATE(1337)] = 25348, + [SMALL_STATE(1338)] = 25358, + [SMALL_STATE(1339)] = 25368, + [SMALL_STATE(1340)] = 25378, + [SMALL_STATE(1341)] = 25388, + [SMALL_STATE(1342)] = 25398, + [SMALL_STATE(1343)] = 25408, + [SMALL_STATE(1344)] = 25418, + [SMALL_STATE(1345)] = 25428, + [SMALL_STATE(1346)] = 25438, + [SMALL_STATE(1347)] = 25448, + [SMALL_STATE(1348)] = 25458, + [SMALL_STATE(1349)] = 25468, + [SMALL_STATE(1350)] = 25478, + [SMALL_STATE(1351)] = 25488, + [SMALL_STATE(1352)] = 25498, + [SMALL_STATE(1353)] = 25508, + [SMALL_STATE(1354)] = 25518, + [SMALL_STATE(1355)] = 25528, + [SMALL_STATE(1356)] = 25538, + [SMALL_STATE(1357)] = 25548, + [SMALL_STATE(1358)] = 25558, + [SMALL_STATE(1359)] = 25568, + [SMALL_STATE(1360)] = 25578, + [SMALL_STATE(1361)] = 25588, + [SMALL_STATE(1362)] = 25598, + [SMALL_STATE(1363)] = 25608, + [SMALL_STATE(1364)] = 25618, + [SMALL_STATE(1365)] = 25628, + [SMALL_STATE(1366)] = 25638, + [SMALL_STATE(1367)] = 25648, + [SMALL_STATE(1368)] = 25658, + [SMALL_STATE(1369)] = 25668, + [SMALL_STATE(1370)] = 25678, + [SMALL_STATE(1371)] = 25688, + [SMALL_STATE(1372)] = 25698, + [SMALL_STATE(1373)] = 25708, + [SMALL_STATE(1374)] = 25718, + [SMALL_STATE(1375)] = 25728, + [SMALL_STATE(1376)] = 25738, + [SMALL_STATE(1377)] = 25748, + [SMALL_STATE(1378)] = 25758, + [SMALL_STATE(1379)] = 25768, + [SMALL_STATE(1380)] = 25778, + [SMALL_STATE(1381)] = 25788, + [SMALL_STATE(1382)] = 25798, + [SMALL_STATE(1383)] = 25808, + [SMALL_STATE(1384)] = 25818, + [SMALL_STATE(1385)] = 25828, + [SMALL_STATE(1386)] = 25838, + [SMALL_STATE(1387)] = 25848, + [SMALL_STATE(1388)] = 25858, + [SMALL_STATE(1389)] = 25868, + [SMALL_STATE(1390)] = 25878, + [SMALL_STATE(1391)] = 25888, + [SMALL_STATE(1392)] = 25898, + [SMALL_STATE(1393)] = 25908, + [SMALL_STATE(1394)] = 25918, + [SMALL_STATE(1395)] = 25928, + [SMALL_STATE(1396)] = 25938, + [SMALL_STATE(1397)] = 25948, + [SMALL_STATE(1398)] = 25958, + [SMALL_STATE(1399)] = 25968, + [SMALL_STATE(1400)] = 25978, + [SMALL_STATE(1401)] = 25988, + [SMALL_STATE(1402)] = 25998, + [SMALL_STATE(1403)] = 26008, + [SMALL_STATE(1404)] = 26018, + [SMALL_STATE(1405)] = 26028, + [SMALL_STATE(1406)] = 26038, + [SMALL_STATE(1407)] = 26048, + [SMALL_STATE(1408)] = 26058, + [SMALL_STATE(1409)] = 26068, + [SMALL_STATE(1410)] = 26075, + [SMALL_STATE(1411)] = 26082, + [SMALL_STATE(1412)] = 26089, + [SMALL_STATE(1413)] = 26096, + [SMALL_STATE(1414)] = 26103, + [SMALL_STATE(1415)] = 26110, + [SMALL_STATE(1416)] = 26117, + [SMALL_STATE(1417)] = 26124, + [SMALL_STATE(1418)] = 26131, + [SMALL_STATE(1419)] = 26138, + [SMALL_STATE(1420)] = 26145, + [SMALL_STATE(1421)] = 26152, + [SMALL_STATE(1422)] = 26159, + [SMALL_STATE(1423)] = 26166, + [SMALL_STATE(1424)] = 26173, + [SMALL_STATE(1425)] = 26180, + [SMALL_STATE(1426)] = 26187, + [SMALL_STATE(1427)] = 26194, + [SMALL_STATE(1428)] = 26201, + [SMALL_STATE(1429)] = 26208, + [SMALL_STATE(1430)] = 26215, + [SMALL_STATE(1431)] = 26222, + [SMALL_STATE(1432)] = 26229, + [SMALL_STATE(1433)] = 26236, + [SMALL_STATE(1434)] = 26243, + [SMALL_STATE(1435)] = 26250, + [SMALL_STATE(1436)] = 26257, + [SMALL_STATE(1437)] = 26264, + [SMALL_STATE(1438)] = 26271, + [SMALL_STATE(1439)] = 26278, + [SMALL_STATE(1440)] = 26285, + [SMALL_STATE(1441)] = 26292, + [SMALL_STATE(1442)] = 26299, + [SMALL_STATE(1443)] = 26306, + [SMALL_STATE(1444)] = 26313, + [SMALL_STATE(1445)] = 26320, + [SMALL_STATE(1446)] = 26327, + [SMALL_STATE(1447)] = 26334, + [SMALL_STATE(1448)] = 26341, + [SMALL_STATE(1449)] = 26348, + [SMALL_STATE(1450)] = 26355, + [SMALL_STATE(1451)] = 26362, + [SMALL_STATE(1452)] = 26369, + [SMALL_STATE(1453)] = 26376, + [SMALL_STATE(1454)] = 26383, + [SMALL_STATE(1455)] = 26390, + [SMALL_STATE(1456)] = 26397, + [SMALL_STATE(1457)] = 26404, + [SMALL_STATE(1458)] = 26411, + [SMALL_STATE(1459)] = 26418, + [SMALL_STATE(1460)] = 26425, + [SMALL_STATE(1461)] = 26432, + [SMALL_STATE(1462)] = 26439, + [SMALL_STATE(1463)] = 26446, + [SMALL_STATE(1464)] = 26453, + [SMALL_STATE(1465)] = 26460, + [SMALL_STATE(1466)] = 26467, + [SMALL_STATE(1467)] = 26474, + [SMALL_STATE(1468)] = 26481, + [SMALL_STATE(1469)] = 26488, + [SMALL_STATE(1470)] = 26495, + [SMALL_STATE(1471)] = 26502, + [SMALL_STATE(1472)] = 26509, + [SMALL_STATE(1473)] = 26516, + [SMALL_STATE(1474)] = 26523, + [SMALL_STATE(1475)] = 26530, + [SMALL_STATE(1476)] = 26537, + [SMALL_STATE(1477)] = 26544, + [SMALL_STATE(1478)] = 26551, + [SMALL_STATE(1479)] = 26558, + [SMALL_STATE(1480)] = 26565, + [SMALL_STATE(1481)] = 26572, + [SMALL_STATE(1482)] = 26579, + [SMALL_STATE(1483)] = 26586, + [SMALL_STATE(1484)] = 26593, + [SMALL_STATE(1485)] = 26600, + [SMALL_STATE(1486)] = 26607, + [SMALL_STATE(1487)] = 26614, + [SMALL_STATE(1488)] = 26621, + [SMALL_STATE(1489)] = 26628, + [SMALL_STATE(1490)] = 26635, + [SMALL_STATE(1491)] = 26642, + [SMALL_STATE(1492)] = 26649, + [SMALL_STATE(1493)] = 26656, + [SMALL_STATE(1494)] = 26663, + [SMALL_STATE(1495)] = 26670, + [SMALL_STATE(1496)] = 26677, + [SMALL_STATE(1497)] = 26684, + [SMALL_STATE(1498)] = 26691, + [SMALL_STATE(1499)] = 26698, + [SMALL_STATE(1500)] = 26705, + [SMALL_STATE(1501)] = 26712, + [SMALL_STATE(1502)] = 26719, + [SMALL_STATE(1503)] = 26726, + [SMALL_STATE(1504)] = 26733, + [SMALL_STATE(1505)] = 26740, + [SMALL_STATE(1506)] = 26747, + [SMALL_STATE(1507)] = 26754, + [SMALL_STATE(1508)] = 26761, + [SMALL_STATE(1509)] = 26768, + [SMALL_STATE(1510)] = 26775, + [SMALL_STATE(1511)] = 26782, + [SMALL_STATE(1512)] = 26789, + [SMALL_STATE(1513)] = 26796, + [SMALL_STATE(1514)] = 26803, + [SMALL_STATE(1515)] = 26810, + [SMALL_STATE(1516)] = 26817, + [SMALL_STATE(1517)] = 26824, + [SMALL_STATE(1518)] = 26831, + [SMALL_STATE(1519)] = 26838, + [SMALL_STATE(1520)] = 26845, + [SMALL_STATE(1521)] = 26852, + [SMALL_STATE(1522)] = 26859, + [SMALL_STATE(1523)] = 26866, + [SMALL_STATE(1524)] = 26873, + [SMALL_STATE(1525)] = 26880, + [SMALL_STATE(1526)] = 26887, + [SMALL_STATE(1527)] = 26894, + [SMALL_STATE(1528)] = 26901, + [SMALL_STATE(1529)] = 26908, + [SMALL_STATE(1530)] = 26915, + [SMALL_STATE(1531)] = 26922, + [SMALL_STATE(1532)] = 26929, + [SMALL_STATE(1533)] = 26936, + [SMALL_STATE(1534)] = 26943, + [SMALL_STATE(1535)] = 26950, + [SMALL_STATE(1536)] = 26957, + [SMALL_STATE(1537)] = 26964, + [SMALL_STATE(1538)] = 26971, + [SMALL_STATE(1539)] = 26978, + [SMALL_STATE(1540)] = 26985, + [SMALL_STATE(1541)] = 26992, + [SMALL_STATE(1542)] = 26999, + [SMALL_STATE(1543)] = 27006, + [SMALL_STATE(1544)] = 27013, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -60560,2104 +60895,2104 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 40), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 3), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 19), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 3), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 4), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 83), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 17), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 45), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 22), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 42), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 4), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 19), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 22), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 17), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 40), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 42), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 83), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 45), [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 80), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 20), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 20), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 5), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 37), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 87), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 129), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 5), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 80), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 87), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 129), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotdotdot, 1, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotdotdot, 1, 0, 0), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 5, 0, 134), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 3, 0, 37), [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(924), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 5, 0, 129), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(919), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 4, 0, 76), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(929), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 3, 0, 37), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(931), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 4, 0, 80), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(953), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 5, 0, 125), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(915), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 4, 0, 87), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(961), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 6, 0, 158), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(939), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(963), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition, 1, 0, 9), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition, 1, 0, 9), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignFunctionBody, 3, 0, 216), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignFunctionBody, 3, 0, 216), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignFunctionDefinition, 8, 0, 214), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignFunctionDefinition, 8, 0, 214), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinition, 8, 0, 215), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinition, 8, 0, 215), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinition, 5, 0, 103), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinition, 5, 0, 103), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 8, 0, 214), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 8, 0, 214), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinition, 7, 0, 174), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinition, 7, 0, 174), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinitionBody, 2, 0, 0), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinitionBody, 2, 0, 0), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 7, 0, 175), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 7, 0, 175), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 7, 0, 174), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 7, 0, 174), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinition, 5, 0, 103), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinition, 5, 0, 103), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinitionBody, 3, 0, 28), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinitionBody, 3, 0, 28), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 5, 0, 103), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 5, 0, 103), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 10, 0, 252), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 10, 0, 252), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinitionBody, 3, 0, 100), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinitionBody, 3, 0, 100), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinition, 6, 0, 148), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinition, 6, 0, 148), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 7, 0, 173), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 7, 0, 173), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinition, 7, 0, 174), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinition, 7, 0, 174), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignFunctionDefinition, 7, 0, 175), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignFunctionDefinition, 7, 0, 175), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinitionBody, 5, 0, 102), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinitionBody, 5, 0, 102), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 7, 0, 172), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 7, 0, 172), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 9, 0, 226), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 9, 0, 226), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_version, 5, 0, 0), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_version, 5, 0, 0), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 6, 0, 146), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 6, 0, 146), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinitionBody, 2, 0, 0), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinitionBody, 2, 0, 0), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 6, 0, 148), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 6, 0, 148), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 6, 0, 147), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 6, 0, 147), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinition, 6, 0, 148), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinition, 6, 0, 148), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_langdecl, 5, 0, 98), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_langdecl, 5, 0, 98), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinitionBody, 2, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinitionBody, 2, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinitionBody, 3, 0, 100), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinitionBody, 3, 0, 100), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinitionBody, 4, 0, 143), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinitionBody, 4, 0, 143), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(961), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 5, 0, 125), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(925), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 5, 0, 134), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(946), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 6, 0, 158), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(914), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 5, 0, 129), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(929), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(963), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 4, 0, 87), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(947), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 4, 0, 80), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(940), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), REDUCE(sym_source_file, 4, 0, 76), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT(926), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinition, 5, 0, 103), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinition, 5, 0, 103), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 6, 0, 146), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 6, 0, 146), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinitionBody, 2, 0, 0), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinitionBody, 2, 0, 0), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 6, 0, 147), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 6, 0, 147), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinitionBody, 2, 0, 0), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinitionBody, 2, 0, 0), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinition, 6, 0, 148), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinition, 6, 0, 148), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinitionBody, 2, 0, 0), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinitionBody, 2, 0, 0), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignFunctionDefinition, 6, 0, 147), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignFunctionDefinition, 6, 0, 147), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinition, 6, 0, 148), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinition, 6, 0, 148), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition, 1, 0, 7), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition, 1, 0, 7), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition, 1, 0, 8), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition, 1, 0, 8), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 7, 0, 172), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 7, 0, 172), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 7, 0, 173), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 7, 0, 173), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinitionBody, 3, 0, 28), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinitionBody, 3, 0, 28), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 7, 0, 174), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 7, 0, 174), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 7, 0, 175), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 7, 0, 175), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinitionBody, 3, 0, 100), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinitionBody, 3, 0, 100), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinition, 7, 0, 174), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinition, 7, 0, 174), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_version, 5, 0, 0), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_version, 5, 0, 0), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinitionBody, 3, 0, 100), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinitionBody, 3, 0, 100), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinition, 7, 0, 174), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinition, 7, 0, 174), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignFunctionDefinition, 7, 0, 175), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignFunctionDefinition, 7, 0, 175), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_langdecl, 5, 0, 98), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_langdecl, 5, 0, 98), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition, 1, 0, 6), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition, 1, 0, 6), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 8, 0, 212), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 8, 0, 212), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 8, 0, 213), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 8, 0, 213), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinitionBody, 4, 0, 67), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinitionBody, 4, 0, 67), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition, 1, 0, 9), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition, 1, 0, 9), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 8, 0, 214), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 8, 0, 214), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 8, 0, 215), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 8, 0, 215), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinitionBody, 4, 0, 143), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinitionBody, 4, 0, 143), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 5, 0, 103), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 5, 0, 103), [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinition, 8, 0, 215), [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinition, 8, 0, 215), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 9, 0, 224), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 9, 0, 224), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignFunctionDefinition, 6, 0, 147), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignFunctionDefinition, 6, 0, 147), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 9, 0, 225), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 9, 0, 225), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition, 1, 0, 6), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition, 1, 0, 6), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition, 1, 0, 7), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition, 1, 0, 7), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition, 1, 0, 8), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition, 1, 0, 8), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinitionBody, 4, 0, 143), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinitionBody, 4, 0, 143), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 8, 0, 215), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 8, 0, 215), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 8, 0, 212), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 8, 0, 212), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignFunctionDefinition, 9, 0, 226), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignFunctionDefinition, 9, 0, 226), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 8, 0, 213), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 8, 0, 213), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinitionBody, 4, 0, 67), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinitionBody, 4, 0, 67), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinitionBody, 5, 0, 167), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinitionBody, 5, 0, 167), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinitionBody, 5, 0, 167), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinitionBody, 5, 0, 167), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_langdecl, 2, 0, 10), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_langdecl, 2, 0, 10), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_languageName, 1, 0, 0), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_languageName, 1, 0, 0), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_langdecl, 6, 0, 98), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_langdecl, 6, 0, 98), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bubbleScope, 4, 0, 0), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bubbleScope, 4, 0, 0), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bubbleScope, 5, 0, 0), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bubbleScope, 5, 0, 0), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bubbleScope, 6, 0, 0), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bubbleScope, 6, 0, 0), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bubbleScope, 1, 0, 0), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bubbleScope, 1, 0, 0), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bubbleScope, 3, 0, 0), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bubbleScope, 3, 0, 0), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinitionBody, 4, 0, 143), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinitionBody, 4, 0, 143), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignFunctionBody, 3, 0, 216), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignFunctionBody, 3, 0, 216), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignFunctionDefinition, 8, 0, 214), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignFunctionDefinition, 8, 0, 214), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinition, 8, 0, 215), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinition, 8, 0, 215), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 9, 0, 224), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 9, 0, 224), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 9, 0, 225), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 9, 0, 225), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinitionBody, 5, 0, 102), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinitionBody, 5, 0, 102), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 9, 0, 226), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 9, 0, 226), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinitionBody, 5, 0, 167), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinitionBody, 5, 0, 167), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functionDefinitionBody, 5, 0, 167), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functionDefinitionBody, 5, 0, 167), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignFunctionDefinition, 9, 0, 226), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignFunctionDefinition, 9, 0, 226), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 10, 0, 252), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 10, 0, 252), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateDefinition, 5, 0, 103), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateDefinition, 5, 0, 103), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternDefinition, 6, 0, 148), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternDefinition, 6, 0, 148), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_languageName, 1, 0, 0), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_languageName, 1, 0, 0), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_langdecl, 6, 0, 98), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_langdecl, 6, 0, 98), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_langdecl, 2, 0, 10), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_langdecl, 2, 0, 10), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bubbleScope, 5, 0, 0), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bubbleScope, 5, 0, 0), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bubbleScope, 3, 0, 0), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bubbleScope, 3, 0, 0), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bubbleScope, 1, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bubbleScope, 1, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bubbleScope, 4, 0, 0), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bubbleScope, 4, 0, 0), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bubbleScope, 6, 0, 0), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bubbleScope, 6, 0, 0), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 18), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 81), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 88), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 84), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_listIndex, 4, 0, 93), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_listIndex, 4, 0, 93), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 161), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 38), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 41), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 137), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 79), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__container, 1, 0, 0), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__container, 1, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_listIndex, 4, 0, 93), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_listIndex, 4, 0, 93), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 128), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 38), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 21), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 161), [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapAccessor, 3, 0, 54), [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mapAccessor, 3, 0, 54), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__container, 1, 0, 0), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__container, 1, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 137), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 130), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 84), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 79), [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 43), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 130), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 46), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 6), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 21), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 23), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 128), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 81), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 23), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 88), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 6), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 46), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 41), [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 2, 0, 0), [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 2, 0, 0), [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, 0, 99), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, 0, 99), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 28), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 28), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regexPattern, 1, 0, 2), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regexPattern, 1, 0, 2), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, 0, 99), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, 0, 99), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regexPattern, 1, 0, 2), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regexPattern, 1, 0, 2), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 57), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 57), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 27), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 27), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, 0, 141), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, 0, 141), [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snippetRegex, 2, 0, 16), [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_snippetRegex, 2, 0, 16), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 27), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 27), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5, 0, 96), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5, 0, 96), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__predicate, 1, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, 0, 102), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, 0, 102), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4, 0, 59), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4, 0, 59), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4, 0, 67), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4, 0, 67), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 57), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 57), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2, 0, 0), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, 0, 141), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, 0, 141), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAny, 6, 0, 211), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAny, 6, 0, 211), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 237), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 237), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 236), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 236), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regexPattern, 4, 0, 75), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regexPattern, 4, 0, 75), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 235), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 235), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 234), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 234), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 233), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 233), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 232), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 232), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 33), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 33), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 231), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 231), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 230), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 230), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 244), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 244), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 243), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 243), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 229), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 229), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 242), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 242), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 34), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 34), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 228), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 228), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 227), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 227), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 241), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 241), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 240), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 240), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 250), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 250), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 239), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 239), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 249), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 249), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 32), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 32), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 247), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 247), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 248), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 248), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 247), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 247), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 246), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 246), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nodeLike, 4, 0, 74), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nodeLike, 4, 0, 74), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 238), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 238), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 245), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 245), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 244), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 244), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 243), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 243), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 246), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 246), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 242), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 242), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 241), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 241), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 240), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 240), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rewrite, 4, 0, 91), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 239), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 239), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 245), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 245), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bubble, 4, 0, 94), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bubble, 4, 0, 94), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential, 5, 0, 95), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential, 5, 0, 95), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 238), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 238), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAnd, 4, 0, 59), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAnd, 4, 0, 59), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 237), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 237), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 248), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 248), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 236), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 236), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_files, 5, 0, 97), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_files, 5, 0, 97), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 249), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 249), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 250), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 250), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 31), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 31), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOr, 5, 0, 99), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOr, 5, 0, 99), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 11, 0, 253), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternIfElse, 11, 0, 253), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOrElse, 5, 0, 99), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOrElse, 5, 0, 99), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 4, 0, 30), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 4, 0, 30), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAny, 5, 0, 99), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAny, 5, 0, 99), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_codeSnippet, 1, 0, 1), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_codeSnippet, 1, 0, 1), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAnd, 5, 0, 99), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAnd, 5, 0, 99), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 4, 0, 29), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 4, 0, 29), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 235), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 235), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 234), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 234), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 233), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 233), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 232), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 232), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 231), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 231), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 230), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 230), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 229), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 229), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 228), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 228), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 227), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 227), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_every, 4, 0, 60), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_every, 4, 0, 60), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_some, 4, 0, 60), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_some, 4, 0, 60), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_like, 4, 0, 66), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_like, 4, 0, 66), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_within, 4, 0, 65), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_within, 4, 0, 60), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_within, 4, 0, 60), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_languageSpecificSnippet, 2, 0, 26), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_languageSpecificSnippet, 2, 0, 26), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 9, 0, 223), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternIfElse, 9, 0, 223), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 9, 0, 222), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIncludes, 4, 0, 63), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternIncludes, 4, 0, 63), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternContains, 4, 0, 62), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 199), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 199), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 198), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 198), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 197), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 197), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternContains, 4, 0, 61), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternContains, 4, 0, 61), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 5, 0, 101), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternMaybe, 4, 0, 60), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternMaybe, 4, 0, 60), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rewrite, 3, 0, 48), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 196), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 196), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 195), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 195), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 194), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 194), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAny, 4, 0, 59), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAny, 4, 0, 59), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 193), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 193), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOrElse, 4, 0, 59), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOrElse, 4, 0, 59), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOr, 4, 0, 59), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOr, 4, 0, 59), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 192), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 192), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 191), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 191), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_files, 4, 0, 58), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_files, 4, 0, 58), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 190), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 190), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateNot, 2, 0, 64), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateNot, 2, 0, 64), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 189), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 189), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 188), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 188), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 187), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 187), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential, 4, 0, 55), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential, 4, 0, 55), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateMaybe, 2, 0, 64), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateMaybe, 2, 0, 64), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 186), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 186), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 185), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 185), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 184), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 184), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateReturn, 2, 0, 11), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 183), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 183), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignmentAsPattern, 3, 0, 53), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 182), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 182), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 181), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 181), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 180), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 180), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 179), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 179), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 178), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 178), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 5, 0, 104), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 5, 0, 104), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 177), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 177), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 5, 0, 105), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 5, 0, 105), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 176), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 176), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 106), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 106), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAnd, 3, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAnd, 3, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 107), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 107), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternWhere, 3, 0, 51), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternWhere, 3, 0, 51), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 108), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 108), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAccumulate, 3, 0, 48), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 109), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 109), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternLimit, 3, 0, 50), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternLimit, 3, 0, 50), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 110), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 110), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAs, 3, 0, 49), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAs, 3, 0, 49), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 111), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 111), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subOperation, 3, 0, 48), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subOperation, 3, 0, 48), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 112), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 112), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_addOperation, 3, 0, 48), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_addOperation, 3, 0, 48), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 113), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 113), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modOperation, 3, 0, 48), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modOperation, 3, 0, 48), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 114), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 114), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_divOperation, 3, 0, 48), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_divOperation, 3, 0, 48), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 115), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 115), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mulOperation, 3, 0, 48), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mulOperation, 3, 0, 48), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 116), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 116), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regexPattern, 3, 0, 36), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regexPattern, 3, 0, 36), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 117), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 117), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 3, 0, 100), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 3, 0, 100), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nodeLike, 5, 0, 119), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nodeLike, 5, 0, 119), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 0), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__predicate, 3, 0, 0), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateOr, 3, 0, 0), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateOr, 3, 0, 0), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAny, 3, 0, 0), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAny, 3, 0, 0), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nodeLike, 3, 0, 35), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nodeLike, 3, 0, 35), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 34), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 34), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regexPattern, 5, 0, 120), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regexPattern, 5, 0, 120), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 3, 0, 0), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 3, 0, 0), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 33), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 33), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 199), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 199), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 198), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 198), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 197), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 197), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 196), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 196), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 195), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 195), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 194), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 194), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 193), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 193), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 192), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 192), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 191), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 191), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 190), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 190), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAccumulate, 3, 0, 48), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 32), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 32), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateRewrite, 3, 0, 48), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 31), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 31), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 189), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 189), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 188), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 188), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 187), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 187), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateGreater, 3, 0, 48), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 186), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 186), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 185), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 185), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 184), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 184), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 183), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 183), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 182), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 182), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 181), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 181), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 180), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 180), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 179), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 179), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 178), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 178), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateLess, 3, 0, 48), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateGreaterEqual, 3, 0, 48), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 177), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 177), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential, 6, 0, 139), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential, 6, 0, 139), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateLessEqual, 3, 0, 48), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_files, 6, 0, 140), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_files, 6, 0, 140), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateNotEqual, 3, 0, 48), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOr, 6, 0, 141), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOr, 6, 0, 141), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOrElse, 6, 0, 141), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOrElse, 6, 0, 141), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAny, 6, 0, 141), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAny, 6, 0, 141), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAnd, 6, 0, 141), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAnd, 6, 0, 141), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternContains, 6, 0, 142), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 176), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 176), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 3, 0, 30), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 3, 0, 30), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateEqual, 3, 0, 48), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 3, 0, 29), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 3, 0, 29), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateCall, 3, 0, 35), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateCall, 3, 0, 35), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAssignment, 3, 0, 53), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateMatch, 3, 0, 48), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 4, 0, 143), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 4, 0, 143), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateOr, 4, 0, 144), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateOr, 4, 0, 144), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAny, 4, 0, 144), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAny, 4, 0, 144), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 4, 0, 144), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 4, 0, 144), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateRewrite, 4, 0, 91), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateCall, 4, 0, 74), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateCall, 4, 0, 74), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 5, 0, 167), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 5, 0, 167), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateOr, 5, 0, 168), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateOr, 5, 0, 168), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAny, 5, 0, 168), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAny, 5, 0, 168), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 5, 0, 168), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 5, 0, 168), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateIfElse, 5, 0, 101), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateIfElse, 5, 0, 101), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateCall, 5, 0, 119), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateCall, 5, 0, 119), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_within, 6, 0, 145), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateOr, 6, 0, 211), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateOr, 6, 0, 211), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 109), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 109), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_like, 7, 0, 171), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_like, 7, 0, 171), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 7, 0, 170), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 6, 0, 211), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 6, 0, 211), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 1, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot, 1, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 7, 0, 169), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternIfElse, 7, 0, 169), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateCall, 6, 0, 149), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateCall, 6, 0, 149), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAny, 3, 0, 0), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAny, 3, 0, 0), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOrElse, 3, 0, 0), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOrElse, 3, 0, 0), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateIfElse, 7, 0, 170), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateIfElse, 7, 0, 170), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, 0, 0), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 3, 0, 0), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bubble, 2, 0, 25), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_every, 2, 0, 11), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_some, 2, 0, 11), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_within, 2, 0, 11), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIncludes, 2, 0, 13), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternContains, 2, 0, 12), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regexPattern, 6, 0, 150), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regexPattern, 6, 0, 150), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternBefore, 2, 0, 11), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAfter, 2, 0, 11), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternMaybe, 2, 0, 11), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternNot, 2, 0, 11), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nodeLike, 6, 0, 149), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nodeLike, 6, 0, 149), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 112), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 112), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 114), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 114), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 6, 0, 104), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 6, 0, 104), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 6, 0, 105), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 6, 0, 105), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 106), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 106), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 110), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 110), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 116), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 116), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 107), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 107), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 113), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 113), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 111), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 111), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 108), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 108), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 117), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 117), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 115), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 115), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, 0, 0), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotdotdot, 2, 0, 0), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namedArg, 1, 0, 15), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapElement, 3, 0, 56), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_repeat1, 2, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4, 0, 67), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4, 0, 67), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4, 0, 59), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4, 0, 59), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 28), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 28), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__predicate, 1, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5, 0, 96), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5, 0, 96), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, 0, 102), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, 0, 102), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 6, 0, 105), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 6, 0, 105), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 3, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOrElse, 4, 0, 59), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOrElse, 4, 0, 59), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 6, 0, 104), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 6, 0, 104), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regexPattern, 5, 0, 120), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regexPattern, 5, 0, 120), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 106), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 106), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 107), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 107), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 108), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 108), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 109), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 109), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 110), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 110), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 111), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 111), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 112), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 112), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 113), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 113), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 114), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 114), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 115), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 115), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 116), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 116), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 6, 0, 117), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 6, 0, 117), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nodeLike, 6, 0, 149), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nodeLike, 6, 0, 149), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAny, 4, 0, 59), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAny, 4, 0, 59), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subOperation, 3, 0, 48), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subOperation, 3, 0, 48), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regexPattern, 6, 0, 150), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regexPattern, 6, 0, 150), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOrElse, 3, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOrElse, 3, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAnd, 4, 0, 59), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAnd, 4, 0, 59), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternMaybe, 4, 0, 60), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternMaybe, 4, 0, 60), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternContains, 4, 0, 61), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternContains, 4, 0, 61), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternContains, 4, 0, 62), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIncludes, 4, 0, 63), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternIncludes, 4, 0, 63), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAs, 3, 0, 49), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAs, 3, 0, 49), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 7, 0, 169), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternIfElse, 7, 0, 169), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 7, 0, 170), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_like, 7, 0, 171), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_like, 7, 0, 171), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAny, 3, 0, 0), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAny, 3, 0, 0), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAnd, 3, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAnd, 3, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternMaybe, 2, 0, 11), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternLimit, 3, 0, 50), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternLimit, 3, 0, 50), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAfter, 2, 0, 11), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 176), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 176), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 177), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 177), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 178), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 178), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 179), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 179), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 180), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 180), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 181), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 181), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 182), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 182), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 183), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 183), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 184), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 184), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 185), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 185), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 186), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 186), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 187), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 187), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 188), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 188), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 189), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 189), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 190), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 190), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 191), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 191), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 192), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 192), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 193), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 193), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 194), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 194), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 195), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 195), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 196), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 196), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 197), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 197), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 198), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 198), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 7, 0, 199), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 7, 0, 199), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternBefore, 2, 0, 11), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential, 6, 0, 139), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential, 6, 0, 139), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternContains, 2, 0, 12), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_within, 4, 0, 60), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_within, 4, 0, 60), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_within, 4, 0, 65), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_like, 4, 0, 66), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_like, 4, 0, 66), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAccumulate, 3, 0, 48), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_some, 4, 0, 60), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_some, 4, 0, 60), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_every, 4, 0, 60), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_every, 4, 0, 60), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 176), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 176), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 177), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 177), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 178), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 178), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 179), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 179), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 180), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 180), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 181), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 181), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 182), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 182), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 183), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 183), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 184), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 184), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 185), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 185), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 186), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 186), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 187), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 187), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 188), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 188), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 189), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 189), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 190), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 190), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 191), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 191), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 192), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 192), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 193), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 193), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 194), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 194), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 195), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 195), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 196), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 196), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 197), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 197), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 198), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 198), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 8, 0, 199), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 8, 0, 199), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 9, 0, 222), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 9, 0, 223), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternIfElse, 9, 0, 223), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 4, 0, 29), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 4, 0, 29), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 4, 0, 30), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 4, 0, 30), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 31), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 31), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 32), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 32), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 33), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 33), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 34), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 34), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_files, 6, 0, 140), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_files, 6, 0, 140), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 227), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 227), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 228), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 228), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 229), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 229), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 230), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 230), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 231), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 231), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 232), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 232), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 233), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 233), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 234), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 234), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 235), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 235), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 236), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 236), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 237), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 237), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 238), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 238), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 239), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 239), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 240), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 240), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 241), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 241), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 242), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 242), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 243), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 243), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 244), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 244), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 245), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 245), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 246), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 246), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 247), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 247), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 248), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 248), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 249), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 249), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 9, 0, 250), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 9, 0, 250), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIncludes, 2, 0, 13), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 227), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 227), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 228), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 228), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 229), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 229), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 230), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 230), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 231), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 231), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 232), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 232), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 233), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 233), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 234), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 234), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOr, 4, 0, 59), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOr, 4, 0, 59), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 236), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 236), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 237), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 237), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 238), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 238), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 239), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 239), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 240), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 240), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 241), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 241), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 242), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 242), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 243), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 243), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 244), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 244), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 245), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 245), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 246), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 246), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 247), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 247), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 248), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 248), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 249), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 249), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 250), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 250), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 11, 0, 253), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternIfElse, 11, 0, 253), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nodeLike, 4, 0, 74), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nodeLike, 4, 0, 74), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternWhere, 3, 0, 51), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternWhere, 3, 0, 51), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regexPattern, 4, 0, 75), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regexPattern, 4, 0, 75), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_codeSnippet, 1, 0, 1), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_codeSnippet, 1, 0, 1), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOr, 6, 0, 141), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOr, 6, 0, 141), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOrElse, 6, 0, 141), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOrElse, 6, 0, 141), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAny, 6, 0, 141), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAny, 6, 0, 141), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAnd, 6, 0, 141), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAnd, 6, 0, 141), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 3, 0, 29), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 3, 0, 29), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 3, 0, 30), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 3, 0, 30), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_languageSpecificSnippet, 2, 0, 26), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_languageSpecificSnippet, 2, 0, 26), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternContains, 6, 0, 142), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rewrite, 4, 0, 91), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rewrite, 3, 0, 48), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 31), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 31), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bubble, 4, 0, 94), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bubble, 4, 0, 94), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateNot, 2, 0, 64), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateNot, 2, 0, 64), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateMaybe, 2, 0, 64), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateMaybe, 2, 0, 64), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateReturn, 2, 0, 11), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential, 5, 0, 95), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential, 5, 0, 95), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_files, 5, 0, 97), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_files, 5, 0, 97), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 32), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 32), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 33), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 33), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOr, 5, 0, 99), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOr, 5, 0, 99), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternOrElse, 5, 0, 99), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternOrElse, 5, 0, 99), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignmentAsPattern, 3, 0, 53), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 34), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 34), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAny, 5, 0, 99), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAny, 5, 0, 99), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 3, 0, 100), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 3, 0, 100), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 0), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__predicate, 3, 0, 0), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateOr, 3, 0, 0), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateOr, 3, 0, 0), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAny, 3, 0, 0), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAny, 3, 0, 0), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 3, 0, 0), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 3, 0, 0), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAccumulate, 3, 0, 48), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateRewrite, 3, 0, 48), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateGreater, 3, 0, 48), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateLess, 3, 0, 48), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateGreaterEqual, 3, 0, 48), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateLessEqual, 3, 0, 48), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateNotEqual, 3, 0, 48), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateEqual, 3, 0, 48), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nodeLike, 3, 0, 35), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nodeLike, 3, 0, 35), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateCall, 3, 0, 35), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateCall, 3, 0, 35), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAssignment, 3, 0, 53), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateMatch, 3, 0, 48), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternAnd, 5, 0, 99), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_patternAnd, 5, 0, 99), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_divOperation, 3, 0, 48), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_divOperation, 3, 0, 48), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 4, 0, 143), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 4, 0, 143), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateOr, 4, 0, 144), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateOr, 4, 0, 144), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAny, 4, 0, 144), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAny, 4, 0, 144), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 4, 0, 144), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 4, 0, 144), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_within, 6, 0, 145), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateRewrite, 4, 0, 91), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateCall, 4, 0, 74), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateCall, 4, 0, 74), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential, 4, 0, 55), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential, 4, 0, 55), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 5, 0, 167), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 5, 0, 167), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateOr, 5, 0, 168), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateOr, 5, 0, 168), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAny, 5, 0, 168), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAny, 5, 0, 168), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 5, 0, 168), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 5, 0, 168), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateIfElse, 5, 0, 101), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateIfElse, 5, 0, 101), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateCall, 5, 0, 119), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateCall, 5, 0, 119), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateOr, 6, 0, 211), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateOr, 6, 0, 211), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAny, 6, 0, 211), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAny, 6, 0, 211), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateAnd, 6, 0, 211), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateAnd, 6, 0, 211), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateCall, 6, 0, 149), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateCall, 6, 0, 149), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicateIfElse, 7, 0, 170), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predicateIfElse, 7, 0, 170), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mulOperation, 3, 0, 48), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mulOperation, 3, 0, 48), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regexPattern, 3, 0, 36), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regexPattern, 3, 0, 36), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_within, 2, 0, 11), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternIfElse, 5, 0, 101), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patternNot, 2, 0, 11), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modOperation, 3, 0, 48), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modOperation, 3, 0, 48), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_addOperation, 3, 0, 48), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_addOperation, 3, 0, 48), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 1, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot, 1, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_some, 2, 0, 11), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 5, 0, 104), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 5, 0, 104), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log, 5, 0, 105), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log, 5, 0, 105), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 106), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 106), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 107), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 107), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 108), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 108), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 109), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 109), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 110), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 110), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 111), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 111), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 112), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 112), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 113), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 113), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 114), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 114), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 115), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 115), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 116), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 116), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 5, 0, 117), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 5, 0, 117), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nodeLike, 5, 0, 119), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nodeLike, 5, 0, 119), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_every, 2, 0, 11), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_files, 4, 0, 58), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_files, 4, 0, 58), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bubble, 2, 0, 25), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 10, 0, 235), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 10, 0, 235), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotdotdot, 2, 0, 0), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapElement, 3, 0, 56), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_repeat1, 2, 0, 0), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namedArg, 1, 0, 15), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namedArg, 3, 0, 118), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 162), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 205), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 154), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 155), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 156), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 86), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 158), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 160), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 122), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 9, 0, 251), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 163), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 164), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 165), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 78), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 121), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 210), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 76), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 90), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 52), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 209), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 208), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 206), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 132), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 204), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 203), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 92), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 202), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 8, 0, 221), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 201), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 8, 0, 220), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 8, 0, 219), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 8, 0, 218), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 8, 0, 217), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 200), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 123), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 125), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 153), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 127), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 152), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 151), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 138), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 136), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 134), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 133), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_foreignLanguageCode_repeat1, 2, 0, 0), SHIFT_REPEAT(1015), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_foreignLanguageCode_repeat1, 2, 0, 0), - [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_foreignLanguageCode_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignLanguageCode, 1, 0, 0), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nodeLike_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nodeLike_repeat1, 2, 0, 0), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 47), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 44), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 207), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 39), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 124), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 126), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 131), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 135), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bubbleScope_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bubbleScope_repeat1, 2, 0, 0), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_predicateDefinitionBody_repeat1, 2, 0, 0), SHIFT_REPEAT(239), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_predicateDefinitionBody_repeat1, 2, 0, 0), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_foreignLanguageCode_repeat1, 3, 0, 0), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 24), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 166), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 77), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 122), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 204), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 86), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 205), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 206), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 208), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 209), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 152), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 210), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 133), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 153), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 154), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 121), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 155), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 156), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 158), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 8, 0, 219), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 8, 0, 220), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 8, 0, 221), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 52), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 92), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 78), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 123), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 138), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 160), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 125), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 90), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 127), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 162), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 132), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 163), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 134), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 164), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 136), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 8, 0, 217), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 151), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 200), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 201), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 202), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 9, 0, 251), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 203), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 165), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 8, 0, 218), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 76), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreignLanguageCode, 1, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_foreignLanguageCode_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_foreignLanguageCode_repeat1, 2, 0, 0), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_foreignLanguageCode_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bubbleScope_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bubbleScope_repeat1, 2, 0, 0), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 24), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 7, 0, 207), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nodeLike_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nodeLike_repeat1, 2, 0, 0), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 124), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 126), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 131), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 135), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 39), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_foreignLanguageCode_repeat1, 3, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_predicateDefinitionBody_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_predicateDefinitionBody_repeat1, 2, 0, 0), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 77), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 44), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 47), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 82), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 85), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 89), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 82), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 159), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 157), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 85), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 89), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logMessage, 3, 0, 68), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logVariable, 3, 0, 69), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__start_line, 3, 0, 70), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__end_line, 3, 0, 71), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__start_column, 3, 0, 72), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__end_column, 3, 0, 73), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotdotdot, 4, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logVariable, 1, 0, 15), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logMessage, 1, 0, 14), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3984] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignLanguageName, 1, 0, 0), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 157), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 159), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 6, 0, 166), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logMessage, 1, 0, 14), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logVariable, 1, 0, 15), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotdotdot, 4, 0, 0), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logMessage, 3, 0, 68), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logVariable, 3, 0, 69), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__start_line, 3, 0, 70), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__end_line, 3, 0, 71), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__start_column, 3, 0, 72), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__end_column, 3, 0, 73), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4036] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreignLanguageName, 1, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), }; #ifdef __cplusplus diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h index 1f4466d..1abdd12 100644 --- a/src/tree_sitter/alloc.h +++ b/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17f0e94..799f599 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -47,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum {