diff --git a/src/tree-sitter/tree-sitter-regex/grammar.js b/src/tree-sitter/tree-sitter-regex/grammar.js index 14c70ea..cda3c3a 100644 --- a/src/tree-sitter/tree-sitter-regex/grammar.js +++ b/src/tree-sitter/tree-sitter-regex/grammar.js @@ -230,72 +230,81 @@ module.exports = grammar({ ')', ), capture_group_conditional: $ => seq( - '(?(', - choice( - $.capture_group_conditional_name, - repeat($._expression), - ), - ')', + $.capture_group_condition, repeat($._expression), optional('|'), repeat($._expression), ')', ), - capture_group_conditional_extended: $ => seq( + capture_group_condition: $ => seq( // Because TS can only insert missing nodes at the end of a node '(?(', choice( - $.capture_group_conditional_name, - repeat($._expression_extended), + alias( + $.capture_group_conditional_name, + $.name, + ), + repeat($._expression), ), ')', + ), + capture_group_conditional_extended: $ => seq( + $.capture_group_condition_extended, repeat($._expression_extended), optional('|'), repeat($._expression_extended), ')', ), - capture_group_conditional_name: $ => alias( + capture_group_condition_extended: $ => seq( // Because TS can only insert missing nodes at the end of a node + '(?(', choice( + alias( + $.capture_group_conditional_name, + $.name, + ), + repeat($._expression_extended), + ), + ')', + ), + capture_group_conditional_name: $ => choice( + seq( + '<', seq( - '<', - seq( - token( - choice( - seq( - optional(choice('+', '-')), - repeat('0'), - /[1-9]/, - repeat(/[0-9]/), - ), - seq( - /[a-zA-Z_]/, - repeat(/\w/), - ), + token( + choice( + seq( + optional(choice('+', '-')), + repeat('0'), + /[1-9]/, + repeat(/[0-9]/), ), - ), - optional( seq( - optional(choice('-', '+')), - repeat1(/[0-9]/), + /[a-zA-Z_]/, + repeat(/\w/), ), ), ), - '>' - ), - seq( - "'", - choice( - /[+-]?[1-9]\d*/, - /[a-zA-Z_]\w*/, + optional( + seq( + optional(choice('-', '+')), + repeat1(/[0-9]/), + ), ), - optional(/[+-]\d+/), - "'" ), - seq( + '>' + ), + seq( + "'", + choice( /[+-]?[1-9]\d*/, - optional(/[+-]\d+/), + /[a-zA-Z_]\w*/, ), + optional(/[+-]\d+/), + "'" + ), + seq( + /[+-]?[1-9]\d*/, + optional(/[+-]\d+/), ), - $.name, ), comment_group: $ => seq( '(?#', diff --git a/src/tree-sitter/tree-sitter-regex/src/grammar.json b/src/tree-sitter/tree-sitter-regex/src/grammar.json index 654417f..498bfd4 100644 --- a/src/tree-sitter/tree-sitter-regex/src/grammar.json +++ b/src/tree-sitter/tree-sitter-regex/src/grammar.json @@ -700,28 +700,8 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "(?(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "capture_group_conditional_name" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "STRING", - "value": ")" + "type": "SYMBOL", + "name": "capture_group_condition" }, { "type": "REPEAT", @@ -755,7 +735,7 @@ } ] }, - "capture_group_conditional_extended": { + "capture_group_condition": { "type": "SEQ", "members": [ { @@ -766,14 +746,19 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "capture_group_conditional_name" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "capture_group_conditional_name" + }, + "named": true, + "value": "name" }, { "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_expression_extended" + "name": "_expression" } } ] @@ -781,6 +766,15 @@ { "type": "STRING", "value": ")" + } + ] + }, + "capture_group_conditional_extended": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "capture_group_condition_extended" }, { "type": "REPEAT", @@ -814,90 +808,56 @@ } ] }, - "capture_group_conditional_name": { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" + "capture_group_condition_extended": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(?(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "capture_group_conditional_name" }, - { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": "0" - } - }, - { - "type": "PATTERN", - "value": "[1-9]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[0-9]" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[a-zA-Z_]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "\\w" - } - } - ] - } - ] - } - }, - { + "named": true, + "value": "name" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_expression_extended" + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "capture_group_conditional_name": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { "type": "CHOICE", "members": [ { @@ -911,11 +871,11 @@ "members": [ { "type": "STRING", - "value": "-" + "value": "+" }, { "type": "STRING", - "value": "+" + "value": "-" } ] }, @@ -925,7 +885,18 @@ ] }, { - "type": "REPEAT1", + "type": "REPEAT", + "content": { + "type": "STRING", + "value": "0" + } + }, + { + "type": "PATTERN", + "value": "[1-9]" + }, + { + "type": "REPEAT", "content": { "type": "PATTERN", "value": "[0-9]" @@ -934,81 +905,133 @@ ] }, { - "type": "BLANK" + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[a-zA-Z_]" + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "\\w" + } + } + ] } ] } - ] - }, - { - "type": "STRING", - "value": ">" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "'" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[+-]?[1-9]\\d*" - }, - { - "type": "PATTERN", - "value": "[a-zA-Z_]\\w*" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[+-]\\d+" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "'" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[+-]?[1-9]\\d*" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[+-]\\d+" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "named": true, - "value": "name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[+-]?[1-9]\\d*" + }, + { + "type": "PATTERN", + "value": "[a-zA-Z_]\\w*" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[+-]\\d+" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[+-]?[1-9]\\d*" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[+-]\\d+" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] }, "comment_group": { "type": "SEQ", diff --git a/src/tree-sitter/tree-sitter-regex/src/node-types.json b/src/tree-sitter/tree-sitter-regex/src/node-types.json index 7a85e15..9fe001f 100644 --- a/src/tree-sitter/tree-sitter-regex/src/node-types.json +++ b/src/tree-sitter/tree-sitter-regex/src/node-types.json @@ -674,7 +674,7 @@ } }, { - "type": "capture_group_conditional", + "type": "capture_group_condition", "named": true, "fields": {}, "children": { @@ -725,10 +725,6 @@ "type": "capture_group_conditional_extended", "named": true }, - { - "type": "capture_group_conditional_name", - "named": true - }, { "type": "capture_group_extended", "named": true @@ -793,6 +789,10 @@ "type": "modify_extended_2", "named": true }, + { + "type": "name", + "named": true + }, { "type": "non_capture_group", "named": true @@ -817,7 +817,7 @@ } }, { - "type": "capture_group_conditional_extended", + "type": "capture_group_condition_extended", "named": true, "fields": {}, "children": { @@ -853,13 +853,144 @@ "named": true }, { - "type": "capture_group_conditional_name", + "type": "capture_group_extended", + "named": true + }, + { + "type": "capture_group_name_extended", + "named": true + }, + { + "type": "character_class", + "named": true + }, + { + "type": "character_property", + "named": true + }, + { + "type": "comment_extended", + "named": true + }, + { + "type": "comment_group", + "named": true + }, + { + "type": "literal", + "named": true + }, + { + "type": "look_ahead_extended", + "named": true + }, + { + "type": "look_behind_extended", + "named": true + }, + { + "type": "meta_control_char", + "named": true + }, + { + "type": "modify", + "named": true + }, + { + "type": "modify_extended_1", + "named": true + }, + { + "type": "modify_extended_2", + "named": true + }, + { + "type": "name", + "named": true + }, + { + "type": "non_capture_group_extended", + "named": true + }, + { + "type": "quantifier", + "named": true + }, + { + "type": "subroutine", + "named": true + }, + { + "type": "unicode", + "named": true + } + ] + } + }, + { + "type": "capture_group_conditional", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "absent", + "named": true + }, + { + "type": "absent_extended", + "named": true + }, + { + "type": "alteration", + "named": true + }, + { + "type": "atomic_group", + "named": true + }, + { + "type": "atomic_group_extended", + "named": true + }, + { + "type": "backreference", + "named": true + }, + { + "type": "backslash", + "named": true + }, + { + "type": "callout", + "named": true + }, + { + "type": "capture_group", + "named": true + }, + { + "type": "capture_group_condition", + "named": true + }, + { + "type": "capture_group_conditional", + "named": true + }, + { + "type": "capture_group_conditional_extended", "named": true }, { "type": "capture_group_extended", "named": true }, + { + "type": "capture_group_name", + "named": true + }, { "type": "capture_group_name_extended", "named": true @@ -884,10 +1015,18 @@ "type": "literal", "named": true }, + { + "type": "look_ahead", + "named": true + }, { "type": "look_ahead_extended", "named": true }, + { + "type": "look_behind", + "named": true + }, { "type": "look_behind_extended", "named": true @@ -908,6 +1047,10 @@ "type": "modify_extended_2", "named": true }, + { + "type": "non_capture_group", + "named": true + }, { "type": "non_capture_group_extended", "named": true @@ -928,7 +1071,7 @@ } }, { - "type": "capture_group_conditional_name", + "type": "capture_group_conditional_extended", "named": true, "fields": {}, "children": { @@ -936,7 +1079,103 @@ "required": true, "types": [ { - "type": "name", + "type": "absent_extended", + "named": true + }, + { + "type": "alteration", + "named": true + }, + { + "type": "atomic_group_extended", + "named": true + }, + { + "type": "backreference", + "named": true + }, + { + "type": "backslash", + "named": true + }, + { + "type": "callout", + "named": true + }, + { + "type": "capture_group_condition_extended", + "named": true + }, + { + "type": "capture_group_conditional_extended", + "named": true + }, + { + "type": "capture_group_extended", + "named": true + }, + { + "type": "capture_group_name_extended", + "named": true + }, + { + "type": "character_class", + "named": true + }, + { + "type": "character_property", + "named": true + }, + { + "type": "comment_extended", + "named": true + }, + { + "type": "comment_group", + "named": true + }, + { + "type": "literal", + "named": true + }, + { + "type": "look_ahead_extended", + "named": true + }, + { + "type": "look_behind_extended", + "named": true + }, + { + "type": "meta_control_char", + "named": true + }, + { + "type": "modify", + "named": true + }, + { + "type": "modify_extended_1", + "named": true + }, + { + "type": "modify_extended_2", + "named": true + }, + { + "type": "non_capture_group_extended", + "named": true + }, + { + "type": "quantifier", + "named": true + }, + { + "type": "subroutine", + "named": true + }, + { + "type": "unicode", "named": true } ] diff --git a/src/tree-sitter/tree-sitter-regex/src/parser.c b/src/tree-sitter/tree-sitter-regex/src/parser.c index a5cd26e..71e3863 100644 --- a/src/tree-sitter/tree-sitter-regex/src/parser.c +++ b/src/tree-sitter/tree-sitter-regex/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1030 -#define LARGE_STATE_COUNT 98 -#define SYMBOL_COUNT 135 +#define STATE_COUNT 994 +#define LARGE_STATE_COUNT 87 +#define SYMBOL_COUNT 137 #define ALIAS_COUNT 2 #define TOKEN_COUNT 78 #define EXTERNAL_TOKEN_COUNT 5 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 17 +#define PRODUCTION_ID_COUNT 13 enum ts_symbol_identifiers { sym_backslash = 1, @@ -108,50 +108,52 @@ enum ts_symbol_identifiers { sym_capture_group_name = 90, sym_capture_group_name_extended = 91, sym_capture_group_conditional = 92, - sym_capture_group_conditional_extended = 93, - sym_capture_group_conditional_name = 94, - sym_comment_group = 95, - sym_comment_extended = 96, - sym_modify = 97, - sym__modify_extended = 98, - sym_modify_extended_1 = 99, - sym_modify_extended_2 = 100, - sym_look_ahead = 101, - sym_look_ahead_extended = 102, - sym_look_behind = 103, - sym_look_behind_extended = 104, - sym_callout = 105, - sym__callout_contents = 106, - sym_absent = 107, - sym_absent_extended = 108, - sym_character_class = 109, - sym_character_property = 110, - sym_character_property_name = 111, - sym_subroutine = 112, - sym_backreference = 113, - sym_unicode = 114, - sym_meta_control_char = 115, - aux_sym_regex_repeat1 = 116, - aux_sym_literal_repeat1 = 117, - aux_sym_quantifier_repeat1 = 118, - aux_sym_capture_group_extended_repeat1 = 119, - aux_sym_capture_group_name_repeat1 = 120, - aux_sym_capture_group_name_repeat2 = 121, - aux_sym_capture_group_conditional_name_repeat1 = 122, - aux_sym_comment_group_repeat1 = 123, - aux_sym_comment_extended_repeat1 = 124, - aux_sym_comment_extended_repeat2 = 125, - aux_sym_callout_repeat1 = 126, - aux_sym__callout_contents_repeat1 = 127, - aux_sym_character_class_repeat1 = 128, - aux_sym_character_property_name_repeat1 = 129, - aux_sym_character_property_name_repeat2 = 130, - aux_sym_subroutine_repeat1 = 131, - aux_sym_subroutine_repeat2 = 132, - aux_sym_subroutine_repeat3 = 133, - aux_sym_meta_control_char_repeat1 = 134, - alias_sym_comment = 135, - alias_sym_error = 136, + sym_capture_group_condition = 93, + sym_capture_group_conditional_extended = 94, + sym_capture_group_condition_extended = 95, + sym_capture_group_conditional_name = 96, + sym_comment_group = 97, + sym_comment_extended = 98, + sym_modify = 99, + sym__modify_extended = 100, + sym_modify_extended_1 = 101, + sym_modify_extended_2 = 102, + sym_look_ahead = 103, + sym_look_ahead_extended = 104, + sym_look_behind = 105, + sym_look_behind_extended = 106, + sym_callout = 107, + sym__callout_contents = 108, + sym_absent = 109, + sym_absent_extended = 110, + sym_character_class = 111, + sym_character_property = 112, + sym_character_property_name = 113, + sym_subroutine = 114, + sym_backreference = 115, + sym_unicode = 116, + sym_meta_control_char = 117, + aux_sym_regex_repeat1 = 118, + aux_sym_literal_repeat1 = 119, + aux_sym_quantifier_repeat1 = 120, + aux_sym_capture_group_extended_repeat1 = 121, + aux_sym_capture_group_name_repeat1 = 122, + aux_sym_capture_group_name_repeat2 = 123, + aux_sym_capture_group_conditional_name_repeat1 = 124, + aux_sym_comment_group_repeat1 = 125, + aux_sym_comment_extended_repeat1 = 126, + aux_sym_comment_extended_repeat2 = 127, + aux_sym_callout_repeat1 = 128, + aux_sym__callout_contents_repeat1 = 129, + aux_sym_character_class_repeat1 = 130, + aux_sym_character_property_name_repeat1 = 131, + aux_sym_character_property_name_repeat2 = 132, + aux_sym_subroutine_repeat1 = 133, + aux_sym_subroutine_repeat2 = 134, + aux_sym_subroutine_repeat3 = 135, + aux_sym_meta_control_char_repeat1 = 136, + alias_sym_comment = 137, + alias_sym_error = 138, }; static const char * const ts_symbol_names[] = { @@ -178,12 +180,12 @@ static const char * const ts_symbol_names[] = { [anon_sym_SQUOTE] = "'", [anon_sym_LPAREN_QMARK_LPAREN] = "(\?(", [anon_sym_LT] = "<", - [aux_sym_capture_group_conditional_name_token1] = "name", + [aux_sym_capture_group_conditional_name_token1] = "capture_group_conditional_name_token1", [anon_sym_DASH] = "-", [aux_sym_capture_group_conditional_name_token2] = "capture_group_conditional_name_token2", - [aux_sym_capture_group_conditional_name_token3] = "name", - [aux_sym_capture_group_conditional_name_token4] = "name", - [aux_sym_capture_group_conditional_name_token5] = "name", + [aux_sym_capture_group_conditional_name_token3] = "capture_group_conditional_name_token3", + [aux_sym_capture_group_conditional_name_token4] = "capture_group_conditional_name_token4", + [aux_sym_capture_group_conditional_name_token5] = "capture_group_conditional_name_token5", [anon_sym_LPAREN_QMARK_POUND] = "(\?#", [aux_sym_comment_group_token1] = "comment_group_token1", [aux_sym_comment_group_token2] = "comment_group_token2", @@ -248,8 +250,10 @@ static const char * const ts_symbol_names[] = { [sym_capture_group_name] = "capture_group_name", [sym_capture_group_name_extended] = "capture_group_name_extended", [sym_capture_group_conditional] = "capture_group_conditional", + [sym_capture_group_condition] = "capture_group_condition", [sym_capture_group_conditional_extended] = "capture_group_conditional_extended", - [sym_capture_group_conditional_name] = "capture_group_conditional_name", + [sym_capture_group_condition_extended] = "capture_group_condition_extended", + [sym_capture_group_conditional_name] = "name", [sym_comment_group] = "comment_group", [sym_comment_extended] = "comment_extended", [sym_modify] = "modify", @@ -318,12 +322,12 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_SQUOTE] = anon_sym_SQUOTE, [anon_sym_LPAREN_QMARK_LPAREN] = anon_sym_LPAREN_QMARK_LPAREN, [anon_sym_LT] = anon_sym_LT, - [aux_sym_capture_group_conditional_name_token1] = aux_sym_capture_group_name_token2, + [aux_sym_capture_group_conditional_name_token1] = aux_sym_capture_group_conditional_name_token1, [anon_sym_DASH] = anon_sym_DASH, [aux_sym_capture_group_conditional_name_token2] = aux_sym_capture_group_conditional_name_token2, - [aux_sym_capture_group_conditional_name_token3] = aux_sym_capture_group_name_token2, - [aux_sym_capture_group_conditional_name_token4] = aux_sym_capture_group_name_token2, - [aux_sym_capture_group_conditional_name_token5] = aux_sym_capture_group_name_token2, + [aux_sym_capture_group_conditional_name_token3] = aux_sym_capture_group_conditional_name_token3, + [aux_sym_capture_group_conditional_name_token4] = aux_sym_capture_group_conditional_name_token4, + [aux_sym_capture_group_conditional_name_token5] = aux_sym_capture_group_conditional_name_token5, [anon_sym_LPAREN_QMARK_POUND] = anon_sym_LPAREN_QMARK_POUND, [aux_sym_comment_group_token1] = aux_sym_comment_group_token1, [aux_sym_comment_group_token2] = aux_sym_comment_group_token2, @@ -388,8 +392,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_capture_group_name] = sym_capture_group_name, [sym_capture_group_name_extended] = sym_capture_group_name_extended, [sym_capture_group_conditional] = sym_capture_group_conditional, + [sym_capture_group_condition] = sym_capture_group_condition, [sym_capture_group_conditional_extended] = sym_capture_group_conditional_extended, - [sym_capture_group_conditional_name] = sym_capture_group_conditional_name, + [sym_capture_group_condition_extended] = sym_capture_group_condition_extended, + [sym_capture_group_conditional_name] = aux_sym_capture_group_name_token2, [sym_comment_group] = sym_comment_group, [sym_comment_extended] = sym_comment_extended, [sym_modify] = sym_modify, @@ -528,8 +534,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [aux_sym_capture_group_conditional_name_token1] = { - .visible = true, - .named = true, + .visible = false, + .named = false, }, [anon_sym_DASH] = { .visible = true, @@ -540,16 +546,16 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [aux_sym_capture_group_conditional_name_token3] = { - .visible = true, - .named = true, + .visible = false, + .named = false, }, [aux_sym_capture_group_conditional_name_token4] = { - .visible = true, - .named = true, + .visible = false, + .named = false, }, [aux_sym_capture_group_conditional_name_token5] = { - .visible = true, - .named = true, + .visible = false, + .named = false, }, [anon_sym_LPAREN_QMARK_POUND] = { .visible = true, @@ -807,10 +813,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_capture_group_condition] = { + .visible = true, + .named = true, + }, [sym_capture_group_conditional_extended] = { .visible = true, .named = true, }, + [sym_capture_group_condition_extended] = { + .visible = true, + .named = true, + }, [sym_capture_group_conditional_name] = { .visible = true, .named = true, @@ -988,64 +1002,46 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { - [0] = aux_sym_capture_group_name_token2, - }, - [2] = { [1] = alias_sym_comment, }, - [3] = { + [2] = { [1] = aux_sym_subroutine_token4, }, - [4] = { - [0] = aux_sym_capture_group_name_token2, - [2] = aux_sym_capture_group_name_token2, - }, - [5] = { + [3] = { [2] = aux_sym_subroutine_token4, }, - [6] = { + [4] = { [1] = alias_sym_error, }, - [7] = { + [5] = { [1] = alias_sym_error, [2] = aux_sym_subroutine_token4, }, - [8] = { + [6] = { [1] = aux_sym_subroutine_token4, [2] = alias_sym_error, }, - [9] = { + [7] = { [2] = alias_sym_error, }, - [10] = { - [0] = aux_sym_capture_group_name_token2, - [2] = aux_sym_capture_group_name_token2, - [3] = aux_sym_capture_group_name_token2, - }, - [11] = { + [8] = { [2] = aux_sym_subroutine_token4, [3] = alias_sym_error, }, - [12] = { + [9] = { [1] = alias_sym_error, [3] = aux_sym_subroutine_token4, }, - [13] = { + [10] = { [1] = alias_sym_error, [2] = aux_sym_subroutine_token4, [3] = alias_sym_error, }, - [14] = { + [11] = { [1] = alias_sym_error, [3] = alias_sym_error, }, - [15] = { - [0] = aux_sym_capture_group_name_token2, - [2] = aux_sym_capture_group_name_token2, - [3] = aux_sym_capture_group_name_token2, - [4] = aux_sym_capture_group_name_token2, - }, - [16] = { + [12] = { [1] = alias_sym_error, [3] = aux_sym_subroutine_token4, [4] = alias_sym_error, @@ -1059,9 +1055,6 @@ static const uint16_t ts_non_terminal_alias_map[] = { aux_sym_capture_group_name_repeat2, 2, aux_sym_capture_group_name_repeat2, alias_sym_error, - aux_sym_capture_group_conditional_name_repeat1, 2, - aux_sym_capture_group_conditional_name_repeat1, - aux_sym_capture_group_name_token2, aux_sym_comment_group_repeat1, 2, aux_sym_comment_group_repeat1, alias_sym_comment, @@ -1084,7 +1077,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, + [3] = 3, [4] = 4, [5] = 5, [6] = 6, @@ -1095,93 +1088,93 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [11] = 11, [12] = 12, [13] = 13, - [14] = 14, - [15] = 6, + [14] = 9, + [15] = 15, [16] = 16, [17] = 17, - [18] = 18, + [18] = 16, [19] = 19, [20] = 20, - [21] = 21, + [21] = 8, [22] = 22, - [23] = 16, - [24] = 24, - [25] = 13, - [26] = 24, + [23] = 23, + [24] = 13, + [25] = 4, + [26] = 15, [27] = 27, [28] = 28, [29] = 29, - [30] = 20, + [30] = 30, [31] = 31, [32] = 32, - [33] = 16, - [34] = 24, - [35] = 35, + [33] = 33, + [34] = 16, + [35] = 20, [36] = 36, [37] = 37, - [38] = 21, - [39] = 13, - [40] = 37, - [41] = 24, - [42] = 42, + [38] = 38, + [39] = 39, + [40] = 15, + [41] = 41, + [42] = 39, [43] = 43, [44] = 44, - [45] = 45, + [45] = 15, [46] = 46, - [47] = 47, + [47] = 8, [48] = 48, [49] = 49, - [50] = 50, - [51] = 51, - [52] = 13, - [53] = 12, - [54] = 54, - [55] = 55, - [56] = 56, - [57] = 57, - [58] = 17, - [59] = 16, - [60] = 20, - [61] = 5, - [62] = 50, - [63] = 48, - [64] = 20, - [65] = 47, - [66] = 45, - [67] = 57, - [68] = 44, - [69] = 43, - [70] = 16, - [71] = 42, - [72] = 4, - [73] = 13, - [74] = 8, - [75] = 29, - [76] = 9, - [77] = 28, - [78] = 27, - [79] = 22, - [80] = 24, - [81] = 11, - [82] = 46, - [83] = 19, - [84] = 20, - [85] = 18, - [86] = 14, - [87] = 10, - [88] = 36, - [89] = 35, - [90] = 49, - [91] = 51, - [92] = 54, - [93] = 32, - [94] = 31, - [95] = 7, - [96] = 55, - [97] = 56, + [50] = 13, + [51] = 13, + [52] = 8, + [53] = 38, + [54] = 37, + [55] = 36, + [56] = 32, + [57] = 31, + [58] = 30, + [59] = 29, + [60] = 8, + [61] = 27, + [62] = 62, + [63] = 6, + [64] = 15, + [65] = 28, + [66] = 46, + [67] = 48, + [68] = 49, + [69] = 41, + [70] = 3, + [71] = 23, + [72] = 13, + [73] = 16, + [74] = 16, + [75] = 43, + [76] = 22, + [77] = 19, + [78] = 17, + [79] = 12, + [80] = 11, + [81] = 62, + [82] = 10, + [83] = 5, + [84] = 44, + [85] = 7, + [86] = 86, + [87] = 87, + [88] = 88, + [89] = 89, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 97, [98] = 98, - [99] = 98, - [100] = 98, + [99] = 99, + [100] = 100, [101] = 101, [102] = 102, [103] = 103, @@ -1189,151 +1182,151 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [105] = 105, [106] = 106, [107] = 107, - [108] = 108, + [108] = 99, [109] = 109, - [110] = 110, - [111] = 111, - [112] = 112, + [110] = 104, + [111] = 107, + [112] = 87, [113] = 113, [114] = 114, - [115] = 113, - [116] = 112, + [115] = 115, + [116] = 88, [117] = 117, [118] = 118, - [119] = 119, + [119] = 118, [120] = 120, - [121] = 121, - [122] = 122, - [123] = 123, - [124] = 124, + [121] = 89, + [122] = 117, + [123] = 91, + [124] = 92, [125] = 125, [126] = 126, [127] = 127, [128] = 128, [129] = 129, [130] = 130, - [131] = 131, - [132] = 132, - [133] = 133, - [134] = 134, - [135] = 129, + [131] = 120, + [132] = 101, + [133] = 114, + [134] = 113, + [135] = 103, [136] = 136, - [137] = 114, - [138] = 138, - [139] = 130, - [140] = 140, - [141] = 141, - [142] = 142, - [143] = 143, - [144] = 101, - [145] = 145, - [146] = 119, - [147] = 145, - [148] = 120, - [149] = 143, - [150] = 121, - [151] = 126, - [152] = 142, - [153] = 141, - [154] = 140, - [155] = 128, - [156] = 127, + [137] = 113, + [138] = 114, + [139] = 120, + [140] = 130, + [141] = 129, + [142] = 130, + [143] = 129, + [144] = 128, + [145] = 128, + [146] = 127, + [147] = 103, + [148] = 101, + [149] = 92, + [150] = 91, + [151] = 89, + [152] = 118, + [153] = 117, + [154] = 154, + [155] = 115, + [156] = 154, [157] = 126, - [158] = 121, - [159] = 127, - [160] = 120, - [161] = 119, - [162] = 128, - [163] = 140, - [164] = 102, - [165] = 141, - [166] = 103, - [167] = 142, - [168] = 168, - [169] = 138, - [170] = 170, - [171] = 136, - [172] = 129, - [173] = 145, - [174] = 101, - [175] = 143, - [176] = 102, - [177] = 134, - [178] = 103, - [179] = 133, - [180] = 104, - [181] = 170, - [182] = 124, - [183] = 105, - [184] = 104, - [185] = 106, - [186] = 132, - [187] = 131, - [188] = 107, - [189] = 168, - [190] = 125, - [191] = 125, - [192] = 124, - [193] = 123, - [194] = 108, - [195] = 130, - [196] = 138, - [197] = 109, - [198] = 123, - [199] = 110, - [200] = 136, - [201] = 105, - [202] = 111, - [203] = 134, - [204] = 133, - [205] = 132, - [206] = 112, - [207] = 113, - [208] = 114, - [209] = 122, - [210] = 111, - [211] = 131, - [212] = 170, - [213] = 110, - [214] = 138, - [215] = 109, - [216] = 108, - [217] = 130, - [218] = 117, - [219] = 168, - [220] = 120, - [221] = 119, + [158] = 90, + [159] = 93, + [160] = 94, + [161] = 95, + [162] = 96, + [163] = 97, + [164] = 98, + [165] = 99, + [166] = 98, + [167] = 97, + [168] = 125, + [169] = 114, + [170] = 127, + [171] = 126, + [172] = 125, + [173] = 113, + [174] = 88, + [175] = 102, + [176] = 107, + [177] = 96, + [178] = 115, + [179] = 100, + [180] = 109, + [181] = 95, + [182] = 105, + [183] = 106, + [184] = 87, + [185] = 154, + [186] = 94, + [187] = 93, + [188] = 87, + [189] = 87, + [190] = 106, + [191] = 109, + [192] = 105, + [193] = 104, + [194] = 107, + [195] = 102, + [196] = 100, + [197] = 197, + [198] = 107, + [199] = 90, + [200] = 113, + [201] = 114, + [202] = 202, + [203] = 203, + [204] = 203, + [205] = 205, + [206] = 205, + [207] = 202, + [208] = 208, + [209] = 208, + [210] = 210, + [211] = 211, + [212] = 210, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 213, + [217] = 217, + [218] = 214, + [219] = 215, + [220] = 217, + [221] = 211, [222] = 222, - [223] = 122, - [224] = 138, - [225] = 130, - [226] = 117, - [227] = 118, - [228] = 120, - [229] = 106, - [230] = 118, - [231] = 107, - [232] = 119, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 224, [233] = 233, [234] = 234, [235] = 235, - [236] = 235, - [237] = 234, - [238] = 233, + [236] = 236, + [237] = 237, + [238] = 238, [239] = 239, - [240] = 239, + [240] = 240, [241] = 241, [242] = 242, [243] = 243, [244] = 244, [245] = 245, - [246] = 243, + [246] = 246, [247] = 247, - [248] = 244, - [249] = 245, - [250] = 247, - [251] = 242, - [252] = 241, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, [253] = 253, [254] = 254, [255] = 255, @@ -1343,774 +1336,738 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [259] = 259, [260] = 260, [261] = 261, - [262] = 262, - [263] = 259, + [262] = 225, + [263] = 263, [264] = 264, [265] = 265, [266] = 266, [267] = 267, [268] = 268, - [269] = 264, - [270] = 270, + [269] = 269, + [270] = 226, [271] = 271, [272] = 272, - [273] = 273, + [273] = 223, [274] = 274, - [275] = 275, - [276] = 262, - [277] = 270, - [278] = 275, - [279] = 261, - [280] = 280, - [281] = 281, + [275] = 227, + [276] = 228, + [277] = 229, + [278] = 230, + [279] = 279, + [280] = 231, + [281] = 233, [282] = 282, - [283] = 283, - [284] = 260, - [285] = 285, - [286] = 286, - [287] = 287, - [288] = 288, - [289] = 289, - [290] = 271, - [291] = 291, - [292] = 292, - [293] = 293, + [283] = 234, + [284] = 284, + [285] = 235, + [286] = 236, + [287] = 237, + [288] = 238, + [289] = 222, + [290] = 239, + [291] = 240, + [292] = 241, + [293] = 242, [294] = 294, [295] = 295, - [296] = 296, - [297] = 273, + [296] = 243, + [297] = 297, [298] = 298, - [299] = 299, - [300] = 300, - [301] = 301, + [299] = 244, + [300] = 245, + [301] = 246, [302] = 302, - [303] = 303, - [304] = 304, - [305] = 305, - [306] = 306, - [307] = 307, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, + [303] = 250, + [304] = 251, + [305] = 259, + [306] = 260, + [307] = 261, + [308] = 263, + [309] = 264, + [310] = 265, + [311] = 266, [312] = 312, - [313] = 313, - [314] = 314, - [315] = 315, - [316] = 280, - [317] = 283, - [318] = 318, - [319] = 272, - [320] = 296, - [321] = 321, + [313] = 269, + [314] = 271, + [315] = 272, + [316] = 274, + [317] = 302, + [318] = 298, + [319] = 297, + [320] = 295, + [321] = 294, [322] = 322, [323] = 323, - [324] = 324, - [325] = 274, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 281, - [330] = 282, - [331] = 286, - [332] = 285, - [333] = 289, - [334] = 287, - [335] = 288, - [336] = 253, - [337] = 291, - [338] = 292, - [339] = 293, - [340] = 294, - [341] = 295, - [342] = 298, - [343] = 300, - [344] = 301, - [345] = 302, - [346] = 304, - [347] = 305, - [348] = 306, - [349] = 307, - [350] = 310, - [351] = 256, - [352] = 257, - [353] = 258, - [354] = 265, - [355] = 311, - [356] = 312, - [357] = 266, - [358] = 267, - [359] = 268, - [360] = 314, - [361] = 315, - [362] = 318, - [363] = 254, - [364] = 321, - [365] = 322, - [366] = 323, - [367] = 324, - [368] = 326, - [369] = 327, - [370] = 328, - [371] = 313, - [372] = 309, - [373] = 308, - [374] = 303, - [375] = 299, - [376] = 244, - [377] = 247, - [378] = 243, - [379] = 245, - [380] = 243, - [381] = 244, - [382] = 245, - [383] = 247, - [384] = 244, - [385] = 247, - [386] = 243, - [387] = 245, - [388] = 388, - [389] = 311, - [390] = 294, - [391] = 391, - [392] = 293, - [393] = 292, - [394] = 291, - [395] = 253, - [396] = 271, - [397] = 298, - [398] = 295, - [399] = 399, + [324] = 284, + [325] = 282, + [326] = 279, + [327] = 257, + [328] = 256, + [329] = 255, + [330] = 254, + [331] = 331, + [332] = 253, + [333] = 249, + [334] = 248, + [335] = 247, + [336] = 336, + [337] = 322, + [338] = 336, + [339] = 323, + [340] = 340, + [341] = 340, + [342] = 258, + [343] = 267, + [344] = 268, + [345] = 213, + [346] = 215, + [347] = 217, + [348] = 215, + [349] = 214, + [350] = 213, + [351] = 217, + [352] = 215, + [353] = 213, + [354] = 217, + [355] = 214, + [356] = 214, + [357] = 357, + [358] = 251, + [359] = 260, + [360] = 246, + [361] = 361, + [362] = 245, + [363] = 363, + [364] = 244, + [365] = 243, + [366] = 242, + [367] = 241, + [368] = 266, + [369] = 240, + [370] = 239, + [371] = 371, + [372] = 225, + [373] = 373, + [374] = 263, + [375] = 375, + [376] = 376, + [377] = 264, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 222, + [382] = 238, + [383] = 383, + [384] = 384, + [385] = 237, + [386] = 357, + [387] = 236, + [388] = 235, + [389] = 234, + [390] = 233, + [391] = 224, + [392] = 392, + [393] = 265, + [394] = 266, + [395] = 395, + [396] = 231, + [397] = 230, + [398] = 392, + [399] = 269, [400] = 400, - [401] = 401, - [402] = 288, - [403] = 287, - [404] = 404, - [405] = 405, - [406] = 254, - [407] = 300, + [401] = 229, + [402] = 261, + [403] = 228, + [404] = 227, + [405] = 226, + [406] = 259, + [407] = 225, [408] = 408, - [409] = 286, - [410] = 301, - [411] = 315, - [412] = 282, - [413] = 302, - [414] = 281, - [415] = 304, - [416] = 298, - [417] = 306, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 305, - [422] = 422, - [423] = 423, - [424] = 306, - [425] = 425, - [426] = 272, - [427] = 427, - [428] = 428, - [429] = 318, - [430] = 321, - [431] = 428, - [432] = 307, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 271, + [415] = 411, + [416] = 263, + [417] = 265, + [418] = 400, + [419] = 245, + [420] = 412, + [421] = 375, + [422] = 380, + [423] = 272, + [424] = 410, + [425] = 380, + [426] = 379, + [427] = 378, + [428] = 409, + [429] = 376, + [430] = 375, + [431] = 408, + [432] = 373, + [433] = 376, + [434] = 264, + [435] = 379, + [436] = 274, [437] = 437, - [438] = 391, - [439] = 427, - [440] = 440, - [441] = 310, - [442] = 388, - [443] = 437, - [444] = 311, - [445] = 436, - [446] = 435, - [447] = 305, - [448] = 312, - [449] = 304, - [450] = 434, - [451] = 405, - [452] = 433, - [453] = 314, - [454] = 428, - [455] = 328, - [456] = 315, - [457] = 322, - [458] = 318, - [459] = 272, - [460] = 388, - [461] = 254, - [462] = 440, - [463] = 399, - [464] = 404, - [465] = 465, - [466] = 427, - [467] = 391, - [468] = 321, - [469] = 437, - [470] = 436, - [471] = 435, - [472] = 323, - [473] = 400, - [474] = 401, - [475] = 434, - [476] = 322, - [477] = 408, - [478] = 323, - [479] = 302, - [480] = 465, - [481] = 314, - [482] = 324, - [483] = 465, - [484] = 324, - [485] = 274, - [486] = 274, - [487] = 425, - [488] = 425, - [489] = 326, - [490] = 326, - [491] = 423, - [492] = 422, - [493] = 327, - [494] = 420, - [495] = 419, - [496] = 418, - [497] = 328, - [498] = 281, - [499] = 423, - [500] = 282, - [501] = 301, - [502] = 422, - [503] = 327, - [504] = 286, - [505] = 408, - [506] = 300, - [507] = 420, - [508] = 294, - [509] = 404, - [510] = 287, - [511] = 312, - [512] = 310, - [513] = 405, - [514] = 399, - [515] = 295, - [516] = 288, - [517] = 433, - [518] = 401, - [519] = 400, - [520] = 419, - [521] = 328, - [522] = 307, - [523] = 440, - [524] = 327, - [525] = 326, - [526] = 271, - [527] = 324, - [528] = 418, - [529] = 253, - [530] = 323, - [531] = 322, - [532] = 321, - [533] = 254, - [534] = 291, - [535] = 318, - [536] = 315, - [537] = 314, - [538] = 312, - [539] = 311, - [540] = 310, - [541] = 307, - [542] = 306, - [543] = 305, - [544] = 304, - [545] = 302, - [546] = 301, - [547] = 300, - [548] = 298, - [549] = 295, - [550] = 294, - [551] = 293, - [552] = 292, - [553] = 291, - [554] = 253, - [555] = 271, - [556] = 288, - [557] = 287, - [558] = 286, - [559] = 282, - [560] = 281, - [561] = 292, - [562] = 274, - [563] = 293, - [564] = 272, - [565] = 565, - [566] = 565, - [567] = 565, + [438] = 227, + [439] = 224, + [440] = 228, + [441] = 361, + [442] = 226, + [443] = 363, + [444] = 411, + [445] = 229, + [446] = 250, + [447] = 395, + [448] = 225, + [449] = 269, + [450] = 371, + [451] = 271, + [452] = 226, + [453] = 383, + [454] = 384, + [455] = 231, + [456] = 400, + [457] = 413, + [458] = 395, + [459] = 246, + [460] = 361, + [461] = 250, + [462] = 261, + [463] = 230, + [464] = 412, + [465] = 272, + [466] = 392, + [467] = 224, + [468] = 233, + [469] = 234, + [470] = 373, + [471] = 471, + [472] = 235, + [473] = 236, + [474] = 357, + [475] = 410, + [476] = 237, + [477] = 409, + [478] = 408, + [479] = 259, + [480] = 227, + [481] = 260, + [482] = 228, + [483] = 384, + [484] = 383, + [485] = 238, + [486] = 222, + [487] = 229, + [488] = 251, + [489] = 371, + [490] = 230, + [491] = 231, + [492] = 233, + [493] = 239, + [494] = 240, + [495] = 234, + [496] = 437, + [497] = 235, + [498] = 241, + [499] = 274, + [500] = 242, + [501] = 243, + [502] = 236, + [503] = 237, + [504] = 244, + [505] = 238, + [506] = 363, + [507] = 222, + [508] = 239, + [509] = 274, + [510] = 378, + [511] = 413, + [512] = 272, + [513] = 271, + [514] = 240, + [515] = 269, + [516] = 516, + [517] = 437, + [518] = 266, + [519] = 265, + [520] = 264, + [521] = 263, + [522] = 241, + [523] = 261, + [524] = 260, + [525] = 259, + [526] = 251, + [527] = 250, + [528] = 246, + [529] = 245, + [530] = 244, + [531] = 243, + [532] = 242, + [533] = 533, + [534] = 534, + [535] = 533, + [536] = 536, + [537] = 533, + [538] = 534, + [539] = 533, + [540] = 533, + [541] = 534, + [542] = 534, + [543] = 534, + [544] = 544, + [545] = 544, + [546] = 544, + [547] = 544, + [548] = 544, + [549] = 549, + [550] = 550, + [551] = 550, + [552] = 552, + [553] = 550, + [554] = 552, + [555] = 217, + [556] = 552, + [557] = 552, + [558] = 550, + [559] = 215, + [560] = 550, + [561] = 552, + [562] = 225, + [563] = 226, + [564] = 564, + [565] = 224, + [566] = 566, + [567] = 567, [568] = 568, [569] = 569, [570] = 568, - [571] = 565, - [572] = 568, - [573] = 568, - [574] = 565, - [575] = 568, - [576] = 576, - [577] = 576, - [578] = 576, - [579] = 576, - [580] = 576, - [581] = 581, - [582] = 245, - [583] = 583, - [584] = 584, - [585] = 583, - [586] = 583, - [587] = 247, - [588] = 584, - [589] = 584, - [590] = 583, - [591] = 583, - [592] = 584, - [593] = 584, - [594] = 272, - [595] = 271, - [596] = 274, - [597] = 597, + [571] = 571, + [572] = 566, + [573] = 571, + [574] = 574, + [575] = 575, + [576] = 567, + [577] = 574, + [578] = 569, + [579] = 569, + [580] = 568, + [581] = 567, + [582] = 571, + [583] = 566, + [584] = 575, + [585] = 567, + [586] = 574, + [587] = 569, + [588] = 569, + [589] = 566, + [590] = 568, + [591] = 571, + [592] = 566, + [593] = 575, + [594] = 567, + [595] = 595, + [596] = 575, + [597] = 574, [598] = 598, [599] = 599, - [600] = 600, - [601] = 599, - [602] = 602, - [603] = 603, - [604] = 604, + [600] = 571, + [601] = 569, + [602] = 568, + [603] = 574, + [604] = 575, [605] = 605, - [606] = 600, - [607] = 599, - [608] = 604, - [609] = 600, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 609, [610] = 610, - [611] = 604, - [612] = 602, + [611] = 611, + [612] = 605, [613] = 613, - [614] = 613, - [615] = 605, - [616] = 599, - [617] = 600, - [618] = 602, - [619] = 610, + [614] = 614, + [615] = 607, + [616] = 608, + [617] = 609, + [618] = 610, + [619] = 611, [620] = 613, - [621] = 600, - [622] = 605, - [623] = 610, - [624] = 624, - [625] = 602, - [626] = 604, + [621] = 614, + [622] = 607, + [623] = 608, + [624] = 609, + [625] = 610, + [626] = 611, [627] = 613, - [628] = 604, - [629] = 610, - [630] = 599, - [631] = 604, - [632] = 610, - [633] = 605, - [634] = 605, + [628] = 614, + [629] = 607, + [630] = 608, + [631] = 609, + [632] = 632, + [633] = 610, + [634] = 611, [635] = 613, - [636] = 602, + [636] = 614, [637] = 637, - [638] = 638, + [638] = 564, [639] = 639, [640] = 640, - [641] = 641, - [642] = 641, - [643] = 643, - [644] = 644, - [645] = 638, - [646] = 646, - [647] = 646, - [648] = 648, - [649] = 643, - [650] = 637, - [651] = 644, - [652] = 638, - [653] = 640, - [654] = 654, - [655] = 641, - [656] = 640, - [657] = 654, - [658] = 639, - [659] = 659, - [660] = 660, + [641] = 606, + [642] = 605, + [643] = 614, + [644] = 606, + [645] = 605, + [646] = 637, + [647] = 639, + [648] = 640, + [649] = 609, + [650] = 613, + [651] = 611, + [652] = 610, + [653] = 606, + [654] = 605, + [655] = 637, + [656] = 639, + [657] = 607, + [658] = 640, + [659] = 640, + [660] = 608, [661] = 661, - [662] = 662, - [663] = 597, - [664] = 646, - [665] = 643, - [666] = 644, - [667] = 638, - [668] = 654, - [669] = 637, - [670] = 637, - [671] = 639, - [672] = 654, - [673] = 659, - [674] = 641, - [675] = 660, - [676] = 640, - [677] = 661, + [662] = 637, + [663] = 640, + [664] = 664, + [665] = 639, + [666] = 666, + [667] = 637, + [668] = 606, + [669] = 639, + [670] = 564, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, [678] = 678, - [679] = 639, - [680] = 646, - [681] = 646, - [682] = 640, - [683] = 661, - [684] = 643, - [685] = 637, - [686] = 660, - [687] = 644, - [688] = 641, - [689] = 638, - [690] = 659, - [691] = 661, - [692] = 661, - [693] = 597, - [694] = 654, - [695] = 660, - [696] = 660, - [697] = 644, + [679] = 679, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 599, + [685] = 685, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 677, + [690] = 690, + [691] = 691, + [692] = 678, + [693] = 693, + [694] = 679, + [695] = 681, + [696] = 672, + [697] = 690, [698] = 698, - [699] = 659, - [700] = 639, - [701] = 659, - [702] = 643, + [699] = 699, + [700] = 675, + [701] = 701, + [702] = 702, [703] = 703, - [704] = 704, + [704] = 685, [705] = 705, [706] = 706, [707] = 707, - [708] = 708, + [708] = 683, [709] = 709, - [710] = 710, + [710] = 679, [711] = 711, - [712] = 712, + [712] = 674, [713] = 713, - [714] = 714, + [714] = 677, [715] = 715, [716] = 716, - [717] = 716, - [718] = 718, - [719] = 719, - [720] = 719, - [721] = 716, - [722] = 711, - [723] = 723, - [724] = 724, + [717] = 676, + [718] = 672, + [719] = 683, + [720] = 690, + [721] = 676, + [722] = 674, + [723] = 699, + [724] = 713, [725] = 725, - [726] = 726, - [727] = 603, - [728] = 728, - [729] = 718, - [730] = 730, - [731] = 714, - [732] = 707, - [733] = 712, - [734] = 709, - [735] = 712, - [736] = 703, - [737] = 714, - [738] = 738, + [726] = 701, + [727] = 727, + [728] = 703, + [729] = 678, + [730] = 703, + [731] = 671, + [732] = 673, + [733] = 699, + [734] = 701, + [735] = 711, + [736] = 725, + [737] = 702, + [738] = 707, [739] = 739, - [740] = 718, - [741] = 710, - [742] = 710, - [743] = 705, - [744] = 706, - [745] = 745, - [746] = 746, - [747] = 706, - [748] = 746, - [749] = 710, - [750] = 703, - [751] = 716, - [752] = 719, - [753] = 711, - [754] = 754, + [740] = 709, + [741] = 741, + [742] = 741, + [743] = 709, + [744] = 681, + [745] = 675, + [746] = 702, + [747] = 727, + [748] = 673, + [749] = 672, + [750] = 671, + [751] = 683, + [752] = 676, + [753] = 690, + [754] = 741, [755] = 755, - [756] = 756, - [757] = 703, - [758] = 758, - [759] = 759, - [760] = 728, - [761] = 730, - [762] = 762, - [763] = 707, - [764] = 758, - [765] = 756, - [766] = 705, - [767] = 726, - [768] = 709, - [769] = 719, - [770] = 704, - [771] = 762, - [772] = 711, - [773] = 728, - [774] = 738, + [756] = 706, + [757] = 757, + [758] = 699, + [759] = 701, + [760] = 703, + [761] = 671, + [762] = 725, + [763] = 713, + [764] = 674, + [765] = 713, + [766] = 766, + [767] = 675, + [768] = 741, + [769] = 702, + [770] = 687, + [771] = 671, + [772] = 599, + [773] = 725, + [774] = 727, [775] = 707, - [776] = 746, - [777] = 759, - [778] = 762, - [779] = 779, - [780] = 746, - [781] = 781, - [782] = 738, - [783] = 730, - [784] = 758, - [785] = 712, - [786] = 738, - [787] = 787, - [788] = 730, - [789] = 714, - [790] = 603, - [791] = 791, - [792] = 718, - [793] = 706, - [794] = 718, - [795] = 795, - [796] = 714, - [797] = 797, - [798] = 712, - [799] = 759, - [800] = 800, - [801] = 756, - [802] = 708, - [803] = 728, - [804] = 804, - [805] = 730, - [806] = 707, - [807] = 709, - [808] = 746, - [809] = 706, - [810] = 779, - [811] = 710, - [812] = 703, - [813] = 726, - [814] = 716, - [815] = 719, - [816] = 781, - [817] = 711, - [818] = 818, - [819] = 818, - [820] = 745, - [821] = 715, - [822] = 762, - [823] = 709, - [824] = 758, - [825] = 756, - [826] = 705, - [827] = 726, - [828] = 704, - [829] = 726, - [830] = 738, - [831] = 705, - [832] = 756, - [833] = 781, - [834] = 758, - [835] = 779, - [836] = 762, - [837] = 755, - [838] = 838, - [839] = 728, - [840] = 840, + [776] = 690, + [777] = 702, + [778] = 699, + [779] = 701, + [780] = 675, + [781] = 672, + [782] = 683, + [783] = 703, + [784] = 676, + [785] = 674, + [786] = 709, + [787] = 713, + [788] = 725, + [789] = 673, + [790] = 727, + [791] = 709, + [792] = 741, + [793] = 793, + [794] = 686, + [795] = 707, + [796] = 682, + [797] = 682, + [798] = 706, + [799] = 706, + [800] = 682, + [801] = 706, + [802] = 682, + [803] = 673, + [804] = 727, + [805] = 707, + [806] = 806, + [807] = 688, + [808] = 808, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 808, + [815] = 809, + [816] = 813, + [817] = 811, + [818] = 813, + [819] = 819, + [820] = 810, + [821] = 808, + [822] = 809, + [823] = 811, + [824] = 809, + [825] = 825, + [826] = 808, + [827] = 813, + [828] = 828, + [829] = 808, + [830] = 830, + [831] = 831, + [832] = 809, + [833] = 833, + [834] = 811, + [835] = 813, + [836] = 831, + [837] = 811, + [838] = 831, + [839] = 831, + [840] = 831, [841] = 841, [842] = 842, [843] = 843, [844] = 844, [845] = 845, - [846] = 842, + [846] = 846, [847] = 847, - [848] = 848, + [848] = 846, [849] = 849, - [850] = 840, - [851] = 842, - [852] = 840, - [853] = 843, - [854] = 847, - [855] = 844, - [856] = 845, - [857] = 840, - [858] = 845, - [859] = 844, + [850] = 844, + [851] = 851, + [852] = 849, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 856, + [857] = 857, + [858] = 858, + [859] = 857, [860] = 860, [861] = 861, - [862] = 862, - [863] = 845, - [864] = 842, - [865] = 843, - [866] = 866, - [867] = 844, - [868] = 843, - [869] = 845, - [870] = 842, - [871] = 843, - [872] = 844, - [873] = 840, - [874] = 874, + [862] = 842, + [863] = 863, + [864] = 843, + [865] = 842, + [866] = 856, + [867] = 867, + [868] = 868, + [869] = 856, + [870] = 855, + [871] = 871, + [872] = 863, + [873] = 861, + [874] = 856, [875] = 875, [876] = 876, [877] = 877, - [878] = 878, + [878] = 845, [879] = 879, - [880] = 880, + [880] = 855, [881] = 881, [882] = 882, - [883] = 883, - [884] = 884, - [885] = 885, - [886] = 885, + [883] = 871, + [884] = 879, + [885] = 854, + [886] = 851, [887] = 887, - [888] = 888, - [889] = 889, - [890] = 880, + [888] = 860, + [889] = 853, + [890] = 881, [891] = 891, - [892] = 892, - [893] = 887, - [894] = 894, - [895] = 887, - [896] = 874, - [897] = 897, - [898] = 892, - [899] = 887, + [892] = 849, + [893] = 844, + [894] = 846, + [895] = 867, + [896] = 854, + [897] = 841, + [898] = 856, + [899] = 854, [900] = 900, [901] = 901, - [902] = 880, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 889, - [907] = 907, - [908] = 888, - [909] = 887, - [910] = 885, - [911] = 888, - [912] = 912, - [913] = 894, - [914] = 914, - [915] = 915, - [916] = 883, - [917] = 917, + [902] = 891, + [903] = 875, + [904] = 876, + [905] = 877, + [906] = 847, + [907] = 846, + [908] = 845, + [909] = 853, + [910] = 847, + [911] = 871, + [912] = 879, + [913] = 843, + [914] = 851, + [915] = 842, + [916] = 887, + [917] = 858, [918] = 918, - [919] = 919, - [920] = 920, - [921] = 882, - [922] = 881, + [919] = 867, + [920] = 863, + [921] = 921, + [922] = 849, [923] = 923, - [924] = 924, - [925] = 923, - [926] = 879, - [927] = 924, - [928] = 894, - [929] = 878, - [930] = 900, - [931] = 889, - [932] = 876, - [933] = 875, - [934] = 874, - [935] = 897, - [936] = 892, - [937] = 903, - [938] = 904, - [939] = 905, - [940] = 940, - [941] = 907, - [942] = 900, - [943] = 943, - [944] = 900, - [945] = 880, - [946] = 889, - [947] = 914, - [948] = 915, - [949] = 888, - [950] = 917, - [951] = 903, - [952] = 882, - [953] = 920, - [954] = 904, - [955] = 894, - [956] = 885, - [957] = 957, - [958] = 905, - [959] = 919, - [960] = 883, - [961] = 882, - [962] = 881, - [963] = 907, - [964] = 879, - [965] = 892, - [966] = 897, - [967] = 878, - [968] = 907, - [969] = 876, - [970] = 917, - [971] = 971, - [972] = 892, - [973] = 876, - [974] = 875, - [975] = 894, - [976] = 874, - [977] = 918, - [978] = 897, - [979] = 892, - [980] = 897, - [981] = 917, - [982] = 883, - [983] = 907, - [984] = 874, - [985] = 900, - [986] = 882, - [987] = 875, - [988] = 876, - [989] = 989, - [990] = 917, - [991] = 880, - [992] = 889, - [993] = 881, - [994] = 888, - [995] = 917, - [996] = 878, - [997] = 997, - [998] = 879, - [999] = 914, - [1000] = 915, - [1001] = 989, - [1002] = 881, - [1003] = 1003, - [1004] = 1004, - [1005] = 875, - [1006] = 887, - [1007] = 891, - [1008] = 878, - [1009] = 885, - [1010] = 1004, - [1011] = 1011, - [1012] = 1012, - [1013] = 989, - [1014] = 1004, - [1015] = 891, - [1016] = 879, - [1017] = 989, - [1018] = 1004, - [1019] = 891, - [1020] = 883, - [1021] = 989, - [1022] = 1004, - [1023] = 891, - [1024] = 989, - [1025] = 877, - [1026] = 877, - [1027] = 877, - [1028] = 877, - [1029] = 877, + [924] = 861, + [925] = 857, + [926] = 847, + [927] = 877, + [928] = 858, + [929] = 855, + [930] = 844, + [931] = 856, + [932] = 932, + [933] = 855, + [934] = 851, + [935] = 875, + [936] = 867, + [937] = 854, + [938] = 853, + [939] = 867, + [940] = 849, + [941] = 844, + [942] = 876, + [943] = 841, + [944] = 841, + [945] = 945, + [946] = 841, + [947] = 877, + [948] = 948, + [949] = 949, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 851, + [955] = 853, + [956] = 847, + [957] = 846, + [958] = 845, + [959] = 851, + [960] = 843, + [961] = 842, + [962] = 962, + [963] = 857, + [964] = 877, + [965] = 923, + [966] = 858, + [967] = 861, + [968] = 950, + [969] = 969, + [970] = 863, + [971] = 921, + [972] = 842, + [973] = 858, + [974] = 843, + [975] = 863, + [976] = 861, + [977] = 923, + [978] = 950, + [979] = 921, + [980] = 857, + [981] = 923, + [982] = 950, + [983] = 921, + [984] = 845, + [985] = 923, + [986] = 950, + [987] = 921, + [988] = 923, + [989] = 900, + [990] = 900, + [991] = 900, + [992] = 900, + [993] = 900, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2690,12 +2647,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 60: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); END_STATE(); case 61: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); END_STATE(); case 62: if (lookahead != 0 && @@ -3305,7 +3262,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 63, .external_lex_state = 2}, [2] = {.lex_state = 1, .external_lex_state = 2}, - [3] = {.lex_state = 1, .external_lex_state = 2}, + [3] = {.lex_state = 2, .external_lex_state = 2}, [4] = {.lex_state = 2, .external_lex_state = 2}, [5] = {.lex_state = 2, .external_lex_state = 2}, [6] = {.lex_state = 2, .external_lex_state = 2}, @@ -3315,17 +3272,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [10] = {.lex_state = 2, .external_lex_state = 2}, [11] = {.lex_state = 2, .external_lex_state = 2}, [12] = {.lex_state = 2, .external_lex_state = 2}, - [13] = {.lex_state = 2, .external_lex_state = 2}, + [13] = {.lex_state = 3, .external_lex_state = 3}, [14] = {.lex_state = 2, .external_lex_state = 2}, - [15] = {.lex_state = 2, .external_lex_state = 2}, - [16] = {.lex_state = 3, .external_lex_state = 3}, + [15] = {.lex_state = 3, .external_lex_state = 3}, + [16] = {.lex_state = 2, .external_lex_state = 2}, [17] = {.lex_state = 2, .external_lex_state = 2}, [18] = {.lex_state = 2, .external_lex_state = 2}, [19] = {.lex_state = 2, .external_lex_state = 2}, - [20] = {.lex_state = 2, .external_lex_state = 2}, + [20] = {.lex_state = 3, .external_lex_state = 3}, [21] = {.lex_state = 2, .external_lex_state = 2}, [22] = {.lex_state = 2, .external_lex_state = 2}, - [23] = {.lex_state = 3, .external_lex_state = 3}, + [23] = {.lex_state = 2, .external_lex_state = 2}, [24] = {.lex_state = 3, .external_lex_state = 3}, [25] = {.lex_state = 2, .external_lex_state = 2}, [26] = {.lex_state = 3, .external_lex_state = 3}, @@ -3335,25 +3292,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [30] = {.lex_state = 2, .external_lex_state = 2}, [31] = {.lex_state = 2, .external_lex_state = 2}, [32] = {.lex_state = 2, .external_lex_state = 2}, - [33] = {.lex_state = 3, .external_lex_state = 3}, - [34] = {.lex_state = 3, .external_lex_state = 3}, + [33] = {.lex_state = 2, .external_lex_state = 2}, + [34] = {.lex_state = 2, .external_lex_state = 2}, [35] = {.lex_state = 2, .external_lex_state = 2}, [36] = {.lex_state = 2, .external_lex_state = 2}, [37] = {.lex_state = 2, .external_lex_state = 2}, [38] = {.lex_state = 2, .external_lex_state = 2}, [39] = {.lex_state = 2, .external_lex_state = 2}, [40] = {.lex_state = 3, .external_lex_state = 3}, - [41] = {.lex_state = 3, .external_lex_state = 3}, + [41] = {.lex_state = 2, .external_lex_state = 2}, [42] = {.lex_state = 2, .external_lex_state = 2}, [43] = {.lex_state = 2, .external_lex_state = 2}, [44] = {.lex_state = 2, .external_lex_state = 2}, - [45] = {.lex_state = 2, .external_lex_state = 2}, + [45] = {.lex_state = 3, .external_lex_state = 3}, [46] = {.lex_state = 2, .external_lex_state = 2}, [47] = {.lex_state = 2, .external_lex_state = 2}, [48] = {.lex_state = 2, .external_lex_state = 2}, [49] = {.lex_state = 2, .external_lex_state = 2}, - [50] = {.lex_state = 2, .external_lex_state = 2}, - [51] = {.lex_state = 2, .external_lex_state = 2}, + [50] = {.lex_state = 3, .external_lex_state = 3}, + [51] = {.lex_state = 3, .external_lex_state = 3}, [52] = {.lex_state = 2, .external_lex_state = 2}, [53] = {.lex_state = 2, .external_lex_state = 2}, [54] = {.lex_state = 2, .external_lex_state = 2}, @@ -3361,20 +3318,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [56] = {.lex_state = 2, .external_lex_state = 2}, [57] = {.lex_state = 2, .external_lex_state = 2}, [58] = {.lex_state = 2, .external_lex_state = 2}, - [59] = {.lex_state = 3, .external_lex_state = 3}, + [59] = {.lex_state = 2, .external_lex_state = 2}, [60] = {.lex_state = 2, .external_lex_state = 2}, [61] = {.lex_state = 2, .external_lex_state = 2}, [62] = {.lex_state = 2, .external_lex_state = 2}, [63] = {.lex_state = 2, .external_lex_state = 2}, - [64] = {.lex_state = 2, .external_lex_state = 2}, + [64] = {.lex_state = 3, .external_lex_state = 3}, [65] = {.lex_state = 2, .external_lex_state = 2}, [66] = {.lex_state = 2, .external_lex_state = 2}, [67] = {.lex_state = 2, .external_lex_state = 2}, [68] = {.lex_state = 2, .external_lex_state = 2}, [69] = {.lex_state = 2, .external_lex_state = 2}, - [70] = {.lex_state = 3, .external_lex_state = 3}, + [70] = {.lex_state = 2, .external_lex_state = 2}, [71] = {.lex_state = 2, .external_lex_state = 2}, - [72] = {.lex_state = 2, .external_lex_state = 2}, + [72] = {.lex_state = 3, .external_lex_state = 3}, [73] = {.lex_state = 2, .external_lex_state = 2}, [74] = {.lex_state = 2, .external_lex_state = 2}, [75] = {.lex_state = 2, .external_lex_state = 2}, @@ -3382,46 +3339,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [77] = {.lex_state = 2, .external_lex_state = 2}, [78] = {.lex_state = 2, .external_lex_state = 2}, [79] = {.lex_state = 2, .external_lex_state = 2}, - [80] = {.lex_state = 3, .external_lex_state = 3}, + [80] = {.lex_state = 2, .external_lex_state = 2}, [81] = {.lex_state = 2, .external_lex_state = 2}, [82] = {.lex_state = 2, .external_lex_state = 2}, [83] = {.lex_state = 2, .external_lex_state = 2}, [84] = {.lex_state = 2, .external_lex_state = 2}, [85] = {.lex_state = 2, .external_lex_state = 2}, - [86] = {.lex_state = 2, .external_lex_state = 2}, - [87] = {.lex_state = 2, .external_lex_state = 2}, - [88] = {.lex_state = 2, .external_lex_state = 2}, - [89] = {.lex_state = 2, .external_lex_state = 2}, - [90] = {.lex_state = 2, .external_lex_state = 2}, - [91] = {.lex_state = 2, .external_lex_state = 2}, - [92] = {.lex_state = 2, .external_lex_state = 2}, - [93] = {.lex_state = 2, .external_lex_state = 2}, - [94] = {.lex_state = 2, .external_lex_state = 2}, - [95] = {.lex_state = 2, .external_lex_state = 2}, - [96] = {.lex_state = 2, .external_lex_state = 2}, - [97] = {.lex_state = 2, .external_lex_state = 2}, - [98] = {.lex_state = 7, .external_lex_state = 2}, - [99] = {.lex_state = 7, .external_lex_state = 2}, - [100] = {.lex_state = 7, .external_lex_state = 2}, + [86] = {.lex_state = 7, .external_lex_state = 2}, + [87] = {.lex_state = 10, .external_lex_state = 2}, + [88] = {.lex_state = 10, .external_lex_state = 2}, + [89] = {.lex_state = 10, .external_lex_state = 2}, + [90] = {.lex_state = 10, .external_lex_state = 2}, + [91] = {.lex_state = 10, .external_lex_state = 2}, + [92] = {.lex_state = 10, .external_lex_state = 2}, + [93] = {.lex_state = 10, .external_lex_state = 2}, + [94] = {.lex_state = 10, .external_lex_state = 2}, + [95] = {.lex_state = 10, .external_lex_state = 2}, + [96] = {.lex_state = 10, .external_lex_state = 2}, + [97] = {.lex_state = 10, .external_lex_state = 2}, + [98] = {.lex_state = 10, .external_lex_state = 2}, + [99] = {.lex_state = 10, .external_lex_state = 2}, + [100] = {.lex_state = 10, .external_lex_state = 2}, [101] = {.lex_state = 10, .external_lex_state = 2}, [102] = {.lex_state = 10, .external_lex_state = 2}, [103] = {.lex_state = 10, .external_lex_state = 2}, [104] = {.lex_state = 10, .external_lex_state = 2}, [105] = {.lex_state = 10, .external_lex_state = 2}, [106] = {.lex_state = 10, .external_lex_state = 2}, - [107] = {.lex_state = 10, .external_lex_state = 2}, + [107] = {.lex_state = 63, .external_lex_state = 3}, [108] = {.lex_state = 10, .external_lex_state = 2}, - [109] = {.lex_state = 10, .external_lex_state = 2}, + [109] = {.lex_state = 63, .external_lex_state = 2}, [110] = {.lex_state = 10, .external_lex_state = 2}, - [111] = {.lex_state = 10, .external_lex_state = 2}, + [111] = {.lex_state = 63, .external_lex_state = 3}, [112] = {.lex_state = 10, .external_lex_state = 2}, - [113] = {.lex_state = 10, .external_lex_state = 2}, + [113] = {.lex_state = 63, .external_lex_state = 3}, [114] = {.lex_state = 10, .external_lex_state = 2}, [115] = {.lex_state = 10, .external_lex_state = 2}, [116] = {.lex_state = 10, .external_lex_state = 2}, - [117] = {.lex_state = 63, .external_lex_state = 2}, + [117] = {.lex_state = 10, .external_lex_state = 2}, [118] = {.lex_state = 10, .external_lex_state = 2}, - [119] = {.lex_state = 63, .external_lex_state = 3}, + [119] = {.lex_state = 10, .external_lex_state = 2}, [120] = {.lex_state = 10, .external_lex_state = 2}, [121] = {.lex_state = 10, .external_lex_state = 2}, [122] = {.lex_state = 10, .external_lex_state = 2}, @@ -3432,23 +3389,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [127] = {.lex_state = 10, .external_lex_state = 2}, [128] = {.lex_state = 10, .external_lex_state = 2}, [129] = {.lex_state = 10, .external_lex_state = 2}, - [130] = {.lex_state = 63, .external_lex_state = 3}, + [130] = {.lex_state = 10, .external_lex_state = 2}, [131] = {.lex_state = 10, .external_lex_state = 2}, [132] = {.lex_state = 10, .external_lex_state = 2}, [133] = {.lex_state = 10, .external_lex_state = 2}, - [134] = {.lex_state = 10, .external_lex_state = 2}, + [134] = {.lex_state = 63, .external_lex_state = 3}, [135] = {.lex_state = 10, .external_lex_state = 2}, [136] = {.lex_state = 10, .external_lex_state = 2}, - [137] = {.lex_state = 10, .external_lex_state = 2}, + [137] = {.lex_state = 63, .external_lex_state = 3}, [138] = {.lex_state = 10, .external_lex_state = 2}, - [139] = {.lex_state = 63, .external_lex_state = 3}, + [139] = {.lex_state = 10, .external_lex_state = 2}, [140] = {.lex_state = 10, .external_lex_state = 2}, [141] = {.lex_state = 10, .external_lex_state = 2}, [142] = {.lex_state = 10, .external_lex_state = 2}, [143] = {.lex_state = 10, .external_lex_state = 2}, [144] = {.lex_state = 10, .external_lex_state = 2}, [145] = {.lex_state = 10, .external_lex_state = 2}, - [146] = {.lex_state = 63, .external_lex_state = 3}, + [146] = {.lex_state = 10, .external_lex_state = 2}, [147] = {.lex_state = 10, .external_lex_state = 2}, [148] = {.lex_state = 10, .external_lex_state = 2}, [149] = {.lex_state = 10, .external_lex_state = 2}, @@ -3463,7 +3420,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [158] = {.lex_state = 10, .external_lex_state = 2}, [159] = {.lex_state = 10, .external_lex_state = 2}, [160] = {.lex_state = 10, .external_lex_state = 2}, - [161] = {.lex_state = 63, .external_lex_state = 3}, + [161] = {.lex_state = 10, .external_lex_state = 2}, [162] = {.lex_state = 10, .external_lex_state = 2}, [163] = {.lex_state = 10, .external_lex_state = 2}, [164] = {.lex_state = 10, .external_lex_state = 2}, @@ -3475,14 +3432,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [170] = {.lex_state = 10, .external_lex_state = 2}, [171] = {.lex_state = 10, .external_lex_state = 2}, [172] = {.lex_state = 10, .external_lex_state = 2}, - [173] = {.lex_state = 10, .external_lex_state = 2}, + [173] = {.lex_state = 63, .external_lex_state = 3}, [174] = {.lex_state = 10, .external_lex_state = 2}, [175] = {.lex_state = 10, .external_lex_state = 2}, - [176] = {.lex_state = 10, .external_lex_state = 2}, + [176] = {.lex_state = 63, .external_lex_state = 3}, [177] = {.lex_state = 10, .external_lex_state = 2}, [178] = {.lex_state = 10, .external_lex_state = 2}, [179] = {.lex_state = 10, .external_lex_state = 2}, - [180] = {.lex_state = 10, .external_lex_state = 2}, + [180] = {.lex_state = 63, .external_lex_state = 3}, [181] = {.lex_state = 10, .external_lex_state = 2}, [182] = {.lex_state = 10, .external_lex_state = 2}, [183] = {.lex_state = 10, .external_lex_state = 2}, @@ -3496,202 +3453,202 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [191] = {.lex_state = 10, .external_lex_state = 2}, [192] = {.lex_state = 10, .external_lex_state = 2}, [193] = {.lex_state = 10, .external_lex_state = 2}, - [194] = {.lex_state = 10, .external_lex_state = 2}, - [195] = {.lex_state = 63, .external_lex_state = 3}, + [194] = {.lex_state = 63, .external_lex_state = 3}, + [195] = {.lex_state = 10, .external_lex_state = 2}, [196] = {.lex_state = 10, .external_lex_state = 2}, - [197] = {.lex_state = 10, .external_lex_state = 2}, - [198] = {.lex_state = 10, .external_lex_state = 2}, + [197] = {.lex_state = 63, .external_lex_state = 2}, + [198] = {.lex_state = 63, .external_lex_state = 3}, [199] = {.lex_state = 10, .external_lex_state = 2}, - [200] = {.lex_state = 10, .external_lex_state = 2}, + [200] = {.lex_state = 63, .external_lex_state = 3}, [201] = {.lex_state = 10, .external_lex_state = 2}, - [202] = {.lex_state = 10, .external_lex_state = 2}, - [203] = {.lex_state = 10, .external_lex_state = 2}, - [204] = {.lex_state = 10, .external_lex_state = 2}, - [205] = {.lex_state = 10, .external_lex_state = 2}, - [206] = {.lex_state = 10, .external_lex_state = 2}, - [207] = {.lex_state = 10, .external_lex_state = 2}, - [208] = {.lex_state = 10, .external_lex_state = 2}, - [209] = {.lex_state = 10, .external_lex_state = 2}, - [210] = {.lex_state = 10, .external_lex_state = 2}, - [211] = {.lex_state = 10, .external_lex_state = 2}, - [212] = {.lex_state = 10, .external_lex_state = 2}, - [213] = {.lex_state = 10, .external_lex_state = 2}, - [214] = {.lex_state = 10, .external_lex_state = 2}, - [215] = {.lex_state = 10, .external_lex_state = 2}, - [216] = {.lex_state = 10, .external_lex_state = 2}, - [217] = {.lex_state = 63, .external_lex_state = 3}, - [218] = {.lex_state = 63, .external_lex_state = 3}, - [219] = {.lex_state = 10, .external_lex_state = 2}, - [220] = {.lex_state = 10, .external_lex_state = 2}, - [221] = {.lex_state = 63, .external_lex_state = 3}, - [222] = {.lex_state = 63, .external_lex_state = 2}, - [223] = {.lex_state = 10, .external_lex_state = 2}, - [224] = {.lex_state = 10, .external_lex_state = 2}, - [225] = {.lex_state = 63, .external_lex_state = 3}, - [226] = {.lex_state = 10, .external_lex_state = 2}, - [227] = {.lex_state = 10, .external_lex_state = 2}, - [228] = {.lex_state = 10, .external_lex_state = 2}, - [229] = {.lex_state = 10, .external_lex_state = 2}, - [230] = {.lex_state = 10, .external_lex_state = 2}, - [231] = {.lex_state = 10, .external_lex_state = 2}, - [232] = {.lex_state = 63, .external_lex_state = 3}, - [233] = {.lex_state = 4, .external_lex_state = 2}, - [234] = {.lex_state = 4, .external_lex_state = 2}, - [235] = {.lex_state = 4, .external_lex_state = 2}, - [236] = {.lex_state = 5, .external_lex_state = 3}, - [237] = {.lex_state = 5, .external_lex_state = 3}, - [238] = {.lex_state = 5, .external_lex_state = 3}, - [239] = {.lex_state = 4, .external_lex_state = 2}, - [240] = {.lex_state = 5, .external_lex_state = 3}, + [202] = {.lex_state = 4, .external_lex_state = 2}, + [203] = {.lex_state = 5, .external_lex_state = 3}, + [204] = {.lex_state = 4, .external_lex_state = 2}, + [205] = {.lex_state = 4, .external_lex_state = 2}, + [206] = {.lex_state = 5, .external_lex_state = 3}, + [207] = {.lex_state = 5, .external_lex_state = 3}, + [208] = {.lex_state = 4, .external_lex_state = 2}, + [209] = {.lex_state = 5, .external_lex_state = 3}, + [210] = {.lex_state = 3, .external_lex_state = 3}, + [211] = {.lex_state = 2, .external_lex_state = 2}, + [212] = {.lex_state = 2, .external_lex_state = 2}, + [213] = {.lex_state = 3, .external_lex_state = 3}, + [214] = {.lex_state = 3, .external_lex_state = 3}, + [215] = {.lex_state = 3, .external_lex_state = 3}, + [216] = {.lex_state = 2, .external_lex_state = 2}, + [217] = {.lex_state = 3, .external_lex_state = 3}, + [218] = {.lex_state = 2, .external_lex_state = 2}, + [219] = {.lex_state = 2, .external_lex_state = 2}, + [220] = {.lex_state = 2, .external_lex_state = 2}, + [221] = {.lex_state = 3, .external_lex_state = 3}, + [222] = {.lex_state = 2, .external_lex_state = 2}, + [223] = {.lex_state = 2, .external_lex_state = 2}, + [224] = {.lex_state = 2, .external_lex_state = 2}, + [225] = {.lex_state = 2, .external_lex_state = 2}, + [226] = {.lex_state = 2, .external_lex_state = 2}, + [227] = {.lex_state = 2, .external_lex_state = 2}, + [228] = {.lex_state = 2, .external_lex_state = 2}, + [229] = {.lex_state = 2, .external_lex_state = 2}, + [230] = {.lex_state = 2, .external_lex_state = 2}, + [231] = {.lex_state = 2, .external_lex_state = 2}, + [232] = {.lex_state = 3, .external_lex_state = 3}, + [233] = {.lex_state = 2, .external_lex_state = 2}, + [234] = {.lex_state = 2, .external_lex_state = 2}, + [235] = {.lex_state = 2, .external_lex_state = 2}, + [236] = {.lex_state = 2, .external_lex_state = 2}, + [237] = {.lex_state = 2, .external_lex_state = 2}, + [238] = {.lex_state = 2, .external_lex_state = 2}, + [239] = {.lex_state = 2, .external_lex_state = 2}, + [240] = {.lex_state = 2, .external_lex_state = 2}, [241] = {.lex_state = 2, .external_lex_state = 2}, [242] = {.lex_state = 2, .external_lex_state = 2}, - [243] = {.lex_state = 3, .external_lex_state = 3}, - [244] = {.lex_state = 3, .external_lex_state = 3}, - [245] = {.lex_state = 3, .external_lex_state = 3}, + [243] = {.lex_state = 2, .external_lex_state = 2}, + [244] = {.lex_state = 2, .external_lex_state = 2}, + [245] = {.lex_state = 2, .external_lex_state = 2}, [246] = {.lex_state = 2, .external_lex_state = 2}, [247] = {.lex_state = 3, .external_lex_state = 3}, - [248] = {.lex_state = 2, .external_lex_state = 2}, - [249] = {.lex_state = 2, .external_lex_state = 2}, + [248] = {.lex_state = 3, .external_lex_state = 3}, + [249] = {.lex_state = 3, .external_lex_state = 3}, [250] = {.lex_state = 2, .external_lex_state = 2}, - [251] = {.lex_state = 3, .external_lex_state = 3}, - [252] = {.lex_state = 3, .external_lex_state = 3}, - [253] = {.lex_state = 2, .external_lex_state = 2}, - [254] = {.lex_state = 2, .external_lex_state = 2}, + [251] = {.lex_state = 2, .external_lex_state = 2}, + [252] = {.lex_state = 2, .external_lex_state = 2}, + [253] = {.lex_state = 3, .external_lex_state = 3}, + [254] = {.lex_state = 3, .external_lex_state = 3}, [255] = {.lex_state = 3, .external_lex_state = 3}, [256] = {.lex_state = 3, .external_lex_state = 3}, [257] = {.lex_state = 3, .external_lex_state = 3}, [258] = {.lex_state = 3, .external_lex_state = 3}, - [259] = {.lex_state = 3, .external_lex_state = 3}, + [259] = {.lex_state = 2, .external_lex_state = 2}, [260] = {.lex_state = 2, .external_lex_state = 2}, [261] = {.lex_state = 2, .external_lex_state = 2}, - [262] = {.lex_state = 2, .external_lex_state = 2}, + [262] = {.lex_state = 3, .external_lex_state = 3}, [263] = {.lex_state = 2, .external_lex_state = 2}, - [264] = {.lex_state = 3, .external_lex_state = 3}, - [265] = {.lex_state = 3, .external_lex_state = 3}, - [266] = {.lex_state = 3, .external_lex_state = 3}, + [264] = {.lex_state = 2, .external_lex_state = 2}, + [265] = {.lex_state = 2, .external_lex_state = 2}, + [266] = {.lex_state = 2, .external_lex_state = 2}, [267] = {.lex_state = 3, .external_lex_state = 3}, [268] = {.lex_state = 3, .external_lex_state = 3}, [269] = {.lex_state = 2, .external_lex_state = 2}, - [270] = {.lex_state = 2, .external_lex_state = 2}, + [270] = {.lex_state = 3, .external_lex_state = 3}, [271] = {.lex_state = 2, .external_lex_state = 2}, [272] = {.lex_state = 2, .external_lex_state = 2}, - [273] = {.lex_state = 2, .external_lex_state = 2}, + [273] = {.lex_state = 3, .external_lex_state = 3}, [274] = {.lex_state = 2, .external_lex_state = 2}, - [275] = {.lex_state = 2, .external_lex_state = 2}, + [275] = {.lex_state = 3, .external_lex_state = 3}, [276] = {.lex_state = 3, .external_lex_state = 3}, [277] = {.lex_state = 3, .external_lex_state = 3}, [278] = {.lex_state = 3, .external_lex_state = 3}, [279] = {.lex_state = 3, .external_lex_state = 3}, [280] = {.lex_state = 3, .external_lex_state = 3}, - [281] = {.lex_state = 2, .external_lex_state = 2}, - [282] = {.lex_state = 2, .external_lex_state = 2}, + [281] = {.lex_state = 3, .external_lex_state = 3}, + [282] = {.lex_state = 3, .external_lex_state = 3}, [283] = {.lex_state = 3, .external_lex_state = 3}, [284] = {.lex_state = 3, .external_lex_state = 3}, [285] = {.lex_state = 3, .external_lex_state = 3}, - [286] = {.lex_state = 2, .external_lex_state = 2}, - [287] = {.lex_state = 2, .external_lex_state = 2}, - [288] = {.lex_state = 2, .external_lex_state = 2}, + [286] = {.lex_state = 3, .external_lex_state = 3}, + [287] = {.lex_state = 3, .external_lex_state = 3}, + [288] = {.lex_state = 3, .external_lex_state = 3}, [289] = {.lex_state = 3, .external_lex_state = 3}, [290] = {.lex_state = 3, .external_lex_state = 3}, - [291] = {.lex_state = 2, .external_lex_state = 2}, - [292] = {.lex_state = 2, .external_lex_state = 2}, - [293] = {.lex_state = 2, .external_lex_state = 2}, - [294] = {.lex_state = 2, .external_lex_state = 2}, - [295] = {.lex_state = 2, .external_lex_state = 2}, + [291] = {.lex_state = 3, .external_lex_state = 3}, + [292] = {.lex_state = 3, .external_lex_state = 3}, + [293] = {.lex_state = 3, .external_lex_state = 3}, + [294] = {.lex_state = 3, .external_lex_state = 3}, + [295] = {.lex_state = 3, .external_lex_state = 3}, [296] = {.lex_state = 3, .external_lex_state = 3}, [297] = {.lex_state = 3, .external_lex_state = 3}, - [298] = {.lex_state = 2, .external_lex_state = 2}, + [298] = {.lex_state = 3, .external_lex_state = 3}, [299] = {.lex_state = 3, .external_lex_state = 3}, - [300] = {.lex_state = 2, .external_lex_state = 2}, - [301] = {.lex_state = 2, .external_lex_state = 2}, - [302] = {.lex_state = 2, .external_lex_state = 2}, + [300] = {.lex_state = 3, .external_lex_state = 3}, + [301] = {.lex_state = 3, .external_lex_state = 3}, + [302] = {.lex_state = 3, .external_lex_state = 3}, [303] = {.lex_state = 3, .external_lex_state = 3}, - [304] = {.lex_state = 2, .external_lex_state = 2}, - [305] = {.lex_state = 2, .external_lex_state = 2}, - [306] = {.lex_state = 2, .external_lex_state = 2}, - [307] = {.lex_state = 2, .external_lex_state = 2}, + [304] = {.lex_state = 3, .external_lex_state = 3}, + [305] = {.lex_state = 3, .external_lex_state = 3}, + [306] = {.lex_state = 3, .external_lex_state = 3}, + [307] = {.lex_state = 3, .external_lex_state = 3}, [308] = {.lex_state = 3, .external_lex_state = 3}, [309] = {.lex_state = 3, .external_lex_state = 3}, - [310] = {.lex_state = 2, .external_lex_state = 2}, - [311] = {.lex_state = 2, .external_lex_state = 2}, - [312] = {.lex_state = 2, .external_lex_state = 2}, + [310] = {.lex_state = 3, .external_lex_state = 3}, + [311] = {.lex_state = 3, .external_lex_state = 3}, + [312] = {.lex_state = 3, .external_lex_state = 3}, [313] = {.lex_state = 3, .external_lex_state = 3}, - [314] = {.lex_state = 2, .external_lex_state = 2}, - [315] = {.lex_state = 2, .external_lex_state = 2}, - [316] = {.lex_state = 2, .external_lex_state = 2}, + [314] = {.lex_state = 3, .external_lex_state = 3}, + [315] = {.lex_state = 3, .external_lex_state = 3}, + [316] = {.lex_state = 3, .external_lex_state = 3}, [317] = {.lex_state = 2, .external_lex_state = 2}, [318] = {.lex_state = 2, .external_lex_state = 2}, - [319] = {.lex_state = 3, .external_lex_state = 3}, + [319] = {.lex_state = 2, .external_lex_state = 2}, [320] = {.lex_state = 2, .external_lex_state = 2}, [321] = {.lex_state = 2, .external_lex_state = 2}, - [322] = {.lex_state = 2, .external_lex_state = 2}, - [323] = {.lex_state = 2, .external_lex_state = 2}, + [322] = {.lex_state = 3, .external_lex_state = 3}, + [323] = {.lex_state = 3, .external_lex_state = 3}, [324] = {.lex_state = 2, .external_lex_state = 2}, - [325] = {.lex_state = 3, .external_lex_state = 3}, + [325] = {.lex_state = 2, .external_lex_state = 2}, [326] = {.lex_state = 2, .external_lex_state = 2}, [327] = {.lex_state = 2, .external_lex_state = 2}, [328] = {.lex_state = 2, .external_lex_state = 2}, - [329] = {.lex_state = 3, .external_lex_state = 3}, - [330] = {.lex_state = 3, .external_lex_state = 3}, - [331] = {.lex_state = 3, .external_lex_state = 3}, + [329] = {.lex_state = 2, .external_lex_state = 2}, + [330] = {.lex_state = 2, .external_lex_state = 2}, + [331] = {.lex_state = 2, .external_lex_state = 2}, [332] = {.lex_state = 2, .external_lex_state = 2}, [333] = {.lex_state = 2, .external_lex_state = 2}, - [334] = {.lex_state = 3, .external_lex_state = 3}, - [335] = {.lex_state = 3, .external_lex_state = 3}, + [334] = {.lex_state = 2, .external_lex_state = 2}, + [335] = {.lex_state = 2, .external_lex_state = 2}, [336] = {.lex_state = 3, .external_lex_state = 3}, - [337] = {.lex_state = 3, .external_lex_state = 3}, - [338] = {.lex_state = 3, .external_lex_state = 3}, - [339] = {.lex_state = 3, .external_lex_state = 3}, + [337] = {.lex_state = 2, .external_lex_state = 2}, + [338] = {.lex_state = 2, .external_lex_state = 2}, + [339] = {.lex_state = 2, .external_lex_state = 2}, [340] = {.lex_state = 3, .external_lex_state = 3}, - [341] = {.lex_state = 3, .external_lex_state = 3}, - [342] = {.lex_state = 3, .external_lex_state = 3}, - [343] = {.lex_state = 3, .external_lex_state = 3}, - [344] = {.lex_state = 3, .external_lex_state = 3}, - [345] = {.lex_state = 3, .external_lex_state = 3}, - [346] = {.lex_state = 3, .external_lex_state = 3}, - [347] = {.lex_state = 3, .external_lex_state = 3}, - [348] = {.lex_state = 3, .external_lex_state = 3}, - [349] = {.lex_state = 3, .external_lex_state = 3}, - [350] = {.lex_state = 3, .external_lex_state = 3}, - [351] = {.lex_state = 2, .external_lex_state = 2}, - [352] = {.lex_state = 2, .external_lex_state = 2}, - [353] = {.lex_state = 2, .external_lex_state = 2}, - [354] = {.lex_state = 2, .external_lex_state = 2}, - [355] = {.lex_state = 3, .external_lex_state = 3}, - [356] = {.lex_state = 3, .external_lex_state = 3}, - [357] = {.lex_state = 2, .external_lex_state = 2}, - [358] = {.lex_state = 2, .external_lex_state = 2}, - [359] = {.lex_state = 2, .external_lex_state = 2}, - [360] = {.lex_state = 3, .external_lex_state = 3}, - [361] = {.lex_state = 3, .external_lex_state = 3}, - [362] = {.lex_state = 3, .external_lex_state = 3}, - [363] = {.lex_state = 3, .external_lex_state = 3}, - [364] = {.lex_state = 3, .external_lex_state = 3}, - [365] = {.lex_state = 3, .external_lex_state = 3}, - [366] = {.lex_state = 3, .external_lex_state = 3}, - [367] = {.lex_state = 3, .external_lex_state = 3}, - [368] = {.lex_state = 3, .external_lex_state = 3}, - [369] = {.lex_state = 3, .external_lex_state = 3}, - [370] = {.lex_state = 3, .external_lex_state = 3}, - [371] = {.lex_state = 2, .external_lex_state = 2}, - [372] = {.lex_state = 2, .external_lex_state = 2}, - [373] = {.lex_state = 2, .external_lex_state = 2}, - [374] = {.lex_state = 2, .external_lex_state = 2}, - [375] = {.lex_state = 2, .external_lex_state = 2}, + [341] = {.lex_state = 2, .external_lex_state = 2}, + [342] = {.lex_state = 2, .external_lex_state = 2}, + [343] = {.lex_state = 2, .external_lex_state = 2}, + [344] = {.lex_state = 2, .external_lex_state = 2}, + [345] = {.lex_state = 10, .external_lex_state = 2}, + [346] = {.lex_state = 10, .external_lex_state = 2}, + [347] = {.lex_state = 63, .external_lex_state = 3}, + [348] = {.lex_state = 63, .external_lex_state = 3}, + [349] = {.lex_state = 63, .external_lex_state = 3}, + [350] = {.lex_state = 63, .external_lex_state = 3}, + [351] = {.lex_state = 63, .external_lex_state = 2}, + [352] = {.lex_state = 63, .external_lex_state = 2}, + [353] = {.lex_state = 63, .external_lex_state = 2}, + [354] = {.lex_state = 10, .external_lex_state = 2}, + [355] = {.lex_state = 63, .external_lex_state = 2}, + [356] = {.lex_state = 10, .external_lex_state = 2}, + [357] = {.lex_state = 63, .external_lex_state = 3}, + [358] = {.lex_state = 63, .external_lex_state = 2}, + [359] = {.lex_state = 63, .external_lex_state = 2}, + [360] = {.lex_state = 10, .external_lex_state = 2}, + [361] = {.lex_state = 10, .external_lex_state = 2}, + [362] = {.lex_state = 10, .external_lex_state = 2}, + [363] = {.lex_state = 10, .external_lex_state = 2}, + [364] = {.lex_state = 10, .external_lex_state = 2}, + [365] = {.lex_state = 10, .external_lex_state = 2}, + [366] = {.lex_state = 10, .external_lex_state = 2}, + [367] = {.lex_state = 10, .external_lex_state = 2}, + [368] = {.lex_state = 63, .external_lex_state = 2}, + [369] = {.lex_state = 10, .external_lex_state = 2}, + [370] = {.lex_state = 10, .external_lex_state = 2}, + [371] = {.lex_state = 10, .external_lex_state = 2}, + [372] = {.lex_state = 10, .external_lex_state = 2}, + [373] = {.lex_state = 10, .external_lex_state = 2}, + [374] = {.lex_state = 10, .external_lex_state = 2}, + [375] = {.lex_state = 10, .external_lex_state = 2}, [376] = {.lex_state = 10, .external_lex_state = 2}, [377] = {.lex_state = 10, .external_lex_state = 2}, [378] = {.lex_state = 10, .external_lex_state = 2}, [379] = {.lex_state = 10, .external_lex_state = 2}, - [380] = {.lex_state = 63, .external_lex_state = 3}, - [381] = {.lex_state = 63, .external_lex_state = 3}, - [382] = {.lex_state = 63, .external_lex_state = 3}, - [383] = {.lex_state = 63, .external_lex_state = 3}, - [384] = {.lex_state = 63, .external_lex_state = 2}, - [385] = {.lex_state = 63, .external_lex_state = 2}, - [386] = {.lex_state = 63, .external_lex_state = 2}, - [387] = {.lex_state = 63, .external_lex_state = 2}, - [388] = {.lex_state = 63, .external_lex_state = 2}, - [389] = {.lex_state = 63, .external_lex_state = 2}, + [380] = {.lex_state = 10, .external_lex_state = 2}, + [381] = {.lex_state = 10, .external_lex_state = 2}, + [382] = {.lex_state = 10, .external_lex_state = 2}, + [383] = {.lex_state = 10, .external_lex_state = 2}, + [384] = {.lex_state = 10, .external_lex_state = 2}, + [385] = {.lex_state = 10, .external_lex_state = 2}, + [386] = {.lex_state = 10, .external_lex_state = 2}, + [387] = {.lex_state = 10, .external_lex_state = 2}, + [388] = {.lex_state = 10, .external_lex_state = 2}, + [389] = {.lex_state = 10, .external_lex_state = 2}, [390] = {.lex_state = 10, .external_lex_state = 2}, [391] = {.lex_state = 10, .external_lex_state = 2}, [392] = {.lex_state = 10, .external_lex_state = 2}, @@ -3700,638 +3657,602 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [395] = {.lex_state = 10, .external_lex_state = 2}, [396] = {.lex_state = 10, .external_lex_state = 2}, [397] = {.lex_state = 10, .external_lex_state = 2}, - [398] = {.lex_state = 10, .external_lex_state = 2}, + [398] = {.lex_state = 63, .external_lex_state = 3}, [399] = {.lex_state = 10, .external_lex_state = 2}, [400] = {.lex_state = 10, .external_lex_state = 2}, [401] = {.lex_state = 10, .external_lex_state = 2}, - [402] = {.lex_state = 10, .external_lex_state = 2}, + [402] = {.lex_state = 63, .external_lex_state = 2}, [403] = {.lex_state = 10, .external_lex_state = 2}, [404] = {.lex_state = 10, .external_lex_state = 2}, [405] = {.lex_state = 10, .external_lex_state = 2}, [406] = {.lex_state = 63, .external_lex_state = 2}, - [407] = {.lex_state = 10, .external_lex_state = 2}, - [408] = {.lex_state = 10, .external_lex_state = 2}, - [409] = {.lex_state = 10, .external_lex_state = 2}, - [410] = {.lex_state = 10, .external_lex_state = 2}, - [411] = {.lex_state = 63, .external_lex_state = 2}, - [412] = {.lex_state = 10, .external_lex_state = 2}, - [413] = {.lex_state = 10, .external_lex_state = 2}, + [407] = {.lex_state = 63, .external_lex_state = 2}, + [408] = {.lex_state = 63, .external_lex_state = 3}, + [409] = {.lex_state = 63, .external_lex_state = 3}, + [410] = {.lex_state = 63, .external_lex_state = 3}, + [411] = {.lex_state = 10, .external_lex_state = 2}, + [412] = {.lex_state = 63, .external_lex_state = 3}, + [413] = {.lex_state = 63, .external_lex_state = 3}, [414] = {.lex_state = 10, .external_lex_state = 2}, - [415] = {.lex_state = 10, .external_lex_state = 2}, + [415] = {.lex_state = 63, .external_lex_state = 3}, [416] = {.lex_state = 63, .external_lex_state = 2}, [417] = {.lex_state = 63, .external_lex_state = 2}, [418] = {.lex_state = 63, .external_lex_state = 3}, - [419] = {.lex_state = 63, .external_lex_state = 3}, - [420] = {.lex_state = 63, .external_lex_state = 3}, - [421] = {.lex_state = 10, .external_lex_state = 2}, - [422] = {.lex_state = 63, .external_lex_state = 3}, - [423] = {.lex_state = 63, .external_lex_state = 3}, + [419] = {.lex_state = 63, .external_lex_state = 2}, + [420] = {.lex_state = 10, .external_lex_state = 2}, + [421] = {.lex_state = 63, .external_lex_state = 2}, + [422] = {.lex_state = 63, .external_lex_state = 2}, + [423] = {.lex_state = 10, .external_lex_state = 2}, [424] = {.lex_state = 10, .external_lex_state = 2}, [425] = {.lex_state = 63, .external_lex_state = 3}, - [426] = {.lex_state = 63, .external_lex_state = 2}, - [427] = {.lex_state = 63, .external_lex_state = 2}, + [426] = {.lex_state = 63, .external_lex_state = 3}, + [427] = {.lex_state = 63, .external_lex_state = 3}, [428] = {.lex_state = 10, .external_lex_state = 2}, - [429] = {.lex_state = 63, .external_lex_state = 2}, - [430] = {.lex_state = 63, .external_lex_state = 2}, - [431] = {.lex_state = 63, .external_lex_state = 2}, - [432] = {.lex_state = 10, .external_lex_state = 2}, - [433] = {.lex_state = 10, .external_lex_state = 2}, - [434] = {.lex_state = 63, .external_lex_state = 3}, - [435] = {.lex_state = 63, .external_lex_state = 3}, - [436] = {.lex_state = 63, .external_lex_state = 3}, + [429] = {.lex_state = 63, .external_lex_state = 3}, + [430] = {.lex_state = 63, .external_lex_state = 3}, + [431] = {.lex_state = 10, .external_lex_state = 2}, + [432] = {.lex_state = 63, .external_lex_state = 3}, + [433] = {.lex_state = 63, .external_lex_state = 2}, + [434] = {.lex_state = 63, .external_lex_state = 2}, + [435] = {.lex_state = 63, .external_lex_state = 2}, + [436] = {.lex_state = 10, .external_lex_state = 2}, [437] = {.lex_state = 63, .external_lex_state = 3}, [438] = {.lex_state = 63, .external_lex_state = 2}, [439] = {.lex_state = 63, .external_lex_state = 3}, - [440] = {.lex_state = 63, .external_lex_state = 3}, - [441] = {.lex_state = 10, .external_lex_state = 2}, - [442] = {.lex_state = 63, .external_lex_state = 3}, - [443] = {.lex_state = 63, .external_lex_state = 2}, - [444] = {.lex_state = 10, .external_lex_state = 2}, + [440] = {.lex_state = 63, .external_lex_state = 2}, + [441] = {.lex_state = 63, .external_lex_state = 3}, + [442] = {.lex_state = 63, .external_lex_state = 2}, + [443] = {.lex_state = 63, .external_lex_state = 3}, + [444] = {.lex_state = 63, .external_lex_state = 2}, [445] = {.lex_state = 63, .external_lex_state = 2}, [446] = {.lex_state = 63, .external_lex_state = 2}, - [447] = {.lex_state = 63, .external_lex_state = 2}, - [448] = {.lex_state = 10, .external_lex_state = 2}, + [447] = {.lex_state = 63, .external_lex_state = 3}, + [448] = {.lex_state = 63, .external_lex_state = 3}, [449] = {.lex_state = 63, .external_lex_state = 2}, - [450] = {.lex_state = 63, .external_lex_state = 2}, - [451] = {.lex_state = 63, .external_lex_state = 3}, + [450] = {.lex_state = 63, .external_lex_state = 3}, + [451] = {.lex_state = 63, .external_lex_state = 2}, [452] = {.lex_state = 63, .external_lex_state = 3}, - [453] = {.lex_state = 10, .external_lex_state = 2}, + [453] = {.lex_state = 63, .external_lex_state = 3}, [454] = {.lex_state = 63, .external_lex_state = 3}, [455] = {.lex_state = 63, .external_lex_state = 2}, - [456] = {.lex_state = 10, .external_lex_state = 2}, + [456] = {.lex_state = 63, .external_lex_state = 2}, [457] = {.lex_state = 63, .external_lex_state = 2}, - [458] = {.lex_state = 10, .external_lex_state = 2}, - [459] = {.lex_state = 10, .external_lex_state = 2}, - [460] = {.lex_state = 10, .external_lex_state = 2}, + [458] = {.lex_state = 63, .external_lex_state = 2}, + [459] = {.lex_state = 63, .external_lex_state = 2}, + [460] = {.lex_state = 63, .external_lex_state = 2}, [461] = {.lex_state = 10, .external_lex_state = 2}, [462] = {.lex_state = 10, .external_lex_state = 2}, - [463] = {.lex_state = 63, .external_lex_state = 3}, - [464] = {.lex_state = 63, .external_lex_state = 3}, - [465] = {.lex_state = 63, .external_lex_state = 3}, - [466] = {.lex_state = 10, .external_lex_state = 2}, - [467] = {.lex_state = 63, .external_lex_state = 3}, - [468] = {.lex_state = 10, .external_lex_state = 2}, - [469] = {.lex_state = 10, .external_lex_state = 2}, - [470] = {.lex_state = 10, .external_lex_state = 2}, + [463] = {.lex_state = 63, .external_lex_state = 2}, + [464] = {.lex_state = 63, .external_lex_state = 2}, + [465] = {.lex_state = 63, .external_lex_state = 2}, + [466] = {.lex_state = 63, .external_lex_state = 2}, + [467] = {.lex_state = 63, .external_lex_state = 2}, + [468] = {.lex_state = 63, .external_lex_state = 2}, + [469] = {.lex_state = 63, .external_lex_state = 2}, + [470] = {.lex_state = 63, .external_lex_state = 2}, [471] = {.lex_state = 10, .external_lex_state = 2}, [472] = {.lex_state = 63, .external_lex_state = 2}, - [473] = {.lex_state = 63, .external_lex_state = 3}, - [474] = {.lex_state = 63, .external_lex_state = 3}, - [475] = {.lex_state = 10, .external_lex_state = 2}, - [476] = {.lex_state = 10, .external_lex_state = 2}, - [477] = {.lex_state = 63, .external_lex_state = 3}, - [478] = {.lex_state = 10, .external_lex_state = 2}, - [479] = {.lex_state = 63, .external_lex_state = 2}, - [480] = {.lex_state = 63, .external_lex_state = 2}, - [481] = {.lex_state = 63, .external_lex_state = 2}, - [482] = {.lex_state = 63, .external_lex_state = 2}, - [483] = {.lex_state = 10, .external_lex_state = 2}, - [484] = {.lex_state = 10, .external_lex_state = 2}, + [473] = {.lex_state = 63, .external_lex_state = 2}, + [474] = {.lex_state = 63, .external_lex_state = 2}, + [475] = {.lex_state = 63, .external_lex_state = 2}, + [476] = {.lex_state = 63, .external_lex_state = 2}, + [477] = {.lex_state = 63, .external_lex_state = 2}, + [478] = {.lex_state = 63, .external_lex_state = 2}, + [479] = {.lex_state = 10, .external_lex_state = 2}, + [480] = {.lex_state = 63, .external_lex_state = 3}, + [481] = {.lex_state = 10, .external_lex_state = 2}, + [482] = {.lex_state = 63, .external_lex_state = 3}, + [483] = {.lex_state = 63, .external_lex_state = 2}, + [484] = {.lex_state = 63, .external_lex_state = 2}, [485] = {.lex_state = 63, .external_lex_state = 2}, - [486] = {.lex_state = 10, .external_lex_state = 2}, - [487] = {.lex_state = 10, .external_lex_state = 2}, - [488] = {.lex_state = 63, .external_lex_state = 2}, + [486] = {.lex_state = 63, .external_lex_state = 2}, + [487] = {.lex_state = 63, .external_lex_state = 3}, + [488] = {.lex_state = 10, .external_lex_state = 2}, [489] = {.lex_state = 63, .external_lex_state = 2}, - [490] = {.lex_state = 10, .external_lex_state = 2}, - [491] = {.lex_state = 10, .external_lex_state = 2}, - [492] = {.lex_state = 10, .external_lex_state = 2}, - [493] = {.lex_state = 10, .external_lex_state = 2}, - [494] = {.lex_state = 10, .external_lex_state = 2}, - [495] = {.lex_state = 10, .external_lex_state = 2}, - [496] = {.lex_state = 10, .external_lex_state = 2}, - [497] = {.lex_state = 10, .external_lex_state = 2}, + [490] = {.lex_state = 63, .external_lex_state = 3}, + [491] = {.lex_state = 63, .external_lex_state = 3}, + [492] = {.lex_state = 63, .external_lex_state = 3}, + [493] = {.lex_state = 63, .external_lex_state = 2}, + [494] = {.lex_state = 63, .external_lex_state = 2}, + [495] = {.lex_state = 63, .external_lex_state = 3}, + [496] = {.lex_state = 63, .external_lex_state = 2}, + [497] = {.lex_state = 63, .external_lex_state = 3}, [498] = {.lex_state = 63, .external_lex_state = 2}, [499] = {.lex_state = 63, .external_lex_state = 2}, [500] = {.lex_state = 63, .external_lex_state = 2}, [501] = {.lex_state = 63, .external_lex_state = 2}, - [502] = {.lex_state = 63, .external_lex_state = 2}, - [503] = {.lex_state = 63, .external_lex_state = 2}, + [502] = {.lex_state = 63, .external_lex_state = 3}, + [503] = {.lex_state = 63, .external_lex_state = 3}, [504] = {.lex_state = 63, .external_lex_state = 2}, - [505] = {.lex_state = 63, .external_lex_state = 2}, + [505] = {.lex_state = 63, .external_lex_state = 3}, [506] = {.lex_state = 63, .external_lex_state = 2}, - [507] = {.lex_state = 63, .external_lex_state = 2}, - [508] = {.lex_state = 63, .external_lex_state = 2}, - [509] = {.lex_state = 63, .external_lex_state = 2}, + [507] = {.lex_state = 63, .external_lex_state = 3}, + [508] = {.lex_state = 63, .external_lex_state = 3}, + [509] = {.lex_state = 63, .external_lex_state = 3}, [510] = {.lex_state = 63, .external_lex_state = 2}, - [511] = {.lex_state = 63, .external_lex_state = 2}, - [512] = {.lex_state = 63, .external_lex_state = 2}, - [513] = {.lex_state = 63, .external_lex_state = 2}, - [514] = {.lex_state = 63, .external_lex_state = 2}, - [515] = {.lex_state = 63, .external_lex_state = 2}, - [516] = {.lex_state = 63, .external_lex_state = 2}, - [517] = {.lex_state = 63, .external_lex_state = 2}, - [518] = {.lex_state = 63, .external_lex_state = 2}, - [519] = {.lex_state = 63, .external_lex_state = 2}, - [520] = {.lex_state = 63, .external_lex_state = 2}, + [511] = {.lex_state = 10, .external_lex_state = 2}, + [512] = {.lex_state = 63, .external_lex_state = 3}, + [513] = {.lex_state = 63, .external_lex_state = 3}, + [514] = {.lex_state = 63, .external_lex_state = 3}, + [515] = {.lex_state = 63, .external_lex_state = 3}, + [516] = {.lex_state = 10, .external_lex_state = 2}, + [517] = {.lex_state = 10, .external_lex_state = 2}, + [518] = {.lex_state = 63, .external_lex_state = 3}, + [519] = {.lex_state = 63, .external_lex_state = 3}, + [520] = {.lex_state = 63, .external_lex_state = 3}, [521] = {.lex_state = 63, .external_lex_state = 3}, - [522] = {.lex_state = 63, .external_lex_state = 2}, - [523] = {.lex_state = 63, .external_lex_state = 2}, + [522] = {.lex_state = 63, .external_lex_state = 3}, + [523] = {.lex_state = 63, .external_lex_state = 3}, [524] = {.lex_state = 63, .external_lex_state = 3}, [525] = {.lex_state = 63, .external_lex_state = 3}, - [526] = {.lex_state = 63, .external_lex_state = 2}, + [526] = {.lex_state = 63, .external_lex_state = 3}, [527] = {.lex_state = 63, .external_lex_state = 3}, - [528] = {.lex_state = 63, .external_lex_state = 2}, - [529] = {.lex_state = 63, .external_lex_state = 2}, + [528] = {.lex_state = 63, .external_lex_state = 3}, + [529] = {.lex_state = 63, .external_lex_state = 3}, [530] = {.lex_state = 63, .external_lex_state = 3}, [531] = {.lex_state = 63, .external_lex_state = 3}, [532] = {.lex_state = 63, .external_lex_state = 3}, - [533] = {.lex_state = 63, .external_lex_state = 3}, - [534] = {.lex_state = 63, .external_lex_state = 2}, - [535] = {.lex_state = 63, .external_lex_state = 3}, - [536] = {.lex_state = 63, .external_lex_state = 3}, - [537] = {.lex_state = 63, .external_lex_state = 3}, - [538] = {.lex_state = 63, .external_lex_state = 3}, - [539] = {.lex_state = 63, .external_lex_state = 3}, - [540] = {.lex_state = 63, .external_lex_state = 3}, - [541] = {.lex_state = 63, .external_lex_state = 3}, - [542] = {.lex_state = 63, .external_lex_state = 3}, - [543] = {.lex_state = 63, .external_lex_state = 3}, - [544] = {.lex_state = 63, .external_lex_state = 3}, - [545] = {.lex_state = 63, .external_lex_state = 3}, - [546] = {.lex_state = 63, .external_lex_state = 3}, - [547] = {.lex_state = 63, .external_lex_state = 3}, - [548] = {.lex_state = 63, .external_lex_state = 3}, - [549] = {.lex_state = 63, .external_lex_state = 3}, - [550] = {.lex_state = 63, .external_lex_state = 3}, - [551] = {.lex_state = 63, .external_lex_state = 3}, - [552] = {.lex_state = 63, .external_lex_state = 3}, - [553] = {.lex_state = 63, .external_lex_state = 3}, - [554] = {.lex_state = 63, .external_lex_state = 3}, - [555] = {.lex_state = 63, .external_lex_state = 3}, - [556] = {.lex_state = 63, .external_lex_state = 3}, - [557] = {.lex_state = 63, .external_lex_state = 3}, - [558] = {.lex_state = 63, .external_lex_state = 3}, - [559] = {.lex_state = 63, .external_lex_state = 3}, - [560] = {.lex_state = 63, .external_lex_state = 3}, - [561] = {.lex_state = 63, .external_lex_state = 2}, - [562] = {.lex_state = 63, .external_lex_state = 3}, - [563] = {.lex_state = 63, .external_lex_state = 2}, - [564] = {.lex_state = 63, .external_lex_state = 3}, + [533] = {.lex_state = 13}, + [534] = {.lex_state = 13}, + [535] = {.lex_state = 13}, + [536] = {.lex_state = 13}, + [537] = {.lex_state = 13}, + [538] = {.lex_state = 13}, + [539] = {.lex_state = 13}, + [540] = {.lex_state = 13}, + [541] = {.lex_state = 13}, + [542] = {.lex_state = 13}, + [543] = {.lex_state = 13}, + [544] = {.lex_state = 30}, + [545] = {.lex_state = 30}, + [546] = {.lex_state = 30}, + [547] = {.lex_state = 30}, + [548] = {.lex_state = 30}, + [549] = {.lex_state = 30}, + [550] = {.lex_state = 14}, + [551] = {.lex_state = 14}, + [552] = {.lex_state = 14}, + [553] = {.lex_state = 14}, + [554] = {.lex_state = 14}, + [555] = {.lex_state = 13}, + [556] = {.lex_state = 14}, + [557] = {.lex_state = 14}, + [558] = {.lex_state = 14}, + [559] = {.lex_state = 13}, + [560] = {.lex_state = 14}, + [561] = {.lex_state = 14}, + [562] = {.lex_state = 13}, + [563] = {.lex_state = 13}, + [564] = {.lex_state = 14}, [565] = {.lex_state = 13}, - [566] = {.lex_state = 13}, - [567] = {.lex_state = 13}, - [568] = {.lex_state = 13}, - [569] = {.lex_state = 13}, - [570] = {.lex_state = 13}, - [571] = {.lex_state = 13}, - [572] = {.lex_state = 13}, - [573] = {.lex_state = 13}, - [574] = {.lex_state = 13}, - [575] = {.lex_state = 13}, - [576] = {.lex_state = 30}, - [577] = {.lex_state = 30}, - [578] = {.lex_state = 30}, - [579] = {.lex_state = 30}, - [580] = {.lex_state = 30}, - [581] = {.lex_state = 30}, - [582] = {.lex_state = 13}, - [583] = {.lex_state = 14}, - [584] = {.lex_state = 14}, - [585] = {.lex_state = 14}, - [586] = {.lex_state = 14}, - [587] = {.lex_state = 13}, - [588] = {.lex_state = 14}, - [589] = {.lex_state = 14}, - [590] = {.lex_state = 14}, - [591] = {.lex_state = 14}, - [592] = {.lex_state = 14}, - [593] = {.lex_state = 14}, - [594] = {.lex_state = 13}, - [595] = {.lex_state = 13}, - [596] = {.lex_state = 13}, - [597] = {.lex_state = 14}, + [566] = {.lex_state = 20}, + [567] = {.lex_state = 20}, + [568] = {.lex_state = 20}, + [569] = {.lex_state = 38, .external_lex_state = 4}, + [570] = {.lex_state = 20}, + [571] = {.lex_state = 20}, + [572] = {.lex_state = 20}, + [573] = {.lex_state = 20}, + [574] = {.lex_state = 11}, + [575] = {.lex_state = 11}, + [576] = {.lex_state = 20}, + [577] = {.lex_state = 11}, + [578] = {.lex_state = 38, .external_lex_state = 4}, + [579] = {.lex_state = 38, .external_lex_state = 4}, + [580] = {.lex_state = 20}, + [581] = {.lex_state = 20}, + [582] = {.lex_state = 20}, + [583] = {.lex_state = 20}, + [584] = {.lex_state = 11}, + [585] = {.lex_state = 20}, + [586] = {.lex_state = 11}, + [587] = {.lex_state = 38, .external_lex_state = 4}, + [588] = {.lex_state = 38, .external_lex_state = 4}, + [589] = {.lex_state = 20}, + [590] = {.lex_state = 20}, + [591] = {.lex_state = 20}, + [592] = {.lex_state = 20}, + [593] = {.lex_state = 11}, + [594] = {.lex_state = 20}, + [595] = {.lex_state = 11}, + [596] = {.lex_state = 11}, + [597] = {.lex_state = 11}, [598] = {.lex_state = 38}, - [599] = {.lex_state = 11}, + [599] = {.lex_state = 14}, [600] = {.lex_state = 20}, - [601] = {.lex_state = 11}, - [602] = {.lex_state = 11}, - [603] = {.lex_state = 14}, - [604] = {.lex_state = 38, .external_lex_state = 4}, - [605] = {.lex_state = 20}, - [606] = {.lex_state = 20}, - [607] = {.lex_state = 11}, - [608] = {.lex_state = 38, .external_lex_state = 4}, - [609] = {.lex_state = 20}, - [610] = {.lex_state = 20}, - [611] = {.lex_state = 38, .external_lex_state = 4}, - [612] = {.lex_state = 11}, - [613] = {.lex_state = 20}, - [614] = {.lex_state = 20}, - [615] = {.lex_state = 20}, - [616] = {.lex_state = 11}, - [617] = {.lex_state = 20}, - [618] = {.lex_state = 11}, - [619] = {.lex_state = 20}, - [620] = {.lex_state = 20}, - [621] = {.lex_state = 20}, - [622] = {.lex_state = 20}, - [623] = {.lex_state = 20}, - [624] = {.lex_state = 11}, - [625] = {.lex_state = 11}, - [626] = {.lex_state = 38, .external_lex_state = 4}, - [627] = {.lex_state = 20}, - [628] = {.lex_state = 38, .external_lex_state = 4}, - [629] = {.lex_state = 20}, - [630] = {.lex_state = 11}, - [631] = {.lex_state = 38, .external_lex_state = 4}, + [601] = {.lex_state = 38, .external_lex_state = 4}, + [602] = {.lex_state = 20}, + [603] = {.lex_state = 11}, + [604] = {.lex_state = 11}, + [605] = {.lex_state = 12}, + [606] = {.lex_state = 12}, + [607] = {.lex_state = 47}, + [608] = {.lex_state = 46}, + [609] = {.lex_state = 47}, + [610] = {.lex_state = 47}, + [611] = {.lex_state = 46}, + [612] = {.lex_state = 12}, + [613] = {.lex_state = 47}, + [614] = {.lex_state = 33}, + [615] = {.lex_state = 47}, + [616] = {.lex_state = 46}, + [617] = {.lex_state = 47}, + [618] = {.lex_state = 47}, + [619] = {.lex_state = 46}, + [620] = {.lex_state = 47}, + [621] = {.lex_state = 33}, + [622] = {.lex_state = 47}, + [623] = {.lex_state = 46}, + [624] = {.lex_state = 47}, + [625] = {.lex_state = 47}, + [626] = {.lex_state = 46}, + [627] = {.lex_state = 47}, + [628] = {.lex_state = 33}, + [629] = {.lex_state = 47}, + [630] = {.lex_state = 46}, + [631] = {.lex_state = 47}, [632] = {.lex_state = 20}, - [633] = {.lex_state = 20}, - [634] = {.lex_state = 20}, - [635] = {.lex_state = 20}, - [636] = {.lex_state = 11}, - [637] = {.lex_state = 12}, - [638] = {.lex_state = 47}, + [633] = {.lex_state = 47}, + [634] = {.lex_state = 46}, + [635] = {.lex_state = 47}, + [636] = {.lex_state = 33}, + [637] = {.lex_state = 11}, + [638] = {.lex_state = 46}, [639] = {.lex_state = 11}, [640] = {.lex_state = 11}, - [641] = {.lex_state = 11}, - [642] = {.lex_state = 11}, - [643] = {.lex_state = 47}, - [644] = {.lex_state = 46}, - [645] = {.lex_state = 47}, - [646] = {.lex_state = 33}, - [647] = {.lex_state = 33}, - [648] = {.lex_state = 38}, + [641] = {.lex_state = 12}, + [642] = {.lex_state = 12}, + [643] = {.lex_state = 33}, + [644] = {.lex_state = 12}, + [645] = {.lex_state = 12}, + [646] = {.lex_state = 11}, + [647] = {.lex_state = 11}, + [648] = {.lex_state = 11}, [649] = {.lex_state = 47}, - [650] = {.lex_state = 12}, + [650] = {.lex_state = 47}, [651] = {.lex_state = 46}, [652] = {.lex_state = 47}, - [653] = {.lex_state = 11}, + [653] = {.lex_state = 12}, [654] = {.lex_state = 12}, [655] = {.lex_state = 11}, [656] = {.lex_state = 11}, - [657] = {.lex_state = 12}, + [657] = {.lex_state = 47}, [658] = {.lex_state = 11}, - [659] = {.lex_state = 47}, + [659] = {.lex_state = 11}, [660] = {.lex_state = 46}, - [661] = {.lex_state = 47}, - [662] = {.lex_state = 12}, - [663] = {.lex_state = 47}, + [661] = {.lex_state = 38}, + [662] = {.lex_state = 11}, + [663] = {.lex_state = 11}, [664] = {.lex_state = 33}, - [665] = {.lex_state = 47}, - [666] = {.lex_state = 46}, - [667] = {.lex_state = 47}, + [665] = {.lex_state = 11}, + [666] = {.lex_state = 12}, + [667] = {.lex_state = 11}, [668] = {.lex_state = 12}, - [669] = {.lex_state = 12}, - [670] = {.lex_state = 12}, - [671] = {.lex_state = 11}, - [672] = {.lex_state = 12}, - [673] = {.lex_state = 47}, - [674] = {.lex_state = 11}, - [675] = {.lex_state = 46}, - [676] = {.lex_state = 11}, - [677] = {.lex_state = 47}, - [678] = {.lex_state = 20}, - [679] = {.lex_state = 11}, - [680] = {.lex_state = 33}, - [681] = {.lex_state = 33}, - [682] = {.lex_state = 11}, - [683] = {.lex_state = 47}, + [669] = {.lex_state = 11}, + [670] = {.lex_state = 47}, + [671] = {.lex_state = 9}, + [672] = {.lex_state = 21}, + [673] = {.lex_state = 21}, + [674] = {.lex_state = 21}, + [675] = {.lex_state = 9}, + [676] = {.lex_state = 9}, + [677] = {.lex_state = 59}, + [678] = {.lex_state = 58}, + [679] = {.lex_state = 59}, + [680] = {.lex_state = 20}, + [681] = {.lex_state = 58}, + [682] = {.lex_state = 21}, + [683] = {.lex_state = 9}, [684] = {.lex_state = 47}, - [685] = {.lex_state = 12}, - [686] = {.lex_state = 46}, - [687] = {.lex_state = 46}, - [688] = {.lex_state = 11}, - [689] = {.lex_state = 47}, - [690] = {.lex_state = 47}, - [691] = {.lex_state = 47}, - [692] = {.lex_state = 47}, - [693] = {.lex_state = 46}, - [694] = {.lex_state = 12}, - [695] = {.lex_state = 46}, - [696] = {.lex_state = 46}, - [697] = {.lex_state = 46}, - [698] = {.lex_state = 33}, - [699] = {.lex_state = 47}, - [700] = {.lex_state = 11}, - [701] = {.lex_state = 47}, - [702] = {.lex_state = 47}, - [703] = {.lex_state = 21}, - [704] = {.lex_state = 58}, - [705] = {.lex_state = 21}, + [685] = {.lex_state = 59}, + [686] = {.lex_state = 58}, + [687] = {.lex_state = 59}, + [688] = {.lex_state = 58}, + [689] = {.lex_state = 59}, + [690] = {.lex_state = 8}, + [691] = {.lex_state = 8}, + [692] = {.lex_state = 58}, + [693] = {.lex_state = 40}, + [694] = {.lex_state = 59}, + [695] = {.lex_state = 58}, + [696] = {.lex_state = 21}, + [697] = {.lex_state = 8}, + [698] = {.lex_state = 39}, + [699] = {.lex_state = 8}, + [700] = {.lex_state = 9}, + [701] = {.lex_state = 8}, + [702] = {.lex_state = 21}, + [703] = {.lex_state = 8}, + [704] = {.lex_state = 59}, + [705] = {.lex_state = 12}, [706] = {.lex_state = 9}, - [707] = {.lex_state = 8}, - [708] = {.lex_state = 58}, - [709] = {.lex_state = 8}, - [710] = {.lex_state = 9}, + [707] = {.lex_state = 21}, + [708] = {.lex_state = 9}, + [709] = {.lex_state = 9}, + [710] = {.lex_state = 59}, [711] = {.lex_state = 9}, - [712] = {.lex_state = 9}, - [713] = {.lex_state = 40}, - [714] = {.lex_state = 21}, - [715] = {.lex_state = 9}, - [716] = {.lex_state = 21}, - [717] = {.lex_state = 21}, - [718] = {.lex_state = 9}, + [712] = {.lex_state = 21}, + [713] = {.lex_state = 21}, + [714] = {.lex_state = 59}, + [715] = {.lex_state = 40}, + [716] = {.lex_state = 40}, + [717] = {.lex_state = 9}, + [718] = {.lex_state = 21}, [719] = {.lex_state = 9}, - [720] = {.lex_state = 9}, - [721] = {.lex_state = 21}, - [722] = {.lex_state = 9}, - [723] = {.lex_state = 20}, - [724] = {.lex_state = 11}, - [725] = {.lex_state = 11}, - [726] = {.lex_state = 9}, - [727] = {.lex_state = 46}, + [720] = {.lex_state = 8}, + [721] = {.lex_state = 9}, + [722] = {.lex_state = 21}, + [723] = {.lex_state = 8}, + [724] = {.lex_state = 21}, + [725] = {.lex_state = 9}, + [726] = {.lex_state = 8}, + [727] = {.lex_state = 9}, [728] = {.lex_state = 8}, - [729] = {.lex_state = 9}, + [729] = {.lex_state = 58}, [730] = {.lex_state = 8}, - [731] = {.lex_state = 21}, - [732] = {.lex_state = 8}, - [733] = {.lex_state = 9}, + [731] = {.lex_state = 9}, + [732] = {.lex_state = 21}, + [733] = {.lex_state = 8}, [734] = {.lex_state = 8}, - [735] = {.lex_state = 9}, - [736] = {.lex_state = 21}, + [735] = {.lex_state = 21}, + [736] = {.lex_state = 9}, [737] = {.lex_state = 21}, [738] = {.lex_state = 21}, - [739] = {.lex_state = 40}, + [739] = {.lex_state = 11}, [740] = {.lex_state = 9}, - [741] = {.lex_state = 9}, - [742] = {.lex_state = 9}, - [743] = {.lex_state = 21}, - [744] = {.lex_state = 9}, - [745] = {.lex_state = 58}, + [741] = {.lex_state = 21}, + [742] = {.lex_state = 21}, + [743] = {.lex_state = 9}, + [744] = {.lex_state = 58}, + [745] = {.lex_state = 9}, [746] = {.lex_state = 21}, [747] = {.lex_state = 9}, [748] = {.lex_state = 21}, - [749] = {.lex_state = 9}, - [750] = {.lex_state = 21}, - [751] = {.lex_state = 21}, + [749] = {.lex_state = 21}, + [750] = {.lex_state = 9}, + [751] = {.lex_state = 9}, [752] = {.lex_state = 9}, - [753] = {.lex_state = 9}, - [754] = {.lex_state = 12}, - [755] = {.lex_state = 59}, + [753] = {.lex_state = 8}, + [754] = {.lex_state = 21}, + [755] = {.lex_state = 11}, [756] = {.lex_state = 9}, - [757] = {.lex_state = 21}, - [758] = {.lex_state = 21}, - [759] = {.lex_state = 59}, + [757] = {.lex_state = 11}, + [758] = {.lex_state = 8}, + [759] = {.lex_state = 8}, [760] = {.lex_state = 8}, - [761] = {.lex_state = 8}, - [762] = {.lex_state = 21}, - [763] = {.lex_state = 8}, + [761] = {.lex_state = 9}, + [762] = {.lex_state = 9}, + [763] = {.lex_state = 21}, [764] = {.lex_state = 21}, - [765] = {.lex_state = 9}, - [766] = {.lex_state = 21}, + [765] = {.lex_state = 21}, + [766] = {.lex_state = 39}, [767] = {.lex_state = 9}, - [768] = {.lex_state = 8}, - [769] = {.lex_state = 9}, - [770] = {.lex_state = 58}, - [771] = {.lex_state = 21}, - [772] = {.lex_state = 9}, - [773] = {.lex_state = 8}, - [774] = {.lex_state = 21}, - [775] = {.lex_state = 8}, - [776] = {.lex_state = 21}, - [777] = {.lex_state = 59}, - [778] = {.lex_state = 21}, - [779] = {.lex_state = 58}, - [780] = {.lex_state = 21}, - [781] = {.lex_state = 59}, - [782] = {.lex_state = 21}, + [768] = {.lex_state = 21}, + [769] = {.lex_state = 21}, + [770] = {.lex_state = 59}, + [771] = {.lex_state = 9}, + [772] = {.lex_state = 46}, + [773] = {.lex_state = 9}, + [774] = {.lex_state = 9}, + [775] = {.lex_state = 21}, + [776] = {.lex_state = 8}, + [777] = {.lex_state = 21}, + [778] = {.lex_state = 8}, + [779] = {.lex_state = 8}, + [780] = {.lex_state = 9}, + [781] = {.lex_state = 21}, + [782] = {.lex_state = 9}, [783] = {.lex_state = 8}, - [784] = {.lex_state = 21}, - [785] = {.lex_state = 9}, - [786] = {.lex_state = 21}, - [787] = {.lex_state = 58}, - [788] = {.lex_state = 8}, + [784] = {.lex_state = 9}, + [785] = {.lex_state = 21}, + [786] = {.lex_state = 9}, + [787] = {.lex_state = 21}, + [788] = {.lex_state = 9}, [789] = {.lex_state = 21}, - [790] = {.lex_state = 47}, - [791] = {.lex_state = 59}, - [792] = {.lex_state = 9}, - [793] = {.lex_state = 9}, - [794] = {.lex_state = 9}, - [795] = {.lex_state = 39}, + [790] = {.lex_state = 9}, + [791] = {.lex_state = 9}, + [792] = {.lex_state = 21}, + [793] = {.lex_state = 59}, + [794] = {.lex_state = 58}, + [795] = {.lex_state = 21}, [796] = {.lex_state = 21}, - [797] = {.lex_state = 39}, + [797] = {.lex_state = 21}, [798] = {.lex_state = 9}, - [799] = {.lex_state = 59}, - [800] = {.lex_state = 40}, + [799] = {.lex_state = 9}, + [800] = {.lex_state = 21}, [801] = {.lex_state = 9}, - [802] = {.lex_state = 58}, - [803] = {.lex_state = 8}, - [804] = {.lex_state = 11}, - [805] = {.lex_state = 8}, - [806] = {.lex_state = 8}, - [807] = {.lex_state = 8}, - [808] = {.lex_state = 21}, - [809] = {.lex_state = 9}, - [810] = {.lex_state = 58}, - [811] = {.lex_state = 9}, - [812] = {.lex_state = 21}, - [813] = {.lex_state = 9}, - [814] = {.lex_state = 21}, - [815] = {.lex_state = 9}, - [816] = {.lex_state = 59}, - [817] = {.lex_state = 9}, - [818] = {.lex_state = 59}, - [819] = {.lex_state = 59}, - [820] = {.lex_state = 58}, - [821] = {.lex_state = 21}, - [822] = {.lex_state = 21}, - [823] = {.lex_state = 8}, - [824] = {.lex_state = 21}, - [825] = {.lex_state = 9}, - [826] = {.lex_state = 21}, - [827] = {.lex_state = 9}, - [828] = {.lex_state = 58}, - [829] = {.lex_state = 9}, - [830] = {.lex_state = 21}, - [831] = {.lex_state = 21}, - [832] = {.lex_state = 9}, - [833] = {.lex_state = 59}, - [834] = {.lex_state = 21}, - [835] = {.lex_state = 58}, - [836] = {.lex_state = 21}, - [837] = {.lex_state = 59}, - [838] = {.lex_state = 8}, - [839] = {.lex_state = 8}, + [802] = {.lex_state = 21}, + [803] = {.lex_state = 21}, + [804] = {.lex_state = 9}, + [805] = {.lex_state = 21}, + [806] = {.lex_state = 58}, + [807] = {.lex_state = 58}, + [808] = {.lex_state = 11}, + [809] = {.lex_state = 11}, + [810] = {.lex_state = 21}, + [811] = {.lex_state = 14}, + [812] = {.lex_state = 8}, + [813] = {.lex_state = 14}, + [814] = {.lex_state = 11}, + [815] = {.lex_state = 11}, + [816] = {.lex_state = 14}, + [817] = {.lex_state = 14}, + [818] = {.lex_state = 14}, + [819] = {.lex_state = 11}, + [820] = {.lex_state = 9}, + [821] = {.lex_state = 11}, + [822] = {.lex_state = 11}, + [823] = {.lex_state = 14}, + [824] = {.lex_state = 11}, + [825] = {.lex_state = 58}, + [826] = {.lex_state = 11}, + [827] = {.lex_state = 14}, + [828] = {.lex_state = 59}, + [829] = {.lex_state = 11}, + [830] = {.lex_state = 48}, + [831] = {.lex_state = 16}, + [832] = {.lex_state = 11}, + [833] = {.lex_state = 8}, + [834] = {.lex_state = 14}, + [835] = {.lex_state = 14}, + [836] = {.lex_state = 16}, + [837] = {.lex_state = 14}, + [838] = {.lex_state = 16}, + [839] = {.lex_state = 16}, [840] = {.lex_state = 16}, - [841] = {.lex_state = 58}, - [842] = {.lex_state = 11}, + [841] = {.lex_state = 1}, + [842] = {.lex_state = 38}, [843] = {.lex_state = 14}, [844] = {.lex_state = 14}, - [845] = {.lex_state = 11}, - [846] = {.lex_state = 11}, - [847] = {.lex_state = 9}, - [848] = {.lex_state = 8}, - [849] = {.lex_state = 11}, - [850] = {.lex_state = 16}, - [851] = {.lex_state = 11}, - [852] = {.lex_state = 16}, + [845] = {.lex_state = 1}, + [846] = {.lex_state = 14}, + [847] = {.lex_state = 1}, + [848] = {.lex_state = 14}, + [849] = {.lex_state = 1}, + [850] = {.lex_state = 14}, + [851] = {.lex_state = 57}, + [852] = {.lex_state = 1}, [853] = {.lex_state = 14}, - [854] = {.lex_state = 21}, - [855] = {.lex_state = 14}, - [856] = {.lex_state = 11}, - [857] = {.lex_state = 16}, - [858] = {.lex_state = 11}, - [859] = {.lex_state = 14}, - [860] = {.lex_state = 59}, - [861] = {.lex_state = 48}, - [862] = {.lex_state = 8}, - [863] = {.lex_state = 11}, - [864] = {.lex_state = 11}, - [865] = {.lex_state = 14}, - [866] = {.lex_state = 11}, - [867] = {.lex_state = 14}, - [868] = {.lex_state = 14}, - [869] = {.lex_state = 11}, - [870] = {.lex_state = 11}, + [854] = {.lex_state = 1}, + [855] = {.lex_state = 1}, + [856] = {.lex_state = 57}, + [857] = {.lex_state = 1}, + [858] = {.lex_state = 1}, + [859] = {.lex_state = 1}, + [860] = {.lex_state = 1}, + [861] = {.lex_state = 1}, + [862] = {.lex_state = 38}, + [863] = {.lex_state = 1}, + [864] = {.lex_state = 14}, + [865] = {.lex_state = 38}, + [866] = {.lex_state = 57}, + [867] = {.lex_state = 60}, + [868] = {.lex_state = 1}, + [869] = {.lex_state = 57}, + [870] = {.lex_state = 1}, [871] = {.lex_state = 14}, - [872] = {.lex_state = 14}, - [873] = {.lex_state = 16}, - [874] = {.lex_state = 1}, + [872] = {.lex_state = 1}, + [873] = {.lex_state = 1}, + [874] = {.lex_state = 57}, [875] = {.lex_state = 14}, [876] = {.lex_state = 1}, - [877] = {.lex_state = 57}, + [877] = {.lex_state = 38}, [878] = {.lex_state = 1}, - [879] = {.lex_state = 14}, + [879] = {.lex_state = 1}, [880] = {.lex_state = 1}, - [881] = {.lex_state = 1}, - [882] = {.lex_state = 14}, - [883] = {.lex_state = 1}, - [884] = {.lex_state = 38}, + [881] = {.lex_state = 14}, + [882] = {.lex_state = 1}, + [883] = {.lex_state = 14}, + [884] = {.lex_state = 1}, [885] = {.lex_state = 1}, - [886] = {.lex_state = 1}, - [887] = {.lex_state = 57}, + [886] = {.lex_state = 57}, + [887] = {.lex_state = 14}, [888] = {.lex_state = 1}, - [889] = {.lex_state = 1}, - [890] = {.lex_state = 1}, - [891] = {.lex_state = 60}, - [892] = {.lex_state = 38}, - [893] = {.lex_state = 57}, - [894] = {.lex_state = 61}, - [895] = {.lex_state = 57}, + [889] = {.lex_state = 14}, + [890] = {.lex_state = 14}, + [891] = {.lex_state = 1}, + [892] = {.lex_state = 1}, + [893] = {.lex_state = 14}, + [894] = {.lex_state = 14}, + [895] = {.lex_state = 60}, [896] = {.lex_state = 1}, - [897] = {.lex_state = 14}, - [898] = {.lex_state = 38}, - [899] = {.lex_state = 57}, - [900] = {.lex_state = 1}, + [897] = {.lex_state = 1}, + [898] = {.lex_state = 57}, + [899] = {.lex_state = 1}, + [900] = {.lex_state = 57}, [901] = {.lex_state = 0}, [902] = {.lex_state = 1}, [903] = {.lex_state = 14}, [904] = {.lex_state = 1}, - [905] = {.lex_state = 1}, + [905] = {.lex_state = 38}, [906] = {.lex_state = 1}, - [907] = {.lex_state = 38}, + [907] = {.lex_state = 14}, [908] = {.lex_state = 1}, - [909] = {.lex_state = 57}, + [909] = {.lex_state = 14}, [910] = {.lex_state = 1}, - [911] = {.lex_state = 1}, + [911] = {.lex_state = 14}, [912] = {.lex_state = 1}, - [913] = {.lex_state = 61}, - [914] = {.lex_state = 14}, - [915] = {.lex_state = 1}, - [916] = {.lex_state = 1}, - [917] = {.lex_state = 57}, - [918] = {.lex_state = 14}, - [919] = {.lex_state = 1}, + [913] = {.lex_state = 14}, + [914] = {.lex_state = 57}, + [915] = {.lex_state = 38}, + [916] = {.lex_state = 14}, + [917] = {.lex_state = 1}, + [918] = {.lex_state = 1}, + [919] = {.lex_state = 60}, [920] = {.lex_state = 1}, - [921] = {.lex_state = 14}, + [921] = {.lex_state = 61}, [922] = {.lex_state = 1}, - [923] = {.lex_state = 14}, + [923] = {.lex_state = 57}, [924] = {.lex_state = 1}, - [925] = {.lex_state = 14}, - [926] = {.lex_state = 14}, - [927] = {.lex_state = 1}, - [928] = {.lex_state = 61}, + [925] = {.lex_state = 1}, + [926] = {.lex_state = 1}, + [927] = {.lex_state = 38}, + [928] = {.lex_state = 1}, [929] = {.lex_state = 1}, - [930] = {.lex_state = 1}, - [931] = {.lex_state = 1}, + [930] = {.lex_state = 14}, + [931] = {.lex_state = 57}, [932] = {.lex_state = 1}, - [933] = {.lex_state = 14}, - [934] = {.lex_state = 1}, + [933] = {.lex_state = 1}, + [934] = {.lex_state = 57}, [935] = {.lex_state = 14}, - [936] = {.lex_state = 38}, - [937] = {.lex_state = 14}, - [938] = {.lex_state = 1}, - [939] = {.lex_state = 1}, + [936] = {.lex_state = 60}, + [937] = {.lex_state = 1}, + [938] = {.lex_state = 14}, + [939] = {.lex_state = 60}, [940] = {.lex_state = 1}, - [941] = {.lex_state = 38}, + [941] = {.lex_state = 14}, [942] = {.lex_state = 1}, [943] = {.lex_state = 1}, [944] = {.lex_state = 1}, [945] = {.lex_state = 1}, [946] = {.lex_state = 1}, - [947] = {.lex_state = 14}, - [948] = {.lex_state = 1}, - [949] = {.lex_state = 1}, - [950] = {.lex_state = 57}, - [951] = {.lex_state = 14}, - [952] = {.lex_state = 14}, + [947] = {.lex_state = 38}, + [948] = {.lex_state = 18}, + [949] = {.lex_state = 38}, + [950] = {.lex_state = 61}, + [951] = {.lex_state = 38}, + [952] = {.lex_state = 38}, [953] = {.lex_state = 1}, - [954] = {.lex_state = 1}, - [955] = {.lex_state = 61}, + [954] = {.lex_state = 57}, + [955] = {.lex_state = 14}, [956] = {.lex_state = 1}, - [957] = {.lex_state = 18}, + [957] = {.lex_state = 14}, [958] = {.lex_state = 1}, - [959] = {.lex_state = 1}, - [960] = {.lex_state = 1}, - [961] = {.lex_state = 14}, + [959] = {.lex_state = 57}, + [960] = {.lex_state = 14}, + [961] = {.lex_state = 38}, [962] = {.lex_state = 1}, - [963] = {.lex_state = 38}, - [964] = {.lex_state = 14}, - [965] = {.lex_state = 38}, - [966] = {.lex_state = 14}, + [963] = {.lex_state = 1}, + [964] = {.lex_state = 38}, + [965] = {.lex_state = 57}, + [966] = {.lex_state = 1}, [967] = {.lex_state = 1}, - [968] = {.lex_state = 38}, - [969] = {.lex_state = 1}, - [970] = {.lex_state = 57}, - [971] = {.lex_state = 38}, + [968] = {.lex_state = 61}, + [969] = {.lex_state = 38}, + [970] = {.lex_state = 1}, + [971] = {.lex_state = 61}, [972] = {.lex_state = 38}, [973] = {.lex_state = 1}, [974] = {.lex_state = 14}, - [975] = {.lex_state = 61}, + [975] = {.lex_state = 1}, [976] = {.lex_state = 1}, - [977] = {.lex_state = 14}, - [978] = {.lex_state = 14}, - [979] = {.lex_state = 38}, - [980] = {.lex_state = 14}, + [977] = {.lex_state = 57}, + [978] = {.lex_state = 61}, + [979] = {.lex_state = 61}, + [980] = {.lex_state = 1}, [981] = {.lex_state = 57}, - [982] = {.lex_state = 1}, - [983] = {.lex_state = 38}, + [982] = {.lex_state = 61}, + [983] = {.lex_state = 61}, [984] = {.lex_state = 1}, - [985] = {.lex_state = 1}, - [986] = {.lex_state = 14}, - [987] = {.lex_state = 14}, - [988] = {.lex_state = 1}, + [985] = {.lex_state = 57}, + [986] = {.lex_state = 61}, + [987] = {.lex_state = 61}, + [988] = {.lex_state = 57}, [989] = {.lex_state = 57}, [990] = {.lex_state = 57}, - [991] = {.lex_state = 1}, - [992] = {.lex_state = 1}, - [993] = {.lex_state = 1}, - [994] = {.lex_state = 1}, - [995] = {.lex_state = 57}, - [996] = {.lex_state = 1}, - [997] = {.lex_state = 1}, - [998] = {.lex_state = 14}, - [999] = {.lex_state = 14}, - [1000] = {.lex_state = 1}, - [1001] = {.lex_state = 57}, - [1002] = {.lex_state = 1}, - [1003] = {.lex_state = 1}, - [1004] = {.lex_state = 60}, - [1005] = {.lex_state = 14}, - [1006] = {.lex_state = 57}, - [1007] = {.lex_state = 60}, - [1008] = {.lex_state = 1}, - [1009] = {.lex_state = 1}, - [1010] = {.lex_state = 60}, - [1011] = {.lex_state = 38}, - [1012] = {.lex_state = 38}, - [1013] = {.lex_state = 57}, - [1014] = {.lex_state = 60}, - [1015] = {.lex_state = 60}, - [1016] = {.lex_state = 14}, - [1017] = {.lex_state = 57}, - [1018] = {.lex_state = 60}, - [1019] = {.lex_state = 60}, - [1020] = {.lex_state = 1}, - [1021] = {.lex_state = 57}, - [1022] = {.lex_state = 60}, - [1023] = {.lex_state = 60}, - [1024] = {.lex_state = 57}, - [1025] = {.lex_state = 57}, - [1026] = {.lex_state = 57}, - [1027] = {.lex_state = 57}, - [1028] = {.lex_state = 57}, - [1029] = {.lex_state = 57}, + [991] = {.lex_state = 57}, + [992] = {.lex_state = 57}, + [993] = {.lex_state = 57}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4380,34 +4301,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1] = { [sym_regex] = STATE(901), - [sym__expression] = STATE(222), - [sym_literal] = STATE(222), - [sym_quantifier] = STATE(222), - [sym_alteration] = STATE(222), - [sym_capture_group] = STATE(222), - [sym_non_capture_group] = STATE(222), - [sym_atomic_group] = STATE(222), - [sym_capture_group_name] = STATE(222), - [sym_capture_group_conditional] = STATE(222), - [sym_comment_group] = STATE(222), - [sym_modify] = STATE(222), - [sym__modify_extended] = STATE(222), + [sym__expression] = STATE(197), + [sym_literal] = STATE(197), + [sym_quantifier] = STATE(197), + [sym_alteration] = STATE(197), + [sym_capture_group] = STATE(197), + [sym_non_capture_group] = STATE(197), + [sym_atomic_group] = STATE(197), + [sym_capture_group_name] = STATE(197), + [sym_capture_group_conditional] = STATE(197), + [sym_capture_group_condition] = STATE(199), + [sym_comment_group] = STATE(197), + [sym_modify] = STATE(197), + [sym__modify_extended] = STATE(197), [sym_modify_extended_1] = STATE(26), - [sym_modify_extended_2] = STATE(222), - [sym_look_ahead] = STATE(222), - [sym_look_behind] = STATE(222), - [sym_callout] = STATE(222), - [sym_absent] = STATE(222), - [sym_character_class] = STATE(222), - [sym_character_property] = STATE(222), - [sym_subroutine] = STATE(222), - [sym_backreference] = STATE(222), - [sym_unicode] = STATE(222), - [sym_meta_control_char] = STATE(222), - [aux_sym_regex_repeat1] = STATE(222), - [aux_sym_literal_repeat1] = STATE(387), - [aux_sym_quantifier_repeat1] = STATE(386), - [aux_sym_meta_control_char_repeat1] = STATE(578), + [sym_modify_extended_2] = STATE(197), + [sym_look_ahead] = STATE(197), + [sym_look_behind] = STATE(197), + [sym_callout] = STATE(197), + [sym_absent] = STATE(197), + [sym_character_class] = STATE(197), + [sym_character_property] = STATE(197), + [sym_subroutine] = STATE(197), + [sym_backreference] = STATE(197), + [sym_unicode] = STATE(197), + [sym_meta_control_char] = STATE(197), + [aux_sym_regex_repeat1] = STATE(197), + [aux_sym_literal_repeat1] = STATE(352), + [aux_sym_quantifier_repeat1] = STATE(353), + [aux_sym_meta_control_char_repeat1] = STATE(544), [ts_builtin_sym_end] = ACTIONS(3), [sym_backslash] = ACTIONS(5), [aux_sym_literal_token1] = ACTIONS(7), @@ -4442,37 +4364,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modify_syntax] = ACTIONS(55), }, [2] = { - [sym__expression_extended] = STATE(82), - [sym_literal] = STATE(82), - [sym_quantifier] = STATE(82), - [sym_alteration] = STATE(82), - [sym_capture_group_extended] = STATE(82), - [sym_non_capture_group_extended] = STATE(82), - [sym_atomic_group_extended] = STATE(82), - [sym_capture_group_name_extended] = STATE(82), - [sym_capture_group_conditional_extended] = STATE(82), - [sym_capture_group_conditional_name] = STATE(920), - [sym_comment_group] = STATE(82), - [sym_comment_extended] = STATE(82), - [sym_modify] = STATE(82), - [sym__modify_extended] = STATE(82), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(82), - [sym_look_ahead_extended] = STATE(82), - [sym_look_behind_extended] = STATE(82), - [sym_callout] = STATE(82), - [sym_absent_extended] = STATE(82), - [sym_character_class] = STATE(82), - [sym_character_property] = STATE(82), - [sym_subroutine] = STATE(82), - [sym_backreference] = STATE(82), - [sym_unicode] = STATE(82), - [sym_meta_control_char] = STATE(82), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(82), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), + [sym__expression_extended] = STATE(33), + [sym_literal] = STATE(33), + [sym_quantifier] = STATE(33), + [sym_alteration] = STATE(33), + [sym_capture_group_extended] = STATE(33), + [sym_non_capture_group_extended] = STATE(33), + [sym_atomic_group_extended] = STATE(33), + [sym_capture_group_name_extended] = STATE(33), + [sym_capture_group_conditional_extended] = STATE(33), + [sym_capture_group_condition_extended] = STATE(49), + [sym_capture_group_conditional_name] = STATE(868), + [sym_comment_group] = STATE(33), + [sym_comment_extended] = STATE(33), + [sym_modify] = STATE(33), + [sym__modify_extended] = STATE(33), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(33), + [sym_look_ahead_extended] = STATE(33), + [sym_look_behind_extended] = STATE(33), + [sym_callout] = STATE(33), + [sym_absent_extended] = STATE(33), + [sym_character_class] = STATE(33), + [sym_character_property] = STATE(33), + [sym_subroutine] = STATE(33), + [sym_backreference] = STATE(33), + [sym_unicode] = STATE(33), + [sym_meta_control_char] = STATE(33), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(33), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), [sym_backslash] = ACTIONS(57), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), @@ -4514,41 +4437,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modify_syntax] = ACTIONS(121), }, [3] = { - [sym__expression_extended] = STATE(46), - [sym_literal] = STATE(46), - [sym_quantifier] = STATE(46), - [sym_alteration] = STATE(46), - [sym_capture_group_extended] = STATE(46), - [sym_non_capture_group_extended] = STATE(46), - [sym_atomic_group_extended] = STATE(46), - [sym_capture_group_name_extended] = STATE(46), - [sym_capture_group_conditional_extended] = STATE(46), - [sym_capture_group_conditional_name] = STATE(953), - [sym_comment_group] = STATE(46), - [sym_comment_extended] = STATE(46), - [sym_modify] = STATE(46), - [sym__modify_extended] = STATE(46), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(46), - [sym_look_ahead_extended] = STATE(46), - [sym_look_behind_extended] = STATE(46), - [sym_callout] = STATE(46), - [sym_absent_extended] = STATE(46), - [sym_character_class] = STATE(46), - [sym_character_property] = STATE(46), - [sym_subroutine] = STATE(46), - [sym_backreference] = STATE(46), - [sym_unicode] = STATE(46), - [sym_meta_control_char] = STATE(46), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(46), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), + [sym__expression_extended] = STATE(54), + [sym_literal] = STATE(54), + [sym_quantifier] = STATE(54), + [sym_alteration] = STATE(54), + [sym_capture_group_extended] = STATE(54), + [sym_non_capture_group_extended] = STATE(54), + [sym_atomic_group_extended] = STATE(54), + [sym_capture_group_name_extended] = STATE(54), + [sym_capture_group_conditional_extended] = STATE(54), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(54), + [sym_comment_extended] = STATE(54), + [sym_modify] = STATE(54), + [sym__modify_extended] = STATE(54), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(54), + [sym_look_ahead_extended] = STATE(54), + [sym_look_behind_extended] = STATE(54), + [sym_callout] = STATE(54), + [sym_absent_extended] = STATE(54), + [sym_character_class] = STATE(54), + [sym_character_property] = STATE(54), + [sym_subroutine] = STATE(54), + [sym_backreference] = STATE(54), + [sym_unicode] = STATE(54), + [sym_meta_control_char] = STATE(54), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(54), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), [sym_backslash] = ACTIONS(123), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), @@ -4558,10 +4481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [aux_sym_capture_group_conditional_name_token3] = ACTIONS(85), [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), [anon_sym_SPACE] = ACTIONS(89), [anon_sym_BSLASHn] = ACTIONS(89), @@ -4586,37 +4506,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modify_syntax] = ACTIONS(121), }, [4] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), + [sym__expression_extended] = STATE(84), + [sym_literal] = STATE(84), + [sym_quantifier] = STATE(84), + [sym_alteration] = STATE(84), + [sym_capture_group_extended] = STATE(84), + [sym_non_capture_group_extended] = STATE(84), + [sym_atomic_group_extended] = STATE(84), + [sym_capture_group_name_extended] = STATE(84), + [sym_capture_group_conditional_extended] = STATE(84), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(84), + [sym_comment_extended] = STATE(84), + [sym_modify] = STATE(84), + [sym__modify_extended] = STATE(84), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(84), + [sym_look_ahead_extended] = STATE(84), + [sym_look_behind_extended] = STATE(84), + [sym_callout] = STATE(84), + [sym_absent_extended] = STATE(84), + [sym_character_class] = STATE(84), + [sym_character_property] = STATE(84), + [sym_subroutine] = STATE(84), + [sym_backreference] = STATE(84), + [sym_unicode] = STATE(84), + [sym_meta_control_char] = STATE(84), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(84), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), [sym_backslash] = ACTIONS(127), + [aux_sym_literal_token1] = ACTIONS(130), + [anon_sym_QMARK] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [aux_sym_quantifier_token1] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(142), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(145), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(148), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(151), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(154), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(157), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(160), + [anon_sym_SPACE] = ACTIONS(163), + [anon_sym_BSLASHn] = ACTIONS(163), + [anon_sym_BSLASHt] = ACTIONS(163), + [anon_sym_POUND] = ACTIONS(166), + [aux_sym_look_ahead_token1] = ACTIONS(169), + [aux_sym_look_behind_token1] = ACTIONS(172), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(181), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(184), + [aux_sym_character_property_token1] = ACTIONS(187), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(190), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(193), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(196), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(199), + [aux_sym_unicode_token1] = ACTIONS(202), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(205), + [sym__callout_syntax] = ACTIONS(208), + [sym__modify_syntax] = ACTIONS(211), + }, + [5] = { + [sym__expression_extended] = STATE(19), + [sym_literal] = STATE(19), + [sym_quantifier] = STATE(19), + [sym_alteration] = STATE(19), + [sym_capture_group_extended] = STATE(19), + [sym_non_capture_group_extended] = STATE(19), + [sym_atomic_group_extended] = STATE(19), + [sym_capture_group_name_extended] = STATE(19), + [sym_capture_group_conditional_extended] = STATE(19), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(19), + [sym_comment_extended] = STATE(19), + [sym_modify] = STATE(19), + [sym__modify_extended] = STATE(19), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(19), + [sym_look_ahead_extended] = STATE(19), + [sym_look_behind_extended] = STATE(19), + [sym_callout] = STATE(19), + [sym_absent_extended] = STATE(19), + [sym_character_class] = STATE(19), + [sym_character_property] = STATE(19), + [sym_subroutine] = STATE(19), + [sym_backreference] = STATE(19), + [sym_unicode] = STATE(19), + [sym_meta_control_char] = STATE(19), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(19), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(214), + [aux_sym_literal_token1] = ACTIONS(130), + [anon_sym_QMARK] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [aux_sym_quantifier_token1] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(145), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(148), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(151), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(154), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(157), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(160), + [anon_sym_SPACE] = ACTIONS(163), + [anon_sym_BSLASHn] = ACTIONS(163), + [anon_sym_BSLASHt] = ACTIONS(163), + [anon_sym_POUND] = ACTIONS(166), + [aux_sym_look_ahead_token1] = ACTIONS(169), + [aux_sym_look_behind_token1] = ACTIONS(172), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(181), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(184), + [aux_sym_character_property_token1] = ACTIONS(187), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(190), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(193), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(196), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(199), + [aux_sym_unicode_token1] = ACTIONS(202), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(205), + [sym__callout_syntax] = ACTIONS(208), + [sym__modify_syntax] = ACTIONS(211), + }, + [6] = { + [sym__expression_extended] = STATE(11), + [sym_literal] = STATE(11), + [sym_quantifier] = STATE(11), + [sym_alteration] = STATE(11), + [sym_capture_group_extended] = STATE(11), + [sym_non_capture_group_extended] = STATE(11), + [sym_atomic_group_extended] = STATE(11), + [sym_capture_group_name_extended] = STATE(11), + [sym_capture_group_conditional_extended] = STATE(11), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(11), + [sym_comment_extended] = STATE(11), + [sym_modify] = STATE(11), + [sym__modify_extended] = STATE(11), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(11), + [sym_look_ahead_extended] = STATE(11), + [sym_look_behind_extended] = STATE(11), + [sym_callout] = STATE(11), + [sym_absent_extended] = STATE(11), + [sym_character_class] = STATE(11), + [sym_character_property] = STATE(11), + [sym_subroutine] = STATE(11), + [sym_backreference] = STATE(11), + [sym_unicode] = STATE(11), + [sym_meta_control_char] = STATE(11), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(11), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(220), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -4624,7 +4683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(222), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -4653,38 +4712,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [5] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [7] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(224), + [aux_sym_literal_token1] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_STAR] = ACTIONS(230), + [aux_sym_quantifier_token1] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(236), + [anon_sym_RPAREN] = ACTIONS(239), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(242), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(245), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(248), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(251), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(254), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(257), + [anon_sym_SPACE] = ACTIONS(260), + [anon_sym_BSLASHn] = ACTIONS(260), + [anon_sym_BSLASHt] = ACTIONS(260), + [anon_sym_POUND] = ACTIONS(263), + [aux_sym_look_ahead_token1] = ACTIONS(266), + [aux_sym_look_behind_token1] = ACTIONS(269), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(275), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(278), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(281), + [aux_sym_character_property_token1] = ACTIONS(284), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(287), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(290), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(293), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(296), + [aux_sym_unicode_token1] = ACTIONS(299), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(302), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(302), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(302), + [sym__callout_syntax] = ACTIONS(305), + [sym__modify_syntax] = ACTIONS(308), + }, + [8] = { + [sym__expression_extended] = STATE(74), + [sym_literal] = STATE(74), + [sym_quantifier] = STATE(74), + [sym_alteration] = STATE(74), + [sym_capture_group_extended] = STATE(74), + [sym_non_capture_group_extended] = STATE(74), + [sym_atomic_group_extended] = STATE(74), + [sym_capture_group_name_extended] = STATE(74), + [sym_capture_group_conditional_extended] = STATE(74), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(74), + [sym_comment_extended] = STATE(74), + [sym_modify] = STATE(74), + [sym__modify_extended] = STATE(74), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(74), + [sym_look_ahead_extended] = STATE(74), + [sym_look_behind_extended] = STATE(74), + [sym_callout] = STATE(74), + [sym_absent_extended] = STATE(74), + [sym_character_class] = STATE(74), + [sym_character_property] = STATE(74), + [sym_subroutine] = STATE(74), + [sym_backreference] = STATE(74), + [sym_unicode] = STATE(74), + [sym_meta_control_char] = STATE(74), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(74), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(311), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -4692,7 +4821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(313), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -4721,242 +4850,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [6] = { - [sym__expression_extended] = STATE(85), - [sym_literal] = STATE(85), - [sym_quantifier] = STATE(85), - [sym_alteration] = STATE(85), - [sym_capture_group_extended] = STATE(85), - [sym_non_capture_group_extended] = STATE(85), - [sym_atomic_group_extended] = STATE(85), - [sym_capture_group_name_extended] = STATE(85), - [sym_capture_group_conditional_extended] = STATE(85), - [sym_comment_group] = STATE(85), - [sym_comment_extended] = STATE(85), - [sym_modify] = STATE(85), - [sym__modify_extended] = STATE(85), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(85), - [sym_look_ahead_extended] = STATE(85), - [sym_look_behind_extended] = STATE(85), - [sym_callout] = STATE(85), - [sym_absent_extended] = STATE(85), - [sym_character_class] = STATE(85), - [sym_character_property] = STATE(85), - [sym_subroutine] = STATE(85), - [sym_backreference] = STATE(85), - [sym_unicode] = STATE(85), - [sym_meta_control_char] = STATE(85), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(85), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(133), - [aux_sym_literal_token1] = ACTIONS(136), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(139), - [aux_sym_quantifier_token1] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(142), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(151), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(154), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(157), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(160), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(163), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(166), - [anon_sym_SPACE] = ACTIONS(169), - [anon_sym_BSLASHn] = ACTIONS(169), - [anon_sym_BSLASHt] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [aux_sym_look_ahead_token1] = ACTIONS(175), - [aux_sym_look_behind_token1] = ACTIONS(178), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(187), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(190), - [aux_sym_character_property_token1] = ACTIONS(193), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(196), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(199), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(202), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(205), - [aux_sym_unicode_token1] = ACTIONS(208), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(211), - [sym__callout_syntax] = ACTIONS(214), - [sym__modify_syntax] = ACTIONS(217), - }, - [7] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(220), - [aux_sym_literal_token1] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(226), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_STAR] = ACTIONS(226), - [aux_sym_quantifier_token1] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_RPAREN] = ACTIONS(235), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(238), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(241), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(244), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(247), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(250), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(253), - [anon_sym_SPACE] = ACTIONS(256), - [anon_sym_BSLASHn] = ACTIONS(256), - [anon_sym_BSLASHt] = ACTIONS(256), - [anon_sym_POUND] = ACTIONS(259), - [aux_sym_look_ahead_token1] = ACTIONS(262), - [aux_sym_look_behind_token1] = ACTIONS(265), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(274), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(277), - [aux_sym_character_property_token1] = ACTIONS(280), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(283), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(286), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(289), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(292), - [aux_sym_unicode_token1] = ACTIONS(295), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(298), - [sym__callout_syntax] = ACTIONS(301), - [sym__modify_syntax] = ACTIONS(304), - }, - [8] = { - [sym__expression_extended] = STATE(28), - [sym_literal] = STATE(28), - [sym_quantifier] = STATE(28), - [sym_alteration] = STATE(28), - [sym_capture_group_extended] = STATE(28), - [sym_non_capture_group_extended] = STATE(28), - [sym_atomic_group_extended] = STATE(28), - [sym_capture_group_name_extended] = STATE(28), - [sym_capture_group_conditional_extended] = STATE(28), - [sym_comment_group] = STATE(28), - [sym_comment_extended] = STATE(28), - [sym_modify] = STATE(28), - [sym__modify_extended] = STATE(28), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(28), - [sym_look_ahead_extended] = STATE(28), - [sym_look_behind_extended] = STATE(28), - [sym_callout] = STATE(28), - [sym_absent_extended] = STATE(28), - [sym_character_class] = STATE(28), - [sym_character_property] = STATE(28), - [sym_subroutine] = STATE(28), - [sym_backreference] = STATE(28), - [sym_unicode] = STATE(28), - [sym_meta_control_char] = STATE(28), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(28), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(307), - [aux_sym_literal_token1] = ACTIONS(136), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(139), - [aux_sym_quantifier_token1] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(142), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(310), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(151), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(154), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(157), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(160), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(163), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(166), - [anon_sym_SPACE] = ACTIONS(169), - [anon_sym_BSLASHn] = ACTIONS(169), - [anon_sym_BSLASHt] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [aux_sym_look_ahead_token1] = ACTIONS(175), - [aux_sym_look_behind_token1] = ACTIONS(178), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(187), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(190), - [aux_sym_character_property_token1] = ACTIONS(193), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(196), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(199), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(202), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(205), - [aux_sym_unicode_token1] = ACTIONS(208), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(211), - [sym__callout_syntax] = ACTIONS(214), - [sym__modify_syntax] = ACTIONS(217), - }, [9] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [sym__expression_extended] = STATE(17), + [sym_literal] = STATE(17), + [sym_quantifier] = STATE(17), + [sym_alteration] = STATE(17), + [sym_capture_group_extended] = STATE(17), + [sym_non_capture_group_extended] = STATE(17), + [sym_atomic_group_extended] = STATE(17), + [sym_capture_group_name_extended] = STATE(17), + [sym_capture_group_conditional_extended] = STATE(17), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(17), + [sym_comment_extended] = STATE(17), + [sym_modify] = STATE(17), + [sym__modify_extended] = STATE(17), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(17), + [sym_look_ahead_extended] = STATE(17), + [sym_look_behind_extended] = STATE(17), + [sym_callout] = STATE(17), + [sym_absent_extended] = STATE(17), + [sym_character_class] = STATE(17), + [sym_character_property] = STATE(17), + [sym_subroutine] = STATE(17), + [sym_backreference] = STATE(17), + [sym_unicode] = STATE(17), + [sym_meta_control_char] = STATE(17), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(17), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(315), + [aux_sym_literal_token1] = ACTIONS(130), + [anon_sym_QMARK] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [aux_sym_quantifier_token1] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(318), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(145), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(148), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(151), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(154), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(157), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(160), + [anon_sym_SPACE] = ACTIONS(163), + [anon_sym_BSLASHn] = ACTIONS(163), + [anon_sym_BSLASHt] = ACTIONS(163), + [anon_sym_POUND] = ACTIONS(166), + [aux_sym_look_ahead_token1] = ACTIONS(169), + [aux_sym_look_behind_token1] = ACTIONS(172), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(181), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(184), + [aux_sym_character_property_token1] = ACTIONS(187), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(190), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(193), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(196), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(199), + [aux_sym_unicode_token1] = ACTIONS(202), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(205), + [sym__callout_syntax] = ACTIONS(208), + [sym__modify_syntax] = ACTIONS(211), + }, + [10] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(224), + [aux_sym_literal_token1] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_STAR] = ACTIONS(230), + [aux_sym_quantifier_token1] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(236), + [anon_sym_RPAREN] = ACTIONS(321), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(242), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(245), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(248), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(251), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(254), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(257), + [anon_sym_SPACE] = ACTIONS(260), + [anon_sym_BSLASHn] = ACTIONS(260), + [anon_sym_BSLASHt] = ACTIONS(260), + [anon_sym_POUND] = ACTIONS(263), + [aux_sym_look_ahead_token1] = ACTIONS(266), + [aux_sym_look_behind_token1] = ACTIONS(269), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(275), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(278), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(281), + [aux_sym_character_property_token1] = ACTIONS(284), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(287), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(290), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(293), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(296), + [aux_sym_unicode_token1] = ACTIONS(299), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(302), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(302), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(302), + [sym__callout_syntax] = ACTIONS(305), + [sym__modify_syntax] = ACTIONS(308), + }, + [11] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -4964,7 +5028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_RPAREN] = ACTIONS(326), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -4993,38 +5057,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [10] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [12] = { + [sym__expression_extended] = STATE(22), + [sym_literal] = STATE(22), + [sym_quantifier] = STATE(22), + [sym_alteration] = STATE(22), + [sym_capture_group_extended] = STATE(22), + [sym_non_capture_group_extended] = STATE(22), + [sym_atomic_group_extended] = STATE(22), + [sym_capture_group_name_extended] = STATE(22), + [sym_capture_group_conditional_extended] = STATE(22), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(22), + [sym_comment_extended] = STATE(22), + [sym_modify] = STATE(22), + [sym__modify_extended] = STATE(22), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(22), + [sym_look_ahead_extended] = STATE(22), + [sym_look_behind_extended] = STATE(22), + [sym_callout] = STATE(22), + [sym_absent_extended] = STATE(22), + [sym_character_class] = STATE(22), + [sym_character_property] = STATE(22), + [sym_subroutine] = STATE(22), + [sym_backreference] = STATE(22), + [sym_unicode] = STATE(22), + [sym_meta_control_char] = STATE(22), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(22), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(328), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -5032,7 +5097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(330), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -5061,46 +5126,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [11] = { - [sym__expression_extended] = STATE(27), - [sym_literal] = STATE(27), - [sym_quantifier] = STATE(27), - [sym_alteration] = STATE(27), - [sym_capture_group_extended] = STATE(27), - [sym_non_capture_group_extended] = STATE(27), - [sym_atomic_group_extended] = STATE(27), - [sym_capture_group_name_extended] = STATE(27), - [sym_capture_group_conditional_extended] = STATE(27), - [sym_comment_group] = STATE(27), - [sym_comment_extended] = STATE(27), - [sym_modify] = STATE(27), - [sym__modify_extended] = STATE(27), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(27), - [sym_look_ahead_extended] = STATE(27), - [sym_look_behind_extended] = STATE(27), - [sym_callout] = STATE(27), - [sym_absent_extended] = STATE(27), - [sym_character_class] = STATE(27), - [sym_character_property] = STATE(27), - [sym_subroutine] = STATE(27), - [sym_backreference] = STATE(27), - [sym_unicode] = STATE(27), - [sym_meta_control_char] = STATE(27), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(27), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(317), + [13] = { + [sym__expression_extended] = STATE(20), + [sym_literal] = STATE(20), + [sym_quantifier] = STATE(20), + [sym_alteration] = STATE(20), + [sym_capture_group_extended] = STATE(20), + [sym_non_capture_group_extended] = STATE(20), + [sym_atomic_group_extended] = STATE(20), + [sym_capture_group_name_extended] = STATE(20), + [sym_capture_group_conditional_extended] = STATE(20), + [sym_capture_group_condition_extended] = STATE(68), + [sym_comment_group] = STATE(20), + [sym_comment_extended] = STATE(20), + [sym_modify] = STATE(20), + [sym__modify_extended] = STATE(20), + [sym_modify_extended_1] = STATE(64), + [sym_modify_extended_2] = STATE(20), + [sym_look_ahead_extended] = STATE(20), + [sym_look_behind_extended] = STATE(20), + [sym_callout] = STATE(20), + [sym_absent_extended] = STATE(20), + [sym_character_class] = STATE(20), + [sym_character_property] = STATE(20), + [sym_subroutine] = STATE(20), + [sym_backreference] = STATE(20), + [sym_unicode] = STATE(20), + [sym_meta_control_char] = STATE(20), + [aux_sym_literal_repeat1] = STATE(215), + [aux_sym_quantifier_repeat1] = STATE(213), + [aux_sym_capture_group_extended_repeat1] = STATE(20), + [aux_sym_comment_extended_repeat2] = STATE(221), + [aux_sym_meta_control_char_repeat1] = STATE(548), + [sym_backslash] = ACTIONS(332), + [aux_sym_literal_token1] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [aux_sym_quantifier_token1] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(342), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(344), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(346), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(348), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(350), + [anon_sym_SPACE] = ACTIONS(352), + [anon_sym_BSLASHn] = ACTIONS(352), + [anon_sym_BSLASHt] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(354), + [aux_sym_look_ahead_token1] = ACTIONS(356), + [aux_sym_look_behind_token1] = ACTIONS(358), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(364), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(366), + [aux_sym_character_property_token1] = ACTIONS(368), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(370), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(372), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(374), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(376), + [aux_sym_unicode_token1] = ACTIONS(378), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(380), + [sym__group_end_lookahead] = ACTIONS(382), + [sym__callout_syntax] = ACTIONS(384), + [sym__modify_syntax] = ACTIONS(386), + }, + [14] = { + [sym__expression_extended] = STATE(78), + [sym_literal] = STATE(78), + [sym_quantifier] = STATE(78), + [sym_alteration] = STATE(78), + [sym_capture_group_extended] = STATE(78), + [sym_non_capture_group_extended] = STATE(78), + [sym_atomic_group_extended] = STATE(78), + [sym_capture_group_name_extended] = STATE(78), + [sym_capture_group_conditional_extended] = STATE(78), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(78), + [sym_comment_extended] = STATE(78), + [sym_modify] = STATE(78), + [sym__modify_extended] = STATE(78), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(78), + [sym_look_ahead_extended] = STATE(78), + [sym_look_behind_extended] = STATE(78), + [sym_callout] = STATE(78), + [sym_absent_extended] = STATE(78), + [sym_character_class] = STATE(78), + [sym_character_property] = STATE(78), + [sym_subroutine] = STATE(78), + [sym_backreference] = STATE(78), + [sym_unicode] = STATE(78), + [sym_meta_control_char] = STATE(78), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(78), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(388), + [aux_sym_literal_token1] = ACTIONS(130), + [anon_sym_QMARK] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [aux_sym_quantifier_token1] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(145), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(148), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(151), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(154), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(157), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(160), + [anon_sym_SPACE] = ACTIONS(163), + [anon_sym_BSLASHn] = ACTIONS(163), + [anon_sym_BSLASHt] = ACTIONS(163), + [anon_sym_POUND] = ACTIONS(166), + [aux_sym_look_ahead_token1] = ACTIONS(169), + [aux_sym_look_behind_token1] = ACTIONS(172), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(181), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(184), + [aux_sym_character_property_token1] = ACTIONS(187), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(190), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(193), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(196), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(199), + [aux_sym_unicode_token1] = ACTIONS(202), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(205), + [sym__callout_syntax] = ACTIONS(208), + [sym__modify_syntax] = ACTIONS(211), + }, + [15] = { + [sym__expression_extended] = STATE(13), + [sym_literal] = STATE(13), + [sym_quantifier] = STATE(13), + [sym_alteration] = STATE(13), + [sym_capture_group_extended] = STATE(13), + [sym_non_capture_group_extended] = STATE(13), + [sym_atomic_group_extended] = STATE(13), + [sym_capture_group_name_extended] = STATE(13), + [sym_capture_group_conditional_extended] = STATE(13), + [sym_capture_group_condition_extended] = STATE(68), + [sym_comment_group] = STATE(13), + [sym_comment_extended] = STATE(13), + [sym_modify] = STATE(13), + [sym__modify_extended] = STATE(13), + [sym_modify_extended_1] = STATE(64), + [sym_modify_extended_2] = STATE(13), + [sym_look_ahead_extended] = STATE(13), + [sym_look_behind_extended] = STATE(13), + [sym_callout] = STATE(13), + [sym_absent_extended] = STATE(13), + [sym_character_class] = STATE(13), + [sym_character_property] = STATE(13), + [sym_subroutine] = STATE(13), + [sym_backreference] = STATE(13), + [sym_unicode] = STATE(13), + [sym_meta_control_char] = STATE(13), + [aux_sym_literal_repeat1] = STATE(215), + [aux_sym_quantifier_repeat1] = STATE(213), + [aux_sym_capture_group_extended_repeat1] = STATE(13), + [aux_sym_comment_extended_repeat2] = STATE(221), + [aux_sym_meta_control_char_repeat1] = STATE(548), + [sym_backslash] = ACTIONS(394), + [aux_sym_literal_token1] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [aux_sym_quantifier_token1] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(342), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(344), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(346), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(348), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(350), + [anon_sym_SPACE] = ACTIONS(352), + [anon_sym_BSLASHn] = ACTIONS(352), + [anon_sym_BSLASHt] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(354), + [aux_sym_look_ahead_token1] = ACTIONS(356), + [aux_sym_look_behind_token1] = ACTIONS(358), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(364), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(366), + [aux_sym_character_property_token1] = ACTIONS(368), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(370), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(372), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(374), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(376), + [aux_sym_unicode_token1] = ACTIONS(378), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(380), + [sym__group_end_lookahead] = ACTIONS(396), + [sym__callout_syntax] = ACTIONS(384), + [sym__modify_syntax] = ACTIONS(386), + }, + [16] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(319), + [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(321), + [anon_sym_RPAREN] = ACTIONS(398), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -5129,46 +5402,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [12] = { - [sym__expression_extended] = STATE(22), - [sym_literal] = STATE(22), - [sym_quantifier] = STATE(22), - [sym_alteration] = STATE(22), - [sym_capture_group_extended] = STATE(22), - [sym_non_capture_group_extended] = STATE(22), - [sym_atomic_group_extended] = STATE(22), - [sym_capture_group_name_extended] = STATE(22), - [sym_capture_group_conditional_extended] = STATE(22), - [sym_comment_group] = STATE(22), - [sym_comment_extended] = STATE(22), - [sym_modify] = STATE(22), - [sym__modify_extended] = STATE(22), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(22), - [sym_look_ahead_extended] = STATE(22), - [sym_look_behind_extended] = STATE(22), - [sym_callout] = STATE(22), - [sym_absent_extended] = STATE(22), - [sym_character_class] = STATE(22), - [sym_character_property] = STATE(22), - [sym_subroutine] = STATE(22), - [sym_backreference] = STATE(22), - [sym_unicode] = STATE(22), - [sym_meta_control_char] = STATE(22), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(22), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(323), + [17] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(319), + [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(321), + [anon_sym_RPAREN] = ACTIONS(400), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -5197,38 +5471,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [13] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [18] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -5236,7 +5511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(402), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -5265,38 +5540,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [14] = { - [sym__expression_extended] = STATE(29), - [sym_literal] = STATE(29), - [sym_quantifier] = STATE(29), - [sym_alteration] = STATE(29), - [sym_capture_group_extended] = STATE(29), - [sym_non_capture_group_extended] = STATE(29), - [sym_atomic_group_extended] = STATE(29), - [sym_capture_group_name_extended] = STATE(29), - [sym_capture_group_conditional_extended] = STATE(29), - [sym_comment_group] = STATE(29), - [sym_comment_extended] = STATE(29), - [sym_modify] = STATE(29), - [sym__modify_extended] = STATE(29), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(29), - [sym_look_ahead_extended] = STATE(29), - [sym_look_behind_extended] = STATE(29), - [sym_callout] = STATE(29), - [sym_absent_extended] = STATE(29), - [sym_character_class] = STATE(29), - [sym_character_property] = STATE(29), - [sym_subroutine] = STATE(29), - [sym_backreference] = STATE(29), - [sym_unicode] = STATE(29), - [sym_meta_control_char] = STATE(29), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(29), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(327), + [19] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -5304,7 +5580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(329), + [anon_sym_RPAREN] = ACTIONS(404), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -5333,7 +5609,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [15] = { + [20] = { + [sym__expression_extended] = STATE(20), + [sym_literal] = STATE(20), + [sym_quantifier] = STATE(20), + [sym_alteration] = STATE(20), + [sym_capture_group_extended] = STATE(20), + [sym_non_capture_group_extended] = STATE(20), + [sym_atomic_group_extended] = STATE(20), + [sym_capture_group_name_extended] = STATE(20), + [sym_capture_group_conditional_extended] = STATE(20), + [sym_capture_group_condition_extended] = STATE(68), + [sym_comment_group] = STATE(20), + [sym_comment_extended] = STATE(20), + [sym_modify] = STATE(20), + [sym__modify_extended] = STATE(20), + [sym_modify_extended_1] = STATE(64), + [sym_modify_extended_2] = STATE(20), + [sym_look_ahead_extended] = STATE(20), + [sym_look_behind_extended] = STATE(20), + [sym_callout] = STATE(20), + [sym_absent_extended] = STATE(20), + [sym_character_class] = STATE(20), + [sym_character_property] = STATE(20), + [sym_subroutine] = STATE(20), + [sym_backreference] = STATE(20), + [sym_unicode] = STATE(20), + [sym_meta_control_char] = STATE(20), + [aux_sym_literal_repeat1] = STATE(215), + [aux_sym_quantifier_repeat1] = STATE(213), + [aux_sym_capture_group_extended_repeat1] = STATE(20), + [aux_sym_comment_extended_repeat2] = STATE(221), + [aux_sym_meta_control_char_repeat1] = STATE(548), + [sym_backslash] = ACTIONS(406), + [aux_sym_literal_token1] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [aux_sym_quantifier_token1] = ACTIONS(412), + [anon_sym_PIPE] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(418), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(421), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(424), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(427), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(430), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(254), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(433), + [anon_sym_SPACE] = ACTIONS(436), + [anon_sym_BSLASHn] = ACTIONS(436), + [anon_sym_BSLASHt] = ACTIONS(436), + [anon_sym_POUND] = ACTIONS(439), + [aux_sym_look_ahead_token1] = ACTIONS(442), + [aux_sym_look_behind_token1] = ACTIONS(445), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(454), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(457), + [aux_sym_character_property_token1] = ACTIONS(460), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(463), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(466), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(469), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(472), + [aux_sym_unicode_token1] = ACTIONS(475), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(478), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(478), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(478), + [sym__group_end_lookahead] = ACTIONS(481), + [sym__callout_syntax] = ACTIONS(483), + [sym__modify_syntax] = ACTIONS(486), + }, + [21] = { [sym__expression_extended] = STATE(18), [sym_literal] = STATE(18), [sym_quantifier] = STATE(18), @@ -5343,11 +5688,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atomic_group_extended] = STATE(18), [sym_capture_group_name_extended] = STATE(18), [sym_capture_group_conditional_extended] = STATE(18), + [sym_capture_group_condition_extended] = STATE(49), [sym_comment_group] = STATE(18), [sym_comment_extended] = STATE(18), [sym_modify] = STATE(18), [sym__modify_extended] = STATE(18), - [sym_modify_extended_1] = STATE(34), + [sym_modify_extended_1] = STATE(45), [sym_modify_extended_2] = STATE(18), [sym_look_ahead_extended] = STATE(18), [sym_look_behind_extended] = STATE(18), @@ -5359,148 +5705,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backreference] = STATE(18), [sym_unicode] = STATE(18), [sym_meta_control_char] = STATE(18), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), [aux_sym_capture_group_extended_repeat1] = STATE(18), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(331), - [aux_sym_literal_token1] = ACTIONS(136), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(139), - [aux_sym_quantifier_token1] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(142), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(334), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(151), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(154), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(157), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(160), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(163), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(166), - [anon_sym_SPACE] = ACTIONS(169), - [anon_sym_BSLASHn] = ACTIONS(169), - [anon_sym_BSLASHt] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [aux_sym_look_ahead_token1] = ACTIONS(175), - [aux_sym_look_behind_token1] = ACTIONS(178), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(187), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(190), - [aux_sym_character_property_token1] = ACTIONS(193), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(196), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(199), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(202), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(205), - [aux_sym_unicode_token1] = ACTIONS(208), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(211), - [sym__callout_syntax] = ACTIONS(214), - [sym__modify_syntax] = ACTIONS(217), - }, - [16] = { - [sym__expression_extended] = STATE(40), - [sym_literal] = STATE(40), - [sym_quantifier] = STATE(40), - [sym_alteration] = STATE(40), - [sym_capture_group_extended] = STATE(40), - [sym_non_capture_group_extended] = STATE(40), - [sym_atomic_group_extended] = STATE(40), - [sym_capture_group_name_extended] = STATE(40), - [sym_capture_group_conditional_extended] = STATE(40), - [sym_comment_group] = STATE(40), - [sym_comment_extended] = STATE(40), - [sym_modify] = STATE(40), - [sym__modify_extended] = STATE(40), - [sym_modify_extended_1] = STATE(80), - [sym_modify_extended_2] = STATE(40), - [sym_look_ahead_extended] = STATE(40), - [sym_look_behind_extended] = STATE(40), - [sym_callout] = STATE(40), - [sym_absent_extended] = STATE(40), - [sym_character_class] = STATE(40), - [sym_character_property] = STATE(40), - [sym_subroutine] = STATE(40), - [sym_backreference] = STATE(40), - [sym_unicode] = STATE(40), - [sym_meta_control_char] = STATE(40), - [aux_sym_literal_repeat1] = STATE(245), - [aux_sym_quantifier_repeat1] = STATE(243), - [aux_sym_capture_group_extended_repeat1] = STATE(40), - [aux_sym_comment_extended_repeat2] = STATE(252), - [aux_sym_meta_control_char_repeat1] = STATE(577), - [sym_backslash] = ACTIONS(337), - [aux_sym_literal_token1] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(341), - [aux_sym_quantifier_token1] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(347), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(349), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(351), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(353), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(355), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(357), - [anon_sym_SPACE] = ACTIONS(359), - [anon_sym_BSLASHn] = ACTIONS(359), - [anon_sym_BSLASHt] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(361), - [aux_sym_look_ahead_token1] = ACTIONS(363), - [aux_sym_look_behind_token1] = ACTIONS(365), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(371), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(373), - [aux_sym_character_property_token1] = ACTIONS(375), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(377), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(379), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(381), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(383), - [aux_sym_unicode_token1] = ACTIONS(385), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(387), - [sym__group_end_lookahead] = ACTIONS(389), - [sym__callout_syntax] = ACTIONS(391), - [sym__modify_syntax] = ACTIONS(393), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(489), + [aux_sym_literal_token1] = ACTIONS(59), + [anon_sym_QMARK] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(61), + [aux_sym_quantifier_token1] = ACTIONS(61), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(491), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), + [anon_sym_SPACE] = ACTIONS(89), + [anon_sym_BSLASHn] = ACTIONS(89), + [anon_sym_BSLASHt] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(91), + [aux_sym_look_ahead_token1] = ACTIONS(93), + [aux_sym_look_behind_token1] = ACTIONS(95), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(99), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(101), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(103), + [aux_sym_character_property_token1] = ACTIONS(105), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(107), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(109), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(111), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(113), + [aux_sym_unicode_token1] = ACTIONS(115), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(117), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(117), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(117), + [sym__callout_syntax] = ACTIONS(119), + [sym__modify_syntax] = ACTIONS(121), }, - [17] = { - [sym__expression_extended] = STATE(4), - [sym_literal] = STATE(4), - [sym_quantifier] = STATE(4), - [sym_alteration] = STATE(4), - [sym_capture_group_extended] = STATE(4), - [sym_non_capture_group_extended] = STATE(4), - [sym_atomic_group_extended] = STATE(4), - [sym_capture_group_name_extended] = STATE(4), - [sym_capture_group_conditional_extended] = STATE(4), - [sym_comment_group] = STATE(4), - [sym_comment_extended] = STATE(4), - [sym_modify] = STATE(4), - [sym__modify_extended] = STATE(4), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(4), - [sym_look_ahead_extended] = STATE(4), - [sym_look_behind_extended] = STATE(4), - [sym_callout] = STATE(4), - [sym_absent_extended] = STATE(4), - [sym_character_class] = STATE(4), - [sym_character_property] = STATE(4), - [sym_subroutine] = STATE(4), - [sym_backreference] = STATE(4), - [sym_unicode] = STATE(4), - [sym_meta_control_char] = STATE(4), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(4), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(395), + [22] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -5508,7 +5787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(493), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -5537,38 +5816,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [18] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [23] = { + [sym__expression_extended] = STATE(55), + [sym_literal] = STATE(55), + [sym_quantifier] = STATE(55), + [sym_alteration] = STATE(55), + [sym_capture_group_extended] = STATE(55), + [sym_non_capture_group_extended] = STATE(55), + [sym_atomic_group_extended] = STATE(55), + [sym_capture_group_name_extended] = STATE(55), + [sym_capture_group_conditional_extended] = STATE(55), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(55), + [sym_comment_extended] = STATE(55), + [sym_modify] = STATE(55), + [sym__modify_extended] = STATE(55), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(55), + [sym_look_ahead_extended] = STATE(55), + [sym_look_behind_extended] = STATE(55), + [sym_callout] = STATE(55), + [sym_absent_extended] = STATE(55), + [sym_character_class] = STATE(55), + [sym_character_property] = STATE(55), + [sym_subroutine] = STATE(55), + [sym_backreference] = STATE(55), + [sym_unicode] = STATE(55), + [sym_meta_control_char] = STATE(55), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(55), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(495), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -5576,7 +5856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(497), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -5605,106 +5885,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [19] = { - [sym__expression_extended] = STATE(31), - [sym_literal] = STATE(31), - [sym_quantifier] = STATE(31), - [sym_alteration] = STATE(31), - [sym_capture_group_extended] = STATE(31), - [sym_non_capture_group_extended] = STATE(31), - [sym_atomic_group_extended] = STATE(31), - [sym_capture_group_name_extended] = STATE(31), - [sym_capture_group_conditional_extended] = STATE(31), - [sym_comment_group] = STATE(31), - [sym_comment_extended] = STATE(31), - [sym_modify] = STATE(31), - [sym__modify_extended] = STATE(31), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(31), - [sym_look_ahead_extended] = STATE(31), - [sym_look_behind_extended] = STATE(31), - [sym_callout] = STATE(31), - [sym_absent_extended] = STATE(31), - [sym_character_class] = STATE(31), - [sym_character_property] = STATE(31), - [sym_subroutine] = STATE(31), - [sym_backreference] = STATE(31), - [sym_unicode] = STATE(31), - [sym_meta_control_char] = STATE(31), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(31), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(401), - [aux_sym_literal_token1] = ACTIONS(136), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(139), - [aux_sym_quantifier_token1] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(142), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(151), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(154), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(157), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(160), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(163), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(166), - [anon_sym_SPACE] = ACTIONS(169), - [anon_sym_BSLASHn] = ACTIONS(169), - [anon_sym_BSLASHt] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [aux_sym_look_ahead_token1] = ACTIONS(175), - [aux_sym_look_behind_token1] = ACTIONS(178), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(187), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(190), - [aux_sym_character_property_token1] = ACTIONS(193), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(196), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(199), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(202), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(205), - [aux_sym_unicode_token1] = ACTIONS(208), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(211), - [sym__callout_syntax] = ACTIONS(214), - [sym__modify_syntax] = ACTIONS(217), + [24] = { + [sym__expression_extended] = STATE(20), + [sym_literal] = STATE(20), + [sym_quantifier] = STATE(20), + [sym_alteration] = STATE(20), + [sym_capture_group_extended] = STATE(20), + [sym_non_capture_group_extended] = STATE(20), + [sym_atomic_group_extended] = STATE(20), + [sym_capture_group_name_extended] = STATE(20), + [sym_capture_group_conditional_extended] = STATE(20), + [sym_capture_group_condition_extended] = STATE(68), + [sym_comment_group] = STATE(20), + [sym_comment_extended] = STATE(20), + [sym_modify] = STATE(20), + [sym__modify_extended] = STATE(20), + [sym_modify_extended_1] = STATE(64), + [sym_modify_extended_2] = STATE(20), + [sym_look_ahead_extended] = STATE(20), + [sym_look_behind_extended] = STATE(20), + [sym_callout] = STATE(20), + [sym_absent_extended] = STATE(20), + [sym_character_class] = STATE(20), + [sym_character_property] = STATE(20), + [sym_subroutine] = STATE(20), + [sym_backreference] = STATE(20), + [sym_unicode] = STATE(20), + [sym_meta_control_char] = STATE(20), + [aux_sym_literal_repeat1] = STATE(215), + [aux_sym_quantifier_repeat1] = STATE(213), + [aux_sym_capture_group_extended_repeat1] = STATE(20), + [aux_sym_comment_extended_repeat2] = STATE(221), + [aux_sym_meta_control_char_repeat1] = STATE(548), + [sym_backslash] = ACTIONS(332), + [aux_sym_literal_token1] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [aux_sym_quantifier_token1] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(342), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(344), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(346), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(348), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(350), + [anon_sym_SPACE] = ACTIONS(352), + [anon_sym_BSLASHn] = ACTIONS(352), + [anon_sym_BSLASHt] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(354), + [aux_sym_look_ahead_token1] = ACTIONS(356), + [aux_sym_look_behind_token1] = ACTIONS(358), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(364), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(366), + [aux_sym_character_property_token1] = ACTIONS(368), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(370), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(372), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(374), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(376), + [aux_sym_unicode_token1] = ACTIONS(378), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(380), + [sym__group_end_lookahead] = ACTIONS(499), + [sym__callout_syntax] = ACTIONS(384), + [sym__modify_syntax] = ACTIONS(386), }, - [20] = { - [sym__expression_extended] = STATE(13), - [sym_literal] = STATE(13), - [sym_quantifier] = STATE(13), - [sym_alteration] = STATE(13), - [sym_capture_group_extended] = STATE(13), - [sym_non_capture_group_extended] = STATE(13), - [sym_atomic_group_extended] = STATE(13), - [sym_capture_group_name_extended] = STATE(13), - [sym_capture_group_conditional_extended] = STATE(13), - [sym_comment_group] = STATE(13), - [sym_comment_extended] = STATE(13), - [sym_modify] = STATE(13), - [sym__modify_extended] = STATE(13), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(13), - [sym_look_ahead_extended] = STATE(13), - [sym_look_behind_extended] = STATE(13), - [sym_callout] = STATE(13), - [sym_absent_extended] = STATE(13), - [sym_character_class] = STATE(13), - [sym_character_property] = STATE(13), - [sym_subroutine] = STATE(13), - [sym_backreference] = STATE(13), - [sym_unicode] = STATE(13), - [sym_meta_control_char] = STATE(13), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(13), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(407), + [25] = { + [sym__expression_extended] = STATE(44), + [sym_literal] = STATE(44), + [sym_quantifier] = STATE(44), + [sym_alteration] = STATE(44), + [sym_capture_group_extended] = STATE(44), + [sym_non_capture_group_extended] = STATE(44), + [sym_atomic_group_extended] = STATE(44), + [sym_capture_group_name_extended] = STATE(44), + [sym_capture_group_conditional_extended] = STATE(44), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(44), + [sym_comment_extended] = STATE(44), + [sym_modify] = STATE(44), + [sym__modify_extended] = STATE(44), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(44), + [sym_look_ahead_extended] = STATE(44), + [sym_look_behind_extended] = STATE(44), + [sym_callout] = STATE(44), + [sym_absent_extended] = STATE(44), + [sym_character_class] = STATE(44), + [sym_character_property] = STATE(44), + [sym_subroutine] = STATE(44), + [sym_backreference] = STATE(44), + [sym_unicode] = STATE(44), + [sym_meta_control_char] = STATE(44), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(44), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(501), + [aux_sym_literal_token1] = ACTIONS(130), + [anon_sym_QMARK] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [aux_sym_quantifier_token1] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(504), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(145), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(148), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(151), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(154), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(157), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(160), + [anon_sym_SPACE] = ACTIONS(163), + [anon_sym_BSLASHn] = ACTIONS(163), + [anon_sym_BSLASHt] = ACTIONS(163), + [anon_sym_POUND] = ACTIONS(166), + [aux_sym_look_ahead_token1] = ACTIONS(169), + [aux_sym_look_behind_token1] = ACTIONS(172), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(181), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(184), + [aux_sym_character_property_token1] = ACTIONS(187), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(190), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(193), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(196), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(199), + [aux_sym_unicode_token1] = ACTIONS(202), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(205), + [sym__callout_syntax] = ACTIONS(208), + [sym__modify_syntax] = ACTIONS(211), + }, + [26] = { + [sym__expression_extended] = STATE(72), + [sym_literal] = STATE(72), + [sym_quantifier] = STATE(72), + [sym_alteration] = STATE(72), + [sym_capture_group_extended] = STATE(72), + [sym_non_capture_group_extended] = STATE(72), + [sym_atomic_group_extended] = STATE(72), + [sym_capture_group_name_extended] = STATE(72), + [sym_capture_group_conditional_extended] = STATE(72), + [sym_capture_group_condition_extended] = STATE(68), + [sym_comment_group] = STATE(72), + [sym_comment_extended] = STATE(72), + [sym_modify] = STATE(72), + [sym__modify_extended] = STATE(72), + [sym_modify_extended_1] = STATE(64), + [sym_modify_extended_2] = STATE(72), + [sym_look_ahead_extended] = STATE(72), + [sym_look_behind_extended] = STATE(72), + [sym_callout] = STATE(72), + [sym_absent_extended] = STATE(72), + [sym_character_class] = STATE(72), + [sym_character_property] = STATE(72), + [sym_subroutine] = STATE(72), + [sym_backreference] = STATE(72), + [sym_unicode] = STATE(72), + [sym_meta_control_char] = STATE(72), + [aux_sym_literal_repeat1] = STATE(215), + [aux_sym_quantifier_repeat1] = STATE(213), + [aux_sym_capture_group_extended_repeat1] = STATE(72), + [aux_sym_comment_extended_repeat2] = STATE(221), + [aux_sym_meta_control_char_repeat1] = STATE(548), + [sym_backslash] = ACTIONS(507), + [aux_sym_literal_token1] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [aux_sym_quantifier_token1] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(342), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(344), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(346), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(348), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(350), + [anon_sym_SPACE] = ACTIONS(352), + [anon_sym_BSLASHn] = ACTIONS(352), + [anon_sym_BSLASHt] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(354), + [aux_sym_look_ahead_token1] = ACTIONS(356), + [aux_sym_look_behind_token1] = ACTIONS(358), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(364), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(366), + [aux_sym_character_property_token1] = ACTIONS(368), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(370), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(372), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(374), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(376), + [aux_sym_unicode_token1] = ACTIONS(378), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(380), + [sym__group_end_lookahead] = ACTIONS(509), + [sym__callout_syntax] = ACTIONS(384), + [sym__modify_syntax] = ACTIONS(386), + }, + [27] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -5712,7 +6132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(409), + [anon_sym_RPAREN] = ACTIONS(511), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -5741,38 +6161,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [21] = { - [sym__expression_extended] = STATE(10), - [sym_literal] = STATE(10), - [sym_quantifier] = STATE(10), - [sym_alteration] = STATE(10), - [sym_capture_group_extended] = STATE(10), - [sym_non_capture_group_extended] = STATE(10), - [sym_atomic_group_extended] = STATE(10), - [sym_capture_group_name_extended] = STATE(10), - [sym_capture_group_conditional_extended] = STATE(10), - [sym_comment_group] = STATE(10), - [sym_comment_extended] = STATE(10), - [sym_modify] = STATE(10), - [sym__modify_extended] = STATE(10), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(10), - [sym_look_ahead_extended] = STATE(10), - [sym_look_behind_extended] = STATE(10), - [sym_callout] = STATE(10), - [sym_absent_extended] = STATE(10), - [sym_character_class] = STATE(10), - [sym_character_property] = STATE(10), - [sym_subroutine] = STATE(10), - [sym_backreference] = STATE(10), - [sym_unicode] = STATE(10), - [sym_meta_control_char] = STATE(10), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(10), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(411), + [28] = { + [sym__expression_extended] = STATE(57), + [sym_literal] = STATE(57), + [sym_quantifier] = STATE(57), + [sym_alteration] = STATE(57), + [sym_capture_group_extended] = STATE(57), + [sym_non_capture_group_extended] = STATE(57), + [sym_atomic_group_extended] = STATE(57), + [sym_capture_group_name_extended] = STATE(57), + [sym_capture_group_conditional_extended] = STATE(57), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(57), + [sym_comment_extended] = STATE(57), + [sym_modify] = STATE(57), + [sym__modify_extended] = STATE(57), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(57), + [sym_look_ahead_extended] = STATE(57), + [sym_look_behind_extended] = STATE(57), + [sym_callout] = STATE(57), + [sym_absent_extended] = STATE(57), + [sym_character_class] = STATE(57), + [sym_character_property] = STATE(57), + [sym_subroutine] = STATE(57), + [sym_backreference] = STATE(57), + [sym_unicode] = STATE(57), + [sym_meta_control_char] = STATE(57), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(57), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(513), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -5780,7 +6201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(515), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -5809,250 +6230,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [22] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(220), - [aux_sym_literal_token1] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(226), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_STAR] = ACTIONS(226), - [aux_sym_quantifier_token1] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_RPAREN] = ACTIONS(415), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(238), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(241), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(244), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(247), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(250), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(253), - [anon_sym_SPACE] = ACTIONS(256), - [anon_sym_BSLASHn] = ACTIONS(256), - [anon_sym_BSLASHt] = ACTIONS(256), - [anon_sym_POUND] = ACTIONS(259), - [aux_sym_look_ahead_token1] = ACTIONS(262), - [aux_sym_look_behind_token1] = ACTIONS(265), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(274), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(277), - [aux_sym_character_property_token1] = ACTIONS(280), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(283), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(286), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(289), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(292), - [aux_sym_unicode_token1] = ACTIONS(295), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(298), - [sym__callout_syntax] = ACTIONS(301), - [sym__modify_syntax] = ACTIONS(304), - }, - [23] = { - [sym__expression_extended] = STATE(40), - [sym_literal] = STATE(40), - [sym_quantifier] = STATE(40), - [sym_alteration] = STATE(40), - [sym_capture_group_extended] = STATE(40), - [sym_non_capture_group_extended] = STATE(40), - [sym_atomic_group_extended] = STATE(40), - [sym_capture_group_name_extended] = STATE(40), - [sym_capture_group_conditional_extended] = STATE(40), - [sym_comment_group] = STATE(40), - [sym_comment_extended] = STATE(40), - [sym_modify] = STATE(40), - [sym__modify_extended] = STATE(40), - [sym_modify_extended_1] = STATE(80), - [sym_modify_extended_2] = STATE(40), - [sym_look_ahead_extended] = STATE(40), - [sym_look_behind_extended] = STATE(40), - [sym_callout] = STATE(40), - [sym_absent_extended] = STATE(40), - [sym_character_class] = STATE(40), - [sym_character_property] = STATE(40), - [sym_subroutine] = STATE(40), - [sym_backreference] = STATE(40), - [sym_unicode] = STATE(40), - [sym_meta_control_char] = STATE(40), - [aux_sym_literal_repeat1] = STATE(245), - [aux_sym_quantifier_repeat1] = STATE(243), - [aux_sym_capture_group_extended_repeat1] = STATE(40), - [aux_sym_comment_extended_repeat2] = STATE(252), - [aux_sym_meta_control_char_repeat1] = STATE(577), - [sym_backslash] = ACTIONS(337), - [aux_sym_literal_token1] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(341), - [aux_sym_quantifier_token1] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(347), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(349), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(351), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(353), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(355), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(357), - [anon_sym_SPACE] = ACTIONS(359), - [anon_sym_BSLASHn] = ACTIONS(359), - [anon_sym_BSLASHt] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(361), - [aux_sym_look_ahead_token1] = ACTIONS(363), - [aux_sym_look_behind_token1] = ACTIONS(365), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(371), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(373), - [aux_sym_character_property_token1] = ACTIONS(375), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(377), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(379), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(381), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(383), - [aux_sym_unicode_token1] = ACTIONS(385), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(387), - [sym__group_end_lookahead] = ACTIONS(418), - [sym__callout_syntax] = ACTIONS(391), - [sym__modify_syntax] = ACTIONS(393), - }, - [24] = { - [sym__expression_extended] = STATE(23), - [sym_literal] = STATE(23), - [sym_quantifier] = STATE(23), - [sym_alteration] = STATE(23), - [sym_capture_group_extended] = STATE(23), - [sym_non_capture_group_extended] = STATE(23), - [sym_atomic_group_extended] = STATE(23), - [sym_capture_group_name_extended] = STATE(23), - [sym_capture_group_conditional_extended] = STATE(23), - [sym_comment_group] = STATE(23), - [sym_comment_extended] = STATE(23), - [sym_modify] = STATE(23), - [sym__modify_extended] = STATE(23), - [sym_modify_extended_1] = STATE(80), - [sym_modify_extended_2] = STATE(23), - [sym_look_ahead_extended] = STATE(23), - [sym_look_behind_extended] = STATE(23), - [sym_callout] = STATE(23), - [sym_absent_extended] = STATE(23), - [sym_character_class] = STATE(23), - [sym_character_property] = STATE(23), - [sym_subroutine] = STATE(23), - [sym_backreference] = STATE(23), - [sym_unicode] = STATE(23), - [sym_meta_control_char] = STATE(23), - [aux_sym_literal_repeat1] = STATE(245), - [aux_sym_quantifier_repeat1] = STATE(243), - [aux_sym_capture_group_extended_repeat1] = STATE(23), - [aux_sym_comment_extended_repeat2] = STATE(252), - [aux_sym_meta_control_char_repeat1] = STATE(577), - [sym_backslash] = ACTIONS(420), - [aux_sym_literal_token1] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(341), - [aux_sym_quantifier_token1] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(347), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(349), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(351), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(353), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(355), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(357), - [anon_sym_SPACE] = ACTIONS(359), - [anon_sym_BSLASHn] = ACTIONS(359), - [anon_sym_BSLASHt] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(361), - [aux_sym_look_ahead_token1] = ACTIONS(363), - [aux_sym_look_behind_token1] = ACTIONS(365), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(371), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(373), - [aux_sym_character_property_token1] = ACTIONS(375), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(377), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(379), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(381), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(383), - [aux_sym_unicode_token1] = ACTIONS(385), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(387), - [sym__group_end_lookahead] = ACTIONS(422), - [sym__callout_syntax] = ACTIONS(391), - [sym__modify_syntax] = ACTIONS(393), - }, - [25] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [29] = { + [sym__expression_extended] = STATE(7), + [sym_literal] = STATE(7), + [sym_quantifier] = STATE(7), + [sym_alteration] = STATE(7), + [sym_capture_group_extended] = STATE(7), + [sym_non_capture_group_extended] = STATE(7), + [sym_atomic_group_extended] = STATE(7), + [sym_capture_group_name_extended] = STATE(7), + [sym_capture_group_conditional_extended] = STATE(7), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(7), + [sym_comment_extended] = STATE(7), + [sym_modify] = STATE(7), + [sym__modify_extended] = STATE(7), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(7), + [sym_look_ahead_extended] = STATE(7), + [sym_look_behind_extended] = STATE(7), + [sym_callout] = STATE(7), + [sym_absent_extended] = STATE(7), + [sym_character_class] = STATE(7), + [sym_character_property] = STATE(7), + [sym_subroutine] = STATE(7), + [sym_backreference] = STATE(7), + [sym_unicode] = STATE(7), + [sym_meta_control_char] = STATE(7), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(7), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(517), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(519), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_RPAREN] = ACTIONS(511), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -6081,75 +6299,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [26] = { - [sym__expression_extended] = STATE(16), - [sym_literal] = STATE(16), - [sym_quantifier] = STATE(16), - [sym_alteration] = STATE(16), - [sym_capture_group_extended] = STATE(16), - [sym_non_capture_group_extended] = STATE(16), - [sym_atomic_group_extended] = STATE(16), - [sym_capture_group_name_extended] = STATE(16), - [sym_capture_group_conditional_extended] = STATE(16), - [sym_comment_group] = STATE(16), - [sym_comment_extended] = STATE(16), - [sym_modify] = STATE(16), - [sym__modify_extended] = STATE(16), - [sym_modify_extended_1] = STATE(80), - [sym_modify_extended_2] = STATE(16), - [sym_look_ahead_extended] = STATE(16), - [sym_look_behind_extended] = STATE(16), - [sym_callout] = STATE(16), - [sym_absent_extended] = STATE(16), - [sym_character_class] = STATE(16), - [sym_character_property] = STATE(16), - [sym_subroutine] = STATE(16), - [sym_backreference] = STATE(16), - [sym_unicode] = STATE(16), - [sym_meta_control_char] = STATE(16), - [aux_sym_literal_repeat1] = STATE(245), - [aux_sym_quantifier_repeat1] = STATE(243), - [aux_sym_capture_group_extended_repeat1] = STATE(16), - [aux_sym_comment_extended_repeat2] = STATE(252), - [aux_sym_meta_control_char_repeat1] = STATE(577), - [sym_backslash] = ACTIONS(426), - [aux_sym_literal_token1] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(341), - [aux_sym_quantifier_token1] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(347), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(349), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(351), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(353), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(355), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(357), - [anon_sym_SPACE] = ACTIONS(359), - [anon_sym_BSLASHn] = ACTIONS(359), - [anon_sym_BSLASHt] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(361), - [aux_sym_look_ahead_token1] = ACTIONS(363), - [aux_sym_look_behind_token1] = ACTIONS(365), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(371), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(373), - [aux_sym_character_property_token1] = ACTIONS(375), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(377), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(379), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(381), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(383), - [aux_sym_unicode_token1] = ACTIONS(385), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(387), - [sym__group_end_lookahead] = ACTIONS(428), - [sym__callout_syntax] = ACTIONS(391), - [sym__modify_syntax] = ACTIONS(393), + [30] = { + [sym__expression_extended] = STATE(42), + [sym_literal] = STATE(42), + [sym_quantifier] = STATE(42), + [sym_alteration] = STATE(42), + [sym_capture_group_extended] = STATE(42), + [sym_non_capture_group_extended] = STATE(42), + [sym_atomic_group_extended] = STATE(42), + [sym_capture_group_name_extended] = STATE(42), + [sym_capture_group_conditional_extended] = STATE(42), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(42), + [sym_comment_extended] = STATE(42), + [sym_modify] = STATE(42), + [sym__modify_extended] = STATE(42), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(42), + [sym_look_ahead_extended] = STATE(42), + [sym_look_behind_extended] = STATE(42), + [sym_callout] = STATE(42), + [sym_absent_extended] = STATE(42), + [sym_character_class] = STATE(42), + [sym_character_property] = STATE(42), + [sym_subroutine] = STATE(42), + [sym_backreference] = STATE(42), + [sym_unicode] = STATE(42), + [sym_meta_control_char] = STATE(42), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(42), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(521), + [aux_sym_literal_token1] = ACTIONS(130), + [anon_sym_QMARK] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [aux_sym_quantifier_token1] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(524), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(145), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(148), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(151), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(154), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(157), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(160), + [anon_sym_SPACE] = ACTIONS(163), + [anon_sym_BSLASHn] = ACTIONS(163), + [anon_sym_BSLASHt] = ACTIONS(163), + [anon_sym_POUND] = ACTIONS(166), + [aux_sym_look_ahead_token1] = ACTIONS(169), + [aux_sym_look_behind_token1] = ACTIONS(172), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(181), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(184), + [aux_sym_character_property_token1] = ACTIONS(187), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(190), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(193), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(196), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(199), + [aux_sym_unicode_token1] = ACTIONS(202), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(205), + [sym__callout_syntax] = ACTIONS(208), + [sym__modify_syntax] = ACTIONS(211), }, - [27] = { + [31] = { [sym__expression_extended] = STATE(35), [sym_literal] = STATE(35), [sym_quantifier] = STATE(35), @@ -6159,11 +6378,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atomic_group_extended] = STATE(35), [sym_capture_group_name_extended] = STATE(35), [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), [sym_comment_group] = STATE(35), [sym_comment_extended] = STATE(35), [sym_modify] = STATE(35), [sym__modify_extended] = STATE(35), - [sym_modify_extended_1] = STATE(34), + [sym_modify_extended_1] = STATE(45), [sym_modify_extended_2] = STATE(35), [sym_look_ahead_extended] = STATE(35), [sym_look_behind_extended] = STATE(35), @@ -6175,20 +6395,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backreference] = STATE(35), [sym_unicode] = STATE(35), [sym_meta_control_char] = STATE(35), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), [aux_sym_capture_group_extended_repeat1] = STATE(35), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(430), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(527), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -6217,38 +6437,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [28] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [32] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -6256,7 +6477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(434), + [anon_sym_RPAREN] = ACTIONS(529), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -6285,38 +6506,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [29] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [33] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -6324,7 +6546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(436), + [anon_sym_RPAREN] = ACTIONS(531), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -6353,38 +6575,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [30] = { - [sym__expression_extended] = STATE(25), - [sym_literal] = STATE(25), - [sym_quantifier] = STATE(25), - [sym_alteration] = STATE(25), - [sym_capture_group_extended] = STATE(25), - [sym_non_capture_group_extended] = STATE(25), - [sym_atomic_group_extended] = STATE(25), - [sym_capture_group_name_extended] = STATE(25), - [sym_capture_group_conditional_extended] = STATE(25), - [sym_comment_group] = STATE(25), - [sym_comment_extended] = STATE(25), - [sym_modify] = STATE(25), - [sym__modify_extended] = STATE(25), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(25), - [sym_look_ahead_extended] = STATE(25), - [sym_look_behind_extended] = STATE(25), - [sym_callout] = STATE(25), - [sym_absent_extended] = STATE(25), - [sym_character_class] = STATE(25), - [sym_character_property] = STATE(25), - [sym_subroutine] = STATE(25), - [sym_backreference] = STATE(25), - [sym_unicode] = STATE(25), - [sym_meta_control_char] = STATE(25), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(25), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(438), + [34] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -6392,7 +6615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(533), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -6421,38 +6644,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [31] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [35] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(224), + [aux_sym_literal_token1] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_STAR] = ACTIONS(230), + [aux_sym_quantifier_token1] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(236), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(242), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(245), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(248), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(251), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(254), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(257), + [anon_sym_SPACE] = ACTIONS(260), + [anon_sym_BSLASHn] = ACTIONS(260), + [anon_sym_BSLASHt] = ACTIONS(260), + [anon_sym_POUND] = ACTIONS(263), + [aux_sym_look_ahead_token1] = ACTIONS(266), + [aux_sym_look_behind_token1] = ACTIONS(269), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(275), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(278), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(281), + [aux_sym_character_property_token1] = ACTIONS(284), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(287), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(290), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(293), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(296), + [aux_sym_unicode_token1] = ACTIONS(299), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(302), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(302), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(302), + [sym__callout_syntax] = ACTIONS(305), + [sym__modify_syntax] = ACTIONS(308), + }, + [36] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -6460,7 +6753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(442), + [anon_sym_RPAREN] = ACTIONS(535), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -6489,310 +6782,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [32] = { - [sym__expression_extended] = STATE(36), - [sym_literal] = STATE(36), - [sym_quantifier] = STATE(36), - [sym_alteration] = STATE(36), - [sym_capture_group_extended] = STATE(36), - [sym_non_capture_group_extended] = STATE(36), - [sym_atomic_group_extended] = STATE(36), - [sym_capture_group_name_extended] = STATE(36), - [sym_capture_group_conditional_extended] = STATE(36), - [sym_comment_group] = STATE(36), - [sym_comment_extended] = STATE(36), - [sym_modify] = STATE(36), - [sym__modify_extended] = STATE(36), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(36), - [sym_look_ahead_extended] = STATE(36), - [sym_look_behind_extended] = STATE(36), - [sym_callout] = STATE(36), - [sym_absent_extended] = STATE(36), - [sym_character_class] = STATE(36), - [sym_character_property] = STATE(36), - [sym_subroutine] = STATE(36), - [sym_backreference] = STATE(36), - [sym_unicode] = STATE(36), - [sym_meta_control_char] = STATE(36), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(36), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(444), - [aux_sym_literal_token1] = ACTIONS(136), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(139), - [aux_sym_quantifier_token1] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(142), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(447), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(151), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(154), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(157), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(160), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(163), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(166), - [anon_sym_SPACE] = ACTIONS(169), - [anon_sym_BSLASHn] = ACTIONS(169), - [anon_sym_BSLASHt] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [aux_sym_look_ahead_token1] = ACTIONS(175), - [aux_sym_look_behind_token1] = ACTIONS(178), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(187), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(190), - [aux_sym_character_property_token1] = ACTIONS(193), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(196), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(199), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(202), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(205), - [aux_sym_unicode_token1] = ACTIONS(208), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(211), - [sym__callout_syntax] = ACTIONS(214), - [sym__modify_syntax] = ACTIONS(217), - }, - [33] = { - [sym__expression_extended] = STATE(40), - [sym_literal] = STATE(40), - [sym_quantifier] = STATE(40), - [sym_alteration] = STATE(40), - [sym_capture_group_extended] = STATE(40), - [sym_non_capture_group_extended] = STATE(40), - [sym_atomic_group_extended] = STATE(40), - [sym_capture_group_name_extended] = STATE(40), - [sym_capture_group_conditional_extended] = STATE(40), - [sym_comment_group] = STATE(40), - [sym_comment_extended] = STATE(40), - [sym_modify] = STATE(40), - [sym__modify_extended] = STATE(40), - [sym_modify_extended_1] = STATE(80), - [sym_modify_extended_2] = STATE(40), - [sym_look_ahead_extended] = STATE(40), - [sym_look_behind_extended] = STATE(40), - [sym_callout] = STATE(40), - [sym_absent_extended] = STATE(40), - [sym_character_class] = STATE(40), - [sym_character_property] = STATE(40), - [sym_subroutine] = STATE(40), - [sym_backreference] = STATE(40), - [sym_unicode] = STATE(40), - [sym_meta_control_char] = STATE(40), - [aux_sym_literal_repeat1] = STATE(245), - [aux_sym_quantifier_repeat1] = STATE(243), - [aux_sym_capture_group_extended_repeat1] = STATE(40), - [aux_sym_comment_extended_repeat2] = STATE(252), - [aux_sym_meta_control_char_repeat1] = STATE(577), - [sym_backslash] = ACTIONS(337), - [aux_sym_literal_token1] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(341), - [aux_sym_quantifier_token1] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(347), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(349), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(351), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(353), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(355), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(357), - [anon_sym_SPACE] = ACTIONS(359), - [anon_sym_BSLASHn] = ACTIONS(359), - [anon_sym_BSLASHt] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(361), - [aux_sym_look_ahead_token1] = ACTIONS(363), - [aux_sym_look_behind_token1] = ACTIONS(365), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(371), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(373), - [aux_sym_character_property_token1] = ACTIONS(375), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(377), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(379), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(381), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(383), - [aux_sym_unicode_token1] = ACTIONS(385), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(387), - [sym__group_end_lookahead] = ACTIONS(450), - [sym__callout_syntax] = ACTIONS(391), - [sym__modify_syntax] = ACTIONS(393), - }, - [34] = { - [sym__expression_extended] = STATE(33), - [sym_literal] = STATE(33), - [sym_quantifier] = STATE(33), - [sym_alteration] = STATE(33), - [sym_capture_group_extended] = STATE(33), - [sym_non_capture_group_extended] = STATE(33), - [sym_atomic_group_extended] = STATE(33), - [sym_capture_group_name_extended] = STATE(33), - [sym_capture_group_conditional_extended] = STATE(33), - [sym_comment_group] = STATE(33), - [sym_comment_extended] = STATE(33), - [sym_modify] = STATE(33), - [sym__modify_extended] = STATE(33), - [sym_modify_extended_1] = STATE(80), - [sym_modify_extended_2] = STATE(33), - [sym_look_ahead_extended] = STATE(33), - [sym_look_behind_extended] = STATE(33), - [sym_callout] = STATE(33), - [sym_absent_extended] = STATE(33), - [sym_character_class] = STATE(33), - [sym_character_property] = STATE(33), - [sym_subroutine] = STATE(33), - [sym_backreference] = STATE(33), - [sym_unicode] = STATE(33), - [sym_meta_control_char] = STATE(33), - [aux_sym_literal_repeat1] = STATE(245), - [aux_sym_quantifier_repeat1] = STATE(243), - [aux_sym_capture_group_extended_repeat1] = STATE(33), - [aux_sym_comment_extended_repeat2] = STATE(252), - [aux_sym_meta_control_char_repeat1] = STATE(577), - [sym_backslash] = ACTIONS(452), - [aux_sym_literal_token1] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(341), - [aux_sym_quantifier_token1] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(347), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(349), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(351), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(353), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(355), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(357), - [anon_sym_SPACE] = ACTIONS(359), - [anon_sym_BSLASHn] = ACTIONS(359), - [anon_sym_BSLASHt] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(361), - [aux_sym_look_ahead_token1] = ACTIONS(363), - [aux_sym_look_behind_token1] = ACTIONS(365), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(371), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(373), - [aux_sym_character_property_token1] = ACTIONS(375), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(377), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(379), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(381), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(383), - [aux_sym_unicode_token1] = ACTIONS(385), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(387), - [sym__group_end_lookahead] = ACTIONS(454), - [sym__callout_syntax] = ACTIONS(391), - [sym__modify_syntax] = ACTIONS(393), - }, - [35] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(220), - [aux_sym_literal_token1] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(226), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_STAR] = ACTIONS(226), - [aux_sym_quantifier_token1] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_RPAREN] = ACTIONS(456), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(238), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(241), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(244), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(247), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(250), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(253), - [anon_sym_SPACE] = ACTIONS(256), - [anon_sym_BSLASHn] = ACTIONS(256), - [anon_sym_BSLASHt] = ACTIONS(256), - [anon_sym_POUND] = ACTIONS(259), - [aux_sym_look_ahead_token1] = ACTIONS(262), - [aux_sym_look_behind_token1] = ACTIONS(265), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(274), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(277), - [aux_sym_character_property_token1] = ACTIONS(280), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(283), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(286), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(289), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(292), - [aux_sym_unicode_token1] = ACTIONS(295), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(298), - [sym__callout_syntax] = ACTIONS(301), - [sym__modify_syntax] = ACTIONS(304), - }, - [36] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [37] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -6800,7 +6822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(537), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -6829,106 +6851,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [37] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(220), - [aux_sym_literal_token1] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(226), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_STAR] = ACTIONS(226), - [aux_sym_quantifier_token1] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_RPAREN] = ACTIONS(461), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(238), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(241), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(244), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(247), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(250), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(253), - [anon_sym_SPACE] = ACTIONS(256), - [anon_sym_BSLASHn] = ACTIONS(256), - [anon_sym_BSLASHt] = ACTIONS(256), - [anon_sym_POUND] = ACTIONS(259), - [aux_sym_look_ahead_token1] = ACTIONS(262), - [aux_sym_look_behind_token1] = ACTIONS(265), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(274), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(277), - [aux_sym_character_property_token1] = ACTIONS(280), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(283), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(286), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(289), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(292), - [aux_sym_unicode_token1] = ACTIONS(295), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(298), - [sym__callout_syntax] = ACTIONS(301), - [sym__modify_syntax] = ACTIONS(304), - }, [38] = { - [sym__expression_extended] = STATE(87), - [sym_literal] = STATE(87), - [sym_quantifier] = STATE(87), - [sym_alteration] = STATE(87), - [sym_capture_group_extended] = STATE(87), - [sym_non_capture_group_extended] = STATE(87), - [sym_atomic_group_extended] = STATE(87), - [sym_capture_group_name_extended] = STATE(87), - [sym_capture_group_conditional_extended] = STATE(87), - [sym_comment_group] = STATE(87), - [sym_comment_extended] = STATE(87), - [sym_modify] = STATE(87), - [sym__modify_extended] = STATE(87), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(87), - [sym_look_ahead_extended] = STATE(87), - [sym_look_behind_extended] = STATE(87), - [sym_callout] = STATE(87), - [sym_absent_extended] = STATE(87), - [sym_character_class] = STATE(87), - [sym_character_property] = STATE(87), - [sym_subroutine] = STATE(87), - [sym_backreference] = STATE(87), - [sym_unicode] = STATE(87), - [sym_meta_control_char] = STATE(87), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(87), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(463), + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -6936,7 +6891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(539), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -6966,37 +6921,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modify_syntax] = ACTIONS(121), }, [39] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -7004,7 +6960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(541), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -7034,181 +6990,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modify_syntax] = ACTIONS(121), }, [40] = { - [sym__expression_extended] = STATE(40), - [sym_literal] = STATE(40), - [sym_quantifier] = STATE(40), - [sym_alteration] = STATE(40), - [sym_capture_group_extended] = STATE(40), - [sym_non_capture_group_extended] = STATE(40), - [sym_atomic_group_extended] = STATE(40), - [sym_capture_group_name_extended] = STATE(40), - [sym_capture_group_conditional_extended] = STATE(40), - [sym_comment_group] = STATE(40), - [sym_comment_extended] = STATE(40), - [sym_modify] = STATE(40), - [sym__modify_extended] = STATE(40), - [sym_modify_extended_1] = STATE(80), - [sym_modify_extended_2] = STATE(40), - [sym_look_ahead_extended] = STATE(40), - [sym_look_behind_extended] = STATE(40), - [sym_callout] = STATE(40), - [sym_absent_extended] = STATE(40), - [sym_character_class] = STATE(40), - [sym_character_property] = STATE(40), - [sym_subroutine] = STATE(40), - [sym_backreference] = STATE(40), - [sym_unicode] = STATE(40), - [sym_meta_control_char] = STATE(40), - [aux_sym_literal_repeat1] = STATE(245), - [aux_sym_quantifier_repeat1] = STATE(243), - [aux_sym_capture_group_extended_repeat1] = STATE(40), - [aux_sym_comment_extended_repeat2] = STATE(252), - [aux_sym_meta_control_char_repeat1] = STATE(577), - [sym_backslash] = ACTIONS(469), - [aux_sym_literal_token1] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_STAR] = ACTIONS(475), - [aux_sym_quantifier_token1] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(484), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(487), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(490), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(493), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(496), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(499), - [anon_sym_SPACE] = ACTIONS(502), - [anon_sym_BSLASHn] = ACTIONS(502), - [anon_sym_BSLASHt] = ACTIONS(502), - [anon_sym_POUND] = ACTIONS(505), - [aux_sym_look_ahead_token1] = ACTIONS(508), - [aux_sym_look_behind_token1] = ACTIONS(511), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(514), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(520), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(523), - [aux_sym_character_property_token1] = ACTIONS(526), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(529), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(532), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(535), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(538), - [aux_sym_unicode_token1] = ACTIONS(541), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(544), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(544), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(544), - [sym__group_end_lookahead] = ACTIONS(461), - [sym__callout_syntax] = ACTIONS(547), - [sym__modify_syntax] = ACTIONS(550), + [sym__expression_extended] = STATE(51), + [sym_literal] = STATE(51), + [sym_quantifier] = STATE(51), + [sym_alteration] = STATE(51), + [sym_capture_group_extended] = STATE(51), + [sym_non_capture_group_extended] = STATE(51), + [sym_atomic_group_extended] = STATE(51), + [sym_capture_group_name_extended] = STATE(51), + [sym_capture_group_conditional_extended] = STATE(51), + [sym_capture_group_condition_extended] = STATE(68), + [sym_comment_group] = STATE(51), + [sym_comment_extended] = STATE(51), + [sym_modify] = STATE(51), + [sym__modify_extended] = STATE(51), + [sym_modify_extended_1] = STATE(64), + [sym_modify_extended_2] = STATE(51), + [sym_look_ahead_extended] = STATE(51), + [sym_look_behind_extended] = STATE(51), + [sym_callout] = STATE(51), + [sym_absent_extended] = STATE(51), + [sym_character_class] = STATE(51), + [sym_character_property] = STATE(51), + [sym_subroutine] = STATE(51), + [sym_backreference] = STATE(51), + [sym_unicode] = STATE(51), + [sym_meta_control_char] = STATE(51), + [aux_sym_literal_repeat1] = STATE(215), + [aux_sym_quantifier_repeat1] = STATE(213), + [aux_sym_capture_group_extended_repeat1] = STATE(51), + [aux_sym_comment_extended_repeat2] = STATE(221), + [aux_sym_meta_control_char_repeat1] = STATE(548), + [sym_backslash] = ACTIONS(543), + [aux_sym_literal_token1] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [aux_sym_quantifier_token1] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(342), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(344), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(346), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(348), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(350), + [anon_sym_SPACE] = ACTIONS(352), + [anon_sym_BSLASHn] = ACTIONS(352), + [anon_sym_BSLASHt] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(354), + [aux_sym_look_ahead_token1] = ACTIONS(356), + [aux_sym_look_behind_token1] = ACTIONS(358), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(364), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(366), + [aux_sym_character_property_token1] = ACTIONS(368), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(370), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(372), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(374), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(376), + [aux_sym_unicode_token1] = ACTIONS(378), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(380), + [sym__group_end_lookahead] = ACTIONS(545), + [sym__callout_syntax] = ACTIONS(384), + [sym__modify_syntax] = ACTIONS(386), }, [41] = { - [sym__expression_extended] = STATE(59), - [sym_literal] = STATE(59), - [sym_quantifier] = STATE(59), - [sym_alteration] = STATE(59), - [sym_capture_group_extended] = STATE(59), - [sym_non_capture_group_extended] = STATE(59), - [sym_atomic_group_extended] = STATE(59), - [sym_capture_group_name_extended] = STATE(59), - [sym_capture_group_conditional_extended] = STATE(59), - [sym_comment_group] = STATE(59), - [sym_comment_extended] = STATE(59), - [sym_modify] = STATE(59), - [sym__modify_extended] = STATE(59), - [sym_modify_extended_1] = STATE(80), - [sym_modify_extended_2] = STATE(59), - [sym_look_ahead_extended] = STATE(59), - [sym_look_behind_extended] = STATE(59), - [sym_callout] = STATE(59), - [sym_absent_extended] = STATE(59), - [sym_character_class] = STATE(59), - [sym_character_property] = STATE(59), - [sym_subroutine] = STATE(59), - [sym_backreference] = STATE(59), - [sym_unicode] = STATE(59), - [sym_meta_control_char] = STATE(59), - [aux_sym_literal_repeat1] = STATE(245), - [aux_sym_quantifier_repeat1] = STATE(243), - [aux_sym_capture_group_extended_repeat1] = STATE(59), - [aux_sym_comment_extended_repeat2] = STATE(252), - [aux_sym_meta_control_char_repeat1] = STATE(577), - [sym_backslash] = ACTIONS(553), - [aux_sym_literal_token1] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(341), - [aux_sym_quantifier_token1] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(347), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(349), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(351), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(353), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(355), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(357), - [anon_sym_SPACE] = ACTIONS(359), - [anon_sym_BSLASHn] = ACTIONS(359), - [anon_sym_BSLASHt] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(361), - [aux_sym_look_ahead_token1] = ACTIONS(363), - [aux_sym_look_behind_token1] = ACTIONS(365), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(371), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(373), - [aux_sym_character_property_token1] = ACTIONS(375), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(377), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(379), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(381), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(383), - [aux_sym_unicode_token1] = ACTIONS(385), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(387), - [sym__group_end_lookahead] = ACTIONS(555), - [sym__callout_syntax] = ACTIONS(391), - [sym__modify_syntax] = ACTIONS(393), - }, - [42] = { - [sym__expression_extended] = STATE(7), - [sym_literal] = STATE(7), - [sym_quantifier] = STATE(7), - [sym_alteration] = STATE(7), - [sym_capture_group_extended] = STATE(7), - [sym_non_capture_group_extended] = STATE(7), - [sym_atomic_group_extended] = STATE(7), - [sym_capture_group_name_extended] = STATE(7), - [sym_capture_group_conditional_extended] = STATE(7), - [sym_comment_group] = STATE(7), - [sym_comment_extended] = STATE(7), - [sym_modify] = STATE(7), - [sym__modify_extended] = STATE(7), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(7), - [sym_look_ahead_extended] = STATE(7), - [sym_look_behind_extended] = STATE(7), - [sym_callout] = STATE(7), - [sym_absent_extended] = STATE(7), - [sym_character_class] = STATE(7), - [sym_character_property] = STATE(7), - [sym_subroutine] = STATE(7), - [sym_backreference] = STATE(7), - [sym_unicode] = STATE(7), - [sym_meta_control_char] = STATE(7), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(7), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(557), + [sym__expression_extended] = STATE(53), + [sym_literal] = STATE(53), + [sym_quantifier] = STATE(53), + [sym_alteration] = STATE(53), + [sym_capture_group_extended] = STATE(53), + [sym_non_capture_group_extended] = STATE(53), + [sym_atomic_group_extended] = STATE(53), + [sym_capture_group_name_extended] = STATE(53), + [sym_capture_group_conditional_extended] = STATE(53), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(53), + [sym_comment_extended] = STATE(53), + [sym_modify] = STATE(53), + [sym__modify_extended] = STATE(53), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(53), + [sym_look_ahead_extended] = STATE(53), + [sym_look_behind_extended] = STATE(53), + [sym_callout] = STATE(53), + [sym_absent_extended] = STATE(53), + [sym_character_class] = STATE(53), + [sym_character_property] = STATE(53), + [sym_subroutine] = STATE(53), + [sym_backreference] = STATE(53), + [sym_unicode] = STATE(53), + [sym_meta_control_char] = STATE(53), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(53), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(547), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(549), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -7237,106 +7127,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [43] = { - [sym__expression_extended] = STATE(9), - [sym_literal] = STATE(9), - [sym_quantifier] = STATE(9), - [sym_alteration] = STATE(9), - [sym_capture_group_extended] = STATE(9), - [sym_non_capture_group_extended] = STATE(9), - [sym_atomic_group_extended] = STATE(9), - [sym_capture_group_name_extended] = STATE(9), - [sym_capture_group_conditional_extended] = STATE(9), - [sym_comment_group] = STATE(9), - [sym_comment_extended] = STATE(9), - [sym_modify] = STATE(9), - [sym__modify_extended] = STATE(9), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(9), - [sym_look_ahead_extended] = STATE(9), - [sym_look_behind_extended] = STATE(9), - [sym_callout] = STATE(9), - [sym_absent_extended] = STATE(9), - [sym_character_class] = STATE(9), - [sym_character_property] = STATE(9), - [sym_subroutine] = STATE(9), - [sym_backreference] = STATE(9), - [sym_unicode] = STATE(9), - [sym_meta_control_char] = STATE(9), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(9), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(561), - [aux_sym_literal_token1] = ACTIONS(136), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(139), - [aux_sym_quantifier_token1] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(142), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(564), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(151), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(154), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(157), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(160), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(163), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(166), - [anon_sym_SPACE] = ACTIONS(169), - [anon_sym_BSLASHn] = ACTIONS(169), - [anon_sym_BSLASHt] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [aux_sym_look_ahead_token1] = ACTIONS(175), - [aux_sym_look_behind_token1] = ACTIONS(178), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(187), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(190), - [aux_sym_character_property_token1] = ACTIONS(193), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(196), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(199), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(202), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(205), - [aux_sym_unicode_token1] = ACTIONS(208), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(211), - [sym__callout_syntax] = ACTIONS(214), - [sym__modify_syntax] = ACTIONS(217), - }, - [44] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [42] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -7344,7 +7167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(551), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -7373,46 +7196,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [45] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [43] = { + [sym__expression_extended] = STATE(10), + [sym_literal] = STATE(10), + [sym_quantifier] = STATE(10), + [sym_alteration] = STATE(10), + [sym_capture_group_extended] = STATE(10), + [sym_non_capture_group_extended] = STATE(10), + [sym_atomic_group_extended] = STATE(10), + [sym_capture_group_name_extended] = STATE(10), + [sym_capture_group_conditional_extended] = STATE(10), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(10), + [sym_comment_extended] = STATE(10), + [sym_modify] = STATE(10), + [sym__modify_extended] = STATE(10), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(10), + [sym_look_ahead_extended] = STATE(10), + [sym_look_behind_extended] = STATE(10), + [sym_callout] = STATE(10), + [sym_absent_extended] = STATE(10), + [sym_character_class] = STATE(10), + [sym_character_property] = STATE(10), + [sym_subroutine] = STATE(10), + [sym_backreference] = STATE(10), + [sym_unicode] = STATE(10), + [sym_meta_control_char] = STATE(10), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(10), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(553), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(557), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -7441,38 +7265,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [46] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [44] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -7480,7 +7305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(559), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -7509,46 +7334,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [47] = { - [sym__expression_extended] = STATE(12), - [sym_literal] = STATE(12), - [sym_quantifier] = STATE(12), - [sym_alteration] = STATE(12), - [sym_capture_group_extended] = STATE(12), - [sym_non_capture_group_extended] = STATE(12), - [sym_atomic_group_extended] = STATE(12), - [sym_capture_group_name_extended] = STATE(12), - [sym_capture_group_conditional_extended] = STATE(12), - [sym_comment_group] = STATE(12), - [sym_comment_extended] = STATE(12), - [sym_modify] = STATE(12), - [sym__modify_extended] = STATE(12), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(12), - [sym_look_ahead_extended] = STATE(12), - [sym_look_behind_extended] = STATE(12), - [sym_callout] = STATE(12), - [sym_absent_extended] = STATE(12), - [sym_character_class] = STATE(12), - [sym_character_property] = STATE(12), - [sym_subroutine] = STATE(12), - [sym_backreference] = STATE(12), - [sym_unicode] = STATE(12), - [sym_meta_control_char] = STATE(12), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(12), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(573), + [45] = { + [sym__expression_extended] = STATE(24), + [sym_literal] = STATE(24), + [sym_quantifier] = STATE(24), + [sym_alteration] = STATE(24), + [sym_capture_group_extended] = STATE(24), + [sym_non_capture_group_extended] = STATE(24), + [sym_atomic_group_extended] = STATE(24), + [sym_capture_group_name_extended] = STATE(24), + [sym_capture_group_conditional_extended] = STATE(24), + [sym_capture_group_condition_extended] = STATE(68), + [sym_comment_group] = STATE(24), + [sym_comment_extended] = STATE(24), + [sym_modify] = STATE(24), + [sym__modify_extended] = STATE(24), + [sym_modify_extended_1] = STATE(64), + [sym_modify_extended_2] = STATE(24), + [sym_look_ahead_extended] = STATE(24), + [sym_look_behind_extended] = STATE(24), + [sym_callout] = STATE(24), + [sym_absent_extended] = STATE(24), + [sym_character_class] = STATE(24), + [sym_character_property] = STATE(24), + [sym_subroutine] = STATE(24), + [sym_backreference] = STATE(24), + [sym_unicode] = STATE(24), + [sym_meta_control_char] = STATE(24), + [aux_sym_literal_repeat1] = STATE(215), + [aux_sym_quantifier_repeat1] = STATE(213), + [aux_sym_capture_group_extended_repeat1] = STATE(24), + [aux_sym_comment_extended_repeat2] = STATE(221), + [aux_sym_meta_control_char_repeat1] = STATE(548), + [sym_backslash] = ACTIONS(561), + [aux_sym_literal_token1] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [aux_sym_quantifier_token1] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(342), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(344), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(346), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(348), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(350), + [anon_sym_SPACE] = ACTIONS(352), + [anon_sym_BSLASHn] = ACTIONS(352), + [anon_sym_BSLASHt] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(354), + [aux_sym_look_ahead_token1] = ACTIONS(356), + [aux_sym_look_behind_token1] = ACTIONS(358), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(364), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(366), + [aux_sym_character_property_token1] = ACTIONS(368), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(370), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(372), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(374), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(376), + [aux_sym_unicode_token1] = ACTIONS(378), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(380), + [sym__group_end_lookahead] = ACTIONS(563), + [sym__callout_syntax] = ACTIONS(384), + [sym__modify_syntax] = ACTIONS(386), + }, + [46] = { + [sym__expression_extended] = STATE(59), + [sym_literal] = STATE(59), + [sym_quantifier] = STATE(59), + [sym_alteration] = STATE(59), + [sym_capture_group_extended] = STATE(59), + [sym_non_capture_group_extended] = STATE(59), + [sym_atomic_group_extended] = STATE(59), + [sym_capture_group_name_extended] = STATE(59), + [sym_capture_group_conditional_extended] = STATE(59), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(59), + [sym_comment_extended] = STATE(59), + [sym_modify] = STATE(59), + [sym__modify_extended] = STATE(59), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(59), + [sym_look_ahead_extended] = STATE(59), + [sym_look_behind_extended] = STATE(59), + [sym_callout] = STATE(59), + [sym_absent_extended] = STATE(59), + [sym_character_class] = STATE(59), + [sym_character_property] = STATE(59), + [sym_subroutine] = STATE(59), + [sym_backreference] = STATE(59), + [sym_unicode] = STATE(59), + [sym_meta_control_char] = STATE(59), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(59), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(565), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(575), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_RPAREN] = ACTIONS(569), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -7577,38 +7472,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [48] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [47] = { + [sym__expression_extended] = STATE(34), + [sym_literal] = STATE(34), + [sym_quantifier] = STATE(34), + [sym_alteration] = STATE(34), + [sym_capture_group_extended] = STATE(34), + [sym_non_capture_group_extended] = STATE(34), + [sym_atomic_group_extended] = STATE(34), + [sym_capture_group_name_extended] = STATE(34), + [sym_capture_group_conditional_extended] = STATE(34), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(34), + [sym_comment_extended] = STATE(34), + [sym_modify] = STATE(34), + [sym__modify_extended] = STATE(34), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(34), + [sym_look_ahead_extended] = STATE(34), + [sym_look_behind_extended] = STATE(34), + [sym_callout] = STATE(34), + [sym_absent_extended] = STATE(34), + [sym_character_class] = STATE(34), + [sym_character_property] = STATE(34), + [sym_subroutine] = STATE(34), + [sym_backreference] = STATE(34), + [sym_unicode] = STATE(34), + [sym_meta_control_char] = STATE(34), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(34), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(571), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -7616,7 +7512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_RPAREN] = ACTIONS(573), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -7645,7 +7541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [49] = { + [48] = { [sym__expression_extended] = STATE(61), [sym_literal] = STATE(61), [sym_quantifier] = STATE(61), @@ -7655,11 +7551,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atomic_group_extended] = STATE(61), [sym_capture_group_name_extended] = STATE(61), [sym_capture_group_conditional_extended] = STATE(61), + [sym_capture_group_condition_extended] = STATE(49), [sym_comment_group] = STATE(61), [sym_comment_extended] = STATE(61), [sym_modify] = STATE(61), [sym__modify_extended] = STATE(61), - [sym_modify_extended_1] = STATE(34), + [sym_modify_extended_1] = STATE(45), [sym_modify_extended_2] = STATE(61), [sym_look_ahead_extended] = STATE(61), [sym_look_behind_extended] = STATE(61), @@ -7671,12 +7568,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backreference] = STATE(61), [sym_unicode] = STATE(61), [sym_meta_control_char] = STATE(61), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), [aux_sym_capture_group_extended_repeat1] = STATE(61), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(581), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(575), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -7684,7 +7581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_RPAREN] = ACTIONS(569), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -7713,46 +7610,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [50] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [49] = { + [sym__expression_extended] = STATE(75), + [sym_literal] = STATE(75), + [sym_quantifier] = STATE(75), + [sym_alteration] = STATE(75), + [sym_capture_group_extended] = STATE(75), + [sym_non_capture_group_extended] = STATE(75), + [sym_atomic_group_extended] = STATE(75), + [sym_capture_group_name_extended] = STATE(75), + [sym_capture_group_conditional_extended] = STATE(75), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(75), + [sym_comment_extended] = STATE(75), + [sym_modify] = STATE(75), + [sym__modify_extended] = STATE(75), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(75), + [sym_look_ahead_extended] = STATE(75), + [sym_look_behind_extended] = STATE(75), + [sym_callout] = STATE(75), + [sym_absent_extended] = STATE(75), + [sym_character_class] = STATE(75), + [sym_character_property] = STATE(75), + [sym_subroutine] = STATE(75), + [sym_backreference] = STATE(75), + [sym_unicode] = STATE(75), + [sym_meta_control_char] = STATE(75), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(75), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(577), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(579), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(581), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -7781,37 +7679,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, + [50] = { + [sym__expression_extended] = STATE(20), + [sym_literal] = STATE(20), + [sym_quantifier] = STATE(20), + [sym_alteration] = STATE(20), + [sym_capture_group_extended] = STATE(20), + [sym_non_capture_group_extended] = STATE(20), + [sym_atomic_group_extended] = STATE(20), + [sym_capture_group_name_extended] = STATE(20), + [sym_capture_group_conditional_extended] = STATE(20), + [sym_capture_group_condition_extended] = STATE(68), + [sym_comment_group] = STATE(20), + [sym_comment_extended] = STATE(20), + [sym_modify] = STATE(20), + [sym__modify_extended] = STATE(20), + [sym_modify_extended_1] = STATE(64), + [sym_modify_extended_2] = STATE(20), + [sym_look_ahead_extended] = STATE(20), + [sym_look_behind_extended] = STATE(20), + [sym_callout] = STATE(20), + [sym_absent_extended] = STATE(20), + [sym_character_class] = STATE(20), + [sym_character_property] = STATE(20), + [sym_subroutine] = STATE(20), + [sym_backreference] = STATE(20), + [sym_unicode] = STATE(20), + [sym_meta_control_char] = STATE(20), + [aux_sym_literal_repeat1] = STATE(215), + [aux_sym_quantifier_repeat1] = STATE(213), + [aux_sym_capture_group_extended_repeat1] = STATE(20), + [aux_sym_comment_extended_repeat2] = STATE(221), + [aux_sym_meta_control_char_repeat1] = STATE(548), + [sym_backslash] = ACTIONS(332), + [aux_sym_literal_token1] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [aux_sym_quantifier_token1] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(342), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(344), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(346), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(348), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(350), + [anon_sym_SPACE] = ACTIONS(352), + [anon_sym_BSLASHn] = ACTIONS(352), + [anon_sym_BSLASHt] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(354), + [aux_sym_look_ahead_token1] = ACTIONS(356), + [aux_sym_look_behind_token1] = ACTIONS(358), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(364), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(366), + [aux_sym_character_property_token1] = ACTIONS(368), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(370), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(372), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(374), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(376), + [aux_sym_unicode_token1] = ACTIONS(378), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(380), + [sym__group_end_lookahead] = ACTIONS(583), + [sym__callout_syntax] = ACTIONS(384), + [sym__modify_syntax] = ACTIONS(386), + }, [51] = { - [sym__expression_extended] = STATE(62), - [sym_literal] = STATE(62), - [sym_quantifier] = STATE(62), - [sym_alteration] = STATE(62), - [sym_capture_group_extended] = STATE(62), - [sym_non_capture_group_extended] = STATE(62), - [sym_atomic_group_extended] = STATE(62), - [sym_capture_group_name_extended] = STATE(62), - [sym_capture_group_conditional_extended] = STATE(62), - [sym_comment_group] = STATE(62), - [sym_comment_extended] = STATE(62), - [sym_modify] = STATE(62), - [sym__modify_extended] = STATE(62), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(62), - [sym_look_ahead_extended] = STATE(62), - [sym_look_behind_extended] = STATE(62), - [sym_callout] = STATE(62), - [sym_absent_extended] = STATE(62), - [sym_character_class] = STATE(62), - [sym_character_property] = STATE(62), - [sym_subroutine] = STATE(62), - [sym_backreference] = STATE(62), - [sym_unicode] = STATE(62), - [sym_meta_control_char] = STATE(62), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(62), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), + [sym__expression_extended] = STATE(20), + [sym_literal] = STATE(20), + [sym_quantifier] = STATE(20), + [sym_alteration] = STATE(20), + [sym_capture_group_extended] = STATE(20), + [sym_non_capture_group_extended] = STATE(20), + [sym_atomic_group_extended] = STATE(20), + [sym_capture_group_name_extended] = STATE(20), + [sym_capture_group_conditional_extended] = STATE(20), + [sym_capture_group_condition_extended] = STATE(68), + [sym_comment_group] = STATE(20), + [sym_comment_extended] = STATE(20), + [sym_modify] = STATE(20), + [sym__modify_extended] = STATE(20), + [sym_modify_extended_1] = STATE(64), + [sym_modify_extended_2] = STATE(20), + [sym_look_ahead_extended] = STATE(20), + [sym_look_behind_extended] = STATE(20), + [sym_callout] = STATE(20), + [sym_absent_extended] = STATE(20), + [sym_character_class] = STATE(20), + [sym_character_property] = STATE(20), + [sym_subroutine] = STATE(20), + [sym_backreference] = STATE(20), + [sym_unicode] = STATE(20), + [sym_meta_control_char] = STATE(20), + [aux_sym_literal_repeat1] = STATE(215), + [aux_sym_quantifier_repeat1] = STATE(213), + [aux_sym_capture_group_extended_repeat1] = STATE(20), + [aux_sym_comment_extended_repeat2] = STATE(221), + [aux_sym_meta_control_char_repeat1] = STATE(548), + [sym_backslash] = ACTIONS(332), + [aux_sym_literal_token1] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [aux_sym_quantifier_token1] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(342), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(344), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(346), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(348), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(350), + [anon_sym_SPACE] = ACTIONS(352), + [anon_sym_BSLASHn] = ACTIONS(352), + [anon_sym_BSLASHt] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(354), + [aux_sym_look_ahead_token1] = ACTIONS(356), + [aux_sym_look_behind_token1] = ACTIONS(358), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(364), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(366), + [aux_sym_character_property_token1] = ACTIONS(368), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(370), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(372), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(374), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(376), + [aux_sym_unicode_token1] = ACTIONS(378), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(380), + [sym__group_end_lookahead] = ACTIONS(585), + [sym__callout_syntax] = ACTIONS(384), + [sym__modify_syntax] = ACTIONS(386), + }, + [52] = { + [sym__expression_extended] = STATE(73), + [sym_literal] = STATE(73), + [sym_quantifier] = STATE(73), + [sym_alteration] = STATE(73), + [sym_capture_group_extended] = STATE(73), + [sym_non_capture_group_extended] = STATE(73), + [sym_atomic_group_extended] = STATE(73), + [sym_capture_group_name_extended] = STATE(73), + [sym_capture_group_conditional_extended] = STATE(73), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(73), + [sym_comment_extended] = STATE(73), + [sym_modify] = STATE(73), + [sym__modify_extended] = STATE(73), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(73), + [sym_look_ahead_extended] = STATE(73), + [sym_look_behind_extended] = STATE(73), + [sym_callout] = STATE(73), + [sym_absent_extended] = STATE(73), + [sym_character_class] = STATE(73), + [sym_character_property] = STATE(73), + [sym_subroutine] = STATE(73), + [sym_backreference] = STATE(73), + [sym_unicode] = STATE(73), + [sym_meta_control_char] = STATE(73), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(73), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), [sym_backslash] = ACTIONS(587), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), @@ -7849,38 +7886,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [52] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [53] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -7917,46 +7955,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [53] = { - [sym__expression_extended] = STATE(79), - [sym_literal] = STATE(79), - [sym_quantifier] = STATE(79), - [sym_alteration] = STATE(79), - [sym_capture_group_extended] = STATE(79), - [sym_non_capture_group_extended] = STATE(79), - [sym_atomic_group_extended] = STATE(79), - [sym_capture_group_name_extended] = STATE(79), - [sym_capture_group_conditional_extended] = STATE(79), - [sym_comment_group] = STATE(79), - [sym_comment_extended] = STATE(79), - [sym_modify] = STATE(79), - [sym__modify_extended] = STATE(79), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(79), - [sym_look_ahead_extended] = STATE(79), - [sym_look_behind_extended] = STATE(79), - [sym_callout] = STATE(79), - [sym_absent_extended] = STATE(79), - [sym_character_class] = STATE(79), - [sym_character_property] = STATE(79), - [sym_subroutine] = STATE(79), - [sym_backreference] = STATE(79), - [sym_unicode] = STATE(79), - [sym_meta_control_char] = STATE(79), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(79), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(593), + [54] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(593), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -7985,38 +8024,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [54] = { - [sym__expression_extended] = STATE(63), - [sym_literal] = STATE(63), - [sym_quantifier] = STATE(63), - [sym_alteration] = STATE(63), - [sym_capture_group_extended] = STATE(63), - [sym_non_capture_group_extended] = STATE(63), - [sym_atomic_group_extended] = STATE(63), - [sym_capture_group_name_extended] = STATE(63), - [sym_capture_group_conditional_extended] = STATE(63), - [sym_comment_group] = STATE(63), - [sym_comment_extended] = STATE(63), - [sym_modify] = STATE(63), - [sym__modify_extended] = STATE(63), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(63), - [sym_look_ahead_extended] = STATE(63), - [sym_look_behind_extended] = STATE(63), - [sym_callout] = STATE(63), - [sym_absent_extended] = STATE(63), - [sym_character_class] = STATE(63), - [sym_character_property] = STATE(63), - [sym_subroutine] = STATE(63), - [sym_backreference] = STATE(63), - [sym_unicode] = STATE(63), - [sym_meta_control_char] = STATE(63), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(63), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(599), + [55] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -8024,7 +8064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_RPAREN] = ACTIONS(595), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8053,38 +8093,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [55] = { - [sym__expression_extended] = STATE(66), - [sym_literal] = STATE(66), - [sym_quantifier] = STATE(66), - [sym_alteration] = STATE(66), - [sym_capture_group_extended] = STATE(66), - [sym_non_capture_group_extended] = STATE(66), - [sym_atomic_group_extended] = STATE(66), - [sym_capture_group_name_extended] = STATE(66), - [sym_capture_group_conditional_extended] = STATE(66), - [sym_comment_group] = STATE(66), - [sym_comment_extended] = STATE(66), - [sym_modify] = STATE(66), - [sym__modify_extended] = STATE(66), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(66), - [sym_look_ahead_extended] = STATE(66), - [sym_look_behind_extended] = STATE(66), - [sym_callout] = STATE(66), - [sym_absent_extended] = STATE(66), - [sym_character_class] = STATE(66), - [sym_character_property] = STATE(66), - [sym_subroutine] = STATE(66), - [sym_backreference] = STATE(66), - [sym_unicode] = STATE(66), - [sym_meta_control_char] = STATE(66), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(66), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(603), + [56] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -8092,7 +8133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_RPAREN] = ACTIONS(597), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8121,46 +8162,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [56] = { - [sym__expression_extended] = STATE(68), - [sym_literal] = STATE(68), - [sym_quantifier] = STATE(68), - [sym_alteration] = STATE(68), - [sym_capture_group_extended] = STATE(68), - [sym_non_capture_group_extended] = STATE(68), - [sym_atomic_group_extended] = STATE(68), - [sym_capture_group_name_extended] = STATE(68), - [sym_capture_group_conditional_extended] = STATE(68), - [sym_comment_group] = STATE(68), - [sym_comment_extended] = STATE(68), - [sym_modify] = STATE(68), - [sym__modify_extended] = STATE(68), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(68), - [sym_look_ahead_extended] = STATE(68), - [sym_look_behind_extended] = STATE(68), - [sym_callout] = STATE(68), - [sym_absent_extended] = STATE(68), - [sym_character_class] = STATE(68), - [sym_character_property] = STATE(68), - [sym_subroutine] = STATE(68), - [sym_backreference] = STATE(68), - [sym_unicode] = STATE(68), - [sym_meta_control_char] = STATE(68), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(68), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(607), - [aux_sym_literal_token1] = ACTIONS(59), + [57] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), + [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_RPAREN] = ACTIONS(599), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8189,46 +8231,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [57] = { - [sym__expression_extended] = STATE(71), - [sym_literal] = STATE(71), - [sym_quantifier] = STATE(71), - [sym_alteration] = STATE(71), - [sym_capture_group_extended] = STATE(71), - [sym_non_capture_group_extended] = STATE(71), - [sym_atomic_group_extended] = STATE(71), - [sym_capture_group_name_extended] = STATE(71), - [sym_capture_group_conditional_extended] = STATE(71), - [sym_comment_group] = STATE(71), - [sym_comment_extended] = STATE(71), - [sym_modify] = STATE(71), - [sym__modify_extended] = STATE(71), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(71), - [sym_look_ahead_extended] = STATE(71), - [sym_look_behind_extended] = STATE(71), - [sym_callout] = STATE(71), - [sym_absent_extended] = STATE(71), - [sym_character_class] = STATE(71), - [sym_character_property] = STATE(71), - [sym_subroutine] = STATE(71), - [sym_backreference] = STATE(71), - [sym_unicode] = STATE(71), - [sym_meta_control_char] = STATE(71), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(71), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(611), + [58] = { + [sym__expression_extended] = STATE(39), + [sym_literal] = STATE(39), + [sym_quantifier] = STATE(39), + [sym_alteration] = STATE(39), + [sym_capture_group_extended] = STATE(39), + [sym_non_capture_group_extended] = STATE(39), + [sym_atomic_group_extended] = STATE(39), + [sym_capture_group_name_extended] = STATE(39), + [sym_capture_group_conditional_extended] = STATE(39), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(39), + [sym_comment_extended] = STATE(39), + [sym_modify] = STATE(39), + [sym__modify_extended] = STATE(39), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(39), + [sym_look_ahead_extended] = STATE(39), + [sym_look_behind_extended] = STATE(39), + [sym_callout] = STATE(39), + [sym_absent_extended] = STATE(39), + [sym_character_class] = STATE(39), + [sym_character_property] = STATE(39), + [sym_subroutine] = STATE(39), + [sym_backreference] = STATE(39), + [sym_unicode] = STATE(39), + [sym_meta_control_char] = STATE(39), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(39), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(601), + [aux_sym_literal_token1] = ACTIONS(130), + [anon_sym_QMARK] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [aux_sym_quantifier_token1] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(604), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(145), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(148), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(151), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(154), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(157), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(160), + [anon_sym_SPACE] = ACTIONS(163), + [anon_sym_BSLASHn] = ACTIONS(163), + [anon_sym_BSLASHt] = ACTIONS(163), + [anon_sym_POUND] = ACTIONS(166), + [aux_sym_look_ahead_token1] = ACTIONS(169), + [aux_sym_look_behind_token1] = ACTIONS(172), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(181), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(184), + [aux_sym_character_property_token1] = ACTIONS(187), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(190), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(193), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(196), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(199), + [aux_sym_unicode_token1] = ACTIONS(202), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(205), + [sym__callout_syntax] = ACTIONS(208), + [sym__modify_syntax] = ACTIONS(211), + }, + [59] = { + [sym__expression_extended] = STATE(85), + [sym_literal] = STATE(85), + [sym_quantifier] = STATE(85), + [sym_alteration] = STATE(85), + [sym_capture_group_extended] = STATE(85), + [sym_non_capture_group_extended] = STATE(85), + [sym_atomic_group_extended] = STATE(85), + [sym_capture_group_name_extended] = STATE(85), + [sym_capture_group_conditional_extended] = STATE(85), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(85), + [sym_comment_extended] = STATE(85), + [sym_modify] = STATE(85), + [sym__modify_extended] = STATE(85), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(85), + [sym_look_ahead_extended] = STATE(85), + [sym_look_behind_extended] = STATE(85), + [sym_callout] = STATE(85), + [sym_absent_extended] = STATE(85), + [sym_character_class] = STATE(85), + [sym_character_property] = STATE(85), + [sym_subroutine] = STATE(85), + [sym_backreference] = STATE(85), + [sym_unicode] = STATE(85), + [sym_meta_control_char] = STATE(85), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(85), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(607), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(609), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_RPAREN] = ACTIONS(611), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8257,38 +8369,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [58] = { - [sym__expression_extended] = STATE(72), - [sym_literal] = STATE(72), - [sym_quantifier] = STATE(72), - [sym_alteration] = STATE(72), - [sym_capture_group_extended] = STATE(72), - [sym_non_capture_group_extended] = STATE(72), - [sym_atomic_group_extended] = STATE(72), - [sym_capture_group_name_extended] = STATE(72), - [sym_capture_group_conditional_extended] = STATE(72), - [sym_comment_group] = STATE(72), - [sym_comment_extended] = STATE(72), - [sym_modify] = STATE(72), - [sym__modify_extended] = STATE(72), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(72), - [sym_look_ahead_extended] = STATE(72), - [sym_look_behind_extended] = STATE(72), - [sym_callout] = STATE(72), - [sym_absent_extended] = STATE(72), - [sym_character_class] = STATE(72), - [sym_character_property] = STATE(72), - [sym_subroutine] = STATE(72), - [sym_backreference] = STATE(72), - [sym_unicode] = STATE(72), - [sym_meta_control_char] = STATE(72), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(72), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(617), + [60] = { + [sym__expression_extended] = STATE(16), + [sym_literal] = STATE(16), + [sym_quantifier] = STATE(16), + [sym_alteration] = STATE(16), + [sym_capture_group_extended] = STATE(16), + [sym_non_capture_group_extended] = STATE(16), + [sym_atomic_group_extended] = STATE(16), + [sym_capture_group_name_extended] = STATE(16), + [sym_capture_group_conditional_extended] = STATE(16), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(16), + [sym_comment_extended] = STATE(16), + [sym_modify] = STATE(16), + [sym__modify_extended] = STATE(16), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(16), + [sym_look_ahead_extended] = STATE(16), + [sym_look_behind_extended] = STATE(16), + [sym_callout] = STATE(16), + [sym_absent_extended] = STATE(16), + [sym_character_class] = STATE(16), + [sym_character_property] = STATE(16), + [sym_subroutine] = STATE(16), + [sym_backreference] = STATE(16), + [sym_unicode] = STATE(16), + [sym_meta_control_char] = STATE(16), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(16), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(613), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -8325,106 +8438,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [59] = { - [sym__expression_extended] = STATE(40), - [sym_literal] = STATE(40), - [sym_quantifier] = STATE(40), - [sym_alteration] = STATE(40), - [sym_capture_group_extended] = STATE(40), - [sym_non_capture_group_extended] = STATE(40), - [sym_atomic_group_extended] = STATE(40), - [sym_capture_group_name_extended] = STATE(40), - [sym_capture_group_conditional_extended] = STATE(40), - [sym_comment_group] = STATE(40), - [sym_comment_extended] = STATE(40), - [sym_modify] = STATE(40), - [sym__modify_extended] = STATE(40), - [sym_modify_extended_1] = STATE(80), - [sym_modify_extended_2] = STATE(40), - [sym_look_ahead_extended] = STATE(40), - [sym_look_behind_extended] = STATE(40), - [sym_callout] = STATE(40), - [sym_absent_extended] = STATE(40), - [sym_character_class] = STATE(40), - [sym_character_property] = STATE(40), - [sym_subroutine] = STATE(40), - [sym_backreference] = STATE(40), - [sym_unicode] = STATE(40), - [sym_meta_control_char] = STATE(40), - [aux_sym_literal_repeat1] = STATE(245), - [aux_sym_quantifier_repeat1] = STATE(243), - [aux_sym_capture_group_extended_repeat1] = STATE(40), - [aux_sym_comment_extended_repeat2] = STATE(252), - [aux_sym_meta_control_char_repeat1] = STATE(577), - [sym_backslash] = ACTIONS(337), - [aux_sym_literal_token1] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(341), - [aux_sym_quantifier_token1] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(347), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(349), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(351), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(353), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(355), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(357), - [anon_sym_SPACE] = ACTIONS(359), - [anon_sym_BSLASHn] = ACTIONS(359), - [anon_sym_BSLASHt] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(361), - [aux_sym_look_ahead_token1] = ACTIONS(363), - [aux_sym_look_behind_token1] = ACTIONS(365), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(371), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(373), - [aux_sym_character_property_token1] = ACTIONS(375), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(377), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(379), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(381), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(383), - [aux_sym_unicode_token1] = ACTIONS(385), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(387), - [sym__group_end_lookahead] = ACTIONS(619), - [sym__callout_syntax] = ACTIONS(391), - [sym__modify_syntax] = ACTIONS(393), - }, - [60] = { - [sym__expression_extended] = STATE(73), - [sym_literal] = STATE(73), - [sym_quantifier] = STATE(73), - [sym_alteration] = STATE(73), - [sym_capture_group_extended] = STATE(73), - [sym_non_capture_group_extended] = STATE(73), - [sym_atomic_group_extended] = STATE(73), - [sym_capture_group_name_extended] = STATE(73), - [sym_capture_group_conditional_extended] = STATE(73), - [sym_comment_group] = STATE(73), - [sym_comment_extended] = STATE(73), - [sym_modify] = STATE(73), - [sym__modify_extended] = STATE(73), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(73), - [sym_look_ahead_extended] = STATE(73), - [sym_look_behind_extended] = STATE(73), - [sym_callout] = STATE(73), - [sym_absent_extended] = STATE(73), - [sym_character_class] = STATE(73), - [sym_character_property] = STATE(73), - [sym_subroutine] = STATE(73), - [sym_backreference] = STATE(73), - [sym_unicode] = STATE(73), - [sym_meta_control_char] = STATE(73), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(73), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(621), + [61] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -8432,7 +8478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(611), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8461,38 +8507,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [61] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [62] = { + [sym__expression_extended] = STATE(56), + [sym_literal] = STATE(56), + [sym_quantifier] = STATE(56), + [sym_alteration] = STATE(56), + [sym_capture_group_extended] = STATE(56), + [sym_non_capture_group_extended] = STATE(56), + [sym_atomic_group_extended] = STATE(56), + [sym_capture_group_name_extended] = STATE(56), + [sym_capture_group_conditional_extended] = STATE(56), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(56), + [sym_comment_extended] = STATE(56), + [sym_modify] = STATE(56), + [sym__modify_extended] = STATE(56), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(56), + [sym_look_ahead_extended] = STATE(56), + [sym_look_behind_extended] = STATE(56), + [sym_callout] = STATE(56), + [sym_absent_extended] = STATE(56), + [sym_character_class] = STATE(56), + [sym_character_property] = STATE(56), + [sym_subroutine] = STATE(56), + [sym_backreference] = STATE(56), + [sym_unicode] = STATE(56), + [sym_meta_control_char] = STATE(56), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(56), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(617), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -8500,7 +8547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_RPAREN] = ACTIONS(619), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8529,38 +8576,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [62] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [63] = { + [sym__expression_extended] = STATE(80), + [sym_literal] = STATE(80), + [sym_quantifier] = STATE(80), + [sym_alteration] = STATE(80), + [sym_capture_group_extended] = STATE(80), + [sym_non_capture_group_extended] = STATE(80), + [sym_atomic_group_extended] = STATE(80), + [sym_capture_group_name_extended] = STATE(80), + [sym_capture_group_conditional_extended] = STATE(80), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(80), + [sym_comment_extended] = STATE(80), + [sym_modify] = STATE(80), + [sym__modify_extended] = STATE(80), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(80), + [sym_look_ahead_extended] = STATE(80), + [sym_look_behind_extended] = STATE(80), + [sym_callout] = STATE(80), + [sym_absent_extended] = STATE(80), + [sym_character_class] = STATE(80), + [sym_character_property] = STATE(80), + [sym_subroutine] = STATE(80), + [sym_backreference] = STATE(80), + [sym_unicode] = STATE(80), + [sym_meta_control_char] = STATE(80), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(80), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(621), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -8568,7 +8616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(627), + [anon_sym_RPAREN] = ACTIONS(623), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8597,38 +8645,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [63] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [64] = { + [sym__expression_extended] = STATE(50), + [sym_literal] = STATE(50), + [sym_quantifier] = STATE(50), + [sym_alteration] = STATE(50), + [sym_capture_group_extended] = STATE(50), + [sym_non_capture_group_extended] = STATE(50), + [sym_atomic_group_extended] = STATE(50), + [sym_capture_group_name_extended] = STATE(50), + [sym_capture_group_conditional_extended] = STATE(50), + [sym_capture_group_condition_extended] = STATE(68), + [sym_comment_group] = STATE(50), + [sym_comment_extended] = STATE(50), + [sym_modify] = STATE(50), + [sym__modify_extended] = STATE(50), + [sym_modify_extended_1] = STATE(64), + [sym_modify_extended_2] = STATE(50), + [sym_look_ahead_extended] = STATE(50), + [sym_look_behind_extended] = STATE(50), + [sym_callout] = STATE(50), + [sym_absent_extended] = STATE(50), + [sym_character_class] = STATE(50), + [sym_character_property] = STATE(50), + [sym_subroutine] = STATE(50), + [sym_backreference] = STATE(50), + [sym_unicode] = STATE(50), + [sym_meta_control_char] = STATE(50), + [aux_sym_literal_repeat1] = STATE(215), + [aux_sym_quantifier_repeat1] = STATE(213), + [aux_sym_capture_group_extended_repeat1] = STATE(50), + [aux_sym_comment_extended_repeat2] = STATE(221), + [aux_sym_meta_control_char_repeat1] = STATE(548), + [sym_backslash] = ACTIONS(625), + [aux_sym_literal_token1] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [aux_sym_quantifier_token1] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(342), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(344), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(346), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(348), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(350), + [anon_sym_SPACE] = ACTIONS(352), + [anon_sym_BSLASHn] = ACTIONS(352), + [anon_sym_BSLASHt] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(354), + [aux_sym_look_ahead_token1] = ACTIONS(356), + [aux_sym_look_behind_token1] = ACTIONS(358), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(364), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(366), + [aux_sym_character_property_token1] = ACTIONS(368), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(370), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(372), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(374), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(376), + [aux_sym_unicode_token1] = ACTIONS(378), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(380), + [sym__group_end_lookahead] = ACTIONS(627), + [sym__callout_syntax] = ACTIONS(384), + [sym__modify_syntax] = ACTIONS(386), + }, + [65] = { + [sym__expression_extended] = STATE(31), + [sym_literal] = STATE(31), + [sym_quantifier] = STATE(31), + [sym_alteration] = STATE(31), + [sym_capture_group_extended] = STATE(31), + [sym_non_capture_group_extended] = STATE(31), + [sym_atomic_group_extended] = STATE(31), + [sym_capture_group_name_extended] = STATE(31), + [sym_capture_group_conditional_extended] = STATE(31), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(31), + [sym_comment_extended] = STATE(31), + [sym_modify] = STATE(31), + [sym__modify_extended] = STATE(31), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(31), + [sym_look_ahead_extended] = STATE(31), + [sym_look_behind_extended] = STATE(31), + [sym_callout] = STATE(31), + [sym_absent_extended] = STATE(31), + [sym_character_class] = STATE(31), + [sym_character_property] = STATE(31), + [sym_subroutine] = STATE(31), + [sym_backreference] = STATE(31), + [sym_unicode] = STATE(31), + [sym_meta_control_char] = STATE(31), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(31), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(629), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -8636,7 +8754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_RPAREN] = ACTIONS(631), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8665,46 +8783,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [64] = { - [sym__expression_extended] = STATE(52), - [sym_literal] = STATE(52), - [sym_quantifier] = STATE(52), - [sym_alteration] = STATE(52), - [sym_capture_group_extended] = STATE(52), - [sym_non_capture_group_extended] = STATE(52), - [sym_atomic_group_extended] = STATE(52), - [sym_capture_group_name_extended] = STATE(52), - [sym_capture_group_conditional_extended] = STATE(52), - [sym_comment_group] = STATE(52), - [sym_comment_extended] = STATE(52), - [sym_modify] = STATE(52), - [sym__modify_extended] = STATE(52), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(52), - [sym_look_ahead_extended] = STATE(52), - [sym_look_behind_extended] = STATE(52), - [sym_callout] = STATE(52), - [sym_absent_extended] = STATE(52), - [sym_character_class] = STATE(52), - [sym_character_property] = STATE(52), - [sym_subroutine] = STATE(52), - [sym_backreference] = STATE(52), - [sym_unicode] = STATE(52), - [sym_meta_control_char] = STATE(52), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(52), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(631), + [66] = { + [sym__expression_extended] = STATE(29), + [sym_literal] = STATE(29), + [sym_quantifier] = STATE(29), + [sym_alteration] = STATE(29), + [sym_capture_group_extended] = STATE(29), + [sym_non_capture_group_extended] = STATE(29), + [sym_atomic_group_extended] = STATE(29), + [sym_capture_group_name_extended] = STATE(29), + [sym_capture_group_conditional_extended] = STATE(29), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(29), + [sym_comment_extended] = STATE(29), + [sym_modify] = STATE(29), + [sym__modify_extended] = STATE(29), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(29), + [sym_look_ahead_extended] = STATE(29), + [sym_look_behind_extended] = STATE(29), + [sym_callout] = STATE(29), + [sym_absent_extended] = STATE(29), + [sym_character_class] = STATE(29), + [sym_character_property] = STATE(29), + [sym_subroutine] = STATE(29), + [sym_backreference] = STATE(29), + [sym_unicode] = STATE(29), + [sym_meta_control_char] = STATE(29), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(29), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(633), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(635), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(637), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8733,46 +8852,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [65] = { - [sym__expression_extended] = STATE(53), - [sym_literal] = STATE(53), - [sym_quantifier] = STATE(53), - [sym_alteration] = STATE(53), - [sym_capture_group_extended] = STATE(53), - [sym_non_capture_group_extended] = STATE(53), - [sym_atomic_group_extended] = STATE(53), - [sym_capture_group_name_extended] = STATE(53), - [sym_capture_group_conditional_extended] = STATE(53), - [sym_comment_group] = STATE(53), - [sym_comment_extended] = STATE(53), - [sym_modify] = STATE(53), - [sym__modify_extended] = STATE(53), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(53), - [sym_look_ahead_extended] = STATE(53), - [sym_look_behind_extended] = STATE(53), - [sym_callout] = STATE(53), - [sym_absent_extended] = STATE(53), - [sym_character_class] = STATE(53), - [sym_character_property] = STATE(53), - [sym_subroutine] = STATE(53), - [sym_backreference] = STATE(53), - [sym_unicode] = STATE(53), - [sym_meta_control_char] = STATE(53), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(53), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(635), + [67] = { + [sym__expression_extended] = STATE(27), + [sym_literal] = STATE(27), + [sym_quantifier] = STATE(27), + [sym_alteration] = STATE(27), + [sym_capture_group_extended] = STATE(27), + [sym_non_capture_group_extended] = STATE(27), + [sym_atomic_group_extended] = STATE(27), + [sym_capture_group_name_extended] = STATE(27), + [sym_capture_group_conditional_extended] = STATE(27), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(27), + [sym_comment_extended] = STATE(27), + [sym_modify] = STATE(27), + [sym__modify_extended] = STATE(27), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(27), + [sym_look_ahead_extended] = STATE(27), + [sym_look_behind_extended] = STATE(27), + [sym_callout] = STATE(27), + [sym_absent_extended] = STATE(27), + [sym_character_class] = STATE(27), + [sym_character_property] = STATE(27), + [sym_subroutine] = STATE(27), + [sym_backreference] = STATE(27), + [sym_unicode] = STATE(27), + [sym_meta_control_char] = STATE(27), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(27), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(639), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(639), + [anon_sym_RPAREN] = ACTIONS(637), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8801,46 +8921,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [66] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [68] = { + [sym__expression_extended] = STATE(43), + [sym_literal] = STATE(43), + [sym_quantifier] = STATE(43), + [sym_alteration] = STATE(43), + [sym_capture_group_extended] = STATE(43), + [sym_non_capture_group_extended] = STATE(43), + [sym_atomic_group_extended] = STATE(43), + [sym_capture_group_name_extended] = STATE(43), + [sym_capture_group_conditional_extended] = STATE(43), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(43), + [sym_comment_extended] = STATE(43), + [sym_modify] = STATE(43), + [sym__modify_extended] = STATE(43), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(43), + [sym_look_ahead_extended] = STATE(43), + [sym_look_behind_extended] = STATE(43), + [sym_callout] = STATE(43), + [sym_absent_extended] = STATE(43), + [sym_character_class] = STATE(43), + [sym_character_property] = STATE(43), + [sym_subroutine] = STATE(43), + [sym_backreference] = STATE(43), + [sym_unicode] = STATE(43), + [sym_meta_control_char] = STATE(43), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(43), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(641), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(643), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_RPAREN] = ACTIONS(645), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8869,46 +8990,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [67] = { - [sym__expression_extended] = STATE(42), - [sym_literal] = STATE(42), - [sym_quantifier] = STATE(42), - [sym_alteration] = STATE(42), - [sym_capture_group_extended] = STATE(42), - [sym_non_capture_group_extended] = STATE(42), - [sym_atomic_group_extended] = STATE(42), - [sym_capture_group_name_extended] = STATE(42), - [sym_capture_group_conditional_extended] = STATE(42), - [sym_comment_group] = STATE(42), - [sym_comment_extended] = STATE(42), - [sym_modify] = STATE(42), - [sym__modify_extended] = STATE(42), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(42), - [sym_look_ahead_extended] = STATE(42), - [sym_look_behind_extended] = STATE(42), - [sym_callout] = STATE(42), - [sym_absent_extended] = STATE(42), - [sym_character_class] = STATE(42), - [sym_character_property] = STATE(42), - [sym_subroutine] = STATE(42), - [sym_backreference] = STATE(42), - [sym_unicode] = STATE(42), - [sym_meta_control_char] = STATE(42), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(42), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(643), + [69] = { + [sym__expression_extended] = STATE(38), + [sym_literal] = STATE(38), + [sym_quantifier] = STATE(38), + [sym_alteration] = STATE(38), + [sym_capture_group_extended] = STATE(38), + [sym_non_capture_group_extended] = STATE(38), + [sym_atomic_group_extended] = STATE(38), + [sym_capture_group_name_extended] = STATE(38), + [sym_capture_group_conditional_extended] = STATE(38), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(38), + [sym_comment_extended] = STATE(38), + [sym_modify] = STATE(38), + [sym__modify_extended] = STATE(38), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(38), + [sym_look_ahead_extended] = STATE(38), + [sym_look_behind_extended] = STATE(38), + [sym_callout] = STATE(38), + [sym_absent_extended] = STATE(38), + [sym_character_class] = STATE(38), + [sym_character_property] = STATE(38), + [sym_subroutine] = STATE(38), + [sym_backreference] = STATE(38), + [sym_unicode] = STATE(38), + [sym_meta_control_char] = STATE(38), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(38), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(647), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(649), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -8937,7 +9059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [68] = { + [70] = { [sym__expression_extended] = STATE(37), [sym_literal] = STATE(37), [sym_quantifier] = STATE(37), @@ -8947,11 +9069,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atomic_group_extended] = STATE(37), [sym_capture_group_name_extended] = STATE(37), [sym_capture_group_conditional_extended] = STATE(37), + [sym_capture_group_condition_extended] = STATE(49), [sym_comment_group] = STATE(37), [sym_comment_extended] = STATE(37), [sym_modify] = STATE(37), [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), + [sym_modify_extended_1] = STATE(45), [sym_modify_extended_2] = STATE(37), [sym_look_ahead_extended] = STATE(37), [sym_look_behind_extended] = STATE(37), @@ -8963,12 +9086,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_backreference] = STATE(37), [sym_unicode] = STATE(37), [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(651), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -8976,7 +9099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(647), + [anon_sym_RPAREN] = ACTIONS(653), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -9005,185 +9128,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [69] = { - [sym__expression_extended] = STATE(76), - [sym_literal] = STATE(76), - [sym_quantifier] = STATE(76), - [sym_alteration] = STATE(76), - [sym_capture_group_extended] = STATE(76), - [sym_non_capture_group_extended] = STATE(76), - [sym_atomic_group_extended] = STATE(76), - [sym_capture_group_name_extended] = STATE(76), - [sym_capture_group_conditional_extended] = STATE(76), - [sym_comment_group] = STATE(76), - [sym_comment_extended] = STATE(76), - [sym_modify] = STATE(76), - [sym__modify_extended] = STATE(76), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(76), - [sym_look_ahead_extended] = STATE(76), - [sym_look_behind_extended] = STATE(76), - [sym_callout] = STATE(76), - [sym_absent_extended] = STATE(76), - [sym_character_class] = STATE(76), - [sym_character_property] = STATE(76), - [sym_subroutine] = STATE(76), - [sym_backreference] = STATE(76), - [sym_unicode] = STATE(76), - [sym_meta_control_char] = STATE(76), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(76), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(649), - [aux_sym_literal_token1] = ACTIONS(136), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(139), - [aux_sym_quantifier_token1] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(142), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(151), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(154), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(157), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(160), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(163), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(166), - [anon_sym_SPACE] = ACTIONS(169), - [anon_sym_BSLASHn] = ACTIONS(169), - [anon_sym_BSLASHt] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [aux_sym_look_ahead_token1] = ACTIONS(175), - [aux_sym_look_behind_token1] = ACTIONS(178), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(187), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(190), - [aux_sym_character_property_token1] = ACTIONS(193), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(196), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(199), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(202), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(205), - [aux_sym_unicode_token1] = ACTIONS(208), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(211), - [sym__callout_syntax] = ACTIONS(214), - [sym__modify_syntax] = ACTIONS(217), - }, - [70] = { - [sym__expression_extended] = STATE(40), - [sym_literal] = STATE(40), - [sym_quantifier] = STATE(40), - [sym_alteration] = STATE(40), - [sym_capture_group_extended] = STATE(40), - [sym_non_capture_group_extended] = STATE(40), - [sym_atomic_group_extended] = STATE(40), - [sym_capture_group_name_extended] = STATE(40), - [sym_capture_group_conditional_extended] = STATE(40), - [sym_comment_group] = STATE(40), - [sym_comment_extended] = STATE(40), - [sym_modify] = STATE(40), - [sym__modify_extended] = STATE(40), - [sym_modify_extended_1] = STATE(80), - [sym_modify_extended_2] = STATE(40), - [sym_look_ahead_extended] = STATE(40), - [sym_look_behind_extended] = STATE(40), - [sym_callout] = STATE(40), - [sym_absent_extended] = STATE(40), - [sym_character_class] = STATE(40), - [sym_character_property] = STATE(40), - [sym_subroutine] = STATE(40), - [sym_backreference] = STATE(40), - [sym_unicode] = STATE(40), - [sym_meta_control_char] = STATE(40), - [aux_sym_literal_repeat1] = STATE(245), - [aux_sym_quantifier_repeat1] = STATE(243), - [aux_sym_capture_group_extended_repeat1] = STATE(40), - [aux_sym_comment_extended_repeat2] = STATE(252), - [aux_sym_meta_control_char_repeat1] = STATE(577), - [sym_backslash] = ACTIONS(337), - [aux_sym_literal_token1] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(341), - [aux_sym_quantifier_token1] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(347), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(349), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(351), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(353), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(355), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(357), - [anon_sym_SPACE] = ACTIONS(359), - [anon_sym_BSLASHn] = ACTIONS(359), - [anon_sym_BSLASHt] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(361), - [aux_sym_look_ahead_token1] = ACTIONS(363), - [aux_sym_look_behind_token1] = ACTIONS(365), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(371), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(373), - [aux_sym_character_property_token1] = ACTIONS(375), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(377), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(379), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(381), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(383), - [aux_sym_unicode_token1] = ACTIONS(385), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(387), - [sym__group_end_lookahead] = ACTIONS(655), - [sym__callout_syntax] = ACTIONS(391), - [sym__modify_syntax] = ACTIONS(393), - }, [71] = { - [sym__expression_extended] = STATE(95), - [sym_literal] = STATE(95), - [sym_quantifier] = STATE(95), - [sym_alteration] = STATE(95), - [sym_capture_group_extended] = STATE(95), - [sym_non_capture_group_extended] = STATE(95), - [sym_atomic_group_extended] = STATE(95), - [sym_capture_group_name_extended] = STATE(95), - [sym_capture_group_conditional_extended] = STATE(95), - [sym_comment_group] = STATE(95), - [sym_comment_extended] = STATE(95), - [sym_modify] = STATE(95), - [sym__modify_extended] = STATE(95), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(95), - [sym_look_ahead_extended] = STATE(95), - [sym_look_behind_extended] = STATE(95), - [sym_callout] = STATE(95), - [sym_absent_extended] = STATE(95), - [sym_character_class] = STATE(95), - [sym_character_property] = STATE(95), - [sym_subroutine] = STATE(95), - [sym_backreference] = STATE(95), - [sym_unicode] = STATE(95), - [sym_meta_control_char] = STATE(95), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(95), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(657), - [aux_sym_literal_token1] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), + [sym__expression_extended] = STATE(36), + [sym_literal] = STATE(36), + [sym_quantifier] = STATE(36), + [sym_alteration] = STATE(36), + [sym_capture_group_extended] = STATE(36), + [sym_non_capture_group_extended] = STATE(36), + [sym_atomic_group_extended] = STATE(36), + [sym_capture_group_name_extended] = STATE(36), + [sym_capture_group_conditional_extended] = STATE(36), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(36), + [sym_comment_extended] = STATE(36), + [sym_modify] = STATE(36), + [sym__modify_extended] = STATE(36), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(36), + [sym_look_ahead_extended] = STATE(36), + [sym_look_behind_extended] = STATE(36), + [sym_callout] = STATE(36), + [sym_absent_extended] = STATE(36), + [sym_character_class] = STATE(36), + [sym_character_property] = STATE(36), + [sym_subroutine] = STATE(36), + [sym_backreference] = STATE(36), + [sym_unicode] = STATE(36), + [sym_meta_control_char] = STATE(36), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(36), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(655), + [aux_sym_literal_token1] = ACTIONS(59), + [anon_sym_QMARK] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(61), + [aux_sym_quantifier_token1] = ACTIONS(61), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(657), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), @@ -9210,37 +9198,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modify_syntax] = ACTIONS(121), }, [72] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [sym__expression_extended] = STATE(20), + [sym_literal] = STATE(20), + [sym_quantifier] = STATE(20), + [sym_alteration] = STATE(20), + [sym_capture_group_extended] = STATE(20), + [sym_non_capture_group_extended] = STATE(20), + [sym_atomic_group_extended] = STATE(20), + [sym_capture_group_name_extended] = STATE(20), + [sym_capture_group_conditional_extended] = STATE(20), + [sym_capture_group_condition_extended] = STATE(68), + [sym_comment_group] = STATE(20), + [sym_comment_extended] = STATE(20), + [sym_modify] = STATE(20), + [sym__modify_extended] = STATE(20), + [sym_modify_extended_1] = STATE(64), + [sym_modify_extended_2] = STATE(20), + [sym_look_ahead_extended] = STATE(20), + [sym_look_behind_extended] = STATE(20), + [sym_callout] = STATE(20), + [sym_absent_extended] = STATE(20), + [sym_character_class] = STATE(20), + [sym_character_property] = STATE(20), + [sym_subroutine] = STATE(20), + [sym_backreference] = STATE(20), + [sym_unicode] = STATE(20), + [sym_meta_control_char] = STATE(20), + [aux_sym_literal_repeat1] = STATE(215), + [aux_sym_quantifier_repeat1] = STATE(213), + [aux_sym_capture_group_extended_repeat1] = STATE(20), + [aux_sym_comment_extended_repeat2] = STATE(221), + [aux_sym_meta_control_char_repeat1] = STATE(548), + [sym_backslash] = ACTIONS(332), + [aux_sym_literal_token1] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [aux_sym_quantifier_token1] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(342), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(344), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(346), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(348), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(350), + [anon_sym_SPACE] = ACTIONS(352), + [anon_sym_BSLASHn] = ACTIONS(352), + [anon_sym_BSLASHt] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(354), + [aux_sym_look_ahead_token1] = ACTIONS(356), + [aux_sym_look_behind_token1] = ACTIONS(358), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(364), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(366), + [aux_sym_character_property_token1] = ACTIONS(368), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(370), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(372), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(374), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(376), + [aux_sym_unicode_token1] = ACTIONS(378), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(380), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(380), + [sym__group_end_lookahead] = ACTIONS(659), + [sym__callout_syntax] = ACTIONS(384), + [sym__modify_syntax] = ACTIONS(386), + }, + [73] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -9277,38 +9335,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [73] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [74] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -9345,114 +9404,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [74] = { - [sym__expression_extended] = STATE(77), - [sym_literal] = STATE(77), - [sym_quantifier] = STATE(77), - [sym_alteration] = STATE(77), - [sym_capture_group_extended] = STATE(77), - [sym_non_capture_group_extended] = STATE(77), - [sym_atomic_group_extended] = STATE(77), - [sym_capture_group_name_extended] = STATE(77), - [sym_capture_group_conditional_extended] = STATE(77), - [sym_comment_group] = STATE(77), - [sym_comment_extended] = STATE(77), - [sym_modify] = STATE(77), - [sym__modify_extended] = STATE(77), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(77), - [sym_look_ahead_extended] = STATE(77), - [sym_look_behind_extended] = STATE(77), - [sym_callout] = STATE(77), - [sym_absent_extended] = STATE(77), - [sym_character_class] = STATE(77), - [sym_character_property] = STATE(77), - [sym_subroutine] = STATE(77), - [sym_backreference] = STATE(77), - [sym_unicode] = STATE(77), - [sym_meta_control_char] = STATE(77), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(77), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(665), - [aux_sym_literal_token1] = ACTIONS(136), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(139), - [aux_sym_quantifier_token1] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(142), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(151), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(154), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(157), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(160), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(163), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(166), - [anon_sym_SPACE] = ACTIONS(169), - [anon_sym_BSLASHn] = ACTIONS(169), - [anon_sym_BSLASHt] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [aux_sym_look_ahead_token1] = ACTIONS(175), - [aux_sym_look_behind_token1] = ACTIONS(178), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(187), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(190), - [aux_sym_character_property_token1] = ACTIONS(193), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(196), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(199), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(202), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(205), - [aux_sym_unicode_token1] = ACTIONS(208), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(211), - [sym__callout_syntax] = ACTIONS(214), - [sym__modify_syntax] = ACTIONS(217), - }, [75] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [sym__expression_extended] = STATE(82), + [sym_literal] = STATE(82), + [sym_quantifier] = STATE(82), + [sym_alteration] = STATE(82), + [sym_capture_group_extended] = STATE(82), + [sym_non_capture_group_extended] = STATE(82), + [sym_atomic_group_extended] = STATE(82), + [sym_capture_group_name_extended] = STATE(82), + [sym_capture_group_conditional_extended] = STATE(82), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(82), + [sym_comment_extended] = STATE(82), + [sym_modify] = STATE(82), + [sym__modify_extended] = STATE(82), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(82), + [sym_look_ahead_extended] = STATE(82), + [sym_look_behind_extended] = STATE(82), + [sym_callout] = STATE(82), + [sym_absent_extended] = STATE(82), + [sym_character_class] = STATE(82), + [sym_character_property] = STATE(82), + [sym_subroutine] = STATE(82), + [sym_backreference] = STATE(82), + [sym_unicode] = STATE(82), + [sym_meta_control_char] = STATE(82), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(82), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(665), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(667), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(671), + [anon_sym_RPAREN] = ACTIONS(669), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -9482,45 +9474,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modify_syntax] = ACTIONS(121), }, [76] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), - [aux_sym_literal_token1] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), + [aux_sym_literal_token1] = ACTIONS(59), + [anon_sym_QMARK] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(61), + [aux_sym_quantifier_token1] = ACTIONS(61), + [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(671), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -9550,37 +9543,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modify_syntax] = ACTIONS(121), }, [77] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -9588,7 +9582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(675), + [anon_sym_RPAREN] = ACTIONS(673), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -9618,45 +9612,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modify_syntax] = ACTIONS(121), }, [78] = { - [sym__expression_extended] = STATE(89), - [sym_literal] = STATE(89), - [sym_quantifier] = STATE(89), - [sym_alteration] = STATE(89), - [sym_capture_group_extended] = STATE(89), - [sym_non_capture_group_extended] = STATE(89), - [sym_atomic_group_extended] = STATE(89), - [sym_capture_group_name_extended] = STATE(89), - [sym_capture_group_conditional_extended] = STATE(89), - [sym_comment_group] = STATE(89), - [sym_comment_extended] = STATE(89), - [sym_modify] = STATE(89), - [sym__modify_extended] = STATE(89), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(89), - [sym_look_ahead_extended] = STATE(89), - [sym_look_behind_extended] = STATE(89), - [sym_callout] = STATE(89), - [sym_absent_extended] = STATE(89), - [sym_character_class] = STATE(89), - [sym_character_property] = STATE(89), - [sym_subroutine] = STATE(89), - [sym_backreference] = STATE(89), - [sym_unicode] = STATE(89), - [sym_meta_control_char] = STATE(89), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(89), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(677), + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(675), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -9686,181 +9681,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modify_syntax] = ACTIONS(121), }, [79] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(220), - [aux_sym_literal_token1] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(226), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_STAR] = ACTIONS(226), - [aux_sym_quantifier_token1] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(238), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(241), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(244), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(247), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(250), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(253), - [anon_sym_SPACE] = ACTIONS(256), - [anon_sym_BSLASHn] = ACTIONS(256), - [anon_sym_BSLASHt] = ACTIONS(256), - [anon_sym_POUND] = ACTIONS(259), - [aux_sym_look_ahead_token1] = ACTIONS(262), - [aux_sym_look_behind_token1] = ACTIONS(265), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(274), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(277), - [aux_sym_character_property_token1] = ACTIONS(280), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(283), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(286), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(289), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(292), - [aux_sym_unicode_token1] = ACTIONS(295), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(298), - [sym__callout_syntax] = ACTIONS(301), - [sym__modify_syntax] = ACTIONS(304), - }, - [80] = { - [sym__expression_extended] = STATE(70), - [sym_literal] = STATE(70), - [sym_quantifier] = STATE(70), - [sym_alteration] = STATE(70), - [sym_capture_group_extended] = STATE(70), - [sym_non_capture_group_extended] = STATE(70), - [sym_atomic_group_extended] = STATE(70), - [sym_capture_group_name_extended] = STATE(70), - [sym_capture_group_conditional_extended] = STATE(70), - [sym_comment_group] = STATE(70), - [sym_comment_extended] = STATE(70), - [sym_modify] = STATE(70), - [sym__modify_extended] = STATE(70), - [sym_modify_extended_1] = STATE(80), - [sym_modify_extended_2] = STATE(70), - [sym_look_ahead_extended] = STATE(70), - [sym_look_behind_extended] = STATE(70), - [sym_callout] = STATE(70), - [sym_absent_extended] = STATE(70), - [sym_character_class] = STATE(70), - [sym_character_property] = STATE(70), - [sym_subroutine] = STATE(70), - [sym_backreference] = STATE(70), - [sym_unicode] = STATE(70), - [sym_meta_control_char] = STATE(70), - [aux_sym_literal_repeat1] = STATE(245), - [aux_sym_quantifier_repeat1] = STATE(243), - [aux_sym_capture_group_extended_repeat1] = STATE(70), - [aux_sym_comment_extended_repeat2] = STATE(252), - [aux_sym_meta_control_char_repeat1] = STATE(577), - [sym_backslash] = ACTIONS(686), - [aux_sym_literal_token1] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(341), - [aux_sym_quantifier_token1] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(347), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(349), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(351), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(353), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(355), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(357), - [anon_sym_SPACE] = ACTIONS(359), - [anon_sym_BSLASHn] = ACTIONS(359), - [anon_sym_BSLASHt] = ACTIONS(359), - [anon_sym_POUND] = ACTIONS(361), - [aux_sym_look_ahead_token1] = ACTIONS(363), - [aux_sym_look_behind_token1] = ACTIONS(365), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(367), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(371), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(373), - [aux_sym_character_property_token1] = ACTIONS(375), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(377), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(379), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(381), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(383), - [aux_sym_unicode_token1] = ACTIONS(385), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(387), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(387), - [sym__group_end_lookahead] = ACTIONS(688), - [sym__callout_syntax] = ACTIONS(391), - [sym__modify_syntax] = ACTIONS(393), - }, - [81] = { - [sym__expression_extended] = STATE(78), - [sym_literal] = STATE(78), - [sym_quantifier] = STATE(78), - [sym_alteration] = STATE(78), - [sym_capture_group_extended] = STATE(78), - [sym_non_capture_group_extended] = STATE(78), - [sym_atomic_group_extended] = STATE(78), - [sym_capture_group_name_extended] = STATE(78), - [sym_capture_group_conditional_extended] = STATE(78), - [sym_comment_group] = STATE(78), - [sym_comment_extended] = STATE(78), - [sym_modify] = STATE(78), - [sym__modify_extended] = STATE(78), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(78), - [sym_look_ahead_extended] = STATE(78), - [sym_look_behind_extended] = STATE(78), - [sym_callout] = STATE(78), - [sym_absent_extended] = STATE(78), - [sym_character_class] = STATE(78), - [sym_character_property] = STATE(78), - [sym_subroutine] = STATE(78), - [sym_backreference] = STATE(78), - [sym_unicode] = STATE(78), - [sym_meta_control_char] = STATE(78), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(78), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(690), + [sym__expression_extended] = STATE(76), + [sym_literal] = STATE(76), + [sym_quantifier] = STATE(76), + [sym_alteration] = STATE(76), + [sym_capture_group_extended] = STATE(76), + [sym_non_capture_group_extended] = STATE(76), + [sym_atomic_group_extended] = STATE(76), + [sym_capture_group_name_extended] = STATE(76), + [sym_capture_group_conditional_extended] = STATE(76), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(76), + [sym_comment_extended] = STATE(76), + [sym_modify] = STATE(76), + [sym__modify_extended] = STATE(76), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(76), + [sym_look_ahead_extended] = STATE(76), + [sym_look_behind_extended] = STATE(76), + [sym_callout] = STATE(76), + [sym_absent_extended] = STATE(76), + [sym_character_class] = STATE(76), + [sym_character_property] = STATE(76), + [sym_subroutine] = STATE(76), + [sym_backreference] = STATE(76), + [sym_unicode] = STATE(76), + [sym_meta_control_char] = STATE(76), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(76), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(677), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), [anon_sym_STAR] = ACTIONS(61), [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(679), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -9889,38 +9749,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [82] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [80] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -9928,7 +9789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(681), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -9957,106 +9818,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [83] = { - [sym__expression_extended] = STATE(94), - [sym_literal] = STATE(94), - [sym_quantifier] = STATE(94), - [sym_alteration] = STATE(94), - [sym_capture_group_extended] = STATE(94), - [sym_non_capture_group_extended] = STATE(94), - [sym_atomic_group_extended] = STATE(94), - [sym_capture_group_name_extended] = STATE(94), - [sym_capture_group_conditional_extended] = STATE(94), - [sym_comment_group] = STATE(94), - [sym_comment_extended] = STATE(94), - [sym_modify] = STATE(94), - [sym__modify_extended] = STATE(94), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(94), - [sym_look_ahead_extended] = STATE(94), - [sym_look_behind_extended] = STATE(94), - [sym_callout] = STATE(94), - [sym_absent_extended] = STATE(94), - [sym_character_class] = STATE(94), - [sym_character_property] = STATE(94), - [sym_subroutine] = STATE(94), - [sym_backreference] = STATE(94), - [sym_unicode] = STATE(94), - [sym_meta_control_char] = STATE(94), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(94), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(694), - [aux_sym_literal_token1] = ACTIONS(136), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(139), - [aux_sym_quantifier_token1] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(142), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(151), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(154), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(157), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(160), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(163), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(166), - [anon_sym_SPACE] = ACTIONS(169), - [anon_sym_BSLASHn] = ACTIONS(169), - [anon_sym_BSLASHt] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [aux_sym_look_ahead_token1] = ACTIONS(175), - [aux_sym_look_behind_token1] = ACTIONS(178), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(187), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(190), - [aux_sym_character_property_token1] = ACTIONS(193), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(196), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(199), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(202), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(205), - [aux_sym_unicode_token1] = ACTIONS(208), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(211), - [sym__callout_syntax] = ACTIONS(214), - [sym__modify_syntax] = ACTIONS(217), - }, - [84] = { - [sym__expression_extended] = STATE(39), - [sym_literal] = STATE(39), - [sym_quantifier] = STATE(39), - [sym_alteration] = STATE(39), - [sym_capture_group_extended] = STATE(39), - [sym_non_capture_group_extended] = STATE(39), - [sym_atomic_group_extended] = STATE(39), - [sym_capture_group_name_extended] = STATE(39), - [sym_capture_group_conditional_extended] = STATE(39), - [sym_comment_group] = STATE(39), - [sym_comment_extended] = STATE(39), - [sym_modify] = STATE(39), - [sym__modify_extended] = STATE(39), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(39), - [sym_look_ahead_extended] = STATE(39), - [sym_look_behind_extended] = STATE(39), - [sym_callout] = STATE(39), - [sym_absent_extended] = STATE(39), - [sym_character_class] = STATE(39), - [sym_character_property] = STATE(39), - [sym_subroutine] = STATE(39), - [sym_backreference] = STATE(39), - [sym_unicode] = STATE(39), - [sym_meta_control_char] = STATE(39), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(39), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(700), + [81] = { + [sym__expression_extended] = STATE(32), + [sym_literal] = STATE(32), + [sym_quantifier] = STATE(32), + [sym_alteration] = STATE(32), + [sym_capture_group_extended] = STATE(32), + [sym_non_capture_group_extended] = STATE(32), + [sym_atomic_group_extended] = STATE(32), + [sym_capture_group_name_extended] = STATE(32), + [sym_capture_group_conditional_extended] = STATE(32), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(32), + [sym_comment_extended] = STATE(32), + [sym_modify] = STATE(32), + [sym__modify_extended] = STATE(32), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(32), + [sym_look_ahead_extended] = STATE(32), + [sym_look_behind_extended] = STATE(32), + [sym_callout] = STATE(32), + [sym_absent_extended] = STATE(32), + [sym_character_class] = STATE(32), + [sym_character_property] = STATE(32), + [sym_subroutine] = STATE(32), + [sym_backreference] = STATE(32), + [sym_unicode] = STATE(32), + [sym_meta_control_char] = STATE(32), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(32), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(683), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -10064,7 +9858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(685), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -10093,174 +9887,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [85] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), - [aux_sym_literal_token1] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), - [anon_sym_SPACE] = ACTIONS(89), - [anon_sym_BSLASHn] = ACTIONS(89), - [anon_sym_BSLASHt] = ACTIONS(89), - [anon_sym_POUND] = ACTIONS(91), - [aux_sym_look_ahead_token1] = ACTIONS(93), - [aux_sym_look_behind_token1] = ACTIONS(95), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(101), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(103), - [aux_sym_character_property_token1] = ACTIONS(105), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(107), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(109), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(111), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(113), - [aux_sym_unicode_token1] = ACTIONS(115), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(117), - [sym__callout_syntax] = ACTIONS(119), - [sym__modify_syntax] = ACTIONS(121), + [82] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(224), + [aux_sym_literal_token1] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_STAR] = ACTIONS(230), + [aux_sym_quantifier_token1] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(236), + [anon_sym_RPAREN] = ACTIONS(687), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(242), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(245), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(248), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(251), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(254), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(257), + [anon_sym_SPACE] = ACTIONS(260), + [anon_sym_BSLASHn] = ACTIONS(260), + [anon_sym_BSLASHt] = ACTIONS(260), + [anon_sym_POUND] = ACTIONS(263), + [aux_sym_look_ahead_token1] = ACTIONS(266), + [aux_sym_look_behind_token1] = ACTIONS(269), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(275), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(278), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(281), + [aux_sym_character_property_token1] = ACTIONS(284), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(287), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(290), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(293), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(296), + [aux_sym_unicode_token1] = ACTIONS(299), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(302), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(302), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(302), + [sym__callout_syntax] = ACTIONS(305), + [sym__modify_syntax] = ACTIONS(308), }, - [86] = { - [sym__expression_extended] = STATE(75), - [sym_literal] = STATE(75), - [sym_quantifier] = STATE(75), - [sym_alteration] = STATE(75), - [sym_capture_group_extended] = STATE(75), - [sym_non_capture_group_extended] = STATE(75), - [sym_atomic_group_extended] = STATE(75), - [sym_capture_group_name_extended] = STATE(75), - [sym_capture_group_conditional_extended] = STATE(75), - [sym_comment_group] = STATE(75), - [sym_comment_extended] = STATE(75), - [sym_modify] = STATE(75), - [sym__modify_extended] = STATE(75), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(75), - [sym_look_ahead_extended] = STATE(75), - [sym_look_behind_extended] = STATE(75), - [sym_callout] = STATE(75), - [sym_absent_extended] = STATE(75), - [sym_character_class] = STATE(75), - [sym_character_property] = STATE(75), - [sym_subroutine] = STATE(75), - [sym_backreference] = STATE(75), - [sym_unicode] = STATE(75), - [sym_meta_control_char] = STATE(75), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(75), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(704), - [aux_sym_literal_token1] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), - [anon_sym_SPACE] = ACTIONS(89), - [anon_sym_BSLASHn] = ACTIONS(89), - [anon_sym_BSLASHt] = ACTIONS(89), - [anon_sym_POUND] = ACTIONS(91), - [aux_sym_look_ahead_token1] = ACTIONS(93), - [aux_sym_look_behind_token1] = ACTIONS(95), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(101), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(103), - [aux_sym_character_property_token1] = ACTIONS(105), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(107), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(109), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(111), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(113), - [aux_sym_unicode_token1] = ACTIONS(115), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(117), - [sym__callout_syntax] = ACTIONS(119), - [sym__modify_syntax] = ACTIONS(121), + [83] = { + [sym__expression_extended] = STATE(77), + [sym_literal] = STATE(77), + [sym_quantifier] = STATE(77), + [sym_alteration] = STATE(77), + [sym_capture_group_extended] = STATE(77), + [sym_non_capture_group_extended] = STATE(77), + [sym_atomic_group_extended] = STATE(77), + [sym_capture_group_name_extended] = STATE(77), + [sym_capture_group_conditional_extended] = STATE(77), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(77), + [sym_comment_extended] = STATE(77), + [sym_modify] = STATE(77), + [sym__modify_extended] = STATE(77), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(77), + [sym_look_ahead_extended] = STATE(77), + [sym_look_behind_extended] = STATE(77), + [sym_callout] = STATE(77), + [sym_absent_extended] = STATE(77), + [sym_character_class] = STATE(77), + [sym_character_property] = STATE(77), + [sym_subroutine] = STATE(77), + [sym_backreference] = STATE(77), + [sym_unicode] = STATE(77), + [sym_meta_control_char] = STATE(77), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(77), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(690), + [aux_sym_literal_token1] = ACTIONS(130), + [anon_sym_QMARK] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [aux_sym_quantifier_token1] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(136), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(693), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(145), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(148), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(151), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(154), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(157), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(160), + [anon_sym_SPACE] = ACTIONS(163), + [anon_sym_BSLASHn] = ACTIONS(163), + [anon_sym_BSLASHt] = ACTIONS(163), + [anon_sym_POUND] = ACTIONS(166), + [aux_sym_look_ahead_token1] = ACTIONS(169), + [aux_sym_look_behind_token1] = ACTIONS(172), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(178), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(181), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(184), + [aux_sym_character_property_token1] = ACTIONS(187), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(190), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(193), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(196), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(199), + [aux_sym_unicode_token1] = ACTIONS(202), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(205), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(205), + [sym__callout_syntax] = ACTIONS(208), + [sym__modify_syntax] = ACTIONS(211), }, - [87] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), + [84] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(324), [aux_sym_literal_token1] = ACTIONS(59), [anon_sym_QMARK] = ACTIONS(61), [anon_sym_PLUS] = ACTIONS(61), @@ -10268,7 +10065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_quantifier_token1] = ACTIONS(61), [anon_sym_PIPE] = ACTIONS(65), [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(708), + [anon_sym_RPAREN] = ACTIONS(696), [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), @@ -10297,2645 +10094,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__callout_syntax] = ACTIONS(119), [sym__modify_syntax] = ACTIONS(121), }, - [88] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), - [aux_sym_literal_token1] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), - [anon_sym_SPACE] = ACTIONS(89), - [anon_sym_BSLASHn] = ACTIONS(89), - [anon_sym_BSLASHt] = ACTIONS(89), - [anon_sym_POUND] = ACTIONS(91), - [aux_sym_look_ahead_token1] = ACTIONS(93), - [aux_sym_look_behind_token1] = ACTIONS(95), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(101), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(103), - [aux_sym_character_property_token1] = ACTIONS(105), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(107), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(109), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(111), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(113), - [aux_sym_unicode_token1] = ACTIONS(115), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(117), - [sym__callout_syntax] = ACTIONS(119), - [sym__modify_syntax] = ACTIONS(121), - }, - [89] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(220), - [aux_sym_literal_token1] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(226), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_STAR] = ACTIONS(226), - [aux_sym_quantifier_token1] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(238), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(241), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(244), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(247), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(250), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(253), - [anon_sym_SPACE] = ACTIONS(256), - [anon_sym_BSLASHn] = ACTIONS(256), - [anon_sym_BSLASHt] = ACTIONS(256), - [anon_sym_POUND] = ACTIONS(259), - [aux_sym_look_ahead_token1] = ACTIONS(262), - [aux_sym_look_behind_token1] = ACTIONS(265), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(274), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(277), - [aux_sym_character_property_token1] = ACTIONS(280), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(283), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(286), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(289), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(292), - [aux_sym_unicode_token1] = ACTIONS(295), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(298), - [sym__callout_syntax] = ACTIONS(301), - [sym__modify_syntax] = ACTIONS(304), - }, - [90] = { - [sym__expression_extended] = STATE(5), - [sym_literal] = STATE(5), - [sym_quantifier] = STATE(5), - [sym_alteration] = STATE(5), - [sym_capture_group_extended] = STATE(5), - [sym_non_capture_group_extended] = STATE(5), - [sym_atomic_group_extended] = STATE(5), - [sym_capture_group_name_extended] = STATE(5), - [sym_capture_group_conditional_extended] = STATE(5), - [sym_comment_group] = STATE(5), - [sym_comment_extended] = STATE(5), - [sym_modify] = STATE(5), - [sym__modify_extended] = STATE(5), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(5), - [sym_look_ahead_extended] = STATE(5), - [sym_look_behind_extended] = STATE(5), - [sym_callout] = STATE(5), - [sym_absent_extended] = STATE(5), - [sym_character_class] = STATE(5), - [sym_character_property] = STATE(5), - [sym_subroutine] = STATE(5), - [sym_backreference] = STATE(5), - [sym_unicode] = STATE(5), - [sym_meta_control_char] = STATE(5), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(5), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(715), - [aux_sym_literal_token1] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), - [anon_sym_SPACE] = ACTIONS(89), - [anon_sym_BSLASHn] = ACTIONS(89), - [anon_sym_BSLASHt] = ACTIONS(89), - [anon_sym_POUND] = ACTIONS(91), - [aux_sym_look_ahead_token1] = ACTIONS(93), - [aux_sym_look_behind_token1] = ACTIONS(95), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(101), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(103), - [aux_sym_character_property_token1] = ACTIONS(105), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(107), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(109), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(111), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(113), - [aux_sym_unicode_token1] = ACTIONS(115), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(117), - [sym__callout_syntax] = ACTIONS(119), - [sym__modify_syntax] = ACTIONS(121), - }, - [91] = { - [sym__expression_extended] = STATE(50), - [sym_literal] = STATE(50), - [sym_quantifier] = STATE(50), - [sym_alteration] = STATE(50), - [sym_capture_group_extended] = STATE(50), - [sym_non_capture_group_extended] = STATE(50), - [sym_atomic_group_extended] = STATE(50), - [sym_capture_group_name_extended] = STATE(50), - [sym_capture_group_conditional_extended] = STATE(50), - [sym_comment_group] = STATE(50), - [sym_comment_extended] = STATE(50), - [sym_modify] = STATE(50), - [sym__modify_extended] = STATE(50), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(50), - [sym_look_ahead_extended] = STATE(50), - [sym_look_behind_extended] = STATE(50), - [sym_callout] = STATE(50), - [sym_absent_extended] = STATE(50), - [sym_character_class] = STATE(50), - [sym_character_property] = STATE(50), - [sym_subroutine] = STATE(50), - [sym_backreference] = STATE(50), - [sym_unicode] = STATE(50), - [sym_meta_control_char] = STATE(50), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(50), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(719), - [aux_sym_literal_token1] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(721), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), - [anon_sym_SPACE] = ACTIONS(89), - [anon_sym_BSLASHn] = ACTIONS(89), - [anon_sym_BSLASHt] = ACTIONS(89), - [anon_sym_POUND] = ACTIONS(91), - [aux_sym_look_ahead_token1] = ACTIONS(93), - [aux_sym_look_behind_token1] = ACTIONS(95), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(101), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(103), - [aux_sym_character_property_token1] = ACTIONS(105), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(107), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(109), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(111), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(113), - [aux_sym_unicode_token1] = ACTIONS(115), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(117), - [sym__callout_syntax] = ACTIONS(119), - [sym__modify_syntax] = ACTIONS(121), - }, - [92] = { - [sym__expression_extended] = STATE(48), - [sym_literal] = STATE(48), - [sym_quantifier] = STATE(48), - [sym_alteration] = STATE(48), - [sym_capture_group_extended] = STATE(48), - [sym_non_capture_group_extended] = STATE(48), - [sym_atomic_group_extended] = STATE(48), - [sym_capture_group_name_extended] = STATE(48), - [sym_capture_group_conditional_extended] = STATE(48), - [sym_comment_group] = STATE(48), - [sym_comment_extended] = STATE(48), - [sym_modify] = STATE(48), - [sym__modify_extended] = STATE(48), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(48), - [sym_look_ahead_extended] = STATE(48), - [sym_look_behind_extended] = STATE(48), - [sym_callout] = STATE(48), - [sym_absent_extended] = STATE(48), - [sym_character_class] = STATE(48), - [sym_character_property] = STATE(48), - [sym_subroutine] = STATE(48), - [sym_backreference] = STATE(48), - [sym_unicode] = STATE(48), - [sym_meta_control_char] = STATE(48), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(48), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(723), - [aux_sym_literal_token1] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), - [anon_sym_SPACE] = ACTIONS(89), - [anon_sym_BSLASHn] = ACTIONS(89), - [anon_sym_BSLASHt] = ACTIONS(89), - [anon_sym_POUND] = ACTIONS(91), - [aux_sym_look_ahead_token1] = ACTIONS(93), - [aux_sym_look_behind_token1] = ACTIONS(95), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(101), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(103), - [aux_sym_character_property_token1] = ACTIONS(105), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(107), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(109), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(111), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(113), - [aux_sym_unicode_token1] = ACTIONS(115), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(117), - [sym__callout_syntax] = ACTIONS(119), - [sym__modify_syntax] = ACTIONS(121), - }, - [93] = { - [sym__expression_extended] = STATE(88), - [sym_literal] = STATE(88), - [sym_quantifier] = STATE(88), - [sym_alteration] = STATE(88), - [sym_capture_group_extended] = STATE(88), - [sym_non_capture_group_extended] = STATE(88), - [sym_atomic_group_extended] = STATE(88), - [sym_capture_group_name_extended] = STATE(88), - [sym_capture_group_conditional_extended] = STATE(88), - [sym_comment_group] = STATE(88), - [sym_comment_extended] = STATE(88), - [sym_modify] = STATE(88), - [sym__modify_extended] = STATE(88), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(88), - [sym_look_ahead_extended] = STATE(88), - [sym_look_behind_extended] = STATE(88), - [sym_callout] = STATE(88), - [sym_absent_extended] = STATE(88), - [sym_character_class] = STATE(88), - [sym_character_property] = STATE(88), - [sym_subroutine] = STATE(88), - [sym_backreference] = STATE(88), - [sym_unicode] = STATE(88), - [sym_meta_control_char] = STATE(88), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(88), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(727), - [aux_sym_literal_token1] = ACTIONS(136), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(139), - [aux_sym_quantifier_token1] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(142), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(151), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(154), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(157), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(160), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(163), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(166), - [anon_sym_SPACE] = ACTIONS(169), - [anon_sym_BSLASHn] = ACTIONS(169), - [anon_sym_BSLASHt] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [aux_sym_look_ahead_token1] = ACTIONS(175), - [aux_sym_look_behind_token1] = ACTIONS(178), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(181), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(187), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(190), - [aux_sym_character_property_token1] = ACTIONS(193), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(196), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(199), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(202), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(205), - [aux_sym_unicode_token1] = ACTIONS(208), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(211), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(211), - [sym__callout_syntax] = ACTIONS(214), - [sym__modify_syntax] = ACTIONS(217), - }, - [94] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(127), - [aux_sym_literal_token1] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), - [anon_sym_SPACE] = ACTIONS(89), - [anon_sym_BSLASHn] = ACTIONS(89), - [anon_sym_BSLASHt] = ACTIONS(89), - [anon_sym_POUND] = ACTIONS(91), - [aux_sym_look_ahead_token1] = ACTIONS(93), - [aux_sym_look_behind_token1] = ACTIONS(95), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(101), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(103), - [aux_sym_character_property_token1] = ACTIONS(105), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(107), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(109), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(111), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(113), - [aux_sym_unicode_token1] = ACTIONS(115), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(117), - [sym__callout_syntax] = ACTIONS(119), - [sym__modify_syntax] = ACTIONS(121), - }, - [95] = { - [sym__expression_extended] = STATE(37), - [sym_literal] = STATE(37), - [sym_quantifier] = STATE(37), - [sym_alteration] = STATE(37), - [sym_capture_group_extended] = STATE(37), - [sym_non_capture_group_extended] = STATE(37), - [sym_atomic_group_extended] = STATE(37), - [sym_capture_group_name_extended] = STATE(37), - [sym_capture_group_conditional_extended] = STATE(37), - [sym_comment_group] = STATE(37), - [sym_comment_extended] = STATE(37), - [sym_modify] = STATE(37), - [sym__modify_extended] = STATE(37), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(37), - [sym_look_ahead_extended] = STATE(37), - [sym_look_behind_extended] = STATE(37), - [sym_callout] = STATE(37), - [sym_absent_extended] = STATE(37), - [sym_character_class] = STATE(37), - [sym_character_property] = STATE(37), - [sym_subroutine] = STATE(37), - [sym_backreference] = STATE(37), - [sym_unicode] = STATE(37), - [sym_meta_control_char] = STATE(37), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(37), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(220), - [aux_sym_literal_token1] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(226), - [anon_sym_PLUS] = ACTIONS(226), - [anon_sym_STAR] = ACTIONS(226), - [aux_sym_quantifier_token1] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(238), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(241), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(244), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(247), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(250), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(253), - [anon_sym_SPACE] = ACTIONS(256), - [anon_sym_BSLASHn] = ACTIONS(256), - [anon_sym_BSLASHt] = ACTIONS(256), - [anon_sym_POUND] = ACTIONS(259), - [aux_sym_look_ahead_token1] = ACTIONS(262), - [aux_sym_look_behind_token1] = ACTIONS(265), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(274), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(277), - [aux_sym_character_property_token1] = ACTIONS(280), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(283), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(286), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(289), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(292), - [aux_sym_unicode_token1] = ACTIONS(295), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(298), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(298), - [sym__callout_syntax] = ACTIONS(301), - [sym__modify_syntax] = ACTIONS(304), - }, - [96] = { - [sym__expression_extended] = STATE(45), - [sym_literal] = STATE(45), - [sym_quantifier] = STATE(45), - [sym_alteration] = STATE(45), - [sym_capture_group_extended] = STATE(45), - [sym_non_capture_group_extended] = STATE(45), - [sym_atomic_group_extended] = STATE(45), - [sym_capture_group_name_extended] = STATE(45), - [sym_capture_group_conditional_extended] = STATE(45), - [sym_comment_group] = STATE(45), - [sym_comment_extended] = STATE(45), - [sym_modify] = STATE(45), - [sym__modify_extended] = STATE(45), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(45), - [sym_look_ahead_extended] = STATE(45), - [sym_look_behind_extended] = STATE(45), - [sym_callout] = STATE(45), - [sym_absent_extended] = STATE(45), - [sym_character_class] = STATE(45), - [sym_character_property] = STATE(45), - [sym_subroutine] = STATE(45), - [sym_backreference] = STATE(45), - [sym_unicode] = STATE(45), - [sym_meta_control_char] = STATE(45), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(45), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(738), - [aux_sym_literal_token1] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), - [anon_sym_SPACE] = ACTIONS(89), - [anon_sym_BSLASHn] = ACTIONS(89), - [anon_sym_BSLASHt] = ACTIONS(89), - [anon_sym_POUND] = ACTIONS(91), - [aux_sym_look_ahead_token1] = ACTIONS(93), - [aux_sym_look_behind_token1] = ACTIONS(95), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(101), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(103), - [aux_sym_character_property_token1] = ACTIONS(105), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(107), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(109), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(111), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(113), - [aux_sym_unicode_token1] = ACTIONS(115), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(117), - [sym__callout_syntax] = ACTIONS(119), - [sym__modify_syntax] = ACTIONS(121), - }, - [97] = { - [sym__expression_extended] = STATE(44), - [sym_literal] = STATE(44), - [sym_quantifier] = STATE(44), - [sym_alteration] = STATE(44), - [sym_capture_group_extended] = STATE(44), - [sym_non_capture_group_extended] = STATE(44), - [sym_atomic_group_extended] = STATE(44), - [sym_capture_group_name_extended] = STATE(44), - [sym_capture_group_conditional_extended] = STATE(44), - [sym_comment_group] = STATE(44), - [sym_comment_extended] = STATE(44), - [sym_modify] = STATE(44), - [sym__modify_extended] = STATE(44), - [sym_modify_extended_1] = STATE(34), - [sym_modify_extended_2] = STATE(44), - [sym_look_ahead_extended] = STATE(44), - [sym_look_behind_extended] = STATE(44), - [sym_callout] = STATE(44), - [sym_absent_extended] = STATE(44), - [sym_character_class] = STATE(44), - [sym_character_property] = STATE(44), - [sym_subroutine] = STATE(44), - [sym_backreference] = STATE(44), - [sym_unicode] = STATE(44), - [sym_meta_control_char] = STATE(44), - [aux_sym_literal_repeat1] = STATE(249), - [aux_sym_quantifier_repeat1] = STATE(246), - [aux_sym_capture_group_extended_repeat1] = STATE(44), - [aux_sym_comment_extended_repeat2] = STATE(241), - [aux_sym_meta_control_char_repeat1] = STATE(576), - [sym_backslash] = ACTIONS(742), - [aux_sym_literal_token1] = ACTIONS(59), - [anon_sym_QMARK] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(61), - [anon_sym_STAR] = ACTIONS(61), - [aux_sym_quantifier_token1] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(71), - [anon_sym_LPAREN_QMARK_GT] = ACTIONS(73), - [anon_sym_LPAREN_QMARK_LT] = ACTIONS(75), - [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(77), - [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(81), - [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(87), - [anon_sym_SPACE] = ACTIONS(89), - [anon_sym_BSLASHn] = ACTIONS(89), - [anon_sym_BSLASHt] = ACTIONS(89), - [anon_sym_POUND] = ACTIONS(91), - [aux_sym_look_ahead_token1] = ACTIONS(93), - [aux_sym_look_behind_token1] = ACTIONS(95), - [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(101), - [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(103), - [aux_sym_character_property_token1] = ACTIONS(105), - [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(107), - [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(109), - [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(111), - [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(113), - [aux_sym_unicode_token1] = ACTIONS(115), - [anon_sym_BSLASH_BSLASHc] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(117), - [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(117), - [sym__callout_syntax] = ACTIONS(119), - [sym__modify_syntax] = ACTIONS(121), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 37, - ACTIONS(79), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_LT, - ACTIONS(85), 1, - aux_sym_capture_group_conditional_name_token3, - ACTIONS(746), 1, - sym_backslash, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(752), 1, - anon_sym_PLUS, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - anon_sym_RPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - STATE(939), 1, - sym_capture_group_conditional_name, - ACTIONS(750), 3, - anon_sym_QMARK, - anon_sym_STAR, - aux_sym_quantifier_token1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - STATE(212), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [139] = 37, - ACTIONS(79), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_LT, - ACTIONS(85), 1, - aux_sym_capture_group_conditional_name_token3, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(752), 1, - anon_sym_PLUS, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(802), 1, - sym_backslash, - ACTIONS(804), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - STATE(905), 1, - sym_capture_group_conditional_name, - ACTIONS(750), 3, - anon_sym_QMARK, - anon_sym_STAR, - aux_sym_quantifier_token1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - STATE(181), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [278] = 37, - ACTIONS(79), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_LT, - ACTIONS(85), 1, - aux_sym_capture_group_conditional_name_token3, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(752), 1, - anon_sym_PLUS, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(806), 1, - sym_backslash, - ACTIONS(808), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - STATE(958), 1, - sym_capture_group_conditional_name, - ACTIONS(750), 3, - anon_sym_QMARK, - anon_sym_STAR, - aux_sym_quantifier_token1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - STATE(170), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [417] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(810), 1, - sym_backslash, - ACTIONS(812), 1, - anon_sym_PIPE, - ACTIONS(814), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(142), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [542] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(818), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(226), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [667] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(820), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(226), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [792] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(822), 1, - sym_backslash, - ACTIONS(824), 1, - anon_sym_PIPE, - ACTIONS(826), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(159), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [917] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(828), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(226), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [1042] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(830), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(226), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [1167] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(832), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(226), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [1292] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(834), 1, - sym_backslash, - ACTIONS(836), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(145), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [1417] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(836), 1, - anon_sym_RPAREN, - ACTIONS(838), 1, - sym_backslash, - ACTIONS(840), 1, - anon_sym_PIPE, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(144), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [1542] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(842), 1, - sym_backslash, - ACTIONS(844), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(176), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [1667] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(846), 1, - sym_backslash, - ACTIONS(848), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(103), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [1792] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(850), 1, - sym_backslash, - ACTIONS(852), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(105), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [1917] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(854), 1, - sym_backslash, - ACTIONS(856), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(106), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [2042] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(858), 1, - sym_backslash, - ACTIONS(860), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(107), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [2167] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(862), 1, - sym_backslash, - ACTIONS(864), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(229), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [2292] = 32, - ACTIONS(748), 1, - aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, - anon_sym_LPAREN, - ACTIONS(760), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, - aux_sym_look_ahead_token1, - ACTIONS(774), 1, - aux_sym_look_behind_token1, - ACTIONS(776), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, - aux_sym_character_property_token1, - ACTIONS(786), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, - aux_sym_unicode_token1, - ACTIONS(798), 1, - sym__callout_syntax, - ACTIONS(800), 1, - sym__modify_syntax, - ACTIONS(866), 1, - sym_backslash, - ACTIONS(868), 1, - anon_sym_RPAREN, - STATE(41), 1, - sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, - aux_sym_literal_repeat1, - STATE(579), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(201), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [2417] = 32, - ACTIONS(870), 1, - ts_builtin_sym_end, - ACTIONS(872), 1, - sym_backslash, - ACTIONS(875), 1, - aux_sym_literal_token1, - ACTIONS(881), 1, - anon_sym_PIPE, - ACTIONS(884), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_LPAREN_QMARK_COLON, - ACTIONS(890), 1, - anon_sym_LPAREN_QMARK_GT, - ACTIONS(893), 1, - anon_sym_LPAREN_QMARK_LT, - ACTIONS(896), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(899), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(902), 1, - anon_sym_LPAREN_QMARK_POUND, - ACTIONS(905), 1, - aux_sym_look_ahead_token1, - ACTIONS(908), 1, - aux_sym_look_behind_token1, - ACTIONS(911), 1, - anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(914), 1, - anon_sym_LBRACK, - ACTIONS(917), 1, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(920), 1, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(923), 1, - aux_sym_character_property_token1, - ACTIONS(926), 1, - anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(929), 1, - anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(932), 1, - anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(935), 1, - anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(938), 1, - aux_sym_unicode_token1, - ACTIONS(944), 1, - sym__callout_syntax, - ACTIONS(947), 1, - sym__modify_syntax, - STATE(26), 1, - sym_modify_extended_1, - STATE(386), 1, - aux_sym_quantifier_repeat1, - STATE(387), 1, - aux_sym_literal_repeat1, - STATE(578), 1, - aux_sym_meta_control_char_repeat1, - ACTIONS(941), 3, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(878), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - STATE(117), 24, - sym__expression, - sym_literal, - sym_quantifier, - sym_alteration, - sym_capture_group, - sym_non_capture_group, - sym_atomic_group, - sym_capture_group_name, - sym_capture_group_conditional, - sym_comment_group, - sym_modify, - sym__modify_extended, - sym_modify_extended_2, - sym_look_ahead, - sym_look_behind, - sym_callout, - sym_absent, - sym_character_class, - sym_character_property, - sym_subroutine, - sym_backreference, - sym_unicode, - sym_meta_control_char, - aux_sym_regex_repeat1, - [2542] = 32, - ACTIONS(748), 1, + [85] = { + [sym__expression_extended] = STATE(35), + [sym_literal] = STATE(35), + [sym_quantifier] = STATE(35), + [sym_alteration] = STATE(35), + [sym_capture_group_extended] = STATE(35), + [sym_non_capture_group_extended] = STATE(35), + [sym_atomic_group_extended] = STATE(35), + [sym_capture_group_name_extended] = STATE(35), + [sym_capture_group_conditional_extended] = STATE(35), + [sym_capture_group_condition_extended] = STATE(49), + [sym_comment_group] = STATE(35), + [sym_comment_extended] = STATE(35), + [sym_modify] = STATE(35), + [sym__modify_extended] = STATE(35), + [sym_modify_extended_1] = STATE(45), + [sym_modify_extended_2] = STATE(35), + [sym_look_ahead_extended] = STATE(35), + [sym_look_behind_extended] = STATE(35), + [sym_callout] = STATE(35), + [sym_absent_extended] = STATE(35), + [sym_character_class] = STATE(35), + [sym_character_property] = STATE(35), + [sym_subroutine] = STATE(35), + [sym_backreference] = STATE(35), + [sym_unicode] = STATE(35), + [sym_meta_control_char] = STATE(35), + [aux_sym_literal_repeat1] = STATE(219), + [aux_sym_quantifier_repeat1] = STATE(216), + [aux_sym_capture_group_extended_repeat1] = STATE(35), + [aux_sym_comment_extended_repeat2] = STATE(211), + [aux_sym_meta_control_char_repeat1] = STATE(546), + [sym_backslash] = ACTIONS(224), + [aux_sym_literal_token1] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_STAR] = ACTIONS(230), + [aux_sym_quantifier_token1] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(236), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(242), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(245), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(248), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(251), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(254), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(257), + [anon_sym_SPACE] = ACTIONS(260), + [anon_sym_BSLASHn] = ACTIONS(260), + [anon_sym_BSLASHt] = ACTIONS(260), + [anon_sym_POUND] = ACTIONS(263), + [aux_sym_look_ahead_token1] = ACTIONS(266), + [aux_sym_look_behind_token1] = ACTIONS(269), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(275), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(278), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(281), + [aux_sym_character_property_token1] = ACTIONS(284), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(287), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(290), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(293), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(296), + [aux_sym_unicode_token1] = ACTIONS(299), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(302), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(302), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(302), + [sym__callout_syntax] = ACTIONS(305), + [sym__modify_syntax] = ACTIONS(308), + }, + [86] = { + [sym__expression] = STATE(136), + [sym_literal] = STATE(136), + [sym_quantifier] = STATE(136), + [sym_alteration] = STATE(136), + [sym_capture_group] = STATE(136), + [sym_non_capture_group] = STATE(136), + [sym_atomic_group] = STATE(136), + [sym_capture_group_name] = STATE(136), + [sym_capture_group_conditional] = STATE(136), + [sym_capture_group_condition] = STATE(158), + [sym_capture_group_conditional_name] = STATE(953), + [sym_comment_group] = STATE(136), + [sym_modify] = STATE(136), + [sym__modify_extended] = STATE(136), + [sym_modify_extended_1] = STATE(40), + [sym_modify_extended_2] = STATE(136), + [sym_look_ahead] = STATE(136), + [sym_look_behind] = STATE(136), + [sym_callout] = STATE(136), + [sym_absent] = STATE(136), + [sym_character_class] = STATE(136), + [sym_character_property] = STATE(136), + [sym_subroutine] = STATE(136), + [sym_backreference] = STATE(136), + [sym_unicode] = STATE(136), + [sym_meta_control_char] = STATE(136), + [aux_sym_regex_repeat1] = STATE(136), + [aux_sym_literal_repeat1] = STATE(346), + [aux_sym_quantifier_repeat1] = STATE(345), + [aux_sym_meta_control_char_repeat1] = STATE(547), + [sym_backslash] = ACTIONS(701), + [aux_sym_literal_token1] = ACTIONS(703), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(705), + [aux_sym_quantifier_token1] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(713), + [anon_sym_LPAREN_QMARK_COLON] = ACTIONS(715), + [anon_sym_LPAREN_QMARK_GT] = ACTIONS(717), + [anon_sym_LPAREN_QMARK_LT] = ACTIONS(719), + [anon_sym_LPAREN_QMARK_SQUOTE] = ACTIONS(721), + [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_LPAREN_QMARK_LPAREN] = ACTIONS(23), + [anon_sym_LT] = ACTIONS(83), + [aux_sym_capture_group_conditional_name_token3] = ACTIONS(85), + [anon_sym_LPAREN_QMARK_POUND] = ACTIONS(723), + [aux_sym_look_ahead_token1] = ACTIONS(725), + [aux_sym_look_behind_token1] = ACTIONS(727), + [anon_sym_LPAREN_QMARK_LBRACE] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_LPAREN_QMARK_TILDE_PIPE] = ACTIONS(733), + [anon_sym_LPAREN_QMARK_TILDE] = ACTIONS(735), + [aux_sym_character_property_token1] = ACTIONS(737), + [anon_sym_BSLASH_BSLASHg_LT] = ACTIONS(739), + [anon_sym_BSLASH_BSLASHg_SQUOTE] = ACTIONS(741), + [anon_sym_BSLASH_BSLASHk_LT] = ACTIONS(743), + [anon_sym_BSLASH_BSLASHk_SQUOTE] = ACTIONS(745), + [aux_sym_unicode_token1] = ACTIONS(747), + [anon_sym_BSLASH_BSLASHc] = ACTIONS(749), + [anon_sym_BSLASH_BSLASHC_DASH] = ACTIONS(749), + [anon_sym_BSLASH_BSLASHM_DASH] = ACTIONS(749), + [sym__callout_syntax] = ACTIONS(751), + [sym__modify_syntax] = ACTIONS(753), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(950), 1, + ACTIONS(757), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -12960,75 +10328,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [2667] = 32, - ACTIONS(952), 1, - sym_backslash, - ACTIONS(954), 1, + [128] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(958), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(960), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(962), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(964), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(966), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(968), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(970), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(972), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(974), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(976), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(978), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(980), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(984), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(986), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(988), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(990), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(992), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(994), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(996), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1000), 1, - sym__group_end_lookahead, - ACTIONS(1002), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1004), 1, + ACTIONS(753), 1, sym__modify_syntax, - STATE(24), 1, + ACTIONS(755), 1, + sym_backslash, + ACTIONS(759), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(380), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(382), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(580), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(998), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(956), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(195), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -13053,75 +10423,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [2792] = 32, - ACTIONS(748), 1, + [256] = 33, + ACTIONS(761), 1, + sym_backslash, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(770), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(776), 1, + anon_sym_RPAREN, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(1000), 1, - anon_sym_RPAREN, - ACTIONS(1006), 1, - sym_backslash, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(196), 24, + STATE(142), 24, sym__expression, sym_literal, sym_quantifier, @@ -13146,75 +10518,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [2917] = 32, - ACTIONS(748), 1, + [384] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1008), 1, + ACTIONS(842), 1, sym_backslash, - ACTIONS(1010), 1, + ACTIONS(844), 1, + anon_sym_PIPE, + ACTIONS(846), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(200), 24, + STATE(135), 24, sym__expression, sym_literal, sym_quantifier, @@ -13239,75 +10613,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [3042] = 32, - ACTIONS(1012), 1, - sym_backslash, - ACTIONS(1015), 1, + [512] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1021), 1, - anon_sym_PIPE, - ACTIONS(1024), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1027), 1, - anon_sym_RPAREN, - ACTIONS(1030), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1033), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1036), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1039), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1042), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1045), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1048), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1051), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1054), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1057), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1063), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1066), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1069), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1072), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1075), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1078), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1081), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1087), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1090), 1, + ACTIONS(753), 1, sym__modify_syntax, - STATE(41), 1, + ACTIONS(848), 1, + sym_backslash, + ACTIONS(850), 1, + anon_sym_PIPE, + ACTIONS(852), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1084), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1018), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(144), 24, sym__expression, sym_literal, sym_quantifier, @@ -13332,75 +10708,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [3167] = 32, - ACTIONS(1093), 1, - sym_backslash, - ACTIONS(1096), 1, + [640] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1108), 1, - anon_sym_RPAREN, - ACTIONS(1111), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(753), 1, sym__modify_syntax, - STATE(41), 1, + ACTIONS(755), 1, + sym_backslash, + ACTIONS(852), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(118), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -13425,75 +10803,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [3292] = 32, - ACTIONS(748), 1, + [768] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(854), 1, sym_backslash, - ACTIONS(1174), 1, + ACTIONS(856), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(124), 24, sym__expression, sym_literal, sym_quantifier, @@ -13518,75 +10898,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [3417] = 32, - ACTIONS(748), 1, + [896] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(1176), 1, + ACTIONS(856), 1, anon_sym_RPAREN, - STATE(41), 1, + ACTIONS(858), 1, + sym_backslash, + ACTIONS(860), 1, + anon_sym_PIPE, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(123), 24, sym__expression, sym_literal, sym_quantifier, @@ -13611,75 +10993,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [3542] = 32, - ACTIONS(1096), 1, + [1024] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1178), 1, + ACTIONS(862), 1, sym_backslash, - ACTIONS(1181), 1, + ACTIONS(864), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(203), 24, + STATE(118), 24, sym__expression, sym_literal, sym_quantifier, @@ -13704,75 +11088,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [3667] = 32, - ACTIONS(748), 1, + [1152] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1184), 1, + ACTIONS(866), 1, sym_backslash, - ACTIONS(1186), 1, - anon_sym_PIPE, - ACTIONS(1188), 1, + ACTIONS(868), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(205), 24, + STATE(117), 24, sym__expression, sym_literal, sym_quantifier, @@ -13797,75 +11183,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [3792] = 32, - ACTIONS(748), 1, + [1280] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1186), 1, - anon_sym_PIPE, - ACTIONS(1188), 1, - anon_sym_RPAREN, - ACTIONS(1190), 1, + ACTIONS(870), 1, sym_backslash, - STATE(41), 1, + ACTIONS(872), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(211), 24, + STATE(116), 24, sym__expression, sym_literal, sym_quantifier, @@ -13890,75 +11278,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [3917] = 32, - ACTIONS(748), 1, + [1408] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1192), 1, + ACTIONS(874), 1, sym_backslash, - ACTIONS(1194), 1, + ACTIONS(876), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(190), 24, + STATE(115), 24, sym__expression, sym_literal, sym_quantifier, @@ -13983,75 +11373,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [4042] = 32, - ACTIONS(954), 1, + [1536] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(958), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(960), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(962), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(964), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(966), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(968), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(970), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(972), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(974), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(976), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(978), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(980), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(984), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(986), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(988), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(990), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(992), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(994), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(996), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1002), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1004), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1196), 1, + ACTIONS(878), 1, sym_backslash, - ACTIONS(1198), 1, - sym__group_end_lookahead, - STATE(24), 1, + ACTIONS(880), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(380), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(382), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(580), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(998), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(956), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(218), 24, + STATE(154), 24, sym__expression, sym_literal, sym_quantifier, @@ -14076,75 +11468,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [4167] = 32, - ACTIONS(748), 1, + [1664] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1200), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1202), 1, - anon_sym_PIPE, - ACTIONS(1204), 1, + ACTIONS(882), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(122), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -14169,75 +11563,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [4292] = 32, - ACTIONS(1012), 1, - sym_backslash, - ACTIONS(1015), 1, + [1792] = 33, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(1021), 1, + ACTIONS(770), 1, anon_sym_PIPE, - ACTIONS(1024), 1, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(1030), 1, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1033), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1036), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1039), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1042), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1045), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1048), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(1051), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(1054), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1057), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1063), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1066), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(1069), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1072), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1075), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1078), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1081), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(1087), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(1090), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(1206), 1, + ACTIONS(884), 1, + sym_backslash, + ACTIONS(887), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1084), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1018), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(170), 24, sym__expression, sym_literal, sym_quantifier, @@ -14262,75 +11658,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [4417] = 32, - ACTIONS(1096), 1, + [1920] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1209), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1212), 1, + ACTIONS(890), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(124), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -14355,75 +11753,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [4542] = 32, - ACTIONS(748), 1, + [2048] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(892), 1, sym_backslash, - ACTIONS(1204), 1, + ACTIONS(894), 1, + anon_sym_PIPE, + ACTIONS(896), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(172), 24, sym__expression, sym_literal, sym_quantifier, @@ -14448,75 +11848,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [4667] = 32, - ACTIONS(748), 1, + [2176] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1215), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1217), 1, + ACTIONS(898), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(125), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -14541,75 +11943,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [4792] = 32, - ACTIONS(748), 1, + [2304] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(900), 1, sym_backslash, - ACTIONS(1219), 1, + ACTIONS(902), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(100), 24, sym__expression, sym_literal, sym_quantifier, @@ -14634,75 +12038,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [4917] = 32, - ACTIONS(748), 1, + [2432] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1221), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1223), 1, + ACTIONS(904), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(231), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -14727,75 +12133,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [5042] = 32, - ACTIONS(748), 1, + [2560] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(906), 1, + sym_backslash, + ACTIONS(908), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(916), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(918), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(920), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(922), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(924), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(926), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(928), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(930), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(934), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(936), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(938), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(940), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(942), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(944), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(946), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(948), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(952), 1, + sym__group_end_lookahead, + ACTIONS(954), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(956), 1, sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(1225), 1, - anon_sym_RPAREN, - STATE(41), 1, + STATE(15), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(90), 1, + sym_capture_group_condition, + STATE(348), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(350), 1, + aux_sym_quantifier_repeat1, + STATE(545), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(950), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(910), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(180), 24, sym__expression, sym_literal, sym_quantifier, @@ -14820,75 +12228,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [5167] = 32, - ACTIONS(954), 1, + [2688] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(958), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(960), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(962), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(964), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(966), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(968), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(970), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(972), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(974), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(976), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(978), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(980), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(984), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(986), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(988), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(990), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(992), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(994), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(996), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1002), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1004), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1196), 1, + ACTIONS(958), 1, sym_backslash, - ACTIONS(1225), 1, - sym__group_end_lookahead, - STATE(24), 1, + ACTIONS(960), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(380), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(382), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(580), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(998), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(956), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(218), 24, + STATE(185), 24, sym__expression, sym_literal, sym_quantifier, @@ -14913,75 +12323,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [5292] = 32, - ACTIONS(748), 1, + [2816] = 33, + ACTIONS(962), 1, + ts_builtin_sym_end, + ACTIONS(964), 1, + sym_backslash, + ACTIONS(967), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(973), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(976), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(979), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(982), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(985), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(988), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, + ACTIONS(991), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(994), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(997), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(1000), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(1003), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(1006), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(1009), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(1012), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(1015), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(1018), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(1021), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(1024), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(1027), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(1030), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(1036), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(1039), 1, sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(1227), 1, - anon_sym_RPAREN, - STATE(41), 1, + STATE(26), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(199), 1, + sym_capture_group_condition, + STATE(352), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(353), 1, + aux_sym_quantifier_repeat1, + STATE(544), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(1033), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(970), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(109), 24, sym__expression, sym_literal, sym_quantifier, @@ -15006,75 +12418,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [5417] = 32, - ACTIONS(1096), 1, + [2944] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1229), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1232), 1, + ACTIONS(1042), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(219), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -15099,75 +12513,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [5542] = 32, - ACTIONS(1012), 1, + [3072] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(757), 1, + sym__group_end_lookahead, + ACTIONS(906), 1, sym_backslash, - ACTIONS(1015), 1, + ACTIONS(908), 1, aux_sym_literal_token1, - ACTIONS(1021), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(1024), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(1030), 1, + ACTIONS(916), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1033), 1, + ACTIONS(918), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1036), 1, + ACTIONS(920), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1039), 1, + ACTIONS(922), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1042), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1045), 1, + ACTIONS(924), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1048), 1, + ACTIONS(926), 1, aux_sym_look_ahead_token1, - ACTIONS(1051), 1, + ACTIONS(928), 1, aux_sym_look_behind_token1, - ACTIONS(1054), 1, + ACTIONS(930), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1057), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(934), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1063), 1, + ACTIONS(936), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1066), 1, + ACTIONS(938), 1, aux_sym_character_property_token1, - ACTIONS(1069), 1, + ACTIONS(940), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1072), 1, + ACTIONS(942), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1075), 1, + ACTIONS(944), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1078), 1, + ACTIONS(946), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1081), 1, + ACTIONS(948), 1, aux_sym_unicode_token1, - ACTIONS(1087), 1, + ACTIONS(954), 1, sym__callout_syntax, - ACTIONS(1090), 1, + ACTIONS(956), 1, sym__modify_syntax, - ACTIONS(1235), 1, - anon_sym_RPAREN, - STATE(41), 1, + STATE(15), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(90), 1, + sym_capture_group_condition, + STATE(348), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(350), 1, + aux_sym_quantifier_repeat1, + STATE(545), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1084), 3, + ACTIONS(950), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1018), 4, + ACTIONS(910), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(180), 24, sym__expression, sym_literal, sym_quantifier, @@ -15192,75 +12608,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [5667] = 32, - ACTIONS(1096), 1, + [3200] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1238), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1241), 1, + ACTIONS(952), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(163), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -15285,75 +12703,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [5792] = 32, - ACTIONS(748), 1, + [3328] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(908), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(912), 1, + anon_sym_PIPE, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(916), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(918), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(920), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(922), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(924), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(926), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(928), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(930), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(934), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(936), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(938), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(940), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(942), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(944), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(946), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(948), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(954), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(956), 1, sym__modify_syntax, - ACTIONS(1244), 1, + ACTIONS(1044), 1, sym_backslash, - ACTIONS(1246), 1, - anon_sym_PIPE, - ACTIONS(1248), 1, - anon_sym_RPAREN, - STATE(41), 1, + ACTIONS(1046), 1, + sym__group_end_lookahead, + STATE(15), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(90), 1, + sym_capture_group_condition, + STATE(348), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(350), 1, + aux_sym_quantifier_repeat1, + STATE(545), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(950), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(910), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(167), 24, + STATE(194), 24, sym__expression, sym_literal, sym_quantifier, @@ -15378,75 +12798,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [5917] = 32, - ACTIONS(748), 1, + [3456] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(1248), 1, + ACTIONS(1046), 1, anon_sym_RPAREN, - STATE(41), 1, + ACTIONS(1048), 1, + sym_backslash, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(189), 24, sym__expression, sym_literal, sym_quantifier, @@ -15471,75 +12893,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [6042] = 32, - ACTIONS(954), 1, + [3584] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(958), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(960), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(962), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(964), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(966), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(968), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(970), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(972), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(974), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(976), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(978), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(980), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(984), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(986), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(988), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(990), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(992), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(994), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(996), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1002), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1004), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1250), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1252), 1, - sym__group_end_lookahead, - STATE(24), 1, + ACTIONS(1050), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(380), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(382), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(580), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(998), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(956), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(130), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -15564,75 +12988,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [6167] = 32, - ACTIONS(748), 1, + [3712] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(814), 1, - anon_sym_RPAREN, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - STATE(41), 1, + ACTIONS(1052), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -15657,75 +13083,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [6292] = 32, - ACTIONS(748), 1, + [3840] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1252), 1, - anon_sym_RPAREN, - ACTIONS(1254), 1, + ACTIONS(755), 1, sym_backslash, - STATE(41), 1, + ACTIONS(1054), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(169), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -15750,75 +13178,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [6417] = 32, - ACTIONS(1096), 1, + [3968] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1256), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1259), 1, + ACTIONS(1056), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(140), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -15843,75 +13273,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [6542] = 32, - ACTIONS(748), 1, + [4096] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1262), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1264), 1, + ACTIONS(1058), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(171), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -15936,75 +13368,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [6667] = 32, - ACTIONS(1096), 1, + [4224] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1266), 1, + ACTIONS(1060), 1, sym_backslash, - ACTIONS(1269), 1, + ACTIONS(1062), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(177), 24, + STATE(183), 24, sym__expression, sym_literal, sym_quantifier, @@ -16029,75 +13463,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [6792] = 32, - ACTIONS(1012), 1, - sym_backslash, - ACTIONS(1015), 1, + [4352] = 33, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(1021), 1, + ACTIONS(770), 1, anon_sym_PIPE, - ACTIONS(1024), 1, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(1030), 1, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1033), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1036), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1039), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1042), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1045), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1048), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(1051), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(1054), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1057), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1063), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1066), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(1069), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1072), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1075), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1078), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1081), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(1087), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(1090), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(1272), 1, + ACTIONS(1064), 1, + sym_backslash, + ACTIONS(1067), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1084), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1018), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(140), 24, sym__expression, sym_literal, sym_quantifier, @@ -16122,75 +13558,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [6917] = 32, - ACTIONS(1096), 1, + [4480] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1275), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1278), 1, + ACTIONS(1070), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(168), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -16215,75 +13653,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [7042] = 32, - ACTIONS(748), 1, + [4608] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1072), 1, sym_backslash, - ACTIONS(1281), 1, + ACTIONS(1074), 1, + anon_sym_PIPE, + ACTIONS(1076), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(145), 24, sym__expression, sym_literal, sym_quantifier, @@ -16308,75 +13748,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [7167] = 32, - ACTIONS(748), 1, + [4736] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1283), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1285), 1, - anon_sym_PIPE, - ACTIONS(1287), 1, + ACTIONS(1076), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(131), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -16401,75 +13843,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [7292] = 32, - ACTIONS(748), 1, + [4864] = 33, + ACTIONS(991), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(1078), 1, + sym_backslash, + ACTIONS(1081), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(1087), 1, + anon_sym_PIPE, + ACTIONS(1090), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(1093), 1, + anon_sym_RPAREN, + ACTIONS(1096), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(1099), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(1102), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(1105), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(1108), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(1111), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(1114), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(1117), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(1120), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(1123), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(1126), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(1129), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(1132), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(1135), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(1138), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(1141), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(1144), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(1150), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(1153), 1, sym__modify_syntax, - ACTIONS(1285), 1, - anon_sym_PIPE, - ACTIONS(1287), 1, - anon_sym_RPAREN, - ACTIONS(1289), 1, - sym_backslash, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(1147), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(1084), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(132), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -16494,75 +13938,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [7417] = 32, - ACTIONS(1096), 1, + [4992] = 33, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(770), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(1291), 1, + ACTIONS(1156), 1, sym_backslash, - ACTIONS(1294), 1, + ACTIONS(1159), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(134), 24, + STATE(102), 24, sym__expression, sym_literal, sym_quantifier, @@ -16587,75 +14033,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [7542] = 32, - ACTIONS(748), 1, + [5120] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1297), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1299), 1, + ACTIONS(1162), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(136), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -16680,75 +14128,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [7667] = 32, - ACTIONS(748), 1, + [5248] = 33, + ACTIONS(991), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(1078), 1, + sym_backslash, + ACTIONS(1081), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(1087), 1, + anon_sym_PIPE, + ACTIONS(1090), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(1096), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(1099), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(1102), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(1105), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(1108), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(1111), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(1114), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(1117), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(1120), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(1123), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(1126), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(1129), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(1132), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(1135), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(1138), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(1141), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(1144), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(1150), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(1153), 1, sym__modify_syntax, - ACTIONS(1301), 1, - sym_backslash, - ACTIONS(1303), 1, - anon_sym_PIPE, - ACTIONS(1305), 1, + ACTIONS(1164), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(1147), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(1084), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(186), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -16773,75 +14223,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [7792] = 32, - ACTIONS(748), 1, + [5376] = 33, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(770), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(1307), 1, + ACTIONS(1167), 1, sym_backslash, - ACTIONS(1309), 1, + ACTIONS(1170), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(138), 24, + STATE(104), 24, sym__expression, sym_literal, sym_quantifier, @@ -16866,75 +14318,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [7917] = 32, - ACTIONS(954), 1, + [5504] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(958), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(960), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(962), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(964), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(966), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(968), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(970), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(972), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(974), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(976), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(978), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(980), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(984), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(986), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(988), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(990), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(992), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(994), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(996), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1002), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1004), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1309), 1, - sym__group_end_lookahead, - ACTIONS(1311), 1, + ACTIONS(755), 1, sym_backslash, - STATE(24), 1, + ACTIONS(1173), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(380), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(382), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(580), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(998), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(956), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(139), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -16959,75 +14413,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [8042] = 32, - ACTIONS(748), 1, + [5632] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1303), 1, - anon_sym_PIPE, - ACTIONS(1305), 1, - anon_sym_RPAREN, - ACTIONS(1313), 1, + ACTIONS(1175), 1, sym_backslash, - STATE(41), 1, + ACTIONS(1177), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(187), 24, + STATE(106), 24, sym__expression, sym_literal, sym_quantifier, @@ -17052,75 +14508,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [8167] = 32, - ACTIONS(748), 1, + [5760] = 33, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(770), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1179), 1, sym_backslash, - ACTIONS(1315), 1, + ACTIONS(1182), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(146), 24, sym__expression, sym_literal, sym_quantifier, @@ -17145,75 +14603,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [8292] = 32, - ACTIONS(748), 1, + [5888] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1185), 1, sym_backslash, - ACTIONS(1317), 1, + ACTIONS(1187), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(87), 24, sym__expression, sym_literal, sym_quantifier, @@ -17238,75 +14698,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [8417] = 32, - ACTIONS(1096), 1, + [6016] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(908), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(916), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(918), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(920), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(922), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(924), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(926), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(928), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(930), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(934), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(936), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(938), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(940), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(942), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(944), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(946), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(948), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(954), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(956), 1, sym__modify_syntax, - ACTIONS(1319), 1, + ACTIONS(1187), 1, + sym__group_end_lookahead, + ACTIONS(1189), 1, sym_backslash, - ACTIONS(1322), 1, - anon_sym_RPAREN, - STATE(41), 1, + STATE(15), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(90), 1, + sym_capture_group_condition, + STATE(348), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(350), 1, + aux_sym_quantifier_repeat1, + STATE(545), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(950), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(910), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(189), 24, + STATE(111), 24, sym__expression, sym_literal, sym_quantifier, @@ -17331,75 +14793,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [8542] = 32, - ACTIONS(748), 1, + [6144] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1191), 1, sym_backslash, - ACTIONS(1325), 1, + ACTIONS(1193), 1, + anon_sym_PIPE, + ACTIONS(1195), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(168), 24, sym__expression, sym_literal, sym_quantifier, @@ -17424,75 +14888,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [8667] = 32, - ACTIONS(1012), 1, - sym_backslash, - ACTIONS(1015), 1, + [6272] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1021), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1024), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1030), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1033), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1036), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1039), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1042), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1045), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1048), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1051), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1054), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1057), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1063), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1066), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1069), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1072), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1075), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1078), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1081), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1087), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1090), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1327), 1, + ACTIONS(755), 1, + sym_backslash, + ACTIONS(1197), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1084), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1018), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -17517,75 +14983,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [8792] = 32, - ACTIONS(748), 1, + [6400] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(908), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(916), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(918), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(920), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(922), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(924), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(926), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(928), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(930), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(934), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(936), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(938), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(940), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(942), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(944), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(946), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(948), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(954), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(956), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1199), 1, sym_backslash, - ACTIONS(1330), 1, - anon_sym_RPAREN, - STATE(41), 1, + ACTIONS(1201), 1, + sym__group_end_lookahead, + STATE(15), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(90), 1, + sym_capture_group_condition, + STATE(348), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(350), 1, + aux_sym_quantifier_repeat1, + STATE(545), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(950), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(910), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(176), 24, sym__expression, sym_literal, sym_quantifier, @@ -17610,75 +15078,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [8917] = 32, - ACTIONS(748), 1, + [6528] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(1198), 1, + ACTIONS(1201), 1, anon_sym_RPAREN, - STATE(41), 1, + ACTIONS(1203), 1, + sym_backslash, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(184), 24, sym__expression, sym_literal, sym_quantifier, @@ -17703,75 +15173,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [9042] = 32, - ACTIONS(748), 1, + [6656] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1205), 1, sym_backslash, - ACTIONS(1332), 1, + ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(190), 24, sym__expression, sym_literal, sym_quantifier, @@ -17796,75 +15268,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [9167] = 32, - ACTIONS(748), 1, + [6784] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1334), 1, + ACTIONS(1209), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -17889,75 +15363,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [9292] = 32, - ACTIONS(748), 1, + [6912] = 33, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(770), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(1336), 1, + ACTIONS(1211), 1, sym_backslash, - ACTIONS(1338), 1, + ACTIONS(1214), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(191), 24, + STATE(193), 24, sym__expression, sym_literal, sym_quantifier, @@ -17982,75 +15458,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [9417] = 32, - ACTIONS(748), 1, + [7040] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1340), 1, + ACTIONS(1217), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -18075,75 +15553,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [9542] = 32, - ACTIONS(748), 1, + [7168] = 33, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(770), 1, + anon_sym_PIPE, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(1340), 1, - anon_sym_RPAREN, - ACTIONS(1342), 1, + ACTIONS(1219), 1, sym_backslash, - ACTIONS(1344), 1, - anon_sym_PIPE, - STATE(41), 1, + ACTIONS(1222), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(152), 24, + STATE(110), 24, sym__expression, sym_literal, sym_quantifier, @@ -18168,75 +15648,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [9667] = 32, - ACTIONS(1096), 1, + [7296] = 33, + ACTIONS(991), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(1078), 1, + sym_backslash, + ACTIONS(1081), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(1087), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(1090), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1096), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(1099), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(1102), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(1105), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(1108), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(1111), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(1114), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(1117), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(1120), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(1123), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(1126), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(1129), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(1132), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(1135), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1138), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(1141), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(1144), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(1150), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(1153), 1, sym__modify_syntax, - ACTIONS(1346), 1, - sym_backslash, - ACTIONS(1349), 1, + ACTIONS(1225), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(1147), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(1084), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(154), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -18261,75 +15743,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [9792] = 32, - ACTIONS(748), 1, + [7424] = 33, + ACTIONS(991), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(1078), 1, + sym_backslash, + ACTIONS(1081), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(1087), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(1090), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(1096), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(1099), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(1102), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(1105), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(1108), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(1111), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(1114), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(1117), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(1120), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(1123), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(1126), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(1129), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(1132), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(1135), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(1138), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(1141), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(1144), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(1150), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(1153), 1, sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(1352), 1, + ACTIONS(1228), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(1147), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(1084), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -18354,75 +15838,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [9917] = 32, - ACTIONS(748), 1, + [7552] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1354), 1, + ACTIONS(1231), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -18447,75 +15933,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [10042] = 32, - ACTIONS(748), 1, + [7680] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1233), 1, sym_backslash, - ACTIONS(1356), 1, + ACTIONS(1235), 1, + anon_sym_PIPE, + ACTIONS(1237), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(125), 24, sym__expression, sym_literal, sym_quantifier, @@ -18540,75 +16028,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [10167] = 32, - ACTIONS(1096), 1, + [7808] = 33, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(770), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(1358), 1, + ACTIONS(1239), 1, sym_backslash, - ACTIONS(1361), 1, + ACTIONS(1242), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(192), 24, + STATE(127), 24, sym__expression, sym_literal, sym_quantifier, @@ -18633,75 +16123,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [10292] = 32, - ACTIONS(748), 1, + [7936] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1364), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1366), 1, - anon_sym_PIPE, - ACTIONS(1368), 1, + ACTIONS(1245), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(156), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -18726,75 +16218,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [10417] = 32, - ACTIONS(748), 1, + [8064] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(1370), 1, + ACTIONS(1245), 1, anon_sym_RPAREN, - STATE(41), 1, + ACTIONS(1247), 1, + sym_backslash, + ACTIONS(1249), 1, + anon_sym_PIPE, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(128), 24, sym__expression, sym_literal, sym_quantifier, @@ -18819,75 +16313,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [10542] = 32, - ACTIONS(748), 1, + [8192] = 33, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(770), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1251), 1, sym_backslash, - ACTIONS(1372), 1, + ACTIONS(1254), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(130), 24, sym__expression, sym_literal, sym_quantifier, @@ -18912,75 +16408,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [10667] = 32, - ACTIONS(748), 1, + [8320] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1374), 1, + ACTIONS(1257), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -19005,75 +16503,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [10792] = 32, - ACTIONS(748), 1, + [8448] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1376), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1378), 1, - anon_sym_PIPE, - ACTIONS(1380), 1, + ACTIONS(1259), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(127), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -19098,75 +16598,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [10917] = 32, - ACTIONS(748), 1, + [8576] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1382), 1, + ACTIONS(1261), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -19191,75 +16693,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [11042] = 32, - ACTIONS(1012), 1, - sym_backslash, - ACTIONS(1015), 1, + [8704] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1021), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1024), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1030), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1033), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1036), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1039), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1042), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1045), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1048), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1051), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1054), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1057), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1063), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1066), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1069), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1072), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1075), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1078), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1081), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1087), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1090), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1384), 1, + ACTIONS(755), 1, + sym_backslash, + ACTIONS(1263), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1084), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1018), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -19284,75 +16788,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [11167] = 32, - ACTIONS(748), 1, + [8832] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1354), 1, - anon_sym_RPAREN, - ACTIONS(1387), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1389), 1, - anon_sym_PIPE, - STATE(41), 1, + ACTIONS(1265), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(223), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -19377,75 +16883,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [11292] = 32, - ACTIONS(748), 1, + [8960] = 33, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(770), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1267), 1, sym_backslash, - ACTIONS(1391), 1, + ACTIONS(1270), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(195), 24, sym__expression, sym_literal, sym_quantifier, @@ -19470,75 +16978,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [11417] = 32, - ACTIONS(748), 1, + [9088] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1273), 1, sym_backslash, - ACTIONS(1393), 1, + ACTIONS(1275), 1, + anon_sym_PIPE, + ACTIONS(1277), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(147), 24, sym__expression, sym_literal, sym_quantifier, @@ -19563,75 +17073,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [11542] = 32, - ACTIONS(748), 1, + [9216] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1279), 1, sym_backslash, - ACTIONS(1395), 1, + ACTIONS(1281), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(149), 24, sym__expression, sym_literal, sym_quantifier, @@ -19656,75 +17168,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [11667] = 32, - ACTIONS(748), 1, + [9344] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(1397), 1, + ACTIONS(1281), 1, anon_sym_RPAREN, - STATE(41), 1, + ACTIONS(1283), 1, + sym_backslash, + ACTIONS(1285), 1, + anon_sym_PIPE, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(150), 24, sym__expression, sym_literal, sym_quantifier, @@ -19749,75 +17263,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [11792] = 32, - ACTIONS(748), 1, + [9472] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1287), 1, sym_backslash, - ACTIONS(1399), 1, + ACTIONS(1289), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(152), 24, sym__expression, sym_literal, sym_quantifier, @@ -19842,75 +17358,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [11917] = 32, - ACTIONS(1096), 1, + [9600] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1401), 1, + ACTIONS(1291), 1, sym_backslash, - ACTIONS(1404), 1, + ACTIONS(1293), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(227), 24, + STATE(153), 24, sym__expression, sym_literal, sym_quantifier, @@ -19935,75 +17453,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [12042] = 32, - ACTIONS(748), 1, + [9728] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1407), 1, + ACTIONS(1295), 1, sym_backslash, - ACTIONS(1409), 1, + ACTIONS(1297), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(173), 24, + STATE(88), 24, sym__expression, sym_literal, sym_quantifier, @@ -20028,75 +17548,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [12167] = 32, - ACTIONS(954), 1, + [9856] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(958), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(960), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(962), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(964), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(966), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(968), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(970), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(972), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(974), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(976), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(978), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(980), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(984), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(986), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(988), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(990), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(992), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(994), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(996), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1002), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1004), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1196), 1, + ACTIONS(1299), 1, sym_backslash, - ACTIONS(1411), 1, - sym__group_end_lookahead, - STATE(24), 1, + ACTIONS(1301), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(380), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(382), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(580), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(998), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(956), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(218), 24, + STATE(155), 24, sym__expression, sym_literal, sym_quantifier, @@ -20121,75 +17643,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [12292] = 32, - ACTIONS(748), 1, + [9984] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1303), 1, sym_backslash, - ACTIONS(1411), 1, + ACTIONS(1305), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(156), 24, sym__expression, sym_literal, sym_quantifier, @@ -20214,75 +17738,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [12417] = 32, - ACTIONS(748), 1, + [10112] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1409), 1, - anon_sym_RPAREN, - ACTIONS(1413), 1, + ACTIONS(1307), 1, sym_backslash, - ACTIONS(1415), 1, - anon_sym_PIPE, - STATE(41), 1, + ACTIONS(1309), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(174), 24, + STATE(178), 24, sym__expression, sym_literal, sym_quantifier, @@ -20307,75 +17833,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [12542] = 32, - ACTIONS(1096), 1, + [10240] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1417), 1, + ACTIONS(1311), 1, sym_backslash, - ACTIONS(1420), 1, + ACTIONS(1313), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(230), 24, + STATE(174), 24, sym__expression, sym_literal, sym_quantifier, @@ -20400,75 +17928,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [12667] = 32, - ACTIONS(748), 1, + [10368] = 33, + ACTIONS(991), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(1078), 1, + sym_backslash, + ACTIONS(1081), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(1087), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(1090), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(1096), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(1099), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(1102), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(1105), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(1108), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(1111), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(1114), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(1117), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(1120), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(1123), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(1126), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(1129), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(1132), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(1135), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(1138), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(1141), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(1144), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(1150), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(1153), 1, sym__modify_syntax, - ACTIONS(1423), 1, - sym_backslash, - ACTIONS(1425), 1, + ACTIONS(1315), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(1147), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(1084), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(102), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -20493,75 +18023,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [12792] = 32, - ACTIONS(748), 1, + [10496] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1318), 1, sym_backslash, - ACTIONS(1427), 1, + ACTIONS(1320), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(112), 24, sym__expression, sym_literal, sym_quantifier, @@ -20586,75 +18118,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [12917] = 32, - ACTIONS(748), 1, + [10624] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1429), 1, + ACTIONS(1322), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -20679,75 +18213,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [13042] = 32, - ACTIONS(748), 1, + [10752] = 33, + ACTIONS(764), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(770), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(773), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(779), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(782), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(785), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(788), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, + ACTIONS(791), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(794), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(797), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(800), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(803), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(809), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(812), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(815), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(818), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(821), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(824), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(827), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(830), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(836), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(839), 1, sym__modify_syntax, - ACTIONS(1431), 1, + ACTIONS(1324), 1, sym_backslash, - ACTIONS(1433), 1, + ACTIONS(1327), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(833), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(767), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(178), 24, + STATE(175), 24, sym__expression, sym_literal, sym_quantifier, @@ -20772,75 +18308,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [13167] = 32, - ACTIONS(748), 1, + [10880] = 33, + ACTIONS(991), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(1078), 1, + sym_backslash, + ACTIONS(1081), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(1087), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(1090), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(1096), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(1099), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(1102), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(1105), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(1108), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(1111), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(1114), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(1117), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(1120), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(1123), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(1126), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(1129), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(1132), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(1135), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(1138), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(1141), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(1144), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(1150), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(1153), 1, sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(1435), 1, + ACTIONS(1330), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(1147), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(1084), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -20865,75 +18403,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [13292] = 32, - ACTIONS(1096), 1, + [11008] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(908), 1, aux_sym_literal_token1, - ACTIONS(1102), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(1105), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(916), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1114), 1, + ACTIONS(918), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1117), 1, + ACTIONS(920), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1120), 1, + ACTIONS(922), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1123), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1126), 1, + ACTIONS(924), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1129), 1, + ACTIONS(926), 1, aux_sym_look_ahead_token1, - ACTIONS(1132), 1, + ACTIONS(928), 1, aux_sym_look_behind_token1, - ACTIONS(1135), 1, + ACTIONS(930), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1138), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(1141), 1, + ACTIONS(934), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1144), 1, + ACTIONS(936), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1147), 1, + ACTIONS(938), 1, aux_sym_character_property_token1, - ACTIONS(1150), 1, + ACTIONS(940), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1153), 1, + ACTIONS(942), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(944), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1159), 1, + ACTIONS(946), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1162), 1, + ACTIONS(948), 1, aux_sym_unicode_token1, - ACTIONS(1168), 1, + ACTIONS(954), 1, sym__callout_syntax, - ACTIONS(1171), 1, + ACTIONS(956), 1, sym__modify_syntax, - ACTIONS(1437), 1, + ACTIONS(1320), 1, + sym__group_end_lookahead, + ACTIONS(1333), 1, sym_backslash, - ACTIONS(1440), 1, - anon_sym_RPAREN, - STATE(41), 1, + STATE(15), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(90), 1, + sym_capture_group_condition, + STATE(348), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(350), 1, + aux_sym_quantifier_repeat1, + STATE(545), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1165), 3, + ACTIONS(950), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1099), 4, + ACTIONS(910), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(182), 24, + STATE(107), 24, sym__expression, sym_literal, sym_quantifier, @@ -20958,75 +18498,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [13417] = 32, - ACTIONS(1012), 1, - sym_backslash, - ACTIONS(1015), 1, + [11136] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1021), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1024), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1030), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1033), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1036), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1039), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1042), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1045), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1048), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1051), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1054), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1057), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1063), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1066), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1069), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1072), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1075), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1078), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1081), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1087), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1090), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1443), 1, + ACTIONS(755), 1, + sym_backslash, + ACTIONS(1335), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1084), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1018), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -21051,75 +18593,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [13542] = 32, - ACTIONS(748), 1, + [11264] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1446), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1448), 1, + ACTIONS(1337), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(183), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -21144,75 +18688,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [13667] = 32, - ACTIONS(748), 1, + [11392] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(906), 1, + sym_backslash, + ACTIONS(908), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(916), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(918), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(920), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(922), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(924), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(926), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(928), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(930), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(934), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(936), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(938), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(940), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(942), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(944), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(946), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(948), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(954), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(956), 1, sym__modify_syntax, - ACTIONS(1450), 1, - sym_backslash, - ACTIONS(1452), 1, - anon_sym_RPAREN, - STATE(41), 1, + ACTIONS(1339), 1, + sym__group_end_lookahead, + STATE(15), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(90), 1, + sym_capture_group_condition, + STATE(348), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(350), 1, + aux_sym_quantifier_repeat1, + STATE(545), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(950), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(910), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(185), 24, + STATE(180), 24, sym__expression, sym_literal, sym_quantifier, @@ -21237,75 +18783,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [13792] = 32, - ACTIONS(748), 1, + [11520] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1454), 1, + ACTIONS(1341), 1, sym_backslash, - ACTIONS(1456), 1, + ACTIONS(1343), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(188), 24, + STATE(122), 24, sym__expression, sym_literal, sym_quantifier, @@ -21330,75 +18878,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [13917] = 32, - ACTIONS(1012), 1, - sym_backslash, - ACTIONS(1015), 1, + [11648] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1021), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1024), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1030), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1033), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1036), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1039), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1042), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1045), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1048), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1051), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1054), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1057), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1063), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1066), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1069), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1072), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1075), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1078), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1081), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1087), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1090), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1458), 1, + ACTIONS(755), 1, + sym_backslash, + ACTIONS(1345), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1084), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1018), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -21423,75 +18973,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [14042] = 32, - ACTIONS(748), 1, + [11776] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1461), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1463), 1, + ACTIONS(1347), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(166), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -21516,75 +19068,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [14167] = 32, - ACTIONS(748), 1, + [11904] = 33, + ACTIONS(962), 1, + sym__group_end_lookahead, + ACTIONS(991), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(1349), 1, + sym_backslash, + ACTIONS(1352), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(1358), 1, + anon_sym_PIPE, + ACTIONS(1361), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(1364), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(1367), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(1370), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(1373), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(1376), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(1379), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(1382), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(1385), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(1388), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(1391), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(1394), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(1397), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(1400), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(1403), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(1406), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(1409), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(1412), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(1418), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(1421), 1, sym__modify_syntax, - ACTIONS(1435), 1, - anon_sym_RPAREN, - ACTIONS(1465), 1, - sym_backslash, - ACTIONS(1467), 1, - anon_sym_PIPE, - STATE(41), 1, + STATE(15), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(90), 1, + sym_capture_group_condition, + STATE(348), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(350), 1, + aux_sym_quantifier_repeat1, + STATE(545), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(1415), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(1355), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(209), 24, + STATE(180), 24, sym__expression, sym_literal, sym_quantifier, @@ -21609,75 +19163,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [14292] = 32, - ACTIONS(748), 1, + [12032] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1424), 1, sym_backslash, - ACTIONS(1469), 1, + ACTIONS(1426), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(119), 24, sym__expression, sym_literal, sym_quantifier, @@ -21702,75 +19258,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [14417] = 32, - ACTIONS(748), 1, + [12160] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1471), 1, + ACTIONS(1428), 1, sym_backslash, - ACTIONS(1473), 1, + ACTIONS(1430), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(164), 24, + STATE(179), 24, sym__expression, sym_literal, sym_quantifier, @@ -21795,75 +19353,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [14542] = 32, - ACTIONS(748), 1, + [12288] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1475), 1, + ACTIONS(1432), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -21888,75 +19448,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [14667] = 32, - ACTIONS(748), 1, + [12416] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(756), 1, + ACTIONS(709), 1, + anon_sym_PIPE, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1477), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1479), 1, - anon_sym_PIPE, - ACTIONS(1481), 1, + ACTIONS(1339), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(101), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -21981,75 +19543,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [14792] = 32, - ACTIONS(748), 1, + [12544] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1481), 1, - anon_sym_RPAREN, - ACTIONS(1483), 1, + ACTIONS(755), 1, sym_backslash, - STATE(41), 1, + ACTIONS(1434), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(147), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -22074,75 +19638,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [14917] = 32, - ACTIONS(954), 1, + [12672] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(958), 1, - anon_sym_PIPE, - ACTIONS(960), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(962), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(964), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(966), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(968), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(970), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(972), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(974), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(976), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(978), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(980), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(984), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(986), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(988), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(990), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(992), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(994), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(996), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1002), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1004), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1196), 1, + ACTIONS(1436), 1, sym_backslash, - ACTIONS(1475), 1, - sym__group_end_lookahead, - STATE(24), 1, + ACTIONS(1438), 1, + anon_sym_PIPE, + ACTIONS(1440), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(380), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(382), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(580), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(998), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(956), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(218), 24, + STATE(91), 24, sym__expression, sym_literal, sym_quantifier, @@ -22167,75 +19733,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [15042] = 32, - ACTIONS(870), 1, - sym__group_end_lookahead, - ACTIONS(1485), 1, - sym_backslash, - ACTIONS(1488), 1, + [12800] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1494), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1497), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1500), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1503), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1506), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1509), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1512), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1515), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1518), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1521), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1524), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1527), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1530), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1533), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1536), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1539), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1542), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1545), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1548), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1551), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1557), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1560), 1, + ACTIONS(753), 1, sym__modify_syntax, - STATE(24), 1, + ACTIONS(1440), 1, + anon_sym_RPAREN, + ACTIONS(1442), 1, + sym_backslash, + STATE(40), 1, sym_modify_extended_1, - STATE(380), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(382), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(580), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1554), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1491), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(218), 24, + STATE(92), 24, sym__expression, sym_literal, sym_quantifier, @@ -22260,75 +19828,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [15167] = 32, - ACTIONS(748), 1, + [12928] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1563), 1, + ACTIONS(1444), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -22353,75 +19923,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [15292] = 32, - ACTIONS(748), 1, + [13056] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, - anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(721), 1, + anon_sym_LPAREN_QMARK_SQUOTE, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1565), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1567), 1, + ACTIONS(1446), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(214), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -22446,75 +20018,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [15417] = 32, - ACTIONS(954), 1, + [13184] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(958), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(960), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(962), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(964), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(966), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(968), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(970), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(972), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(974), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(976), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(978), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(980), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(984), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(986), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(988), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(990), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(992), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(994), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(996), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1002), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1004), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1567), 1, - sym__group_end_lookahead, - ACTIONS(1569), 1, + ACTIONS(755), 1, sym_backslash, - STATE(24), 1, + ACTIONS(1448), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(380), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(382), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(580), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(998), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(956), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(217), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -22539,75 +20113,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [15542] = 32, - ACTIONS(7), 1, + [13312] = 33, + ACTIONS(962), 1, + anon_sym_RPAREN, + ACTIONS(991), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(1078), 1, + sym_backslash, + ACTIONS(1081), 1, aux_sym_literal_token1, - ACTIONS(11), 1, + ACTIONS(1087), 1, anon_sym_PIPE, - ACTIONS(13), 1, + ACTIONS(1090), 1, anon_sym_LPAREN, - ACTIONS(15), 1, + ACTIONS(1096), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(17), 1, + ACTIONS(1099), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(19), 1, + ACTIONS(1102), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(21), 1, + ACTIONS(1105), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(23), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(25), 1, + ACTIONS(1108), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(27), 1, + ACTIONS(1111), 1, aux_sym_look_ahead_token1, - ACTIONS(29), 1, + ACTIONS(1114), 1, aux_sym_look_behind_token1, - ACTIONS(31), 1, + ACTIONS(1117), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(33), 1, + ACTIONS(1120), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(1123), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(37), 1, + ACTIONS(1126), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(39), 1, + ACTIONS(1129), 1, aux_sym_character_property_token1, - ACTIONS(41), 1, + ACTIONS(1132), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(43), 1, + ACTIONS(1135), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(45), 1, + ACTIONS(1138), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(47), 1, + ACTIONS(1141), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(49), 1, + ACTIONS(1144), 1, aux_sym_unicode_token1, - ACTIONS(53), 1, + ACTIONS(1150), 1, sym__callout_syntax, - ACTIONS(55), 1, + ACTIONS(1153), 1, sym__modify_syntax, - ACTIONS(1571), 1, - ts_builtin_sym_end, - ACTIONS(1573), 1, - sym_backslash, - STATE(26), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(386), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(387), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(578), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(51), 3, + ACTIONS(1147), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(9), 4, + ACTIONS(1084), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(117), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -22632,75 +20208,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [15667] = 32, - ACTIONS(1012), 1, - sym_backslash, - ACTIONS(1015), 1, + [13440] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1021), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1024), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1030), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1033), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1036), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1039), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1042), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1045), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1048), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1051), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1054), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1057), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1063), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1066), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1069), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1072), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1075), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1078), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1081), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1087), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1090), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1575), 1, + ACTIONS(1450), 1, + sym_backslash, + ACTIONS(1452), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1084), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1018), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(196), 24, sym__expression, sym_literal, sym_quantifier, @@ -22725,75 +20303,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [15792] = 32, - ACTIONS(748), 1, + [13568] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1578), 1, + ACTIONS(1454), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -22818,75 +20398,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [15917] = 32, - ACTIONS(954), 1, + [13696] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(906), 1, + sym_backslash, + ACTIONS(908), 1, aux_sym_literal_token1, - ACTIONS(958), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(960), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(962), 1, + ACTIONS(916), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(964), 1, + ACTIONS(918), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(966), 1, + ACTIONS(920), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(968), 1, + ACTIONS(922), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(970), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(972), 1, + ACTIONS(924), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(974), 1, + ACTIONS(926), 1, aux_sym_look_ahead_token1, - ACTIONS(976), 1, + ACTIONS(928), 1, aux_sym_look_behind_token1, - ACTIONS(978), 1, + ACTIONS(930), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(980), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(934), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(984), 1, + ACTIONS(936), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(986), 1, + ACTIONS(938), 1, aux_sym_character_property_token1, - ACTIONS(988), 1, + ACTIONS(940), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(990), 1, + ACTIONS(942), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(992), 1, + ACTIONS(944), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(994), 1, + ACTIONS(946), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(996), 1, + ACTIONS(948), 1, aux_sym_unicode_token1, - ACTIONS(1002), 1, + ACTIONS(954), 1, sym__callout_syntax, - ACTIONS(1004), 1, + ACTIONS(956), 1, sym__modify_syntax, - ACTIONS(1196), 1, - sym_backslash, - ACTIONS(1578), 1, + ACTIONS(1446), 1, sym__group_end_lookahead, - STATE(24), 1, + STATE(15), 1, sym_modify_extended_1, - STATE(380), 1, - aux_sym_quantifier_repeat1, - STATE(382), 1, + STATE(90), 1, + sym_capture_group_condition, + STATE(348), 1, aux_sym_literal_repeat1, - STATE(580), 1, + STATE(350), 1, + aux_sym_quantifier_repeat1, + STATE(545), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(998), 3, + ACTIONS(950), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(956), 4, + ACTIONS(910), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(218), 24, + STATE(180), 24, sym__expression, sym_literal, sym_quantifier, @@ -22911,75 +20493,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [16042] = 32, - ACTIONS(870), 1, - anon_sym_RPAREN, - ACTIONS(1012), 1, - sym_backslash, - ACTIONS(1015), 1, + [13824] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(1021), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(1024), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(1030), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(1033), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(1036), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(1039), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(1042), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(1045), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(1048), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(1051), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(1054), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(1057), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(1063), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1066), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(1069), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(1072), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(1075), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(1078), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(1081), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1087), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1090), 1, + ACTIONS(753), 1, sym__modify_syntax, - STATE(41), 1, + ACTIONS(755), 1, + sym_backslash, + ACTIONS(1456), 1, + anon_sym_RPAREN, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(1084), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1018), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -23004,75 +20588,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [16167] = 32, - ACTIONS(748), 1, + [13952] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(755), 1, sym_backslash, - ACTIONS(1580), 1, + ACTIONS(1458), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(191), 24, sym__expression, sym_literal, sym_quantifier, @@ -23097,75 +20683,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [16292] = 32, - ACTIONS(748), 1, + [14080] = 33, + ACTIONS(7), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(11), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(13), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(15), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(17), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(19), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(21), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, + ACTIONS(23), 1, anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(25), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(27), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(29), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(31), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(35), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(37), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(39), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(41), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(43), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(45), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(47), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(49), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(53), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(55), 1, sym__modify_syntax, - ACTIONS(1582), 1, + ACTIONS(1460), 1, + ts_builtin_sym_end, + ACTIONS(1462), 1, sym_backslash, - ACTIONS(1584), 1, - anon_sym_RPAREN, - STATE(41), 1, + STATE(26), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(199), 1, + sym_capture_group_condition, + STATE(352), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(353), 1, + aux_sym_quantifier_repeat1, + STATE(544), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(51), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(9), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(224), 24, + STATE(109), 24, sym__expression, sym_literal, sym_quantifier, @@ -23190,75 +20778,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [16417] = 32, - ACTIONS(748), 1, + [14208] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(906), 1, + sym_backslash, + ACTIONS(908), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(916), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(918), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(920), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(922), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(924), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(926), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(928), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(930), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(934), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(936), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(938), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(940), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(942), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(944), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(946), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(948), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(954), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(956), 1, sym__modify_syntax, - ACTIONS(816), 1, - sym_backslash, - ACTIONS(1586), 1, - anon_sym_RPAREN, - STATE(41), 1, + ACTIONS(1444), 1, + sym__group_end_lookahead, + STATE(15), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(90), 1, + sym_capture_group_condition, + STATE(348), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(350), 1, + aux_sym_quantifier_repeat1, + STATE(545), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(950), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(910), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(180), 24, sym__expression, sym_literal, sym_quantifier, @@ -23283,75 +20873,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [16542] = 32, - ACTIONS(748), 1, + [14336] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(754), 1, - anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1464), 1, sym_backslash, - ACTIONS(1588), 1, + ACTIONS(1466), 1, + anon_sym_PIPE, + ACTIONS(1468), 1, anon_sym_RPAREN, - STATE(41), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(378), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(103), 24, sym__expression, sym_literal, sym_quantifier, @@ -23376,75 +20968,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [16667] = 32, - ACTIONS(748), 1, + [14464] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(908), 1, aux_sym_literal_token1, - ACTIONS(754), 1, + ACTIONS(912), 1, anon_sym_PIPE, - ACTIONS(756), 1, + ACTIONS(914), 1, anon_sym_LPAREN, - ACTIONS(760), 1, + ACTIONS(916), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(762), 1, + ACTIONS(918), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(764), 1, + ACTIONS(920), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(766), 1, + ACTIONS(922), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(768), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(770), 1, + ACTIONS(924), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(772), 1, + ACTIONS(926), 1, aux_sym_look_ahead_token1, - ACTIONS(774), 1, + ACTIONS(928), 1, aux_sym_look_behind_token1, - ACTIONS(776), 1, + ACTIONS(930), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(778), 1, + ACTIONS(932), 1, anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(934), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(782), 1, + ACTIONS(936), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(784), 1, + ACTIONS(938), 1, aux_sym_character_property_token1, - ACTIONS(786), 1, + ACTIONS(940), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(788), 1, + ACTIONS(942), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(790), 1, + ACTIONS(944), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(792), 1, + ACTIONS(946), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(794), 1, + ACTIONS(948), 1, aux_sym_unicode_token1, - ACTIONS(798), 1, + ACTIONS(954), 1, sym__callout_syntax, - ACTIONS(800), 1, + ACTIONS(956), 1, sym__modify_syntax, - ACTIONS(816), 1, + ACTIONS(1470), 1, sym_backslash, - ACTIONS(1590), 1, - anon_sym_RPAREN, - STATE(41), 1, + ACTIONS(1472), 1, + sym__group_end_lookahead, + STATE(15), 1, sym_modify_extended_1, - STATE(378), 1, - aux_sym_quantifier_repeat1, - STATE(379), 1, + STATE(90), 1, + sym_capture_group_condition, + STATE(348), 1, aux_sym_literal_repeat1, - STATE(579), 1, + STATE(350), 1, + aux_sym_quantifier_repeat1, + STATE(545), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(796), 3, + ACTIONS(950), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(750), 4, + ACTIONS(910), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(226), 24, + STATE(198), 24, sym__expression, sym_literal, sym_quantifier, @@ -23469,75 +21063,77 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [16792] = 32, - ACTIONS(954), 1, + [14592] = 33, + ACTIONS(23), 1, + anon_sym_LPAREN_QMARK_LPAREN, + ACTIONS(703), 1, aux_sym_literal_token1, - ACTIONS(958), 1, + ACTIONS(709), 1, anon_sym_PIPE, - ACTIONS(960), 1, + ACTIONS(711), 1, anon_sym_LPAREN, - ACTIONS(962), 1, + ACTIONS(715), 1, anon_sym_LPAREN_QMARK_COLON, - ACTIONS(964), 1, + ACTIONS(717), 1, anon_sym_LPAREN_QMARK_GT, - ACTIONS(966), 1, + ACTIONS(719), 1, anon_sym_LPAREN_QMARK_LT, - ACTIONS(968), 1, + ACTIONS(721), 1, anon_sym_LPAREN_QMARK_SQUOTE, - ACTIONS(970), 1, - anon_sym_LPAREN_QMARK_LPAREN, - ACTIONS(972), 1, + ACTIONS(723), 1, anon_sym_LPAREN_QMARK_POUND, - ACTIONS(974), 1, + ACTIONS(725), 1, aux_sym_look_ahead_token1, - ACTIONS(976), 1, + ACTIONS(727), 1, aux_sym_look_behind_token1, - ACTIONS(978), 1, + ACTIONS(729), 1, anon_sym_LPAREN_QMARK_LBRACE, - ACTIONS(980), 1, + ACTIONS(731), 1, anon_sym_LBRACK, - ACTIONS(982), 1, + ACTIONS(733), 1, anon_sym_LPAREN_QMARK_TILDE_PIPE, - ACTIONS(984), 1, + ACTIONS(735), 1, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(986), 1, + ACTIONS(737), 1, aux_sym_character_property_token1, - ACTIONS(988), 1, + ACTIONS(739), 1, anon_sym_BSLASH_BSLASHg_LT, - ACTIONS(990), 1, + ACTIONS(741), 1, anon_sym_BSLASH_BSLASHg_SQUOTE, - ACTIONS(992), 1, + ACTIONS(743), 1, anon_sym_BSLASH_BSLASHk_LT, - ACTIONS(994), 1, + ACTIONS(745), 1, anon_sym_BSLASH_BSLASHk_SQUOTE, - ACTIONS(996), 1, + ACTIONS(747), 1, aux_sym_unicode_token1, - ACTIONS(1002), 1, + ACTIONS(751), 1, sym__callout_syntax, - ACTIONS(1004), 1, + ACTIONS(753), 1, sym__modify_syntax, - ACTIONS(1584), 1, - sym__group_end_lookahead, - ACTIONS(1592), 1, + ACTIONS(1472), 1, + anon_sym_RPAREN, + ACTIONS(1474), 1, sym_backslash, - STATE(24), 1, + STATE(40), 1, sym_modify_extended_1, - STATE(380), 1, + STATE(158), 1, + sym_capture_group_condition, + STATE(345), 1, aux_sym_quantifier_repeat1, - STATE(382), 1, + STATE(346), 1, aux_sym_literal_repeat1, - STATE(580), 1, + STATE(547), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(998), 3, + ACTIONS(749), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(956), 4, + ACTIONS(705), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - STATE(225), 24, + STATE(188), 24, sym__expression, sym_literal, sym_quantifier, @@ -23562,15 +21158,15 @@ static const uint16_t ts_small_parse_table[] = { sym_unicode, sym_meta_control_char, aux_sym_regex_repeat1, - [16917] = 5, - ACTIONS(1596), 1, + [14720] = 5, + ACTIONS(1478), 1, anon_sym_BSLASHn, - STATE(234), 1, + STATE(204), 1, aux_sym_comment_extended_repeat1, - ACTIONS(1601), 2, + ACTIONS(1483), 2, aux_sym_comment_extended_token1, aux_sym_comment_extended_token2, - ACTIONS(1599), 11, + ACTIONS(1481), 11, sym__callout_syntax, sym__modify_syntax, anon_sym_BSLASHt, @@ -23582,7 +21178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1594), 24, + ACTIONS(1476), 24, aux_sym_literal_token1, sym_backslash, anon_sym_QMARK, @@ -23607,15 +21203,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_QMARK_TILDE_PIPE, anon_sym_LPAREN_QMARK_TILDE, aux_sym_unicode_token1, - [16967] = 5, - ACTIONS(1605), 1, + [14770] = 5, + ACTIONS(1487), 1, anon_sym_BSLASHn, - STATE(235), 1, + STATE(206), 1, aux_sym_comment_extended_repeat1, - ACTIONS(1601), 2, + ACTIONS(1492), 2, aux_sym_comment_extended_token1, aux_sym_comment_extended_token2, - ACTIONS(1608), 11, + ACTIONS(1490), 12, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_BSLASHt, @@ -23627,7 +21224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1603), 24, + ACTIONS(1485), 23, aux_sym_literal_token1, sym_backslash, anon_sym_QMARK, @@ -23636,7 +21233,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_quantifier_token1, anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_LT, @@ -23652,16 +21248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_QMARK_TILDE_PIPE, anon_sym_LPAREN_QMARK_TILDE, aux_sym_unicode_token1, - [17017] = 4, - STATE(235), 1, + [14820] = 5, + ACTIONS(1494), 1, + anon_sym_BSLASHn, + STATE(205), 1, aux_sym_comment_extended_repeat1, - ACTIONS(1614), 2, + ACTIONS(1483), 2, aux_sym_comment_extended_token1, aux_sym_comment_extended_token2, - ACTIONS(1612), 12, + ACTIONS(1490), 11, sym__callout_syntax, sym__modify_syntax, - anon_sym_BSLASHn, anon_sym_BSLASHt, aux_sym_character_property_token1, anon_sym_BSLASH_BSLASHg_LT, @@ -23671,7 +21268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1610), 24, + ACTIONS(1485), 24, aux_sym_literal_token1, sym_backslash, anon_sym_QMARK, @@ -23696,14 +21293,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_QMARK_TILDE_PIPE, anon_sym_LPAREN_QMARK_TILDE, aux_sym_unicode_token1, - [17065] = 4, - STATE(236), 1, + [14870] = 4, + STATE(205), 1, aux_sym_comment_extended_repeat1, - ACTIONS(1617), 2, + ACTIONS(1501), 2, aux_sym_comment_extended_token1, aux_sym_comment_extended_token2, - ACTIONS(1612), 13, - sym__group_end_lookahead, + ACTIONS(1499), 12, sym__callout_syntax, sym__modify_syntax, anon_sym_BSLASHn, @@ -23716,7 +21312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1610), 23, + ACTIONS(1497), 24, aux_sym_literal_token1, sym_backslash, anon_sym_QMARK, @@ -23725,6 +21321,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_quantifier_token1, anon_sym_PIPE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_LT, @@ -23740,18 +21337,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_QMARK_TILDE_PIPE, anon_sym_LPAREN_QMARK_TILDE, aux_sym_unicode_token1, - [17113] = 5, - ACTIONS(1620), 1, - anon_sym_BSLASHn, - STATE(236), 1, + [14918] = 4, + STATE(206), 1, aux_sym_comment_extended_repeat1, - ACTIONS(1623), 2, + ACTIONS(1504), 2, aux_sym_comment_extended_token1, aux_sym_comment_extended_token2, - ACTIONS(1608), 12, + ACTIONS(1499), 13, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, + anon_sym_BSLASHn, anon_sym_BSLASHt, aux_sym_character_property_token1, anon_sym_BSLASH_BSLASHg_LT, @@ -23761,7 +21357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1603), 23, + ACTIONS(1497), 23, aux_sym_literal_token1, sym_backslash, anon_sym_QMARK, @@ -23785,15 +21381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_QMARK_TILDE_PIPE, anon_sym_LPAREN_QMARK_TILDE, aux_sym_unicode_token1, - [17163] = 5, - ACTIONS(1625), 1, + [14966] = 5, + ACTIONS(1507), 1, anon_sym_BSLASHn, - STATE(237), 1, + STATE(203), 1, aux_sym_comment_extended_repeat1, - ACTIONS(1623), 2, + ACTIONS(1492), 2, aux_sym_comment_extended_token1, aux_sym_comment_extended_token2, - ACTIONS(1599), 12, + ACTIONS(1481), 12, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -23806,7 +21402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1594), 23, + ACTIONS(1476), 23, aux_sym_literal_token1, sym_backslash, anon_sym_QMARK, @@ -23830,8 +21426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_QMARK_TILDE_PIPE, anon_sym_LPAREN_QMARK_TILDE, aux_sym_unicode_token1, - [17213] = 2, - ACTIONS(1630), 12, + [15016] = 2, + ACTIONS(1512), 12, sym__callout_syntax, sym__modify_syntax, anon_sym_BSLASHn, @@ -23844,7 +21440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1628), 26, + ACTIONS(1510), 26, aux_sym_literal_token1, sym_backslash, anon_sym_QMARK, @@ -23871,8 +21467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_QMARK_TILDE_PIPE, anon_sym_LPAREN_QMARK_TILDE, aux_sym_unicode_token1, - [17256] = 2, - ACTIONS(1630), 13, + [15059] = 2, + ACTIONS(1512), 13, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -23886,7 +21482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - ACTIONS(1628), 25, + ACTIONS(1510), 25, aux_sym_literal_token1, sym_backslash, anon_sym_QMARK, @@ -23912,22 +21508,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_QMARK_TILDE_PIPE, anon_sym_LPAREN_QMARK_TILDE, aux_sym_unicode_token1, - [17299] = 5, + [15102] = 5, + ACTIONS(1521), 1, + anon_sym_POUND, + STATE(210), 1, + aux_sym_comment_extended_repeat2, + ACTIONS(1518), 3, + anon_sym_SPACE, + anon_sym_BSLASHn, + anon_sym_BSLASHt, + ACTIONS(1514), 5, + aux_sym_literal_token1, + sym_backslash, + anon_sym_LPAREN, + anon_sym_LPAREN_QMARK_LT, + anon_sym_LPAREN_QMARK_TILDE, + ACTIONS(1516), 27, + sym__group_end_lookahead, + sym__callout_syntax, + sym__modify_syntax, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_STAR, + aux_sym_quantifier_token1, + anon_sym_PIPE, + anon_sym_LPAREN_QMARK_COLON, + anon_sym_LPAREN_QMARK_GT, + anon_sym_LPAREN_QMARK_SQUOTE, + anon_sym_LPAREN_QMARK_LPAREN, + anon_sym_LPAREN_QMARK_POUND, + aux_sym_look_ahead_token1, + aux_sym_look_behind_token1, + anon_sym_LPAREN_QMARK_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN_QMARK_TILDE_PIPE, + aux_sym_character_property_token1, + anon_sym_BSLASH_BSLASHg_LT, + anon_sym_BSLASH_BSLASHg_SQUOTE, + anon_sym_BSLASH_BSLASHk_LT, + anon_sym_BSLASH_BSLASHk_SQUOTE, + aux_sym_unicode_token1, + anon_sym_BSLASH_BSLASHc, + anon_sym_BSLASH_BSLASHC_DASH, + anon_sym_BSLASH_BSLASHM_DASH, + [15150] = 5, ACTIONS(91), 1, anon_sym_POUND, - STATE(242), 1, + STATE(212), 1, aux_sym_comment_extended_repeat2, - ACTIONS(1636), 3, + ACTIONS(1528), 3, anon_sym_SPACE, anon_sym_BSLASHn, anon_sym_BSLASHt, - ACTIONS(1632), 5, + ACTIONS(1524), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1634), 27, + ACTIONS(1526), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -23955,22 +21594,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17347] = 5, - ACTIONS(1645), 1, + [15198] = 5, + ACTIONS(1533), 1, anon_sym_POUND, - STATE(242), 1, + STATE(212), 1, aux_sym_comment_extended_repeat2, - ACTIONS(1642), 3, + ACTIONS(1530), 3, anon_sym_SPACE, anon_sym_BSLASHn, anon_sym_BSLASHt, - ACTIONS(1638), 5, + ACTIONS(1514), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1640), 27, + ACTIONS(1516), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -23998,21 +21637,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17395] = 4, - STATE(244), 1, + [15246] = 4, + STATE(214), 1, aux_sym_quantifier_repeat1, - ACTIONS(1650), 4, + ACTIONS(1538), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - ACTIONS(1648), 5, + ACTIONS(1536), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1652), 27, + ACTIONS(1540), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -24040,21 +21679,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17441] = 4, - STATE(244), 1, + [15292] = 4, + STATE(214), 1, aux_sym_quantifier_repeat1, - ACTIONS(1656), 4, + ACTIONS(1544), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - ACTIONS(1654), 5, + ACTIONS(1542), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1659), 27, + ACTIONS(1547), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -24082,17 +21721,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17487] = 4, - ACTIONS(1663), 1, + [15338] = 4, + ACTIONS(1551), 1, aux_sym_literal_token1, - STATE(247), 1, + STATE(217), 1, aux_sym_literal_repeat1, - ACTIONS(1661), 4, + ACTIONS(1549), 4, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1665), 31, + ACTIONS(1553), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -24124,21 +21763,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17533] = 4, - STATE(248), 1, + [15384] = 4, + STATE(218), 1, aux_sym_quantifier_repeat1, - ACTIONS(1667), 4, + ACTIONS(1555), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - ACTIONS(1648), 5, + ACTIONS(1536), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1652), 27, + ACTIONS(1540), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_PIPE, @@ -24166,17 +21805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17579] = 4, - ACTIONS(1671), 1, + [15430] = 4, + ACTIONS(1559), 1, aux_sym_literal_token1, - STATE(247), 1, + STATE(217), 1, aux_sym_literal_repeat1, - ACTIONS(1669), 4, + ACTIONS(1557), 4, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1674), 31, + ACTIONS(1562), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -24208,21 +21847,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17625] = 4, - STATE(248), 1, + [15476] = 4, + STATE(218), 1, aux_sym_quantifier_repeat1, - ACTIONS(1676), 4, + ACTIONS(1564), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - ACTIONS(1654), 5, + ACTIONS(1542), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1659), 27, + ACTIONS(1547), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_PIPE, @@ -24250,17 +21889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17671] = 4, - ACTIONS(1679), 1, + [15522] = 4, + ACTIONS(1567), 1, aux_sym_literal_token1, - STATE(250), 1, + STATE(220), 1, aux_sym_literal_repeat1, - ACTIONS(1661), 4, + ACTIONS(1549), 4, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1665), 31, + ACTIONS(1553), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24292,17 +21931,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17717] = 4, - ACTIONS(1681), 1, + [15568] = 4, + ACTIONS(1569), 1, aux_sym_literal_token1, - STATE(250), 1, + STATE(220), 1, aux_sym_literal_repeat1, - ACTIONS(1669), 4, + ACTIONS(1557), 4, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1674), 31, + ACTIONS(1562), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24334,65 +21973,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17763] = 5, - ACTIONS(1687), 1, - anon_sym_POUND, - STATE(251), 1, - aux_sym_comment_extended_repeat2, - ACTIONS(1684), 3, - anon_sym_SPACE, - anon_sym_BSLASHn, - anon_sym_BSLASHt, - ACTIONS(1638), 5, - aux_sym_literal_token1, - sym_backslash, - anon_sym_LPAREN, - anon_sym_LPAREN_QMARK_LT, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1640), 27, - sym__group_end_lookahead, - sym__callout_syntax, - sym__modify_syntax, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - anon_sym_PIPE, - anon_sym_LPAREN_QMARK_COLON, - anon_sym_LPAREN_QMARK_GT, - anon_sym_LPAREN_QMARK_SQUOTE, - anon_sym_LPAREN_QMARK_LPAREN, - anon_sym_LPAREN_QMARK_POUND, - aux_sym_look_ahead_token1, - aux_sym_look_behind_token1, - anon_sym_LPAREN_QMARK_LBRACE, - anon_sym_LBRACK, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - aux_sym_character_property_token1, - anon_sym_BSLASH_BSLASHg_LT, - anon_sym_BSLASH_BSLASHg_SQUOTE, - anon_sym_BSLASH_BSLASHk_LT, - anon_sym_BSLASH_BSLASHk_SQUOTE, - aux_sym_unicode_token1, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - [17811] = 5, - ACTIONS(361), 1, + [15614] = 5, + ACTIONS(354), 1, anon_sym_POUND, - STATE(251), 1, + STATE(210), 1, aux_sym_comment_extended_repeat2, - ACTIONS(1690), 3, + ACTIONS(1572), 3, anon_sym_SPACE, anon_sym_BSLASHn, anon_sym_BSLASHt, - ACTIONS(1632), 5, + ACTIONS(1524), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1634), 27, + ACTIONS(1526), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -24420,14 +22016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17859] = 2, - ACTIONS(1692), 5, + [15662] = 2, + ACTIONS(1574), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1694), 31, + ACTIONS(1576), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24459,14 +22055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17900] = 2, - ACTIONS(1696), 5, + [15703] = 2, + ACTIONS(1578), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1698), 31, + ACTIONS(1580), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24498,15 +22094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17941] = 2, - ACTIONS(1700), 5, + [15744] = 2, + ACTIONS(1582), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1702), 31, - sym__group_end_lookahead, + ACTIONS(1584), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24514,6 +22109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -24537,15 +22133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [17982] = 2, - ACTIONS(1704), 5, + [15785] = 2, + ACTIONS(1586), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1706), 31, - sym__group_end_lookahead, + ACTIONS(1588), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24553,6 +22148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -24576,15 +22172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18023] = 2, - ACTIONS(1708), 5, + [15826] = 2, + ACTIONS(1590), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1710), 31, - sym__group_end_lookahead, + ACTIONS(1592), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24592,6 +22187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -24615,15 +22211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18064] = 2, - ACTIONS(1712), 5, + [15867] = 2, + ACTIONS(1594), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1714), 31, - sym__group_end_lookahead, + ACTIONS(1596), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24631,6 +22226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -24654,15 +22250,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18105] = 2, - ACTIONS(1716), 5, + [15908] = 2, + ACTIONS(1598), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1718), 31, - sym__group_end_lookahead, + ACTIONS(1600), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24670,6 +22265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -24693,14 +22289,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18146] = 2, - ACTIONS(1720), 5, + [15949] = 2, + ACTIONS(1602), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1722), 31, + ACTIONS(1604), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24732,14 +22328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18187] = 2, - ACTIONS(1724), 5, + [15990] = 2, + ACTIONS(1606), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1726), 31, + ACTIONS(1608), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24771,14 +22367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18228] = 2, - ACTIONS(1728), 5, + [16031] = 2, + ACTIONS(1610), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1730), 31, + ACTIONS(1612), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24810,14 +22406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18269] = 2, - ACTIONS(1716), 5, + [16072] = 2, + ACTIONS(1582), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1718), 31, + ACTIONS(1584), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24825,7 +22422,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -24849,15 +22445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18310] = 2, - ACTIONS(1732), 5, + [16113] = 2, + ACTIONS(1614), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1734), 31, - sym__group_end_lookahead, + ACTIONS(1616), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24865,6 +22460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -24888,15 +22484,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18351] = 2, - ACTIONS(1638), 5, + [16154] = 2, + ACTIONS(1618), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1640), 31, - sym__group_end_lookahead, + ACTIONS(1620), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24904,6 +22499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -24927,15 +22523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18392] = 2, - ACTIONS(1736), 5, + [16195] = 2, + ACTIONS(1622), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1738), 31, - sym__group_end_lookahead, + ACTIONS(1624), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24943,6 +22538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -24966,15 +22562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18433] = 2, - ACTIONS(1740), 5, + [16236] = 2, + ACTIONS(1626), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1742), 31, - sym__group_end_lookahead, + ACTIONS(1628), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -24982,6 +22577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -25005,15 +22601,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18474] = 2, - ACTIONS(1744), 5, + [16277] = 2, + ACTIONS(1630), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1746), 31, - sym__group_end_lookahead, + ACTIONS(1632), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25021,6 +22616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -25044,14 +22640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18515] = 2, - ACTIONS(1732), 5, + [16318] = 2, + ACTIONS(1634), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1734), 31, + ACTIONS(1636), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25083,14 +22679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18556] = 2, - ACTIONS(1748), 5, + [16359] = 2, + ACTIONS(1638), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1750), 31, + ACTIONS(1640), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25122,14 +22718,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18597] = 2, - ACTIONS(1752), 5, + [16400] = 2, + ACTIONS(1642), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1754), 31, + ACTIONS(1644), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25161,14 +22757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18638] = 2, - ACTIONS(1756), 5, + [16441] = 2, + ACTIONS(1646), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1758), 31, + ACTIONS(1648), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25200,14 +22796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18679] = 2, - ACTIONS(1760), 5, + [16482] = 2, + ACTIONS(1650), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1762), 31, + ACTIONS(1652), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25239,14 +22835,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18720] = 2, - ACTIONS(1764), 5, + [16523] = 2, + ACTIONS(1654), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1766), 31, + ACTIONS(1656), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25278,14 +22874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18761] = 2, - ACTIONS(1768), 5, + [16564] = 2, + ACTIONS(1658), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1770), 31, + ACTIONS(1660), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25317,15 +22913,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18802] = 2, - ACTIONS(1728), 5, + [16605] = 2, + ACTIONS(1662), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1730), 31, - sym__group_end_lookahead, + ACTIONS(1664), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25333,6 +22928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -25356,15 +22952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18843] = 2, - ACTIONS(1748), 5, + [16646] = 2, + ACTIONS(1666), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1750), 31, - sym__group_end_lookahead, + ACTIONS(1668), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25372,6 +22967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -25395,14 +22991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18884] = 2, - ACTIONS(1768), 5, + [16687] = 2, + ACTIONS(1670), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1770), 31, + ACTIONS(1672), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -25434,14 +23030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18925] = 2, - ACTIONS(1724), 5, + [16728] = 2, + ACTIONS(1674), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1726), 31, + ACTIONS(1676), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -25473,14 +23069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [18966] = 2, - ACTIONS(1772), 5, + [16769] = 2, + ACTIONS(1678), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1774), 31, + ACTIONS(1680), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -25512,14 +23108,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19007] = 2, - ACTIONS(1776), 5, + [16810] = 2, + ACTIONS(1682), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1778), 31, + ACTIONS(1684), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25551,14 +23147,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19048] = 2, - ACTIONS(1780), 5, + [16851] = 2, + ACTIONS(1686), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1782), 31, + ACTIONS(1688), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25590,15 +23186,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19089] = 2, - ACTIONS(1784), 5, + [16892] = 2, + ACTIONS(1690), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1786), 31, - sym__group_end_lookahead, + ACTIONS(1692), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25606,6 +23201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -25629,14 +23225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19130] = 2, - ACTIONS(1720), 5, + [16933] = 2, + ACTIONS(1694), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1722), 31, + ACTIONS(1696), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -25668,14 +23264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19171] = 2, - ACTIONS(1788), 5, + [16974] = 2, + ACTIONS(1698), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1790), 31, + ACTIONS(1700), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -25707,14 +23303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19212] = 2, - ACTIONS(1792), 5, + [17015] = 2, + ACTIONS(1702), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1794), 31, + ACTIONS(1704), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25722,7 +23319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -25746,14 +23342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19253] = 2, - ACTIONS(1796), 5, + [17056] = 2, + ACTIONS(1706), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1798), 31, + ACTIONS(1708), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25761,7 +23358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -25785,14 +23381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19294] = 2, - ACTIONS(1800), 5, + [17097] = 2, + ACTIONS(1710), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1802), 31, + ACTIONS(1712), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25800,7 +23397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -25824,14 +23420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19335] = 2, - ACTIONS(1804), 5, + [17138] = 2, + ACTIONS(1714), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1806), 31, + ACTIONS(1716), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -25863,15 +23459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19376] = 2, - ACTIONS(1752), 5, + [17179] = 2, + ACTIONS(1718), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1754), 31, - sym__group_end_lookahead, + ACTIONS(1720), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25879,6 +23474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -25902,14 +23498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19417] = 2, - ACTIONS(1808), 5, + [17220] = 2, + ACTIONS(1722), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1810), 31, + ACTIONS(1724), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25941,14 +23537,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19458] = 2, - ACTIONS(1812), 5, + [17261] = 2, + ACTIONS(1726), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1814), 31, + ACTIONS(1728), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25980,14 +23576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19499] = 2, - ACTIONS(1816), 5, + [17302] = 2, + ACTIONS(1586), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1818), 31, + ACTIONS(1588), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -25995,7 +23592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26019,14 +23615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19540] = 2, - ACTIONS(1820), 5, + [17343] = 2, + ACTIONS(1730), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1822), 31, + ACTIONS(1732), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26058,14 +23654,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19581] = 2, - ACTIONS(1824), 5, + [17384] = 2, + ACTIONS(1734), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1826), 31, + ACTIONS(1736), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26097,15 +23693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19622] = 2, - ACTIONS(1828), 5, + [17425] = 2, + ACTIONS(1738), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1830), 31, - sym__group_end_lookahead, + ACTIONS(1740), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26113,6 +23708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26136,15 +23732,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19663] = 2, - ACTIONS(1760), 5, + [17466] = 2, + ACTIONS(1742), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1762), 31, - sym__group_end_lookahead, + ACTIONS(1744), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26152,6 +23747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26175,14 +23771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19704] = 2, - ACTIONS(1832), 5, + [17507] = 2, + ACTIONS(1746), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1834), 31, + ACTIONS(1748), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26190,7 +23787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26214,14 +23810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19745] = 2, - ACTIONS(1836), 5, + [17548] = 2, + ACTIONS(1750), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1838), 31, + ACTIONS(1752), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -26253,14 +23849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19786] = 2, - ACTIONS(1840), 5, + [17589] = 2, + ACTIONS(1754), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1842), 31, + ACTIONS(1756), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26292,14 +23888,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19827] = 2, - ACTIONS(1844), 5, + [17630] = 2, + ACTIONS(1590), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1846), 31, + ACTIONS(1592), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26307,7 +23904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26331,14 +23927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19868] = 2, - ACTIONS(1848), 5, + [17671] = 2, + ACTIONS(1758), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1850), 31, + ACTIONS(1760), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26370,15 +23966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19909] = 2, - ACTIONS(1852), 5, + [17712] = 2, + ACTIONS(1762), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1854), 31, - sym__group_end_lookahead, + ACTIONS(1764), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26386,6 +23981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26409,14 +24005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19950] = 2, - ACTIONS(1856), 5, + [17753] = 2, + ACTIONS(1578), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1858), 31, + ACTIONS(1580), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26424,7 +24021,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26448,14 +24044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [19991] = 2, - ACTIONS(1860), 5, + [17794] = 2, + ACTIONS(1766), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1862), 31, + ACTIONS(1768), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26487,14 +24083,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20032] = 2, - ACTIONS(1864), 5, + [17835] = 2, + ACTIONS(1594), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1866), 31, + ACTIONS(1596), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26502,7 +24099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26526,14 +24122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20073] = 2, - ACTIONS(1868), 5, + [17876] = 2, + ACTIONS(1598), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1870), 31, + ACTIONS(1600), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26541,7 +24138,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26565,14 +24161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20114] = 2, - ACTIONS(1872), 5, + [17917] = 2, + ACTIONS(1602), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1874), 31, + ACTIONS(1604), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -26604,14 +24200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20155] = 2, - ACTIONS(1876), 5, + [17958] = 2, + ACTIONS(1606), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1878), 31, + ACTIONS(1608), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -26643,14 +24239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20196] = 2, - ACTIONS(1880), 5, + [17999] = 2, + ACTIONS(1770), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1882), 31, + ACTIONS(1772), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26658,7 +24255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26682,14 +24278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20237] = 2, - ACTIONS(1884), 5, + [18040] = 2, + ACTIONS(1610), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1886), 31, + ACTIONS(1612), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26697,7 +24294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26721,14 +24317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20278] = 2, - ACTIONS(1888), 5, + [18081] = 2, + ACTIONS(1614), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1890), 31, + ACTIONS(1616), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26736,7 +24333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26760,14 +24356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20319] = 2, - ACTIONS(1892), 5, + [18122] = 2, + ACTIONS(1774), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1894), 31, + ACTIONS(1776), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -26799,14 +24395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20360] = 2, - ACTIONS(1896), 5, + [18163] = 2, + ACTIONS(1618), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1898), 31, + ACTIONS(1620), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26814,7 +24411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26838,14 +24434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20401] = 2, - ACTIONS(1900), 5, + [18204] = 2, + ACTIONS(1778), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1902), 31, + ACTIONS(1780), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26853,7 +24450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26877,14 +24473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20442] = 2, - ACTIONS(1772), 5, + [18245] = 2, + ACTIONS(1622), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1774), 31, + ACTIONS(1624), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26892,7 +24489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26916,14 +24512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20483] = 2, - ACTIONS(1784), 5, + [18286] = 2, + ACTIONS(1626), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1786), 31, + ACTIONS(1628), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26931,7 +24528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26955,14 +24551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20524] = 2, - ACTIONS(1904), 5, + [18327] = 2, + ACTIONS(1630), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1906), 31, + ACTIONS(1632), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -26970,7 +24567,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -26994,14 +24590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20565] = 2, - ACTIONS(1756), 5, + [18368] = 2, + ACTIONS(1634), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1758), 31, + ACTIONS(1636), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27033,14 +24629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20606] = 2, - ACTIONS(1828), 5, + [18409] = 2, + ACTIONS(1574), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1830), 31, + ACTIONS(1576), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -27048,7 +24645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -27072,14 +24668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20647] = 2, - ACTIONS(1908), 5, + [18450] = 2, + ACTIONS(1638), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1910), 31, + ACTIONS(1640), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -27087,7 +24684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -27111,14 +24707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20688] = 2, - ACTIONS(1912), 5, + [18491] = 2, + ACTIONS(1642), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1914), 31, + ACTIONS(1644), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -27126,7 +24723,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -27150,14 +24746,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20729] = 2, - ACTIONS(1916), 5, + [18532] = 2, + ACTIONS(1646), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1918), 31, + ACTIONS(1648), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -27165,7 +24762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -27189,14 +24785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20770] = 2, - ACTIONS(1920), 5, + [18573] = 2, + ACTIONS(1650), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1922), 31, + ACTIONS(1652), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -27204,7 +24801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -27228,14 +24824,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20811] = 2, - ACTIONS(1764), 5, + [18614] = 2, + ACTIONS(1782), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1766), 31, + ACTIONS(1784), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27267,14 +24863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20852] = 2, - ACTIONS(1924), 5, + [18655] = 2, + ACTIONS(1786), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1926), 31, + ACTIONS(1788), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -27282,7 +24879,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -27306,14 +24902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20893] = 2, - ACTIONS(1928), 5, + [18696] = 2, + ACTIONS(1654), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1930), 31, + ACTIONS(1656), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -27321,7 +24918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -27345,14 +24941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20934] = 2, - ACTIONS(1932), 5, + [18737] = 2, + ACTIONS(1790), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1934), 31, + ACTIONS(1792), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -27360,7 +24957,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -27384,14 +24980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [20975] = 2, - ACTIONS(1776), 5, + [18778] = 2, + ACTIONS(1794), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1778), 31, + ACTIONS(1796), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27423,14 +25019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21016] = 2, - ACTIONS(1780), 5, + [18819] = 2, + ACTIONS(1658), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1782), 31, + ACTIONS(1660), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27462,14 +25058,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21057] = 2, - ACTIONS(1792), 5, + [18860] = 2, + ACTIONS(1662), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1794), 31, + ACTIONS(1664), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27501,14 +25097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21098] = 2, - ACTIONS(1788), 5, + [18901] = 2, + ACTIONS(1666), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1790), 31, + ACTIONS(1668), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -27516,7 +25113,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -27540,14 +25136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21139] = 2, - ACTIONS(1804), 5, + [18942] = 2, + ACTIONS(1798), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1806), 31, + ACTIONS(1800), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -27555,7 +25152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -27579,14 +25175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21180] = 2, - ACTIONS(1796), 5, + [18983] = 2, + ACTIONS(1682), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1798), 31, + ACTIONS(1684), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27618,14 +25214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21221] = 2, - ACTIONS(1800), 5, + [19024] = 2, + ACTIONS(1686), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1802), 31, + ACTIONS(1688), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27657,14 +25253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21262] = 2, - ACTIONS(1692), 5, + [19065] = 2, + ACTIONS(1718), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1694), 31, + ACTIONS(1720), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27696,14 +25292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21303] = 2, - ACTIONS(1808), 5, + [19106] = 2, + ACTIONS(1722), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1810), 31, + ACTIONS(1724), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27735,14 +25331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21344] = 2, - ACTIONS(1812), 5, + [19147] = 2, + ACTIONS(1726), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1814), 31, + ACTIONS(1728), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27774,14 +25370,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21385] = 2, - ACTIONS(1816), 5, + [19188] = 2, + ACTIONS(1730), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1818), 31, + ACTIONS(1732), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27813,14 +25409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21426] = 2, - ACTIONS(1820), 5, + [19229] = 2, + ACTIONS(1734), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1822), 31, + ACTIONS(1736), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27852,14 +25448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21467] = 2, - ACTIONS(1824), 5, + [19270] = 2, + ACTIONS(1738), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1826), 31, + ACTIONS(1740), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27891,14 +25487,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21508] = 2, - ACTIONS(1832), 5, + [19311] = 2, + ACTIONS(1742), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1834), 31, + ACTIONS(1744), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27930,14 +25526,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21549] = 2, - ACTIONS(1840), 5, + [19352] = 2, + ACTIONS(1802), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1842), 31, + ACTIONS(1804), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -27969,14 +25565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21590] = 2, - ACTIONS(1844), 5, + [19393] = 2, + ACTIONS(1754), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1846), 31, + ACTIONS(1756), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -28008,14 +25604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21631] = 2, - ACTIONS(1848), 5, + [19434] = 2, + ACTIONS(1758), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1850), 31, + ACTIONS(1760), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -28047,14 +25643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21672] = 2, - ACTIONS(1856), 5, + [19475] = 2, + ACTIONS(1762), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1858), 31, + ACTIONS(1764), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -28086,14 +25682,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21713] = 2, - ACTIONS(1860), 5, + [19516] = 2, + ACTIONS(1766), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1862), 31, + ACTIONS(1768), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -28125,15 +25721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21754] = 2, - ACTIONS(1864), 5, + [19557] = 2, + ACTIONS(1798), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1866), 31, - sym__group_end_lookahead, + ACTIONS(1800), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28141,6 +25736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28164,15 +25760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21795] = 2, - ACTIONS(1868), 5, + [19598] = 2, + ACTIONS(1794), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1870), 31, - sym__group_end_lookahead, + ACTIONS(1796), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28180,6 +25775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28203,15 +25799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21836] = 2, - ACTIONS(1880), 5, + [19639] = 2, + ACTIONS(1790), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1882), 31, - sym__group_end_lookahead, + ACTIONS(1792), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28219,6 +25814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28242,14 +25838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21877] = 2, - ACTIONS(1704), 5, + [19680] = 2, + ACTIONS(1786), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1706), 31, + ACTIONS(1788), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28281,14 +25877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21918] = 2, - ACTIONS(1708), 5, + [19721] = 2, + ACTIONS(1782), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1710), 31, + ACTIONS(1784), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28320,14 +25916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [21959] = 2, - ACTIONS(1712), 5, + [19762] = 2, + ACTIONS(1806), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1714), 31, + ACTIONS(1808), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28335,7 +25932,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28359,14 +25955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22000] = 2, - ACTIONS(1638), 5, + [19803] = 2, + ACTIONS(1810), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1640), 31, + ACTIONS(1812), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28374,7 +25971,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28398,15 +25994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22041] = 2, - ACTIONS(1884), 5, + [19844] = 2, + ACTIONS(1778), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1886), 31, - sym__group_end_lookahead, + ACTIONS(1780), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28414,6 +26009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28437,15 +26033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22082] = 2, - ACTIONS(1888), 5, + [19885] = 2, + ACTIONS(1774), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1890), 31, - sym__group_end_lookahead, + ACTIONS(1776), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28453,6 +26048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28476,14 +26072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22123] = 2, - ACTIONS(1736), 5, + [19926] = 2, + ACTIONS(1770), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1738), 31, + ACTIONS(1772), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28515,14 +26111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22164] = 2, - ACTIONS(1740), 5, + [19967] = 2, + ACTIONS(1710), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1742), 31, + ACTIONS(1712), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28554,14 +26150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22205] = 2, - ACTIONS(1744), 5, + [20008] = 2, + ACTIONS(1706), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1746), 31, + ACTIONS(1708), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28593,15 +26189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22246] = 2, - ACTIONS(1896), 5, + [20049] = 2, + ACTIONS(1702), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1898), 31, - sym__group_end_lookahead, + ACTIONS(1704), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28609,6 +26204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28632,15 +26228,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22287] = 2, - ACTIONS(1900), 5, + [20090] = 2, + ACTIONS(1698), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1902), 31, - sym__group_end_lookahead, + ACTIONS(1700), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28648,6 +26243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28671,15 +26267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22328] = 2, - ACTIONS(1904), 5, + [20131] = 2, + ACTIONS(1814), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1906), 31, - sym__group_end_lookahead, + ACTIONS(1816), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28687,6 +26282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28710,15 +26306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22369] = 2, - ACTIONS(1696), 5, + [20172] = 2, + ACTIONS(1694), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1698), 31, - sym__group_end_lookahead, + ACTIONS(1696), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28726,6 +26321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28749,15 +26345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22410] = 2, - ACTIONS(1908), 5, + [20213] = 2, + ACTIONS(1678), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1910), 31, - sym__group_end_lookahead, + ACTIONS(1680), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28765,6 +26360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28788,15 +26384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22451] = 2, - ACTIONS(1912), 5, + [20254] = 2, + ACTIONS(1674), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1914), 31, - sym__group_end_lookahead, + ACTIONS(1676), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28804,6 +26399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28827,15 +26423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22492] = 2, - ACTIONS(1916), 5, + [20295] = 2, + ACTIONS(1670), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1918), 31, - sym__group_end_lookahead, + ACTIONS(1672), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28843,6 +26438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28866,14 +26462,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22533] = 2, - ACTIONS(1920), 5, + [20336] = 2, + ACTIONS(1514), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1922), 31, + ACTIONS(1516), 31, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -28905,15 +26501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22574] = 2, - ACTIONS(1924), 5, + [20377] = 2, + ACTIONS(1806), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1926), 31, - sym__group_end_lookahead, + ACTIONS(1808), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28921,6 +26516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28944,15 +26540,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22615] = 2, - ACTIONS(1928), 5, + [20418] = 2, + ACTIONS(1514), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1930), 31, - sym__group_end_lookahead, + ACTIONS(1516), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28960,6 +26555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -28983,15 +26579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22656] = 2, - ACTIONS(1932), 5, + [20459] = 2, + ACTIONS(1810), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1934), 31, - sym__group_end_lookahead, + ACTIONS(1812), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -28999,6 +26594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -29022,14 +26618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22697] = 2, - ACTIONS(1892), 5, + [20500] = 2, + ACTIONS(1818), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1894), 31, + ACTIONS(1820), 31, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29037,7 +26634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -29061,14 +26657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22738] = 2, - ACTIONS(1876), 5, + [20541] = 2, + ACTIONS(1818), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1878), 31, + ACTIONS(1820), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29100,14 +26696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22779] = 2, - ACTIONS(1872), 5, + [20582] = 2, + ACTIONS(1714), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1874), 31, + ACTIONS(1716), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29139,14 +26735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22820] = 2, - ACTIONS(1852), 5, + [20623] = 2, + ACTIONS(1746), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1854), 31, + ACTIONS(1748), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29178,14 +26774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22861] = 2, - ACTIONS(1836), 5, + [20664] = 2, + ACTIONS(1750), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1838), 31, + ACTIONS(1752), 31, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29217,21 +26813,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22902] = 4, - STATE(376), 1, + [20705] = 4, + STATE(356), 1, aux_sym_quantifier_repeat1, - ACTIONS(1936), 4, + ACTIONS(1822), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - ACTIONS(1654), 5, + ACTIONS(1536), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1659), 23, + ACTIONS(1540), 23, sym__callout_syntax, sym__modify_syntax, anon_sym_PIPE, @@ -29255,17 +26851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22944] = 4, - ACTIONS(1939), 1, + [20747] = 4, + ACTIONS(1824), 1, aux_sym_literal_token1, - STATE(377), 1, + STATE(354), 1, aux_sym_literal_repeat1, - ACTIONS(1669), 4, + ACTIONS(1549), 4, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1674), 27, + ACTIONS(1553), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29293,25 +26889,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [22986] = 4, - STATE(376), 1, - aux_sym_quantifier_repeat1, - ACTIONS(1942), 4, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, - ACTIONS(1648), 5, + [20789] = 4, + ACTIONS(1826), 1, aux_sym_literal_token1, + STATE(347), 1, + aux_sym_literal_repeat1, + ACTIONS(1557), 4, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1652), 23, + ACTIONS(1562), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_STAR, + aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -29331,17 +26927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23028] = 4, - ACTIONS(1944), 1, + [20831] = 4, + ACTIONS(1829), 1, aux_sym_literal_token1, - STATE(377), 1, + STATE(347), 1, aux_sym_literal_repeat1, - ACTIONS(1661), 4, + ACTIONS(1549), 4, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1665), 27, + ACTIONS(1553), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29349,7 +26946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -29369,21 +26965,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23070] = 4, - STATE(381), 1, + [20873] = 4, + STATE(349), 1, aux_sym_quantifier_repeat1, - ACTIONS(1946), 4, + ACTIONS(1831), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - ACTIONS(1648), 5, + ACTIONS(1542), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1652), 23, + ACTIONS(1547), 23, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -29407,21 +27003,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23112] = 4, - STATE(381), 1, + [20915] = 4, + STATE(349), 1, aux_sym_quantifier_repeat1, - ACTIONS(1948), 4, + ACTIONS(1834), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - ACTIONS(1654), 5, + ACTIONS(1536), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1659), 23, + ACTIONS(1540), 23, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -29445,20 +27041,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23154] = 4, - ACTIONS(1951), 1, + [20957] = 4, + ACTIONS(1836), 1, aux_sym_literal_token1, - STATE(383), 1, + STATE(351), 1, aux_sym_literal_repeat1, - ACTIONS(1661), 4, + ACTIONS(1557), 4, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1665), 27, - sym__group_end_lookahead, + ACTIONS(1562), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -29483,20 +27079,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23196] = 4, - ACTIONS(1953), 1, + [20999] = 4, + ACTIONS(1839), 1, aux_sym_literal_token1, - STATE(383), 1, + STATE(351), 1, aux_sym_literal_repeat1, - ACTIONS(1669), 4, + ACTIONS(1549), 4, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1674), 27, - sym__group_end_lookahead, + ACTIONS(1553), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -29521,21 +27117,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23238] = 4, - STATE(384), 1, + [21041] = 4, + STATE(355), 1, aux_sym_quantifier_repeat1, - ACTIONS(1956), 4, + ACTIONS(1841), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - ACTIONS(1654), 5, + ACTIONS(1536), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1659), 23, + ACTIONS(1540), 23, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -29559,25 +27155,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23280] = 4, - ACTIONS(1959), 1, + [21083] = 4, + ACTIONS(1843), 1, aux_sym_literal_token1, - STATE(385), 1, + STATE(354), 1, aux_sym_literal_repeat1, - ACTIONS(1669), 4, + ACTIONS(1557), 4, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1674), 27, + ACTIONS(1562), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -29597,21 +27193,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23322] = 4, - STATE(384), 1, + [21125] = 4, + STATE(355), 1, aux_sym_quantifier_repeat1, - ACTIONS(1962), 4, + ACTIONS(1846), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - ACTIONS(1648), 5, + ACTIONS(1542), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1652), 23, + ACTIONS(1547), 23, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -29635,60 +27231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23364] = 4, - ACTIONS(1964), 1, - aux_sym_literal_token1, - STATE(385), 1, - aux_sym_literal_repeat1, - ACTIONS(1661), 4, - sym_backslash, - anon_sym_LPAREN, - anon_sym_LPAREN_QMARK_LT, - anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1665), 27, - sym__callout_syntax, - sym__modify_syntax, - ts_builtin_sym_end, + [21167] = 4, + STATE(356), 1, + aux_sym_quantifier_repeat1, + ACTIONS(1849), 4, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, - anon_sym_PIPE, - anon_sym_LPAREN_QMARK_COLON, - anon_sym_LPAREN_QMARK_GT, - anon_sym_LPAREN_QMARK_SQUOTE, - anon_sym_LPAREN_QMARK_LPAREN, - anon_sym_LPAREN_QMARK_POUND, - aux_sym_look_ahead_token1, - aux_sym_look_behind_token1, - anon_sym_LPAREN_QMARK_LBRACE, - anon_sym_LBRACK, - anon_sym_LPAREN_QMARK_TILDE_PIPE, - aux_sym_character_property_token1, - anon_sym_BSLASH_BSLASHg_LT, - anon_sym_BSLASH_BSLASHg_SQUOTE, - anon_sym_BSLASH_BSLASHk_LT, - anon_sym_BSLASH_BSLASHk_SQUOTE, - aux_sym_unicode_token1, - anon_sym_BSLASH_BSLASHc, - anon_sym_BSLASH_BSLASHC_DASH, - anon_sym_BSLASH_BSLASHM_DASH, - [23406] = 2, - ACTIONS(1968), 5, + ACTIONS(1542), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1966), 27, + ACTIONS(1547), 23, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_STAR, - aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -29708,17 +27269,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23443] = 2, - ACTIONS(1884), 5, + [21209] = 2, + ACTIONS(1852), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1886), 27, + ACTIONS(1854), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -29743,22 +27304,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23480] = 2, - ACTIONS(1820), 5, + [21246] = 2, + ACTIONS(1686), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1822), 27, + ACTIONS(1688), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -29778,22 +27339,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23517] = 2, - ACTIONS(1970), 5, + [21283] = 2, + ACTIONS(1722), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1972), 27, + ACTIONS(1724), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -29813,14 +27374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23554] = 2, - ACTIONS(1816), 5, + [21320] = 2, + ACTIONS(1666), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1818), 27, + ACTIONS(1668), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29848,14 +27409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23591] = 2, - ACTIONS(1812), 5, + [21357] = 2, + ACTIONS(1856), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1814), 27, + ACTIONS(1858), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29883,14 +27444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23628] = 2, - ACTIONS(1808), 5, + [21394] = 2, + ACTIONS(1662), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1810), 27, + ACTIONS(1664), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29918,14 +27479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23665] = 2, - ACTIONS(1692), 5, + [21431] = 2, + ACTIONS(1860), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1694), 27, + ACTIONS(1862), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29953,14 +27514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23702] = 2, - ACTIONS(1752), 5, + [21468] = 2, + ACTIONS(1658), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1754), 27, + ACTIONS(1660), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -29988,14 +27549,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23739] = 2, - ACTIONS(1832), 5, + [21505] = 2, + ACTIONS(1654), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1834), 27, + ACTIONS(1656), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30023,14 +27584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23776] = 2, - ACTIONS(1824), 5, + [21542] = 2, + ACTIONS(1650), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1826), 27, + ACTIONS(1652), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30058,14 +27619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23813] = 2, - ACTIONS(1974), 5, + [21579] = 2, + ACTIONS(1646), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1976), 27, + ACTIONS(1648), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30093,22 +27654,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23850] = 2, - ACTIONS(1978), 5, + [21616] = 2, + ACTIONS(1742), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1980), 27, + ACTIONS(1744), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -30128,14 +27689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23887] = 2, - ACTIONS(1982), 5, + [21653] = 2, + ACTIONS(1642), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1984), 27, + ACTIONS(1644), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30163,14 +27724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23924] = 2, - ACTIONS(1800), 5, + [21690] = 2, + ACTIONS(1638), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1802), 27, + ACTIONS(1640), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30198,14 +27759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23961] = 2, - ACTIONS(1796), 5, + [21727] = 2, + ACTIONS(1864), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1798), 27, + ACTIONS(1866), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30233,14 +27794,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [23998] = 2, - ACTIONS(1986), 5, + [21764] = 2, + ACTIONS(1586), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1988), 27, + ACTIONS(1588), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30268,14 +27829,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24035] = 2, - ACTIONS(1990), 5, + [21801] = 2, + ACTIONS(1868), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1992), 27, + ACTIONS(1870), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30303,22 +27864,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24072] = 2, - ACTIONS(1696), 5, + [21838] = 2, + ACTIONS(1730), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1698), 27, + ACTIONS(1732), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -30338,14 +27899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24109] = 2, - ACTIONS(1840), 5, + [21875] = 2, + ACTIONS(1872), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1842), 27, + ACTIONS(1874), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30373,14 +27934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24146] = 2, - ACTIONS(1994), 5, + [21912] = 2, + ACTIONS(1876), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1996), 27, + ACTIONS(1878), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30408,14 +27969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24183] = 2, - ACTIONS(1792), 5, + [21949] = 2, + ACTIONS(1734), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1794), 27, + ACTIONS(1736), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30443,14 +28004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24220] = 2, - ACTIONS(1844), 5, + [21986] = 2, + ACTIONS(1880), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1846), 27, + ACTIONS(1882), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30478,22 +28039,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24257] = 2, - ACTIONS(1900), 5, + [22023] = 2, + ACTIONS(1884), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1902), 27, + ACTIONS(1886), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -30513,14 +28074,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24294] = 2, - ACTIONS(1780), 5, + [22060] = 2, + ACTIONS(1888), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1782), 27, + ACTIONS(1890), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30548,14 +28109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24331] = 2, - ACTIONS(1848), 5, + [22097] = 2, + ACTIONS(1574), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1850), 27, + ACTIONS(1576), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30583,14 +28144,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24368] = 2, - ACTIONS(1776), 5, + [22134] = 2, + ACTIONS(1634), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1778), 27, + ACTIONS(1636), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30618,14 +28179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24405] = 2, - ACTIONS(1856), 5, + [22171] = 2, + ACTIONS(1892), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1858), 27, + ACTIONS(1894), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30653,22 +28214,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24442] = 2, - ACTIONS(1832), 5, + [22208] = 2, + ACTIONS(1896), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1834), 27, + ACTIONS(1898), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -30688,22 +28249,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24479] = 2, - ACTIONS(1864), 5, + [22245] = 2, + ACTIONS(1630), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1866), 27, + ACTIONS(1632), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -30723,15 +28284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24516] = 2, - ACTIONS(1998), 5, + [22282] = 2, + ACTIONS(1852), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2000), 27, - sym__group_end_lookahead, + ACTIONS(1854), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30739,6 +28299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -30758,15 +28319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24553] = 2, - ACTIONS(2002), 5, + [22319] = 2, + ACTIONS(1626), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2004), 27, - sym__group_end_lookahead, + ACTIONS(1628), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30774,6 +28334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -30793,15 +28354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24590] = 2, - ACTIONS(2006), 5, + [22356] = 2, + ACTIONS(1622), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2008), 27, - sym__group_end_lookahead, + ACTIONS(1624), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30809,6 +28369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -30828,14 +28389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24627] = 2, - ACTIONS(1860), 5, + [22393] = 2, + ACTIONS(1618), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1862), 27, + ACTIONS(1620), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30863,15 +28424,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24664] = 2, - ACTIONS(2010), 5, + [22430] = 2, + ACTIONS(1614), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2012), 27, - sym__group_end_lookahead, + ACTIONS(1616), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30879,6 +28439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -30898,15 +28459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24701] = 2, - ACTIONS(2014), 5, + [22467] = 2, + ACTIONS(1582), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2016), 27, - sym__group_end_lookahead, + ACTIONS(1584), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30914,6 +28474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -30933,14 +28494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24738] = 2, - ACTIONS(1864), 5, + [22504] = 2, + ACTIONS(1900), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1866), 27, + ACTIONS(1902), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30968,15 +28529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24775] = 2, - ACTIONS(2018), 5, + [22541] = 2, + ACTIONS(1738), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2020), 27, - sym__group_end_lookahead, + ACTIONS(1740), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -30984,6 +28544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31003,22 +28564,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24812] = 2, - ACTIONS(1756), 5, + [22578] = 2, + ACTIONS(1742), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1758), 27, + ACTIONS(1744), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31038,22 +28599,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24849] = 2, - ACTIONS(2024), 5, + [22615] = 2, + ACTIONS(1904), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2022), 27, + ACTIONS(1906), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31073,14 +28634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24886] = 2, - ACTIONS(2026), 5, + [22652] = 2, + ACTIONS(1610), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2028), 27, + ACTIONS(1612), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -31108,22 +28669,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24923] = 2, - ACTIONS(1904), 5, + [22689] = 2, + ACTIONS(1606), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1906), 27, + ACTIONS(1608), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31143,17 +28704,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24960] = 2, - ACTIONS(1908), 5, + [22726] = 2, + ACTIONS(1900), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1910), 27, + ACTIONS(1902), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -31178,22 +28739,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [24997] = 2, - ACTIONS(2026), 5, + [22763] = 2, + ACTIONS(1754), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2028), 27, + ACTIONS(1756), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31213,14 +28774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25034] = 2, - ACTIONS(1868), 5, + [22800] = 2, + ACTIONS(1908), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1870), 27, + ACTIONS(1910), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -31248,14 +28809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25071] = 2, - ACTIONS(2030), 5, + [22837] = 2, + ACTIONS(1602), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2032), 27, + ACTIONS(1604), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -31283,17 +28844,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25108] = 2, - ACTIONS(2034), 5, + [22874] = 2, + ACTIONS(1726), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2036), 27, - sym__group_end_lookahead, + ACTIONS(1728), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -31318,15 +28879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25145] = 2, - ACTIONS(2038), 5, + [22911] = 2, + ACTIONS(1598), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2040), 27, - sym__group_end_lookahead, + ACTIONS(1600), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -31334,6 +28894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31353,15 +28914,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25182] = 2, - ACTIONS(2042), 5, + [22948] = 2, + ACTIONS(1594), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2044), 27, - sym__group_end_lookahead, + ACTIONS(1596), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -31369,6 +28929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31388,15 +28949,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25219] = 2, - ACTIONS(2046), 5, + [22985] = 2, + ACTIONS(1590), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2048), 27, - sym__group_end_lookahead, + ACTIONS(1592), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -31404,6 +28964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31423,14 +28984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25256] = 2, - ACTIONS(1970), 5, + [23022] = 2, + ACTIONS(1718), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1972), 27, + ACTIONS(1720), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -31458,17 +29019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25293] = 2, - ACTIONS(2024), 5, + [23059] = 2, + ACTIONS(1586), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2022), 27, - sym__group_end_lookahead, + ACTIONS(1588), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -31493,14 +29054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25330] = 2, - ACTIONS(2050), 5, + [23096] = 2, + ACTIONS(1912), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2052), 27, + ACTIONS(1914), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -31528,14 +29089,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25367] = 2, - ACTIONS(1880), 5, + [23133] = 2, + ACTIONS(1916), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1882), 27, + ACTIONS(1918), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -31543,7 +29105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31563,14 +29124,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25404] = 2, - ACTIONS(1968), 5, + [23170] = 2, + ACTIONS(1920), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1966), 27, + ACTIONS(1922), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -31598,22 +29159,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25441] = 2, - ACTIONS(2046), 5, + [23207] = 2, + ACTIONS(1924), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2048), 27, + ACTIONS(1926), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31633,14 +29194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25478] = 2, - ACTIONS(1884), 5, + [23244] = 2, + ACTIONS(1928), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1886), 27, + ACTIONS(1930), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -31648,7 +29210,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31668,17 +29229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25515] = 2, - ACTIONS(2042), 5, + [23281] = 2, + ACTIONS(1932), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2044), 27, + ACTIONS(1934), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -31703,22 +29264,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25552] = 2, - ACTIONS(2038), 5, + [23318] = 2, + ACTIONS(1758), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2040), 27, + ACTIONS(1760), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31738,17 +29299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25589] = 2, - ACTIONS(1860), 5, + [23355] = 2, + ACTIONS(1924), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1862), 27, + ACTIONS(1926), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -31773,22 +29334,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25626] = 2, - ACTIONS(1888), 5, + [23392] = 2, + ACTIONS(1730), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1890), 27, + ACTIONS(1732), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31808,14 +29369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25663] = 2, - ACTIONS(1856), 5, + [23429] = 2, + ACTIONS(1738), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1858), 27, + ACTIONS(1740), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -31843,17 +29404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25700] = 2, - ACTIONS(2034), 5, + [23466] = 2, + ACTIONS(1908), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2036), 27, + ACTIONS(1910), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -31878,17 +29439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25737] = 2, - ACTIONS(1990), 5, + [23503] = 2, + ACTIONS(1662), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1992), 27, - sym__group_end_lookahead, + ACTIONS(1664), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -31913,15 +29474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25774] = 2, - ACTIONS(2030), 5, + [23540] = 2, + ACTIONS(1928), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2032), 27, - sym__group_end_lookahead, + ACTIONS(1930), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -31929,6 +29489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31948,22 +29509,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25811] = 2, - ACTIONS(1896), 5, + [23577] = 2, + ACTIONS(1872), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1898), 27, + ACTIONS(1874), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -31983,17 +29544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25848] = 2, - ACTIONS(2026), 5, + [23614] = 2, + ACTIONS(1888), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2028), 27, - sym__group_end_lookahead, + ACTIONS(1890), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -32018,22 +29579,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25885] = 2, - ACTIONS(1932), 5, + [23651] = 2, + ACTIONS(1762), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1934), 27, + ACTIONS(1764), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32053,14 +29614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25922] = 2, - ACTIONS(1900), 5, + [23688] = 2, + ACTIONS(1920), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1902), 27, + ACTIONS(1922), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -32088,17 +29649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25959] = 2, - ACTIONS(1912), 5, + [23725] = 2, + ACTIONS(1888), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1914), 27, + ACTIONS(1890), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -32123,14 +29684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [25996] = 2, - ACTIONS(1904), 5, + [23762] = 2, + ACTIONS(1884), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1906), 27, + ACTIONS(1886), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -32138,7 +29700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32158,14 +29719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26033] = 2, - ACTIONS(1756), 5, + [23799] = 2, + ACTIONS(1880), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1758), 27, + ACTIONS(1882), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -32173,7 +29735,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32193,14 +29754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26070] = 2, - ACTIONS(1968), 5, + [23836] = 2, + ACTIONS(1916), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1966), 27, + ACTIONS(1918), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -32228,14 +29789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26107] = 2, - ACTIONS(1696), 5, + [23873] = 2, + ACTIONS(1876), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1698), 27, + ACTIONS(1878), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -32243,7 +29805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32263,14 +29824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26144] = 2, - ACTIONS(2050), 5, + [23910] = 2, + ACTIONS(1872), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2052), 27, + ACTIONS(1874), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -32278,7 +29840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32298,15 +29859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26181] = 2, - ACTIONS(1974), 5, + [23947] = 2, + ACTIONS(1912), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1976), 27, - sym__group_end_lookahead, + ACTIONS(1914), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -32314,6 +29874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32333,14 +29894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26218] = 2, - ACTIONS(1986), 5, + [23984] = 2, + ACTIONS(1868), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1988), 27, + ACTIONS(1870), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -32368,17 +29929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26255] = 2, - ACTIONS(2054), 5, + [24021] = 2, + ACTIONS(1876), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2056), 27, - sym__group_end_lookahead, + ACTIONS(1878), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -32403,22 +29964,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26292] = 2, - ACTIONS(2024), 5, + [24058] = 2, + ACTIONS(1734), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2022), 27, + ACTIONS(1736), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32438,17 +29999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26329] = 2, - ACTIONS(1970), 5, + [24095] = 2, + ACTIONS(1884), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1972), 27, - sym__group_end_lookahead, + ACTIONS(1886), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -32473,14 +30034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26366] = 2, - ACTIONS(1908), 5, + [24132] = 2, + ACTIONS(1766), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1910), 27, + ACTIONS(1768), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -32508,14 +30069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26403] = 2, - ACTIONS(2046), 5, + [24169] = 2, + ACTIONS(1936), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2048), 27, + ACTIONS(1938), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -32523,7 +30085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32543,22 +30104,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26440] = 2, - ACTIONS(2042), 5, + [24206] = 2, + ACTIONS(1594), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2044), 27, + ACTIONS(1596), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32578,14 +30139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26477] = 2, - ACTIONS(2038), 5, + [24243] = 2, + ACTIONS(1582), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2040), 27, + ACTIONS(1584), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -32593,7 +30155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32613,14 +30174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26514] = 2, - ACTIONS(1916), 5, + [24280] = 2, + ACTIONS(1598), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1918), 27, + ACTIONS(1600), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -32648,14 +30209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26551] = 2, - ACTIONS(1978), 5, + [24317] = 2, + ACTIONS(1856), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1980), 27, + ACTIONS(1858), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -32683,17 +30244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26588] = 2, - ACTIONS(1982), 5, + [24354] = 2, + ACTIONS(1590), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1984), 27, - sym__group_end_lookahead, + ACTIONS(1592), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -32718,14 +30279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26625] = 2, - ACTIONS(2034), 5, + [24391] = 2, + ACTIONS(1860), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2036), 27, + ACTIONS(1862), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -32733,7 +30295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32753,22 +30314,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26662] = 2, - ACTIONS(1912), 5, + [24428] = 2, + ACTIONS(1924), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1914), 27, + ACTIONS(1926), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32788,17 +30349,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26699] = 2, - ACTIONS(1994), 5, + [24465] = 2, + ACTIONS(1602), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1996), 27, - sym__group_end_lookahead, + ACTIONS(1604), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -32823,22 +30384,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26736] = 2, - ACTIONS(1916), 5, + [24502] = 2, + ACTIONS(1682), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1918), 27, + ACTIONS(1684), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -32858,17 +30419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26773] = 2, - ACTIONS(1848), 5, + [24539] = 2, + ACTIONS(1904), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1850), 27, + ACTIONS(1906), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -32893,17 +30454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26810] = 2, - ACTIONS(2054), 5, + [24576] = 2, + ACTIONS(1586), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2056), 27, + ACTIONS(1588), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -32928,14 +30489,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26847] = 2, - ACTIONS(1896), 5, + [24613] = 2, + ACTIONS(1754), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1898), 27, + ACTIONS(1756), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -32963,17 +30524,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26884] = 2, - ACTIONS(1920), 5, + [24650] = 2, + ACTIONS(1864), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1922), 27, + ACTIONS(1866), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -32998,22 +30559,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26921] = 2, - ACTIONS(2054), 5, + [24687] = 2, + ACTIONS(1758), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2056), 27, + ACTIONS(1760), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -33033,14 +30594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26958] = 2, - ACTIONS(1920), 5, + [24724] = 2, + ACTIONS(1590), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1922), 27, + ACTIONS(1592), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -33048,7 +30610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -33068,17 +30629,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [26995] = 2, - ACTIONS(1764), 5, + [24761] = 2, + ACTIONS(1892), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1766), 27, + ACTIONS(1894), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -33103,14 +30664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27032] = 2, - ACTIONS(1764), 5, + [24798] = 2, + ACTIONS(1896), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1766), 27, + ACTIONS(1898), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -33118,7 +30680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -33138,22 +30699,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27069] = 2, - ACTIONS(2018), 5, + [24835] = 2, + ACTIONS(1610), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2020), 27, + ACTIONS(1612), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -33173,14 +30734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27106] = 2, - ACTIONS(2018), 5, + [24872] = 2, + ACTIONS(1908), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2020), 27, + ACTIONS(1910), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33208,14 +30769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27143] = 2, - ACTIONS(1924), 5, + [24909] = 2, + ACTIONS(1932), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1926), 27, + ACTIONS(1934), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33243,22 +30804,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27180] = 2, - ACTIONS(1924), 5, + [24946] = 2, + ACTIONS(1904), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1926), 27, + ACTIONS(1906), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -33278,22 +30839,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27217] = 2, - ACTIONS(2014), 5, + [24983] = 2, + ACTIONS(1666), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2016), 27, + ACTIONS(1668), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -33313,22 +30874,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27254] = 2, - ACTIONS(2010), 5, + [25020] = 2, + ACTIONS(1856), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2012), 27, + ACTIONS(1858), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -33348,14 +30909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27291] = 2, - ACTIONS(1928), 5, + [25057] = 2, + ACTIONS(1682), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1930), 27, + ACTIONS(1684), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -33383,14 +30944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27328] = 2, - ACTIONS(2006), 5, + [25094] = 2, + ACTIONS(1726), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2008), 27, + ACTIONS(1728), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -33418,22 +30979,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27365] = 2, - ACTIONS(2002), 5, + [25131] = 2, + ACTIONS(1606), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2004), 27, + ACTIONS(1608), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -33453,22 +31014,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27402] = 2, - ACTIONS(1998), 5, + [25168] = 2, + ACTIONS(1928), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2000), 27, + ACTIONS(1930), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -33488,22 +31049,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27439] = 2, - ACTIONS(1932), 5, + [25205] = 2, + ACTIONS(1762), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1934), 27, + ACTIONS(1764), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -33523,14 +31084,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27476] = 2, - ACTIONS(1776), 5, + [25242] = 2, + ACTIONS(1900), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1778), 27, + ACTIONS(1902), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33558,14 +31119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27513] = 2, - ACTIONS(2014), 5, + [25279] = 2, + ACTIONS(1582), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2016), 27, + ACTIONS(1584), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33593,14 +31154,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27550] = 2, - ACTIONS(1780), 5, + [25316] = 2, + ACTIONS(1614), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1782), 27, + ACTIONS(1616), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33628,14 +31189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27587] = 2, - ACTIONS(1844), 5, + [25353] = 2, + ACTIONS(1618), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1846), 27, + ACTIONS(1620), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33663,14 +31224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27624] = 2, - ACTIONS(2010), 5, + [25390] = 2, + ACTIONS(1868), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2012), 27, + ACTIONS(1870), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33698,22 +31259,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27661] = 2, - ACTIONS(1928), 5, + [25427] = 2, + ACTIONS(1940), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1930), 27, + ACTIONS(1942), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -33733,14 +31294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27698] = 2, - ACTIONS(1792), 5, + [25464] = 2, + ACTIONS(1622), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1794), 27, + ACTIONS(1624), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33768,14 +31329,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27735] = 2, - ACTIONS(1994), 5, + [25501] = 2, + ACTIONS(1626), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1996), 27, + ACTIONS(1628), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33803,14 +31364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27772] = 2, - ACTIONS(1840), 5, + [25538] = 2, + ACTIONS(1852), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1842), 27, + ACTIONS(1854), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33838,14 +31399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27809] = 2, - ACTIONS(2006), 5, + [25575] = 2, + ACTIONS(1920), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2008), 27, + ACTIONS(1922), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33873,14 +31434,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27846] = 2, - ACTIONS(1820), 5, + [25612] = 2, + ACTIONS(1630), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1822), 27, + ACTIONS(1632), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33908,14 +31469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27883] = 2, - ACTIONS(1986), 5, + [25649] = 2, + ACTIONS(1916), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1988), 27, + ACTIONS(1918), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33943,14 +31504,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27920] = 2, - ACTIONS(1796), 5, + [25686] = 2, + ACTIONS(1912), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1798), 27, + ACTIONS(1914), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -33978,22 +31539,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27957] = 2, - ACTIONS(1888), 5, + [25723] = 2, + ACTIONS(1718), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1890), 27, + ACTIONS(1720), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -34013,17 +31574,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [27994] = 2, - ACTIONS(1880), 5, + [25760] = 2, + ACTIONS(1594), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1882), 27, + ACTIONS(1596), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34048,22 +31609,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28031] = 2, - ACTIONS(1990), 5, + [25797] = 2, + ACTIONS(1722), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1992), 27, + ACTIONS(1724), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -34083,17 +31644,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28068] = 2, - ACTIONS(1974), 5, + [25834] = 2, + ACTIONS(1598), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1976), 27, + ACTIONS(1600), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34118,14 +31679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28105] = 2, - ACTIONS(1824), 5, + [25871] = 2, + ACTIONS(1896), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1826), 27, + ACTIONS(1898), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -34153,14 +31714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28142] = 2, - ACTIONS(1800), 5, + [25908] = 2, + ACTIONS(1892), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1802), 27, + ACTIONS(1894), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -34188,14 +31749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28179] = 2, - ACTIONS(2030), 5, + [25945] = 2, + ACTIONS(1634), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2032), 27, + ACTIONS(1636), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -34223,14 +31784,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28216] = 2, - ACTIONS(1982), 5, + [25982] = 2, + ACTIONS(1574), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1984), 27, + ACTIONS(1576), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -34258,17 +31819,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28253] = 2, - ACTIONS(1978), 5, + [26019] = 2, + ACTIONS(1602), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1980), 27, + ACTIONS(1604), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34293,22 +31854,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28290] = 2, - ACTIONS(2002), 5, + [26056] = 2, + ACTIONS(1686), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2004), 27, + ACTIONS(1688), 27, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -34328,17 +31889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28327] = 2, - ACTIONS(1932), 5, + [26093] = 2, + ACTIONS(1864), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1934), 27, - sym__group_end_lookahead, + ACTIONS(1866), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34363,17 +31924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28364] = 2, - ACTIONS(1868), 5, + [26130] = 2, + ACTIONS(1606), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1870), 27, + ACTIONS(1608), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34398,17 +31959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28401] = 2, - ACTIONS(2050), 5, + [26167] = 2, + ACTIONS(1610), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2052), 27, + ACTIONS(1612), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34433,14 +31994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28438] = 2, - ACTIONS(1928), 5, + [26204] = 2, + ACTIONS(1614), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1930), 27, + ACTIONS(1616), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -34468,17 +32029,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28475] = 2, - ACTIONS(1924), 5, + [26241] = 2, + ACTIONS(1638), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1926), 27, - sym__group_end_lookahead, + ACTIONS(1640), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34503,14 +32064,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28512] = 2, - ACTIONS(1752), 5, + [26278] = 2, + ACTIONS(1642), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1754), 27, + ACTIONS(1644), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -34538,14 +32099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28549] = 2, - ACTIONS(1920), 5, + [26315] = 2, + ACTIONS(1618), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1922), 27, + ACTIONS(1620), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -34573,14 +32134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28586] = 2, - ACTIONS(1998), 5, + [26352] = 2, + ACTIONS(1936), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(2000), 27, + ACTIONS(1938), 27, sym__callout_syntax, sym__modify_syntax, ts_builtin_sym_end, @@ -34608,17 +32169,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28623] = 2, - ACTIONS(1692), 5, + [26389] = 2, + ACTIONS(1622), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1694), 27, + ACTIONS(1624), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34643,17 +32204,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28660] = 2, - ACTIONS(1916), 5, + [26426] = 2, + ACTIONS(1646), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1918), 27, - sym__group_end_lookahead, + ACTIONS(1648), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34678,17 +32239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28697] = 2, - ACTIONS(1912), 5, + [26463] = 2, + ACTIONS(1766), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1914), 27, - sym__group_end_lookahead, + ACTIONS(1768), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34713,17 +32274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28734] = 2, - ACTIONS(1908), 5, + [26500] = 2, + ACTIONS(1650), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1910), 27, - sym__group_end_lookahead, + ACTIONS(1652), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34748,17 +32309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28771] = 2, - ACTIONS(1696), 5, + [26537] = 2, + ACTIONS(1654), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1698), 27, - sym__group_end_lookahead, + ACTIONS(1656), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34783,17 +32344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28808] = 2, - ACTIONS(1808), 5, + [26574] = 2, + ACTIONS(1626), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1810), 27, + ACTIONS(1628), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34818,14 +32379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28845] = 2, - ACTIONS(1904), 5, + [26611] = 2, + ACTIONS(1630), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1906), 27, + ACTIONS(1632), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -34853,17 +32414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28882] = 2, - ACTIONS(1900), 5, + [26648] = 2, + ACTIONS(1658), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1902), 27, - sym__group_end_lookahead, + ACTIONS(1660), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34888,14 +32449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28919] = 2, - ACTIONS(1896), 5, + [26685] = 2, + ACTIONS(1634), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1898), 27, + ACTIONS(1636), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -34923,17 +32484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28956] = 2, - ACTIONS(1888), 5, + [26722] = 2, + ACTIONS(1860), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1890), 27, - sym__group_end_lookahead, + ACTIONS(1862), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -34958,14 +32519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [28993] = 2, - ACTIONS(1884), 5, + [26759] = 2, + ACTIONS(1574), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1886), 27, + ACTIONS(1576), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -34993,14 +32554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29030] = 2, - ACTIONS(1880), 5, + [26796] = 2, + ACTIONS(1638), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1882), 27, + ACTIONS(1640), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35028,14 +32589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29067] = 2, - ACTIONS(1868), 5, + [26833] = 2, + ACTIONS(1766), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1870), 27, + ACTIONS(1768), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35063,17 +32624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29104] = 2, - ACTIONS(1864), 5, + [26870] = 2, + ACTIONS(1880), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1866), 27, - sym__group_end_lookahead, + ACTIONS(1882), 27, sym__callout_syntax, sym__modify_syntax, + ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -35098,15 +32659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29141] = 2, - ACTIONS(1860), 5, + [26907] = 2, + ACTIONS(1932), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1862), 27, - sym__group_end_lookahead, + ACTIONS(1934), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -35114,6 +32674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -35133,14 +32694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29178] = 2, - ACTIONS(1856), 5, + [26944] = 2, + ACTIONS(1762), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1858), 27, + ACTIONS(1764), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35168,14 +32729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29215] = 2, - ACTIONS(1848), 5, + [26981] = 2, + ACTIONS(1758), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1850), 27, + ACTIONS(1760), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35203,14 +32764,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29252] = 2, - ACTIONS(1844), 5, + [27018] = 2, + ACTIONS(1642), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1846), 27, + ACTIONS(1644), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35238,14 +32799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29289] = 2, - ACTIONS(1840), 5, + [27055] = 2, + ACTIONS(1754), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1842), 27, + ACTIONS(1756), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35273,15 +32834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29326] = 2, - ACTIONS(1832), 5, + [27092] = 2, + ACTIONS(1944), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1834), 27, - sym__group_end_lookahead, + ACTIONS(1946), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -35289,6 +32849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -35308,15 +32869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29363] = 2, - ACTIONS(1824), 5, + [27129] = 2, + ACTIONS(1936), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1826), 27, - sym__group_end_lookahead, + ACTIONS(1938), 27, sym__callout_syntax, sym__modify_syntax, anon_sym_QMARK, @@ -35324,6 +32884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, aux_sym_quantifier_token1, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN_QMARK_COLON, anon_sym_LPAREN_QMARK_GT, anon_sym_LPAREN_QMARK_SQUOTE, @@ -35343,14 +32904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29400] = 2, - ACTIONS(1820), 5, + [27166] = 2, + ACTIONS(1742), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1822), 27, + ACTIONS(1744), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35378,14 +32939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29437] = 2, - ACTIONS(1816), 5, + [27203] = 2, + ACTIONS(1738), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1818), 27, + ACTIONS(1740), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35413,14 +32974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29474] = 2, - ACTIONS(1812), 5, + [27240] = 2, + ACTIONS(1734), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1814), 27, + ACTIONS(1736), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35448,14 +33009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29511] = 2, - ACTIONS(1808), 5, + [27277] = 2, + ACTIONS(1730), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1810), 27, + ACTIONS(1732), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35483,14 +33044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29548] = 2, - ACTIONS(1692), 5, + [27314] = 2, + ACTIONS(1646), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1694), 27, + ACTIONS(1648), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35518,14 +33079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29585] = 2, - ACTIONS(1752), 5, + [27351] = 2, + ACTIONS(1726), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1754), 27, + ACTIONS(1728), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35553,14 +33114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29622] = 2, - ACTIONS(1800), 5, + [27388] = 2, + ACTIONS(1722), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1802), 27, + ACTIONS(1724), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35588,14 +33149,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29659] = 2, - ACTIONS(1796), 5, + [27425] = 2, + ACTIONS(1718), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1798), 27, + ACTIONS(1720), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35623,14 +33184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29696] = 2, - ACTIONS(1792), 5, + [27462] = 2, + ACTIONS(1686), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1794), 27, + ACTIONS(1688), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35658,14 +33219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29733] = 2, - ACTIONS(1780), 5, + [27499] = 2, + ACTIONS(1682), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1782), 27, + ACTIONS(1684), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35693,14 +33254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29770] = 2, - ACTIONS(1776), 5, + [27536] = 2, + ACTIONS(1666), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1778), 27, + ACTIONS(1668), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35728,17 +33289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29807] = 2, - ACTIONS(1812), 5, + [27573] = 2, + ACTIONS(1662), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1814), 27, + ACTIONS(1664), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -35763,14 +33324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29844] = 2, - ACTIONS(1764), 5, + [27610] = 2, + ACTIONS(1658), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1766), 27, + ACTIONS(1660), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35798,17 +33359,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29881] = 2, - ACTIONS(1816), 5, + [27647] = 2, + ACTIONS(1654), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1818), 27, + ACTIONS(1656), 27, + sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, - ts_builtin_sym_end, anon_sym_QMARK, anon_sym_PLUS, anon_sym_STAR, @@ -35833,14 +33394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29918] = 2, - ACTIONS(1756), 5, + [27684] = 2, + ACTIONS(1650), 5, aux_sym_literal_token1, sym_backslash, anon_sym_LPAREN, anon_sym_LPAREN_QMARK_LT, anon_sym_LPAREN_QMARK_TILDE, - ACTIONS(1758), 27, + ACTIONS(1652), 27, sym__group_end_lookahead, sym__callout_syntax, sym__modify_syntax, @@ -35868,5398 +33429,5315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [29955] = 8, - ACTIONS(2058), 1, + [27721] = 8, + ACTIONS(1948), 1, sym_backslash, - ACTIONS(2060), 1, + ACTIONS(1950), 1, aux_sym_literal_token1, - ACTIONS(2062), 1, + ACTIONS(1952), 1, anon_sym_RPAREN, - ACTIONS(2064), 1, + ACTIONS(1954), 1, anon_sym_RBRACK, - ACTIONS(2066), 1, + ACTIONS(1956), 1, aux_sym_character_property_token1, - ACTIONS(2068), 1, + ACTIONS(1958), 1, aux_sym_unicode_token1, - STATE(582), 1, + STATE(559), 1, aux_sym_literal_repeat1, - STATE(569), 4, + STATE(541), 4, sym_literal, sym_character_property, sym_unicode, aux_sym_character_class_repeat1, - [29983] = 8, - ACTIONS(2058), 1, - sym_backslash, - ACTIONS(2060), 1, + [27749] = 8, + ACTIONS(1950), 1, aux_sym_literal_token1, - ACTIONS(2062), 1, - anon_sym_RPAREN, - ACTIONS(2066), 1, + ACTIONS(1956), 1, aux_sym_character_property_token1, - ACTIONS(2068), 1, + ACTIONS(1958), 1, aux_sym_unicode_token1, - ACTIONS(2070), 1, - anon_sym_RBRACK, - STATE(582), 1, - aux_sym_literal_repeat1, - STATE(569), 4, - sym_literal, - sym_character_property, - sym_unicode, - aux_sym_character_class_repeat1, - [30011] = 8, - ACTIONS(2058), 1, + ACTIONS(1960), 1, sym_backslash, - ACTIONS(2060), 1, - aux_sym_literal_token1, - ACTIONS(2062), 1, + ACTIONS(1962), 1, anon_sym_RPAREN, - ACTIONS(2066), 1, - aux_sym_character_property_token1, - ACTIONS(2068), 1, - aux_sym_unicode_token1, - ACTIONS(2072), 1, + ACTIONS(1964), 1, anon_sym_RBRACK, - STATE(582), 1, + STATE(559), 1, aux_sym_literal_repeat1, - STATE(569), 4, + STATE(536), 4, sym_literal, sym_character_property, sym_unicode, aux_sym_character_class_repeat1, - [30039] = 8, - ACTIONS(2060), 1, + [27777] = 8, + ACTIONS(1950), 1, aux_sym_literal_token1, - ACTIONS(2066), 1, + ACTIONS(1956), 1, aux_sym_character_property_token1, - ACTIONS(2068), 1, + ACTIONS(1958), 1, aux_sym_unicode_token1, - ACTIONS(2074), 1, + ACTIONS(1966), 1, sym_backslash, - ACTIONS(2076), 1, + ACTIONS(1968), 1, anon_sym_RPAREN, - ACTIONS(2078), 1, + ACTIONS(1970), 1, anon_sym_RBRACK, - STATE(582), 1, + STATE(559), 1, aux_sym_literal_repeat1, - STATE(566), 4, + STATE(534), 4, sym_literal, sym_character_property, sym_unicode, aux_sym_character_class_repeat1, - [30067] = 8, - ACTIONS(2080), 1, + [27805] = 8, + ACTIONS(1972), 1, sym_backslash, - ACTIONS(2083), 1, + ACTIONS(1975), 1, aux_sym_literal_token1, - ACTIONS(2086), 1, + ACTIONS(1978), 1, anon_sym_RPAREN, - ACTIONS(2089), 1, + ACTIONS(1981), 1, anon_sym_RBRACK, - ACTIONS(2091), 1, + ACTIONS(1983), 1, aux_sym_character_property_token1, - ACTIONS(2094), 1, + ACTIONS(1986), 1, aux_sym_unicode_token1, - STATE(582), 1, + STATE(559), 1, aux_sym_literal_repeat1, - STATE(569), 4, + STATE(536), 4, sym_literal, sym_character_property, sym_unicode, aux_sym_character_class_repeat1, - [30095] = 8, - ACTIONS(2060), 1, + [27833] = 8, + ACTIONS(1950), 1, aux_sym_literal_token1, - ACTIONS(2066), 1, + ACTIONS(1956), 1, aux_sym_character_property_token1, - ACTIONS(2068), 1, + ACTIONS(1958), 1, aux_sym_unicode_token1, - ACTIONS(2097), 1, + ACTIONS(1989), 1, sym_backslash, - ACTIONS(2099), 1, + ACTIONS(1991), 1, anon_sym_RPAREN, - ACTIONS(2101), 1, + ACTIONS(1993), 1, anon_sym_RBRACK, - STATE(582), 1, + STATE(559), 1, aux_sym_literal_repeat1, - STATE(574), 4, + STATE(542), 4, sym_literal, sym_character_property, sym_unicode, aux_sym_character_class_repeat1, - [30123] = 8, - ACTIONS(2058), 1, - sym_backslash, - ACTIONS(2060), 1, + [27861] = 8, + ACTIONS(1950), 1, aux_sym_literal_token1, - ACTIONS(2062), 1, - anon_sym_RPAREN, - ACTIONS(2066), 1, + ACTIONS(1956), 1, aux_sym_character_property_token1, - ACTIONS(2068), 1, + ACTIONS(1958), 1, aux_sym_unicode_token1, - ACTIONS(2103), 1, + ACTIONS(1960), 1, + sym_backslash, + ACTIONS(1962), 1, + anon_sym_RPAREN, + ACTIONS(1995), 1, anon_sym_RBRACK, - STATE(582), 1, + STATE(559), 1, aux_sym_literal_repeat1, - STATE(569), 4, + STATE(536), 4, sym_literal, sym_character_property, sym_unicode, aux_sym_character_class_repeat1, - [30151] = 8, - ACTIONS(2060), 1, + [27889] = 8, + ACTIONS(1950), 1, aux_sym_literal_token1, - ACTIONS(2066), 1, + ACTIONS(1956), 1, aux_sym_character_property_token1, - ACTIONS(2068), 1, + ACTIONS(1958), 1, aux_sym_unicode_token1, - ACTIONS(2105), 1, + ACTIONS(1997), 1, sym_backslash, - ACTIONS(2107), 1, + ACTIONS(1999), 1, anon_sym_RPAREN, - ACTIONS(2109), 1, + ACTIONS(2001), 1, anon_sym_RBRACK, - STATE(582), 1, + STATE(559), 1, aux_sym_literal_repeat1, - STATE(565), 4, + STATE(543), 4, sym_literal, sym_character_property, sym_unicode, aux_sym_character_class_repeat1, - [30179] = 8, - ACTIONS(2060), 1, + [27917] = 8, + ACTIONS(1950), 1, aux_sym_literal_token1, - ACTIONS(2066), 1, + ACTIONS(1956), 1, aux_sym_character_property_token1, - ACTIONS(2068), 1, + ACTIONS(1958), 1, aux_sym_unicode_token1, - ACTIONS(2111), 1, + ACTIONS(2003), 1, sym_backslash, - ACTIONS(2113), 1, + ACTIONS(2005), 1, anon_sym_RPAREN, - ACTIONS(2115), 1, + ACTIONS(2007), 1, anon_sym_RBRACK, - STATE(582), 1, + STATE(559), 1, aux_sym_literal_repeat1, - STATE(571), 4, + STATE(538), 4, sym_literal, sym_character_property, sym_unicode, aux_sym_character_class_repeat1, - [30207] = 8, - ACTIONS(2058), 1, - sym_backslash, - ACTIONS(2060), 1, + [27945] = 8, + ACTIONS(1950), 1, aux_sym_literal_token1, - ACTIONS(2062), 1, + ACTIONS(1956), 1, + aux_sym_character_property_token1, + ACTIONS(1958), 1, + aux_sym_unicode_token1, + ACTIONS(1960), 1, + sym_backslash, + ACTIONS(1962), 1, anon_sym_RPAREN, - ACTIONS(2066), 1, + ACTIONS(2009), 1, + anon_sym_RBRACK, + STATE(559), 1, + aux_sym_literal_repeat1, + STATE(536), 4, + sym_literal, + sym_character_property, + sym_unicode, + aux_sym_character_class_repeat1, + [27973] = 8, + ACTIONS(1950), 1, + aux_sym_literal_token1, + ACTIONS(1956), 1, aux_sym_character_property_token1, - ACTIONS(2068), 1, + ACTIONS(1958), 1, aux_sym_unicode_token1, - ACTIONS(2117), 1, + ACTIONS(1960), 1, + sym_backslash, + ACTIONS(1962), 1, + anon_sym_RPAREN, + ACTIONS(2011), 1, anon_sym_RBRACK, - STATE(582), 1, + STATE(559), 1, aux_sym_literal_repeat1, - STATE(569), 4, + STATE(536), 4, sym_literal, sym_character_property, sym_unicode, aux_sym_character_class_repeat1, - [30235] = 8, - ACTIONS(2060), 1, + [28001] = 8, + ACTIONS(1950), 1, aux_sym_literal_token1, - ACTIONS(2066), 1, + ACTIONS(1956), 1, aux_sym_character_property_token1, - ACTIONS(2068), 1, + ACTIONS(1958), 1, aux_sym_unicode_token1, - ACTIONS(2119), 1, + ACTIONS(1960), 1, sym_backslash, - ACTIONS(2121), 1, + ACTIONS(1962), 1, anon_sym_RPAREN, - ACTIONS(2123), 1, + ACTIONS(2013), 1, anon_sym_RBRACK, - STATE(582), 1, + STATE(559), 1, aux_sym_literal_repeat1, - STATE(567), 4, + STATE(536), 4, sym_literal, sym_character_property, sym_unicode, aux_sym_character_class_repeat1, - [30263] = 6, - ACTIONS(2127), 1, + [28029] = 6, + ACTIONS(2017), 1, aux_sym_unicode_token1, - ACTIONS(2131), 1, + ACTIONS(2021), 1, anon_sym_BSLASH_BSLASHu, - STATE(323), 1, + STATE(368), 1, sym_unicode, - STATE(581), 1, + STATE(549), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(2125), 2, + ACTIONS(2015), 2, aux_sym_invalid_token1, sym_backslash, - ACTIONS(2129), 3, + ACTIONS(2019), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [30285] = 6, - ACTIONS(2135), 1, + [28051] = 6, + ACTIONS(2025), 1, aux_sym_unicode_token1, - ACTIONS(2137), 1, + ACTIONS(2027), 1, anon_sym_BSLASH_BSLASHu, - STATE(366), 1, + STATE(518), 1, sym_unicode, - STATE(581), 1, + STATE(549), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(2133), 2, + ACTIONS(2023), 2, aux_sym_invalid_token1, sym_backslash, - ACTIONS(2129), 3, + ACTIONS(2019), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [30307] = 6, - ACTIONS(2141), 1, + [28073] = 6, + ACTIONS(2031), 1, aux_sym_unicode_token1, - ACTIONS(2143), 1, + ACTIONS(2033), 1, anon_sym_BSLASH_BSLASHu, - STATE(472), 1, + STATE(266), 1, sym_unicode, - STATE(581), 1, + STATE(549), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(2139), 2, + ACTIONS(2029), 2, aux_sym_invalid_token1, sym_backslash, - ACTIONS(2129), 3, + ACTIONS(2019), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [30329] = 6, - ACTIONS(2147), 1, + [28095] = 6, + ACTIONS(2037), 1, aux_sym_unicode_token1, - ACTIONS(2149), 1, + ACTIONS(2039), 1, anon_sym_BSLASH_BSLASHu, - STATE(478), 1, + STATE(394), 1, sym_unicode, - STATE(581), 1, + STATE(549), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(2145), 2, + ACTIONS(2035), 2, aux_sym_invalid_token1, sym_backslash, - ACTIONS(2129), 3, + ACTIONS(2019), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [30351] = 6, - ACTIONS(2153), 1, + [28117] = 6, + ACTIONS(2043), 1, aux_sym_unicode_token1, - ACTIONS(2155), 1, + ACTIONS(2045), 1, anon_sym_BSLASH_BSLASHu, - STATE(530), 1, + STATE(311), 1, sym_unicode, - STATE(581), 1, + STATE(549), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(2151), 2, + ACTIONS(2041), 2, aux_sym_invalid_token1, sym_backslash, - ACTIONS(2129), 3, + ACTIONS(2019), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [30373] = 4, - ACTIONS(2162), 1, + [28139] = 4, + ACTIONS(2052), 1, anon_sym_BSLASH_BSLASHu, - STATE(581), 1, + STATE(549), 1, aux_sym_meta_control_char_repeat1, - ACTIONS(2157), 3, + ACTIONS(2047), 3, aux_sym_invalid_token1, sym_backslash, aux_sym_unicode_token1, - ACTIONS(2159), 3, + ACTIONS(2049), 3, anon_sym_BSLASH_BSLASHc, anon_sym_BSLASH_BSLASHC_DASH, anon_sym_BSLASH_BSLASHM_DASH, - [30390] = 4, - ACTIONS(1661), 1, - sym_backslash, - ACTIONS(2164), 1, - aux_sym_literal_token1, - STATE(587), 1, - aux_sym_literal_repeat1, - ACTIONS(1665), 4, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_character_property_token1, - aux_sym_unicode_token1, - [30406] = 6, - ACTIONS(2168), 1, + [28156] = 6, + ACTIONS(2056), 1, aux_sym_capture_group_name_token2, - ACTIONS(2170), 1, + ACTIONS(2058), 1, aux_sym_subroutine_token1, - ACTIONS(2172), 1, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - STATE(597), 1, + STATE(564), 1, aux_sym_subroutine_repeat1, - STATE(615), 1, + STATE(591), 1, aux_sym_subroutine_repeat2, - ACTIONS(2166), 2, + ACTIONS(2054), 2, anon_sym_PLUS, anon_sym_DASH, - [30426] = 6, - ACTIONS(2170), 1, + [28176] = 6, + ACTIONS(2058), 1, aux_sym_subroutine_token1, - ACTIONS(2172), 1, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2176), 1, + ACTIONS(2064), 1, aux_sym_capture_group_name_token2, - STATE(583), 1, + STATE(564), 1, aux_sym_subroutine_repeat1, - STATE(617), 1, + STATE(582), 1, aux_sym_subroutine_repeat2, - ACTIONS(2174), 2, + ACTIONS(2062), 2, anon_sym_PLUS, anon_sym_DASH, - [30446] = 6, - ACTIONS(2170), 1, + [28196] = 6, + ACTIONS(2058), 1, + aux_sym_subroutine_token1, + ACTIONS(2060), 1, + aux_sym_subroutine_token2, + ACTIONS(2068), 1, + aux_sym_capture_group_name_token2, + STATE(553), 1, + aux_sym_subroutine_repeat1, + STATE(581), 1, + aux_sym_subroutine_repeat2, + ACTIONS(2066), 2, + anon_sym_PLUS, + anon_sym_DASH, + [28216] = 6, + ACTIONS(2058), 1, aux_sym_subroutine_token1, - ACTIONS(2172), 1, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2180), 1, + ACTIONS(2072), 1, aux_sym_capture_group_name_token2, - STATE(597), 1, + STATE(564), 1, aux_sym_subroutine_repeat1, - STATE(622), 1, + STATE(600), 1, aux_sym_subroutine_repeat2, - ACTIONS(2178), 2, + ACTIONS(2070), 2, anon_sym_PLUS, anon_sym_DASH, - [30466] = 6, - ACTIONS(2170), 1, + [28236] = 6, + ACTIONS(2058), 1, aux_sym_subroutine_token1, - ACTIONS(2172), 1, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2184), 1, + ACTIONS(2076), 1, aux_sym_capture_group_name_token2, - STATE(597), 1, + STATE(560), 1, aux_sym_subroutine_repeat1, - STATE(605), 1, + STATE(567), 1, aux_sym_subroutine_repeat2, - ACTIONS(2182), 2, + ACTIONS(2074), 2, anon_sym_PLUS, anon_sym_DASH, - [30486] = 4, - ACTIONS(1669), 1, + [28256] = 4, + ACTIONS(1557), 1, sym_backslash, - ACTIONS(2186), 1, + ACTIONS(2078), 1, aux_sym_literal_token1, - STATE(587), 1, + STATE(555), 1, aux_sym_literal_repeat1, - ACTIONS(1674), 4, + ACTIONS(1562), 4, anon_sym_RPAREN, anon_sym_RBRACK, aux_sym_character_property_token1, aux_sym_unicode_token1, - [30502] = 6, - ACTIONS(2170), 1, - aux_sym_subroutine_token1, - ACTIONS(2172), 1, - aux_sym_subroutine_token2, - ACTIONS(2191), 1, - aux_sym_capture_group_name_token2, - STATE(585), 1, - aux_sym_subroutine_repeat1, - STATE(609), 1, - aux_sym_subroutine_repeat2, - ACTIONS(2189), 2, - anon_sym_PLUS, - anon_sym_DASH, - [30522] = 6, - ACTIONS(2170), 1, + [28272] = 6, + ACTIONS(2058), 1, aux_sym_subroutine_token1, - ACTIONS(2172), 1, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2195), 1, + ACTIONS(2083), 1, aux_sym_capture_group_name_token2, - STATE(590), 1, + STATE(550), 1, aux_sym_subroutine_repeat1, - STATE(600), 1, + STATE(594), 1, aux_sym_subroutine_repeat2, - ACTIONS(2193), 2, + ACTIONS(2081), 2, anon_sym_PLUS, anon_sym_DASH, - [30542] = 6, - ACTIONS(2170), 1, + [28292] = 6, + ACTIONS(2058), 1, aux_sym_subroutine_token1, - ACTIONS(2172), 1, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2199), 1, + ACTIONS(2087), 1, aux_sym_capture_group_name_token2, - STATE(597), 1, + STATE(558), 1, aux_sym_subroutine_repeat1, - STATE(633), 1, + STATE(576), 1, aux_sym_subroutine_repeat2, - ACTIONS(2197), 2, + ACTIONS(2085), 2, anon_sym_PLUS, anon_sym_DASH, - [30562] = 6, - ACTIONS(2170), 1, + [28312] = 6, + ACTIONS(2058), 1, aux_sym_subroutine_token1, - ACTIONS(2172), 1, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2203), 1, + ACTIONS(2091), 1, aux_sym_capture_group_name_token2, - STATE(597), 1, + STATE(564), 1, aux_sym_subroutine_repeat1, - STATE(634), 1, + STATE(571), 1, aux_sym_subroutine_repeat2, - ACTIONS(2201), 2, + ACTIONS(2089), 2, anon_sym_PLUS, anon_sym_DASH, - [30582] = 6, - ACTIONS(2170), 1, + [28332] = 4, + ACTIONS(1549), 1, + sym_backslash, + ACTIONS(2093), 1, + aux_sym_literal_token1, + STATE(555), 1, + aux_sym_literal_repeat1, + ACTIONS(1553), 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_character_property_token1, + aux_sym_unicode_token1, + [28348] = 6, + ACTIONS(2058), 1, aux_sym_subroutine_token1, - ACTIONS(2172), 1, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2207), 1, + ACTIONS(2097), 1, aux_sym_capture_group_name_token2, - STATE(586), 1, + STATE(564), 1, aux_sym_subroutine_repeat1, - STATE(621), 1, + STATE(573), 1, aux_sym_subroutine_repeat2, - ACTIONS(2205), 2, + ACTIONS(2095), 2, anon_sym_PLUS, anon_sym_DASH, - [30602] = 6, - ACTIONS(2170), 1, + [28368] = 6, + ACTIONS(2058), 1, aux_sym_subroutine_token1, - ACTIONS(2172), 1, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2211), 1, + ACTIONS(2101), 1, aux_sym_capture_group_name_token2, - STATE(591), 1, + STATE(551), 1, aux_sym_subroutine_repeat1, - STATE(606), 1, + STATE(585), 1, aux_sym_subroutine_repeat2, - ACTIONS(2209), 2, + ACTIONS(2099), 2, anon_sym_PLUS, anon_sym_DASH, - [30622] = 2, - ACTIONS(1756), 2, + [28388] = 2, + ACTIONS(1586), 2, aux_sym_literal_token1, sym_backslash, - ACTIONS(1758), 4, + ACTIONS(1588), 4, anon_sym_RPAREN, anon_sym_RBRACK, aux_sym_character_property_token1, aux_sym_unicode_token1, - [30633] = 2, - ACTIONS(1752), 2, + [28399] = 2, + ACTIONS(1590), 2, aux_sym_literal_token1, sym_backslash, - ACTIONS(1754), 4, + ACTIONS(1592), 4, anon_sym_RPAREN, anon_sym_RBRACK, aux_sym_character_property_token1, aux_sym_unicode_token1, - [30644] = 2, - ACTIONS(1764), 2, - aux_sym_literal_token1, - sym_backslash, - ACTIONS(1766), 4, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_character_property_token1, - aux_sym_unicode_token1, - [30655] = 3, - ACTIONS(2215), 1, + [28410] = 3, + ACTIONS(2105), 1, aux_sym_subroutine_token1, - STATE(597), 1, + STATE(564), 1, aux_sym_subroutine_repeat1, - ACTIONS(2213), 4, + ACTIONS(2103), 4, anon_sym_PLUS, aux_sym_capture_group_name_token2, anon_sym_DASH, aux_sym_subroutine_token2, - [30668] = 5, - ACTIONS(2218), 1, - anon_sym_RBRACE, - ACTIONS(2220), 1, - aux_sym_character_property_name_token1, - ACTIONS(2222), 1, - aux_sym_character_property_name_token2, - STATE(648), 1, - aux_sym_character_property_name_repeat1, - STATE(795), 1, - aux_sym_character_property_name_repeat2, - [30684] = 3, - ACTIONS(2224), 1, - anon_sym_RPAREN, - ACTIONS(2228), 1, - anon_sym_LBRACK, - ACTIONS(2226), 3, - anon_sym_GT, - anon_sym_LT, - anon_sym_X, - [30696] = 5, - ACTIONS(2172), 1, - aux_sym_subroutine_token2, - ACTIONS(2230), 1, - anon_sym_GT, - ACTIONS(2232), 1, - aux_sym_subroutine_token3, - STATE(678), 1, - aux_sym_subroutine_repeat2, - STATE(808), 1, - aux_sym_subroutine_repeat3, - [30712] = 3, - ACTIONS(2234), 1, - anon_sym_RPAREN, - ACTIONS(2238), 1, - anon_sym_LBRACK, - ACTIONS(2236), 3, - anon_sym_GT, - anon_sym_LT, - anon_sym_X, - [30724] = 3, - ACTIONS(2240), 1, + [28423] = 2, + ACTIONS(1582), 2, + aux_sym_literal_token1, + sym_backslash, + ACTIONS(1584), 4, anon_sym_RPAREN, - ACTIONS(2244), 1, - anon_sym_LBRACK, - ACTIONS(2242), 3, - anon_sym_GT, - anon_sym_LT, - anon_sym_X, - [30736] = 2, - ACTIONS(2248), 1, - aux_sym_subroutine_token1, - ACTIONS(2246), 4, - anon_sym_PLUS, - aux_sym_capture_group_name_token2, - anon_sym_DASH, - aux_sym_subroutine_token2, - [30746] = 5, - ACTIONS(2250), 1, - anon_sym_RBRACE, - ACTIONS(2252), 1, - aux_sym_character_property_name_token1, - ACTIONS(2254), 1, - sym__force_property_name_node, - STATE(598), 1, - aux_sym_character_property_name_repeat1, - STATE(972), 1, - sym_character_property_name, - [30762] = 5, - ACTIONS(2172), 1, + anon_sym_RBRACK, + aux_sym_character_property_token1, + aux_sym_unicode_token1, + [28434] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, - aux_sym_subroutine_token3, - ACTIONS(2256), 1, + ACTIONS(2108), 1, anon_sym_GT, - STATE(678), 1, - aux_sym_subroutine_repeat2, - STATE(758), 1, - aux_sym_subroutine_repeat3, - [30778] = 5, - ACTIONS(2172), 1, - aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2258), 1, - anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(776), 1, + STATE(805), 1, aux_sym_subroutine_repeat3, - [30794] = 3, - ACTIONS(2260), 1, - anon_sym_RPAREN, - ACTIONS(2264), 1, - anon_sym_LBRACK, - ACTIONS(2262), 3, - anon_sym_GT, - anon_sym_LT, - anon_sym_X, - [30806] = 5, - ACTIONS(2252), 1, - aux_sym_character_property_name_token1, - ACTIONS(2254), 1, - sym__force_property_name_node, - ACTIONS(2266), 1, - anon_sym_RBRACE, - STATE(598), 1, - aux_sym_character_property_name_repeat1, - STATE(979), 1, - sym_character_property_name, - [30822] = 5, - ACTIONS(2172), 1, + [28450] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2268), 1, + ACTIONS(2112), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(780), 1, + STATE(672), 1, aux_sym_subroutine_repeat3, - [30838] = 5, - ACTIONS(2172), 1, + [28466] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2270), 1, + ACTIONS(2114), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(786), 1, + STATE(732), 1, aux_sym_subroutine_repeat3, - [30854] = 5, - ACTIONS(2252), 1, + [28482] = 5, + ACTIONS(2116), 1, + anon_sym_RBRACE, + ACTIONS(2118), 1, aux_sym_character_property_name_token1, - ACTIONS(2254), 1, + ACTIONS(2120), 1, sym__force_property_name_node, - ACTIONS(2272), 1, - anon_sym_RBRACE, STATE(598), 1, aux_sym_character_property_name_repeat1, - STATE(892), 1, + STATE(865), 1, sym_character_property_name, - [30870] = 3, - ACTIONS(2274), 1, - anon_sym_RPAREN, - ACTIONS(2278), 1, - anon_sym_LBRACK, - ACTIONS(2276), 3, + [28498] = 5, + ACTIONS(2060), 1, + aux_sym_subroutine_token2, + ACTIONS(2110), 1, + aux_sym_subroutine_token3, + ACTIONS(2122), 1, anon_sym_GT, - anon_sym_LT, - anon_sym_X, - [30882] = 5, - ACTIONS(2172), 1, + STATE(632), 1, + aux_sym_subroutine_repeat2, + STATE(789), 1, + aux_sym_subroutine_repeat3, + [28514] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2280), 1, + ACTIONS(2124), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(778), 1, + STATE(682), 1, aux_sym_subroutine_repeat3, - [30898] = 5, - ACTIONS(2172), 1, + [28530] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2282), 1, + ACTIONS(2126), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(762), 1, + STATE(707), 1, aux_sym_subroutine_repeat3, - [30914] = 5, - ACTIONS(2172), 1, + [28546] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2284), 1, + ACTIONS(2128), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(764), 1, + STATE(796), 1, aux_sym_subroutine_repeat3, - [30930] = 3, - ACTIONS(2286), 1, + [28562] = 3, + ACTIONS(2130), 1, anon_sym_RPAREN, - ACTIONS(2290), 1, + ACTIONS(2134), 1, + anon_sym_LBRACK, + ACTIONS(2132), 3, + anon_sym_GT, + anon_sym_LT, + anon_sym_X, + [28574] = 3, + ACTIONS(2136), 1, + anon_sym_RPAREN, + ACTIONS(2140), 1, anon_sym_LBRACK, - ACTIONS(2288), 3, + ACTIONS(2138), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [30942] = 5, - ACTIONS(2172), 1, + [28586] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2292), 1, + ACTIONS(2142), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(746), 1, + STATE(696), 1, aux_sym_subroutine_repeat3, - [30958] = 3, - ACTIONS(2294), 1, + [28602] = 3, + ACTIONS(2144), 1, anon_sym_RPAREN, - ACTIONS(2298), 1, + ACTIONS(2148), 1, anon_sym_LBRACK, - ACTIONS(2296), 3, + ACTIONS(2146), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [30970] = 5, - ACTIONS(2172), 1, + [28614] = 5, + ACTIONS(2118), 1, + aux_sym_character_property_name_token1, + ACTIONS(2120), 1, + sym__force_property_name_node, + ACTIONS(2150), 1, + anon_sym_RBRACE, + STATE(598), 1, + aux_sym_character_property_name_repeat1, + STATE(972), 1, + sym_character_property_name, + [28630] = 5, + ACTIONS(2118), 1, + aux_sym_character_property_name_token1, + ACTIONS(2120), 1, + sym__force_property_name_node, + ACTIONS(2152), 1, + anon_sym_RBRACE, + STATE(598), 1, + aux_sym_character_property_name_repeat1, + STATE(842), 1, + sym_character_property_name, + [28646] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2300), 1, + ACTIONS(2154), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(738), 1, + STATE(803), 1, aux_sym_subroutine_repeat3, - [30986] = 5, - ACTIONS(2172), 1, + [28662] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2302), 1, + ACTIONS(2156), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(836), 1, + STATE(749), 1, aux_sym_subroutine_repeat3, - [31002] = 5, - ACTIONS(2172), 1, + [28678] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2304), 1, + ACTIONS(2158), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(748), 1, + STATE(797), 1, aux_sym_subroutine_repeat3, - [31018] = 5, - ACTIONS(2172), 1, + [28694] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2306), 1, + ACTIONS(2160), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(834), 1, + STATE(795), 1, aux_sym_subroutine_repeat3, - [31034] = 5, - ACTIONS(2172), 1, + [28710] = 3, + ACTIONS(2162), 1, + anon_sym_RPAREN, + ACTIONS(2166), 1, + anon_sym_LBRACK, + ACTIONS(2164), 3, + anon_sym_GT, + anon_sym_LT, + anon_sym_X, + [28722] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2308), 1, + ACTIONS(2168), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(774), 1, + STATE(781), 1, aux_sym_subroutine_repeat3, - [31050] = 4, - ACTIONS(2312), 1, - anon_sym_GT, - ACTIONS(2314), 1, - aux_sym_capture_group_conditional_name_token2, - STATE(804), 1, - aux_sym_capture_group_conditional_name_repeat1, - ACTIONS(2310), 2, - anon_sym_PLUS, - anon_sym_DASH, - [31064] = 3, - ACTIONS(2316), 1, + [28738] = 3, + ACTIONS(2170), 1, anon_sym_RPAREN, - ACTIONS(2320), 1, + ACTIONS(2174), 1, anon_sym_LBRACK, - ACTIONS(2318), 3, + ACTIONS(2172), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31076] = 5, - ACTIONS(2252), 1, + [28750] = 5, + ACTIONS(2118), 1, aux_sym_character_property_name_token1, - ACTIONS(2254), 1, + ACTIONS(2120), 1, sym__force_property_name_node, - ACTIONS(2322), 1, + ACTIONS(2176), 1, anon_sym_RBRACE, STATE(598), 1, aux_sym_character_property_name_repeat1, - STATE(898), 1, + STATE(915), 1, sym_character_property_name, - [31092] = 5, - ACTIONS(2172), 1, - aux_sym_subroutine_token2, - ACTIONS(2232), 1, - aux_sym_subroutine_token3, - ACTIONS(2324), 1, - anon_sym_GT, - STATE(678), 1, - aux_sym_subroutine_repeat2, - STATE(771), 1, - aux_sym_subroutine_repeat3, - [31108] = 5, - ACTIONS(2252), 1, + [28766] = 5, + ACTIONS(2118), 1, aux_sym_character_property_name_token1, - ACTIONS(2254), 1, + ACTIONS(2120), 1, sym__force_property_name_node, - ACTIONS(2326), 1, + ACTIONS(2178), 1, anon_sym_RBRACE, STATE(598), 1, aux_sym_character_property_name_repeat1, - STATE(936), 1, + STATE(862), 1, sym_character_property_name, - [31124] = 5, - ACTIONS(2172), 1, + [28782] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2328), 1, + ACTIONS(2180), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(782), 1, + STATE(775), 1, aux_sym_subroutine_repeat3, - [31140] = 3, - ACTIONS(2330), 1, - anon_sym_RPAREN, - ACTIONS(2334), 1, - anon_sym_LBRACK, - ACTIONS(2332), 3, - anon_sym_GT, - anon_sym_LT, - anon_sym_X, - [31152] = 5, - ACTIONS(2252), 1, - aux_sym_character_property_name_token1, - ACTIONS(2254), 1, - sym__force_property_name_node, - ACTIONS(2336), 1, - anon_sym_RBRACE, - STATE(598), 1, - aux_sym_character_property_name_repeat1, - STATE(965), 1, - sym_character_property_name, - [31168] = 5, - ACTIONS(2172), 1, + [28798] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2338), 1, + ACTIONS(2182), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(830), 1, + STATE(748), 1, aux_sym_subroutine_repeat3, - [31184] = 5, - ACTIONS(2172), 1, + [28814] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2340), 1, + ACTIONS(2184), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(824), 1, + STATE(800), 1, aux_sym_subroutine_repeat3, - [31200] = 5, - ACTIONS(2172), 1, + [28830] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2342), 1, + ACTIONS(2186), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(784), 1, + STATE(738), 1, aux_sym_subroutine_repeat3, - [31216] = 5, - ACTIONS(2172), 1, + [28846] = 3, + ACTIONS(2188), 1, + anon_sym_RPAREN, + ACTIONS(2192), 1, + anon_sym_LBRACK, + ACTIONS(2190), 3, + anon_sym_GT, + anon_sym_LT, + anon_sym_X, + [28858] = 5, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - ACTIONS(2232), 1, + ACTIONS(2110), 1, aux_sym_subroutine_token3, - ACTIONS(2344), 1, + ACTIONS(2194), 1, anon_sym_GT, - STATE(678), 1, + STATE(632), 1, aux_sym_subroutine_repeat2, - STATE(822), 1, + STATE(718), 1, aux_sym_subroutine_repeat3, - [31232] = 3, - ACTIONS(2346), 1, + [28874] = 4, + ACTIONS(2198), 1, + anon_sym_GT, + ACTIONS(2200), 1, + aux_sym_capture_group_conditional_name_token2, + STATE(739), 1, + aux_sym_capture_group_conditional_name_repeat1, + ACTIONS(2196), 2, + anon_sym_PLUS, + anon_sym_DASH, + [28888] = 3, + ACTIONS(2202), 1, anon_sym_RPAREN, - ACTIONS(2350), 1, + ACTIONS(2206), 1, anon_sym_LBRACK, - ACTIONS(2348), 3, + ACTIONS(2204), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31244] = 3, - ACTIONS(2352), 1, + [28900] = 3, + ACTIONS(2208), 1, anon_sym_RPAREN, - STATE(662), 1, - aux_sym_comment_group_repeat1, - ACTIONS(2354), 2, - aux_sym_comment_group_token1, - aux_sym_comment_group_token2, - [31255] = 4, - ACTIONS(2356), 1, - aux_sym_capture_group_name_token4, - ACTIONS(2358), 1, - aux_sym_subroutine_token1, - ACTIONS(2360), 1, - aux_sym_subroutine_token4, - STATE(683), 1, - aux_sym_subroutine_repeat1, - [31268] = 2, - ACTIONS(2362), 1, - anon_sym_RPAREN, - ACTIONS(2364), 3, + ACTIONS(2212), 1, + anon_sym_LBRACK, + ACTIONS(2210), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31277] = 2, - ACTIONS(2366), 1, - anon_sym_RPAREN, - ACTIONS(2368), 3, + [28912] = 5, + ACTIONS(2214), 1, + anon_sym_RBRACE, + ACTIONS(2216), 1, + aux_sym_character_property_name_token1, + ACTIONS(2218), 1, + aux_sym_character_property_name_token2, + STATE(661), 1, + aux_sym_character_property_name_repeat1, + STATE(698), 1, + aux_sym_character_property_name_repeat2, + [28928] = 2, + ACTIONS(2222), 1, + aux_sym_subroutine_token1, + ACTIONS(2220), 4, + anon_sym_PLUS, + aux_sym_capture_group_name_token2, + anon_sym_DASH, + aux_sym_subroutine_token2, + [28938] = 5, + ACTIONS(2060), 1, + aux_sym_subroutine_token2, + ACTIONS(2110), 1, + aux_sym_subroutine_token3, + ACTIONS(2224), 1, anon_sym_GT, - anon_sym_LT, - anon_sym_X, - [31286] = 2, - ACTIONS(2370), 1, + STATE(632), 1, + aux_sym_subroutine_repeat2, + STATE(802), 1, + aux_sym_subroutine_repeat3, + [28954] = 5, + ACTIONS(2118), 1, + aux_sym_character_property_name_token1, + ACTIONS(2120), 1, + sym__force_property_name_node, + ACTIONS(2226), 1, + anon_sym_RBRACE, + STATE(598), 1, + aux_sym_character_property_name_repeat1, + STATE(961), 1, + sym_character_property_name, + [28970] = 5, + ACTIONS(2060), 1, + aux_sym_subroutine_token2, + ACTIONS(2110), 1, + aux_sym_subroutine_token3, + ACTIONS(2228), 1, + anon_sym_GT, + STATE(632), 1, + aux_sym_subroutine_repeat2, + STATE(673), 1, + aux_sym_subroutine_repeat3, + [28986] = 3, + ACTIONS(2230), 1, anon_sym_RPAREN, - ACTIONS(2372), 3, + ACTIONS(2234), 1, + anon_sym_LBRACK, + ACTIONS(2232), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31295] = 2, - ACTIONS(2374), 1, + [28998] = 3, + ACTIONS(2236), 1, anon_sym_RPAREN, - ACTIONS(2376), 3, + ACTIONS(2240), 1, + anon_sym_LBRACK, + ACTIONS(2238), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31304] = 4, - ACTIONS(2358), 1, - aux_sym_subroutine_token1, - ACTIONS(2378), 1, + [29010] = 3, + ACTIONS(2242), 1, + anon_sym_RPAREN, + STATE(668), 1, + aux_sym_comment_group_repeat1, + ACTIONS(2244), 2, + aux_sym_comment_group_token1, + aux_sym_comment_group_token2, + [29021] = 3, + ACTIONS(2246), 1, + anon_sym_RPAREN, + STATE(666), 1, + aux_sym_comment_group_repeat1, + ACTIONS(2244), 2, + aux_sym_comment_group_token1, + aux_sym_comment_group_token2, + [29032] = 4, + ACTIONS(2248), 1, aux_sym_capture_group_name_token4, - ACTIONS(2380), 1, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2252), 1, aux_sym_subroutine_token4, - STATE(701), 1, + STATE(670), 1, aux_sym_subroutine_repeat1, - [31317] = 4, - ACTIONS(2382), 1, + [29045] = 4, + ACTIONS(2254), 1, aux_sym_capture_group_name_token2, - ACTIONS(2384), 1, + ACTIONS(2256), 1, aux_sym_subroutine_token1, - ACTIONS(2386), 1, + ACTIONS(2258), 1, aux_sym_subroutine_token4, - STATE(696), 1, + STATE(638), 1, aux_sym_subroutine_repeat1, - [31330] = 4, - ACTIONS(2358), 1, + [29058] = 4, + ACTIONS(2250), 1, aux_sym_subroutine_token1, - ACTIONS(2388), 1, + ACTIONS(2260), 1, aux_sym_capture_group_name_token4, - ACTIONS(2390), 1, + ACTIONS(2262), 1, aux_sym_subroutine_token4, - STATE(692), 1, + STATE(670), 1, aux_sym_subroutine_repeat1, - [31343] = 4, - ACTIONS(2392), 1, + [29071] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2264), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2266), 1, + aux_sym_subroutine_token4, + STATE(607), 1, + aux_sym_subroutine_repeat1, + [29084] = 4, + ACTIONS(2256), 1, + aux_sym_subroutine_token1, + ACTIONS(2268), 1, + aux_sym_capture_group_name_token2, + ACTIONS(2270), 1, + aux_sym_subroutine_token4, + STATE(608), 1, + aux_sym_subroutine_repeat1, + [29097] = 3, + ACTIONS(2272), 1, + anon_sym_RPAREN, + STATE(641), 1, + aux_sym_comment_group_repeat1, + ACTIONS(2244), 2, + aux_sym_comment_group_token1, + aux_sym_comment_group_token2, + [29108] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2274), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2276), 1, + aux_sym_subroutine_token4, + STATE(609), 1, + aux_sym_subroutine_repeat1, + [29121] = 4, + ACTIONS(2278), 1, anon_sym_RBRACE, - ACTIONS(2394), 1, + ACTIONS(2280), 1, anon_sym_LBRACE, - ACTIONS(2396), 1, + ACTIONS(2282), 1, aux_sym__callout_contents_token1, - STATE(968), 1, + STATE(947), 1, sym__callout_contents, - [31356] = 4, - ACTIONS(2394), 1, + [29134] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2284), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2286), 1, + aux_sym_subroutine_token4, + STATE(670), 1, + aux_sym_subroutine_repeat1, + [29147] = 4, + ACTIONS(2256), 1, + aux_sym_subroutine_token1, + ACTIONS(2288), 1, + aux_sym_capture_group_name_token2, + ACTIONS(2290), 1, + aux_sym_subroutine_token4, + STATE(638), 1, + aux_sym_subroutine_repeat1, + [29160] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2292), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2294), 1, + aux_sym_subroutine_token4, + STATE(670), 1, + aux_sym_subroutine_repeat1, + [29173] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2296), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2298), 1, + aux_sym_subroutine_token4, + STATE(615), 1, + aux_sym_subroutine_repeat1, + [29186] = 4, + ACTIONS(2256), 1, + aux_sym_subroutine_token1, + ACTIONS(2300), 1, + aux_sym_capture_group_name_token2, + ACTIONS(2302), 1, + aux_sym_subroutine_token4, + STATE(616), 1, + aux_sym_subroutine_repeat1, + [29199] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2304), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2306), 1, + aux_sym_subroutine_token4, + STATE(617), 1, + aux_sym_subroutine_repeat1, + [29212] = 4, + ACTIONS(2280), 1, anon_sym_LBRACE, - ACTIONS(2396), 1, + ACTIONS(2282), 1, aux_sym__callout_contents_token1, - ACTIONS(2398), 1, + ACTIONS(2308), 1, anon_sym_RBRACE, - STATE(907), 1, + STATE(927), 1, sym__callout_contents, - [31369] = 4, - ACTIONS(2400), 1, + [29225] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2310), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2312), 1, + aux_sym_subroutine_token4, + STATE(670), 1, + aux_sym_subroutine_repeat1, + [29238] = 4, + ACTIONS(2256), 1, + aux_sym_subroutine_token1, + ACTIONS(2314), 1, + aux_sym_capture_group_name_token2, + ACTIONS(2316), 1, + aux_sym_subroutine_token4, + STATE(638), 1, + aux_sym_subroutine_repeat1, + [29251] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2318), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2320), 1, + aux_sym_subroutine_token4, + STATE(670), 1, + aux_sym_subroutine_repeat1, + [29264] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2322), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2324), 1, + aux_sym_subroutine_token4, + STATE(622), 1, + aux_sym_subroutine_repeat1, + [29277] = 4, + ACTIONS(2256), 1, + aux_sym_subroutine_token1, + ACTIONS(2326), 1, + aux_sym_capture_group_name_token2, + ACTIONS(2328), 1, + aux_sym_subroutine_token4, + STATE(623), 1, + aux_sym_subroutine_repeat1, + [29290] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2330), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2332), 1, + aux_sym_subroutine_token4, + STATE(624), 1, + aux_sym_subroutine_repeat1, + [29303] = 4, + ACTIONS(2280), 1, + anon_sym_LBRACE, + ACTIONS(2282), 1, + aux_sym__callout_contents_token1, + ACTIONS(2334), 1, anon_sym_RBRACE, - ACTIONS(2402), 1, - aux_sym_character_property_name_token1, - ACTIONS(2405), 1, - aux_sym_character_property_name_token2, - STATE(648), 1, - aux_sym_character_property_name_repeat1, - [31382] = 4, - ACTIONS(2358), 1, + STATE(905), 1, + sym__callout_contents, + [29316] = 4, + ACTIONS(2250), 1, aux_sym_subroutine_token1, - ACTIONS(2407), 1, + ACTIONS(2336), 1, aux_sym_capture_group_name_token4, - ACTIONS(2409), 1, + ACTIONS(2338), 1, aux_sym_subroutine_token4, - STATE(659), 1, + STATE(670), 1, aux_sym_subroutine_repeat1, - [31395] = 3, - ACTIONS(2411), 1, - anon_sym_RPAREN, - STATE(662), 1, - aux_sym_comment_group_repeat1, - ACTIONS(2354), 2, - aux_sym_comment_group_token1, - aux_sym_comment_group_token2, - [31406] = 4, - ACTIONS(2384), 1, + [29329] = 4, + ACTIONS(2256), 1, aux_sym_subroutine_token1, - ACTIONS(2413), 1, + ACTIONS(2340), 1, aux_sym_capture_group_name_token2, - ACTIONS(2415), 1, + ACTIONS(2342), 1, aux_sym_subroutine_token4, - STATE(660), 1, + STATE(638), 1, aux_sym_subroutine_repeat1, - [31419] = 4, - ACTIONS(2358), 1, + [29342] = 4, + ACTIONS(2250), 1, aux_sym_subroutine_token1, - ACTIONS(2417), 1, + ACTIONS(2344), 1, aux_sym_capture_group_name_token4, - ACTIONS(2419), 1, + ACTIONS(2346), 1, aux_sym_subroutine_token4, - STATE(661), 1, + STATE(670), 1, + aux_sym_subroutine_repeat1, + [29355] = 4, + ACTIONS(2348), 1, + anon_sym_GT, + ACTIONS(2350), 1, + aux_sym_subroutine_token2, + ACTIONS(2353), 1, + aux_sym_subroutine_token3, + STATE(632), 1, + aux_sym_subroutine_repeat2, + [29368] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2355), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2357), 1, + aux_sym_subroutine_token4, + STATE(629), 1, + aux_sym_subroutine_repeat1, + [29381] = 4, + ACTIONS(2256), 1, + aux_sym_subroutine_token1, + ACTIONS(2359), 1, + aux_sym_capture_group_name_token2, + ACTIONS(2361), 1, + aux_sym_subroutine_token4, + STATE(630), 1, + aux_sym_subroutine_repeat1, + [29394] = 4, + ACTIONS(2250), 1, + aux_sym_subroutine_token1, + ACTIONS(2363), 1, + aux_sym_capture_group_name_token4, + ACTIONS(2365), 1, + aux_sym_subroutine_token4, + STATE(631), 1, aux_sym_subroutine_repeat1, - [31432] = 2, - ACTIONS(2421), 1, + [29407] = 4, + ACTIONS(2280), 1, + anon_sym_LBRACE, + ACTIONS(2282), 1, + aux_sym__callout_contents_token1, + ACTIONS(2367), 1, + anon_sym_RBRACE, + STATE(877), 1, + sym__callout_contents, + [29420] = 2, + ACTIONS(2369), 1, anon_sym_RPAREN, - ACTIONS(2423), 3, + ACTIONS(2371), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31441] = 3, - ACTIONS(2425), 1, - anon_sym_RPAREN, - STATE(650), 1, - aux_sym_comment_group_repeat1, - ACTIONS(2354), 2, - aux_sym_comment_group_token1, - aux_sym_comment_group_token2, - [31452] = 2, - ACTIONS(2427), 1, + [29429] = 3, + ACTIONS(2373), 1, + aux_sym_subroutine_token1, + STATE(638), 1, + aux_sym_subroutine_repeat1, + ACTIONS(2103), 2, + aux_sym_capture_group_name_token2, + aux_sym_subroutine_token4, + [29440] = 2, + ACTIONS(2376), 1, anon_sym_RPAREN, - ACTIONS(2429), 3, + ACTIONS(2378), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31461] = 2, - ACTIONS(2431), 1, + [29449] = 2, + ACTIONS(2380), 1, anon_sym_RPAREN, - ACTIONS(2433), 3, + ACTIONS(2382), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31470] = 3, - ACTIONS(2435), 1, + [29458] = 3, + ACTIONS(2384), 1, anon_sym_RPAREN, - STATE(685), 1, + STATE(666), 1, + aux_sym_comment_group_repeat1, + ACTIONS(2244), 2, + aux_sym_comment_group_token1, + aux_sym_comment_group_token2, + [29469] = 3, + ACTIONS(2386), 1, + anon_sym_RPAREN, + STATE(606), 1, + aux_sym_comment_group_repeat1, + ACTIONS(2244), 2, + aux_sym_comment_group_token1, + aux_sym_comment_group_token2, + [29480] = 4, + ACTIONS(2280), 1, + anon_sym_LBRACE, + ACTIONS(2282), 1, + aux_sym__callout_contents_token1, + ACTIONS(2388), 1, + anon_sym_RBRACE, + STATE(964), 1, + sym__callout_contents, + [29493] = 3, + ACTIONS(2390), 1, + anon_sym_RPAREN, + STATE(666), 1, + aux_sym_comment_group_repeat1, + ACTIONS(2244), 2, + aux_sym_comment_group_token1, + aux_sym_comment_group_token2, + [29504] = 3, + ACTIONS(2392), 1, + anon_sym_RPAREN, + STATE(644), 1, aux_sym_comment_group_repeat1, - ACTIONS(2354), 2, + ACTIONS(2244), 2, aux_sym_comment_group_token1, aux_sym_comment_group_token2, - [31481] = 2, - ACTIONS(2437), 1, + [29515] = 2, + ACTIONS(2394), 1, + anon_sym_RPAREN, + ACTIONS(2396), 3, + anon_sym_GT, + anon_sym_LT, + anon_sym_X, + [29524] = 2, + ACTIONS(2398), 1, + anon_sym_RPAREN, + ACTIONS(2400), 3, + anon_sym_GT, + anon_sym_LT, + anon_sym_X, + [29533] = 2, + ACTIONS(2402), 1, anon_sym_RPAREN, - ACTIONS(2439), 3, + ACTIONS(2404), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31490] = 4, - ACTIONS(2358), 1, - aux_sym_subroutine_token1, - ACTIONS(2441), 1, - aux_sym_capture_group_name_token4, - ACTIONS(2443), 1, - aux_sym_subroutine_token4, - STATE(663), 1, - aux_sym_subroutine_repeat1, - [31503] = 4, - ACTIONS(2384), 1, - aux_sym_subroutine_token1, - ACTIONS(2445), 1, - aux_sym_capture_group_name_token2, - ACTIONS(2447), 1, - aux_sym_subroutine_token4, - STATE(693), 1, - aux_sym_subroutine_repeat1, - [31516] = 4, - ACTIONS(2358), 1, + [29542] = 4, + ACTIONS(2250), 1, aux_sym_subroutine_token1, - ACTIONS(2449), 1, + ACTIONS(2406), 1, aux_sym_capture_group_name_token4, - ACTIONS(2451), 1, + ACTIONS(2408), 1, aux_sym_subroutine_token4, - STATE(663), 1, - aux_sym_subroutine_repeat1, - [31529] = 3, - ACTIONS(2453), 1, - anon_sym_RPAREN, - STATE(662), 1, - aux_sym_comment_group_repeat1, - ACTIONS(2455), 2, - aux_sym_comment_group_token1, - aux_sym_comment_group_token2, - [31540] = 3, - ACTIONS(2458), 1, - aux_sym_subroutine_token1, - STATE(663), 1, + STATE(670), 1, aux_sym_subroutine_repeat1, - ACTIONS(2213), 2, - aux_sym_capture_group_name_token4, - aux_sym_subroutine_token4, - [31551] = 4, - ACTIONS(2394), 1, - anon_sym_LBRACE, - ACTIONS(2396), 1, - aux_sym__callout_contents_token1, - ACTIONS(2461), 1, - anon_sym_RBRACE, - STATE(941), 1, - sym__callout_contents, - [31564] = 4, - ACTIONS(2358), 1, + [29555] = 4, + ACTIONS(2250), 1, aux_sym_subroutine_token1, - ACTIONS(2463), 1, + ACTIONS(2410), 1, aux_sym_capture_group_name_token4, - ACTIONS(2465), 1, + ACTIONS(2412), 1, aux_sym_subroutine_token4, - STATE(673), 1, + STATE(649), 1, aux_sym_subroutine_repeat1, - [31577] = 4, - ACTIONS(2384), 1, + [29568] = 4, + ACTIONS(2256), 1, aux_sym_subroutine_token1, - ACTIONS(2467), 1, + ACTIONS(2414), 1, aux_sym_capture_group_name_token2, - ACTIONS(2469), 1, + ACTIONS(2416), 1, aux_sym_subroutine_token4, - STATE(675), 1, + STATE(660), 1, aux_sym_subroutine_repeat1, - [31590] = 4, - ACTIONS(2358), 1, + [29581] = 4, + ACTIONS(2250), 1, aux_sym_subroutine_token1, - ACTIONS(2471), 1, + ACTIONS(2418), 1, aux_sym_capture_group_name_token4, - ACTIONS(2473), 1, + ACTIONS(2420), 1, aux_sym_subroutine_token4, - STATE(677), 1, + STATE(657), 1, aux_sym_subroutine_repeat1, - [31603] = 3, - ACTIONS(2475), 1, - anon_sym_RPAREN, - STATE(670), 1, - aux_sym_comment_group_repeat1, - ACTIONS(2354), 2, - aux_sym_comment_group_token1, - aux_sym_comment_group_token2, - [31614] = 3, - ACTIONS(2477), 1, + [29594] = 3, + ACTIONS(2422), 1, anon_sym_RPAREN, - STATE(662), 1, + STATE(666), 1, aux_sym_comment_group_repeat1, - ACTIONS(2354), 2, + ACTIONS(2244), 2, aux_sym_comment_group_token1, aux_sym_comment_group_token2, - [31625] = 3, - ACTIONS(2479), 1, + [29605] = 3, + ACTIONS(2424), 1, anon_sym_RPAREN, - STATE(662), 1, + STATE(653), 1, aux_sym_comment_group_repeat1, - ACTIONS(2354), 2, + ACTIONS(2244), 2, aux_sym_comment_group_token1, aux_sym_comment_group_token2, - [31636] = 2, - ACTIONS(2481), 1, + [29616] = 2, + ACTIONS(2426), 1, anon_sym_RPAREN, - ACTIONS(2483), 3, + ACTIONS(2428), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31645] = 3, - ACTIONS(2485), 1, + [29625] = 2, + ACTIONS(2430), 1, anon_sym_RPAREN, - STATE(669), 1, - aux_sym_comment_group_repeat1, - ACTIONS(2354), 2, - aux_sym_comment_group_token1, - aux_sym_comment_group_token2, - [31656] = 4, - ACTIONS(2358), 1, + ACTIONS(2432), 3, + anon_sym_GT, + anon_sym_LT, + anon_sym_X, + [29634] = 4, + ACTIONS(2250), 1, aux_sym_subroutine_token1, - ACTIONS(2487), 1, + ACTIONS(2434), 1, aux_sym_capture_group_name_token4, - ACTIONS(2489), 1, + ACTIONS(2436), 1, aux_sym_subroutine_token4, - STATE(663), 1, + STATE(670), 1, aux_sym_subroutine_repeat1, - [31669] = 2, - ACTIONS(2491), 1, + [29647] = 2, + ACTIONS(2438), 1, anon_sym_RPAREN, - ACTIONS(2493), 3, + ACTIONS(2440), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31678] = 4, - ACTIONS(2384), 1, - aux_sym_subroutine_token1, - ACTIONS(2495), 1, - aux_sym_capture_group_name_token2, - ACTIONS(2497), 1, - aux_sym_subroutine_token4, - STATE(693), 1, - aux_sym_subroutine_repeat1, - [31691] = 2, - ACTIONS(2499), 1, + [29656] = 2, + ACTIONS(2442), 1, anon_sym_RPAREN, - ACTIONS(2501), 3, + ACTIONS(2444), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31700] = 4, - ACTIONS(2358), 1, + [29665] = 4, + ACTIONS(2256), 1, aux_sym_subroutine_token1, - ACTIONS(2503), 1, - aux_sym_capture_group_name_token4, - ACTIONS(2505), 1, + ACTIONS(2446), 1, + aux_sym_capture_group_name_token2, + ACTIONS(2448), 1, aux_sym_subroutine_token4, - STATE(663), 1, + STATE(638), 1, aux_sym_subroutine_repeat1, - [31713] = 4, - ACTIONS(2507), 1, + [29678] = 4, + ACTIONS(2450), 1, + anon_sym_RBRACE, + ACTIONS(2452), 1, + aux_sym_character_property_name_token1, + ACTIONS(2455), 1, + aux_sym_character_property_name_token2, + STATE(661), 1, + aux_sym_character_property_name_repeat1, + [29691] = 2, + ACTIONS(2457), 1, + anon_sym_RPAREN, + ACTIONS(2459), 3, anon_sym_GT, - ACTIONS(2509), 1, - aux_sym_subroutine_token2, - ACTIONS(2512), 1, - aux_sym_subroutine_token3, - STATE(678), 1, - aux_sym_subroutine_repeat2, - [31726] = 2, - ACTIONS(2514), 1, + anon_sym_LT, + anon_sym_X, + [29700] = 2, + ACTIONS(2461), 1, anon_sym_RPAREN, - ACTIONS(2516), 3, + ACTIONS(2463), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31735] = 4, - ACTIONS(2394), 1, - anon_sym_LBRACE, - ACTIONS(2396), 1, - aux_sym__callout_contents_token1, - ACTIONS(2518), 1, - anon_sym_RBRACE, - STATE(963), 1, - sym__callout_contents, - [31748] = 4, - ACTIONS(2394), 1, + [29709] = 4, + ACTIONS(2280), 1, anon_sym_LBRACE, - ACTIONS(2396), 1, + ACTIONS(2282), 1, aux_sym__callout_contents_token1, - ACTIONS(2520), 1, + ACTIONS(2465), 1, anon_sym_RBRACE, - STATE(983), 1, + STATE(952), 1, sym__callout_contents, - [31761] = 2, - ACTIONS(2522), 1, + [29722] = 2, + ACTIONS(2467), 1, anon_sym_RPAREN, - ACTIONS(2524), 3, + ACTIONS(2469), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31770] = 4, - ACTIONS(2358), 1, - aux_sym_subroutine_token1, - ACTIONS(2526), 1, - aux_sym_capture_group_name_token4, - ACTIONS(2528), 1, - aux_sym_subroutine_token4, - STATE(663), 1, - aux_sym_subroutine_repeat1, - [31783] = 4, - ACTIONS(2358), 1, - aux_sym_subroutine_token1, - ACTIONS(2530), 1, - aux_sym_capture_group_name_token4, - ACTIONS(2532), 1, - aux_sym_subroutine_token4, - STATE(690), 1, - aux_sym_subroutine_repeat1, - [31796] = 3, - ACTIONS(2534), 1, + [29731] = 3, + ACTIONS(2471), 1, anon_sym_RPAREN, - STATE(662), 1, + STATE(666), 1, aux_sym_comment_group_repeat1, - ACTIONS(2354), 2, + ACTIONS(2473), 2, aux_sym_comment_group_token1, aux_sym_comment_group_token2, - [31807] = 4, - ACTIONS(2384), 1, - aux_sym_subroutine_token1, - ACTIONS(2536), 1, - aux_sym_capture_group_name_token2, - ACTIONS(2538), 1, - aux_sym_subroutine_token4, - STATE(693), 1, - aux_sym_subroutine_repeat1, - [31820] = 4, - ACTIONS(2384), 1, - aux_sym_subroutine_token1, - ACTIONS(2540), 1, - aux_sym_capture_group_name_token2, - ACTIONS(2542), 1, - aux_sym_subroutine_token4, - STATE(686), 1, - aux_sym_subroutine_repeat1, - [31833] = 2, - ACTIONS(2544), 1, + [29742] = 2, + ACTIONS(2476), 1, anon_sym_RPAREN, - ACTIONS(2546), 3, + ACTIONS(2478), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31842] = 4, - ACTIONS(2358), 1, - aux_sym_subroutine_token1, - ACTIONS(2548), 1, - aux_sym_capture_group_name_token4, - ACTIONS(2550), 1, - aux_sym_subroutine_token4, - STATE(691), 1, - aux_sym_subroutine_repeat1, - [31855] = 4, - ACTIONS(2358), 1, - aux_sym_subroutine_token1, - ACTIONS(2552), 1, - aux_sym_capture_group_name_token4, - ACTIONS(2554), 1, - aux_sym_subroutine_token4, - STATE(663), 1, - aux_sym_subroutine_repeat1, - [31868] = 4, - ACTIONS(2358), 1, - aux_sym_subroutine_token1, - ACTIONS(2556), 1, - aux_sym_capture_group_name_token4, - ACTIONS(2558), 1, - aux_sym_subroutine_token4, - STATE(663), 1, - aux_sym_subroutine_repeat1, - [31881] = 4, - ACTIONS(2358), 1, - aux_sym_subroutine_token1, - ACTIONS(2560), 1, - aux_sym_capture_group_name_token4, - ACTIONS(2562), 1, - aux_sym_subroutine_token4, - STATE(663), 1, - aux_sym_subroutine_repeat1, - [31894] = 3, - ACTIONS(2564), 1, - aux_sym_subroutine_token1, - STATE(693), 1, - aux_sym_subroutine_repeat1, - ACTIONS(2213), 2, - aux_sym_capture_group_name_token2, - aux_sym_subroutine_token4, - [31905] = 3, - ACTIONS(2567), 1, + [29751] = 3, + ACTIONS(2480), 1, anon_sym_RPAREN, - STATE(637), 1, + STATE(666), 1, aux_sym_comment_group_repeat1, - ACTIONS(2354), 2, + ACTIONS(2244), 2, aux_sym_comment_group_token1, aux_sym_comment_group_token2, - [31916] = 4, - ACTIONS(2384), 1, - aux_sym_subroutine_token1, - ACTIONS(2569), 1, - aux_sym_capture_group_name_token2, - ACTIONS(2571), 1, - aux_sym_subroutine_token4, - STATE(693), 1, - aux_sym_subroutine_repeat1, - [31929] = 4, - ACTIONS(2384), 1, - aux_sym_subroutine_token1, - ACTIONS(2573), 1, - aux_sym_capture_group_name_token2, - ACTIONS(2575), 1, - aux_sym_subroutine_token4, - STATE(693), 1, - aux_sym_subroutine_repeat1, - [31942] = 4, - ACTIONS(2384), 1, - aux_sym_subroutine_token1, - ACTIONS(2577), 1, - aux_sym_capture_group_name_token2, - ACTIONS(2579), 1, - aux_sym_subroutine_token4, - STATE(695), 1, - aux_sym_subroutine_repeat1, - [31955] = 4, - ACTIONS(2394), 1, - anon_sym_LBRACE, - ACTIONS(2396), 1, - aux_sym__callout_contents_token1, - ACTIONS(2581), 1, - anon_sym_RBRACE, - STATE(1012), 1, - sym__callout_contents, - [31968] = 4, - ACTIONS(2358), 1, - aux_sym_subroutine_token1, - ACTIONS(2583), 1, - aux_sym_capture_group_name_token4, - ACTIONS(2585), 1, - aux_sym_subroutine_token4, - STATE(663), 1, - aux_sym_subroutine_repeat1, - [31981] = 2, - ACTIONS(2587), 1, + [29762] = 2, + ACTIONS(2482), 1, anon_sym_RPAREN, - ACTIONS(2589), 3, + ACTIONS(2484), 3, anon_sym_GT, anon_sym_LT, anon_sym_X, - [31990] = 4, - ACTIONS(2358), 1, + [29771] = 3, + ACTIONS(2486), 1, aux_sym_subroutine_token1, - ACTIONS(2591), 1, - aux_sym_capture_group_name_token4, - ACTIONS(2593), 1, - aux_sym_subroutine_token4, - STATE(663), 1, + STATE(670), 1, aux_sym_subroutine_repeat1, - [32003] = 4, - ACTIONS(2358), 1, - aux_sym_subroutine_token1, - ACTIONS(2595), 1, + ACTIONS(2103), 2, aux_sym_capture_group_name_token4, - ACTIONS(2597), 1, aux_sym_subroutine_token4, - STATE(699), 1, - aux_sym_subroutine_repeat1, - [32016] = 3, - ACTIONS(2599), 1, - anon_sym_GT, - ACTIONS(2601), 1, - aux_sym_subroutine_token3, - STATE(821), 1, - aux_sym_subroutine_repeat3, - [32026] = 3, - ACTIONS(2603), 1, - aux_sym_capture_group_name_token1, - ACTIONS(2605), 1, - aux_sym_capture_group_name_token2, - STATE(787), 1, - aux_sym_capture_group_name_repeat1, - [32036] = 3, - ACTIONS(2601), 1, - aux_sym_subroutine_token3, - ACTIONS(2607), 1, - anon_sym_GT, - STATE(821), 1, - aux_sym_subroutine_repeat3, - [32046] = 3, - ACTIONS(2609), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, - aux_sym_subroutine_token3, - STATE(715), 1, - aux_sym_subroutine_repeat3, - [32056] = 3, - ACTIONS(2613), 1, - aux_sym_callout_token3, - ACTIONS(2615), 1, - anon_sym_RBRACK, - STATE(838), 1, - aux_sym_callout_repeat1, - [32066] = 3, - ACTIONS(2603), 1, - aux_sym_capture_group_name_token1, - ACTIONS(2617), 1, - aux_sym_capture_group_name_token2, - STATE(745), 1, - aux_sym_capture_group_name_repeat1, - [32076] = 3, - ACTIONS(2619), 1, - aux_sym_callout_token3, - ACTIONS(2621), 1, - anon_sym_RBRACK, - STATE(707), 1, - aux_sym_callout_repeat1, - [32086] = 3, - ACTIONS(2342), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, - aux_sym_subroutine_token3, - STATE(801), 1, - aux_sym_subroutine_repeat3, - [32096] = 3, - ACTIONS(2611), 1, - aux_sym_subroutine_token3, - ACTIONS(2623), 1, + [29782] = 3, + ACTIONS(2489), 1, anon_sym_SQUOTE, - STATE(726), 1, - aux_sym_subroutine_repeat3, - [32106] = 3, - ACTIONS(2611), 1, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2625), 1, - anon_sym_SQUOTE, - STATE(720), 1, + STATE(725), 1, aux_sym_subroutine_repeat3, - [32116] = 3, - ACTIONS(2627), 1, - anon_sym_RBRACE, - ACTIONS(2629), 1, - aux_sym__callout_contents_token2, - STATE(713), 1, - aux_sym__callout_contents_repeat1, - [32126] = 3, - ACTIONS(2601), 1, - aux_sym_subroutine_token3, - ACTIONS(2625), 1, + [29792] = 3, + ACTIONS(2493), 1, anon_sym_GT, - STATE(703), 1, - aux_sym_subroutine_repeat3, - [32136] = 3, - ACTIONS(2632), 1, - anon_sym_SQUOTE, - ACTIONS(2634), 1, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - STATE(715), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32146] = 3, - ACTIONS(2601), 1, + [29802] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2637), 1, + ACTIONS(2497), 1, anon_sym_GT, - STATE(705), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32156] = 3, - ACTIONS(2601), 1, + [29812] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2639), 1, + ACTIONS(2499), 1, anon_sym_GT, - STATE(831), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32166] = 3, - ACTIONS(2258), 1, + [29822] = 3, + ACTIONS(2112), 1, anon_sym_SQUOTE, - ACTIONS(2611), 1, - aux_sym_subroutine_token3, - STATE(706), 1, - aux_sym_subroutine_repeat3, - [32176] = 3, - ACTIONS(2611), 1, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2641), 1, - anon_sym_SQUOTE, - STATE(715), 1, + STATE(708), 1, aux_sym_subroutine_repeat3, - [32186] = 3, - ACTIONS(2599), 1, + [29832] = 3, + ACTIONS(2124), 1, anon_sym_SQUOTE, - ACTIONS(2611), 1, - aux_sym_subroutine_token3, - STATE(715), 1, - aux_sym_subroutine_repeat3, - [32196] = 3, - ACTIONS(2601), 1, - aux_sym_subroutine_token3, - ACTIONS(2623), 1, - anon_sym_GT, - STATE(743), 1, - aux_sym_subroutine_repeat3, - [32206] = 3, - ACTIONS(2611), 1, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2637), 1, - anon_sym_SQUOTE, - STATE(813), 1, + STATE(756), 1, aux_sym_subroutine_repeat3, - [32216] = 2, - ACTIONS(2645), 1, + [29842] = 3, + ACTIONS(2501), 1, + aux_sym_capture_group_name_token3, + ACTIONS(2503), 1, + aux_sym_capture_group_name_token4, + STATE(793), 1, + aux_sym_capture_group_name_repeat2, + [29852] = 3, + ACTIONS(2505), 1, + aux_sym_capture_group_name_token1, + ACTIONS(2507), 1, + aux_sym_capture_group_name_token2, + STATE(806), 1, + aux_sym_capture_group_name_repeat1, + [29862] = 3, + ACTIONS(2501), 1, + aux_sym_capture_group_name_token3, + ACTIONS(2509), 1, + aux_sym_capture_group_name_token4, + STATE(677), 1, + aux_sym_capture_group_name_repeat2, + [29872] = 2, + ACTIONS(2513), 1, aux_sym_subroutine_token3, - ACTIONS(2643), 2, + ACTIONS(2511), 2, anon_sym_GT, aux_sym_subroutine_token2, - [32224] = 3, - ACTIONS(2314), 1, - aux_sym_capture_group_conditional_name_token2, - ACTIONS(2647), 1, - anon_sym_GT, - STATE(725), 1, - aux_sym_capture_group_conditional_name_repeat1, - [32234] = 3, - ACTIONS(2649), 1, + [29880] = 3, + ACTIONS(2505), 1, + aux_sym_capture_group_name_token1, + ACTIONS(2515), 1, + aux_sym_capture_group_name_token2, + STATE(678), 1, + aux_sym_capture_group_name_repeat1, + [29890] = 3, + ACTIONS(2495), 1, + aux_sym_subroutine_token3, + ACTIONS(2517), 1, anon_sym_GT, - ACTIONS(2651), 1, - aux_sym_capture_group_conditional_name_token2, - STATE(725), 1, - aux_sym_capture_group_conditional_name_repeat1, - [32244] = 3, - ACTIONS(2611), 1, + STATE(735), 1, + aux_sym_subroutine_repeat3, + [29900] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2654), 1, + ACTIONS(2519), 1, anon_sym_SQUOTE, - STATE(715), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [32254] = 2, - ACTIONS(2248), 1, + [29910] = 2, + ACTIONS(2222), 1, aux_sym_subroutine_token1, - ACTIONS(2246), 2, - aux_sym_capture_group_name_token2, + ACTIONS(2220), 2, + aux_sym_capture_group_name_token4, aux_sym_subroutine_token4, - [32262] = 3, - ACTIONS(2613), 1, + [29918] = 3, + ACTIONS(2501), 1, + aux_sym_capture_group_name_token3, + ACTIONS(2521), 1, + aux_sym_capture_group_name_token4, + STATE(793), 1, + aux_sym_capture_group_name_repeat2, + [29928] = 3, + ACTIONS(2505), 1, + aux_sym_capture_group_name_token1, + ACTIONS(2523), 1, + aux_sym_capture_group_name_token2, + STATE(806), 1, + aux_sym_capture_group_name_repeat1, + [29938] = 3, + ACTIONS(2501), 1, + aux_sym_capture_group_name_token3, + ACTIONS(2525), 1, + aux_sym_capture_group_name_token4, + STATE(685), 1, + aux_sym_capture_group_name_repeat2, + [29948] = 3, + ACTIONS(2505), 1, + aux_sym_capture_group_name_token1, + ACTIONS(2527), 1, + aux_sym_capture_group_name_token2, + STATE(686), 1, + aux_sym_capture_group_name_repeat1, + [29958] = 3, + ACTIONS(2501), 1, + aux_sym_capture_group_name_token3, + ACTIONS(2529), 1, + aux_sym_capture_group_name_token4, + STATE(793), 1, + aux_sym_capture_group_name_repeat2, + [29968] = 3, + ACTIONS(2531), 1, aux_sym_callout_token3, - ACTIONS(2656), 1, + ACTIONS(2533), 1, anon_sym_RBRACK, - STATE(838), 1, + STATE(691), 1, aux_sym_callout_repeat1, - [32272] = 3, - ACTIONS(2292), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, + [29978] = 3, + ACTIONS(2535), 1, + aux_sym_callout_token3, + ACTIONS(2538), 1, + anon_sym_RBRACK, + STATE(691), 1, + aux_sym_callout_repeat1, + [29988] = 3, + ACTIONS(2505), 1, + aux_sym_capture_group_name_token1, + ACTIONS(2540), 1, + aux_sym_capture_group_name_token2, + STATE(806), 1, + aux_sym_capture_group_name_repeat1, + [29998] = 3, + ACTIONS(2542), 1, + anon_sym_RBRACE, + ACTIONS(2544), 1, + aux_sym__callout_contents_token2, + STATE(716), 1, + aux_sym__callout_contents_repeat1, + [30008] = 3, + ACTIONS(2501), 1, + aux_sym_capture_group_name_token3, + ACTIONS(2546), 1, + aux_sym_capture_group_name_token4, + STATE(689), 1, + aux_sym_capture_group_name_repeat2, + [30018] = 3, + ACTIONS(2505), 1, + aux_sym_capture_group_name_token1, + ACTIONS(2548), 1, + aux_sym_capture_group_name_token2, + STATE(692), 1, + aux_sym_capture_group_name_repeat1, + [30028] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - STATE(747), 1, + ACTIONS(2519), 1, + anon_sym_GT, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32282] = 3, - ACTIONS(2658), 1, + [30038] = 3, + ACTIONS(2531), 1, aux_sym_callout_token3, - ACTIONS(2660), 1, + ACTIONS(2550), 1, + anon_sym_RBRACK, + STATE(691), 1, + aux_sym_callout_repeat1, + [30048] = 3, + ACTIONS(2552), 1, + anon_sym_RBRACE, + ACTIONS(2554), 1, + aux_sym_character_property_name_token2, + STATE(766), 1, + aux_sym_character_property_name_repeat2, + [30058] = 3, + ACTIONS(2556), 1, + aux_sym_callout_token3, + ACTIONS(2558), 1, anon_sym_RBRACK, - STATE(728), 1, + STATE(697), 1, aux_sym_callout_repeat1, - [32292] = 3, - ACTIONS(2601), 1, + [30068] = 3, + ACTIONS(2194), 1, + anon_sym_SQUOTE, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2662), 1, - anon_sym_GT, - STATE(750), 1, + STATE(719), 1, aux_sym_subroutine_repeat3, - [32302] = 3, - ACTIONS(2613), 1, + [30078] = 3, + ACTIONS(2531), 1, aux_sym_callout_token3, - ACTIONS(2660), 1, + ACTIONS(2558), 1, anon_sym_RBRACK, - STATE(838), 1, + STATE(691), 1, aux_sym_callout_repeat1, - [32312] = 3, - ACTIONS(2611), 1, + [30088] = 3, + ACTIONS(2489), 1, + anon_sym_GT, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2662), 1, - anon_sym_SQUOTE, - STATE(752), 1, + STATE(722), 1, aux_sym_subroutine_repeat3, - [32322] = 3, - ACTIONS(2664), 1, + [30098] = 3, + ACTIONS(2560), 1, aux_sym_callout_token3, - ACTIONS(2666), 1, + ACTIONS(2562), 1, anon_sym_RBRACK, - STATE(732), 1, + STATE(701), 1, aux_sym_callout_repeat1, - [32332] = 3, - ACTIONS(2611), 1, + [30108] = 3, + ACTIONS(2501), 1, + aux_sym_capture_group_name_token3, + ACTIONS(2564), 1, + aux_sym_capture_group_name_token4, + STATE(793), 1, + aux_sym_capture_group_name_repeat2, + [30118] = 1, + ACTIONS(2566), 3, + anon_sym_RPAREN, + aux_sym_comment_group_token1, + aux_sym_comment_group_token2, + [30124] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2668), 1, + ACTIONS(2568), 1, anon_sym_SQUOTE, - STATE(769), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [32342] = 3, - ACTIONS(2601), 1, + [30134] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2641), 1, + ACTIONS(2570), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32352] = 3, - ACTIONS(2601), 1, + [30144] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2668), 1, - anon_sym_GT, - STATE(757), 1, + ACTIONS(2493), 1, + anon_sym_SQUOTE, + STATE(711), 1, aux_sym_subroutine_repeat3, - [32362] = 3, - ACTIONS(2601), 1, + [30154] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2670), 1, - anon_sym_GT, - STATE(821), 1, - aux_sym_subroutine_repeat3, - [32372] = 3, - ACTIONS(2672), 1, - anon_sym_RBRACE, - ACTIONS(2674), 1, - aux_sym__callout_contents_token2, - STATE(800), 1, - aux_sym__callout_contents_repeat1, - [32382] = 3, - ACTIONS(2268), 1, + ACTIONS(2572), 1, anon_sym_SQUOTE, - ACTIONS(2611), 1, - aux_sym_subroutine_token3, - STATE(793), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [32392] = 3, - ACTIONS(2306), 1, + [30164] = 3, + ACTIONS(2501), 1, + aux_sym_capture_group_name_token3, + ACTIONS(2574), 1, + aux_sym_capture_group_name_token4, + STATE(714), 1, + aux_sym_capture_group_name_repeat2, + [30174] = 3, + ACTIONS(2576), 1, anon_sym_SQUOTE, - ACTIONS(2611), 1, + ACTIONS(2578), 1, aux_sym_subroutine_token3, - STATE(832), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [32402] = 3, - ACTIONS(2256), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, + [30184] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - STATE(756), 1, + ACTIONS(2581), 1, + anon_sym_GT, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32412] = 3, - ACTIONS(2601), 1, + [30194] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2654), 1, + ACTIONS(2583), 1, anon_sym_GT, - STATE(821), 1, + STATE(768), 1, aux_sym_subroutine_repeat3, - [32422] = 3, - ACTIONS(2611), 1, - aux_sym_subroutine_token3, - ACTIONS(2676), 1, - anon_sym_SQUOTE, + [30204] = 3, + ACTIONS(2501), 1, + aux_sym_capture_group_name_token3, + ACTIONS(2585), 1, + aux_sym_capture_group_name_token4, + STATE(793), 1, + aux_sym_capture_group_name_repeat2, + [30214] = 3, + ACTIONS(2587), 1, + anon_sym_RBRACE, + ACTIONS(2589), 1, + aux_sym__callout_contents_token2, + STATE(715), 1, + aux_sym__callout_contents_repeat1, + [30224] = 3, + ACTIONS(2592), 1, + anon_sym_RBRACE, + ACTIONS(2594), 1, + aux_sym__callout_contents_token2, STATE(715), 1, + aux_sym__callout_contents_repeat1, + [30234] = 3, + ACTIONS(2128), 1, + anon_sym_SQUOTE, + ACTIONS(2491), 1, + aux_sym_subroutine_token3, + STATE(706), 1, aux_sym_subroutine_repeat3, - [32432] = 3, - ACTIONS(2603), 1, - aux_sym_capture_group_name_token1, - ACTIONS(2678), 1, - aux_sym_capture_group_name_token2, - STATE(787), 1, - aux_sym_capture_group_name_repeat1, - [32442] = 3, - ACTIONS(2601), 1, + [30244] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2680), 1, + ACTIONS(2596), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32452] = 3, - ACTIONS(2611), 1, + [30254] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2680), 1, + ACTIONS(2596), 1, anon_sym_SQUOTE, - STATE(715), 1, - aux_sym_subroutine_repeat3, - [32462] = 3, - ACTIONS(2601), 1, - aux_sym_subroutine_token3, - ACTIONS(2676), 1, - anon_sym_GT, - STATE(821), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [32472] = 3, - ACTIONS(2284), 1, + [30264] = 3, + ACTIONS(2531), 1, + aux_sym_callout_token3, + ACTIONS(2598), 1, + anon_sym_RBRACK, + STATE(691), 1, + aux_sym_callout_repeat1, + [30274] = 3, + ACTIONS(2184), 1, anon_sym_SQUOTE, - ACTIONS(2611), 1, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - STATE(765), 1, + STATE(799), 1, aux_sym_subroutine_repeat3, - [32482] = 3, - ACTIONS(2601), 1, + [30284] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2682), 1, + ACTIONS(2600), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32492] = 3, - ACTIONS(2601), 1, + [30294] = 3, + ACTIONS(2602), 1, + aux_sym_callout_token3, + ACTIONS(2604), 1, + anon_sym_RBRACK, + STATE(720), 1, + aux_sym_callout_repeat1, + [30304] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2684), 1, + ACTIONS(2606), 1, anon_sym_GT, - STATE(766), 1, + STATE(742), 1, aux_sym_subroutine_repeat3, - [32502] = 3, - ACTIONS(2611), 1, + [30314] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2682), 1, + ACTIONS(2600), 1, anon_sym_SQUOTE, - STATE(715), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [32512] = 3, - ACTIONS(2611), 1, + [30324] = 3, + ACTIONS(2531), 1, + aux_sym_callout_token3, + ACTIONS(2604), 1, + anon_sym_RBRACK, + STATE(691), 1, + aux_sym_callout_repeat1, + [30334] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2684), 1, + ACTIONS(2606), 1, anon_sym_SQUOTE, - STATE(767), 1, + STATE(743), 1, aux_sym_subroutine_repeat3, - [32522] = 1, - ACTIONS(2686), 3, - anon_sym_RPAREN, - aux_sym_comment_group_token1, - aux_sym_comment_group_token2, - [32528] = 3, - ACTIONS(2688), 1, - aux_sym_capture_group_name_token3, - ACTIONS(2690), 1, - aux_sym_capture_group_name_token4, - STATE(791), 1, - aux_sym_capture_group_name_repeat2, - [32538] = 3, - ACTIONS(2611), 1, + [30344] = 3, + ACTIONS(2608), 1, + aux_sym_callout_token3, + ACTIONS(2610), 1, + anon_sym_RBRACK, + STATE(726), 1, + aux_sym_callout_repeat1, + [30354] = 3, + ACTIONS(2505), 1, + aux_sym_capture_group_name_token1, + ACTIONS(2612), 1, + aux_sym_capture_group_name_token2, + STATE(806), 1, + aux_sym_capture_group_name_repeat1, + [30364] = 3, + ACTIONS(2614), 1, + aux_sym_callout_token3, + ACTIONS(2616), 1, + anon_sym_RBRACK, + STATE(734), 1, + aux_sym_callout_repeat1, + [30374] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2692), 1, + ACTIONS(2618), 1, anon_sym_SQUOTE, - STATE(715), 1, - aux_sym_subroutine_repeat3, - [32548] = 3, - ACTIONS(2601), 1, - aux_sym_subroutine_token3, - ACTIONS(2694), 1, - anon_sym_GT, - STATE(821), 1, + STATE(762), 1, aux_sym_subroutine_repeat3, - [32558] = 3, - ACTIONS(2601), 1, + [30384] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2692), 1, + ACTIONS(2620), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32568] = 3, - ACTIONS(2688), 1, - aux_sym_capture_group_name_token3, - ACTIONS(2696), 1, - aux_sym_capture_group_name_token4, - STATE(791), 1, - aux_sym_capture_group_name_repeat2, - [32578] = 3, - ACTIONS(2613), 1, + [30394] = 3, + ACTIONS(2622), 1, aux_sym_callout_token3, - ACTIONS(2698), 1, + ACTIONS(2624), 1, anon_sym_RBRACK, - STATE(838), 1, + STATE(690), 1, aux_sym_callout_repeat1, - [32588] = 3, - ACTIONS(2700), 1, + [30404] = 3, + ACTIONS(2531), 1, aux_sym_callout_token3, - ACTIONS(2702), 1, + ACTIONS(2624), 1, anon_sym_RBRACK, - STATE(760), 1, + STATE(691), 1, aux_sym_callout_repeat1, - [32598] = 3, - ACTIONS(2601), 1, + [30414] = 3, + ACTIONS(2576), 1, + anon_sym_GT, + ACTIONS(2626), 1, + aux_sym_subroutine_token3, + STATE(735), 1, + aux_sym_subroutine_repeat3, + [30424] = 3, + ACTIONS(2491), 1, + aux_sym_subroutine_token3, + ACTIONS(2581), 1, + anon_sym_SQUOTE, + STATE(711), 1, + aux_sym_subroutine_repeat3, + [30434] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2704), 1, + ACTIONS(2618), 1, anon_sym_GT, - STATE(821), 1, + STATE(674), 1, aux_sym_subroutine_repeat3, - [32608] = 3, - ACTIONS(2613), 1, - aux_sym_callout_token3, - ACTIONS(2702), 1, - anon_sym_RBRACK, - STATE(838), 1, - aux_sym_callout_repeat1, - [32618] = 3, - ACTIONS(2601), 1, + [30444] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2706), 1, + ACTIONS(2629), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32628] = 3, - ACTIONS(2611), 1, + [30454] = 3, + ACTIONS(2631), 1, + anon_sym_GT, + ACTIONS(2633), 1, + aux_sym_capture_group_conditional_name_token2, + STATE(755), 1, + aux_sym_capture_group_conditional_name_repeat1, + [30464] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2706), 1, + ACTIONS(2635), 1, anon_sym_SQUOTE, - STATE(715), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [32638] = 3, - ACTIONS(2601), 1, + [30474] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2708), 1, + ACTIONS(2635), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32648] = 3, - ACTIONS(2611), 1, + [30484] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2708), 1, - anon_sym_SQUOTE, - STATE(715), 1, + ACTIONS(2637), 1, + anon_sym_GT, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32658] = 3, - ACTIONS(2710), 1, - aux_sym_callout_token3, - ACTIONS(2712), 1, - anon_sym_RBRACK, - STATE(763), 1, - aux_sym_callout_repeat1, - [32668] = 3, - ACTIONS(2611), 1, + [30494] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2694), 1, + ACTIONS(2637), 1, anon_sym_SQUOTE, - STATE(715), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [32678] = 3, - ACTIONS(2603), 1, + [30504] = 3, + ACTIONS(2505), 1, aux_sym_capture_group_name_token1, - ACTIONS(2714), 1, + ACTIONS(2639), 1, aux_sym_capture_group_name_token2, - STATE(787), 1, + STATE(729), 1, aux_sym_capture_group_name_repeat1, - [32688] = 3, - ACTIONS(2601), 1, + [30514] = 3, + ACTIONS(2142), 1, + anon_sym_SQUOTE, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2716), 1, + STATE(683), 1, + aux_sym_subroutine_repeat3, + [30524] = 3, + ACTIONS(2495), 1, + aux_sym_subroutine_token3, + ACTIONS(2641), 1, anon_sym_GT, - STATE(821), 1, + STATE(712), 1, aux_sym_subroutine_repeat3, - [32698] = 3, - ACTIONS(2611), 1, + [30534] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2639), 1, + ACTIONS(2643), 1, anon_sym_SQUOTE, - STATE(829), 1, + STATE(709), 1, aux_sym_subroutine_repeat3, - [32708] = 3, - ACTIONS(2613), 1, - aux_sym_callout_token3, - ACTIONS(2718), 1, - anon_sym_RBRACK, - STATE(838), 1, - aux_sym_callout_repeat1, - [32718] = 3, - ACTIONS(2601), 1, + [30544] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2720), 1, + ACTIONS(2645), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32728] = 3, - ACTIONS(2613), 1, - aux_sym_callout_token3, - ACTIONS(2722), 1, - anon_sym_RBRACK, - STATE(838), 1, - aux_sym_callout_repeat1, - [32738] = 3, - ACTIONS(2601), 1, + [30554] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2609), 1, + ACTIONS(2647), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32748] = 3, - ACTIONS(2688), 1, - aux_sym_capture_group_name_token3, - ACTIONS(2724), 1, - aux_sym_capture_group_name_token4, - STATE(791), 1, - aux_sym_capture_group_name_repeat2, - [32758] = 3, - ACTIONS(2601), 1, + [30564] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2726), 1, - anon_sym_GT, - STATE(821), 1, + ACTIONS(2641), 1, + anon_sym_SQUOTE, + STATE(736), 1, aux_sym_subroutine_repeat3, - [32768] = 3, - ACTIONS(2603), 1, - aux_sym_capture_group_name_token1, - ACTIONS(2728), 1, - aux_sym_capture_group_name_token2, - STATE(704), 1, - aux_sym_capture_group_name_repeat1, - [32778] = 3, - ACTIONS(2601), 1, + [30574] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2730), 1, - anon_sym_GT, - STATE(821), 1, + ACTIONS(2647), 1, + anon_sym_SQUOTE, + STATE(711), 1, aux_sym_subroutine_repeat3, - [32788] = 3, - ACTIONS(2688), 1, - aux_sym_capture_group_name_token3, - ACTIONS(2732), 1, - aux_sym_capture_group_name_token4, - STATE(799), 1, - aux_sym_capture_group_name_repeat2, - [32798] = 3, - ACTIONS(2601), 1, + [30584] = 3, + ACTIONS(2224), 1, + anon_sym_SQUOTE, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2734), 1, - anon_sym_GT, - STATE(821), 1, + STATE(801), 1, aux_sym_subroutine_repeat3, - [32808] = 3, - ACTIONS(2722), 1, - anon_sym_RBRACK, - ACTIONS(2736), 1, + [30594] = 3, + ACTIONS(2531), 1, aux_sym_callout_token3, - STATE(839), 1, + ACTIONS(2649), 1, + anon_sym_RBRACK, + STATE(691), 1, aux_sym_callout_repeat1, - [32818] = 3, - ACTIONS(2601), 1, + [30604] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2738), 1, + ACTIONS(2572), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32828] = 3, - ACTIONS(2611), 1, + [30614] = 3, + ACTIONS(2651), 1, + anon_sym_GT, + ACTIONS(2653), 1, + aux_sym_capture_group_conditional_name_token2, + STATE(755), 1, + aux_sym_capture_group_conditional_name_repeat1, + [30624] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2740), 1, + ACTIONS(2517), 1, anon_sym_SQUOTE, - STATE(719), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [32838] = 3, - ACTIONS(2601), 1, - aux_sym_subroutine_token3, - ACTIONS(2742), 1, + [30634] = 3, + ACTIONS(2633), 1, + aux_sym_capture_group_conditional_name_token2, + ACTIONS(2656), 1, anon_sym_GT, - STATE(821), 1, - aux_sym_subroutine_repeat3, - [32848] = 3, - ACTIONS(2744), 1, - aux_sym_capture_group_name_token1, - ACTIONS(2747), 1, - aux_sym_capture_group_name_token2, - STATE(787), 1, - aux_sym_capture_group_name_repeat1, - [32858] = 3, - ACTIONS(2615), 1, + STATE(755), 1, + aux_sym_capture_group_conditional_name_repeat1, + [30644] = 3, + ACTIONS(2658), 1, + aux_sym_callout_token3, + ACTIONS(2660), 1, anon_sym_RBRACK, - ACTIONS(2749), 1, + STATE(753), 1, + aux_sym_callout_repeat1, + [30654] = 3, + ACTIONS(2531), 1, aux_sym_callout_token3, - STATE(773), 1, + ACTIONS(2660), 1, + anon_sym_RBRACK, + STATE(691), 1, aux_sym_callout_repeat1, - [32868] = 3, - ACTIONS(2601), 1, + [30664] = 3, + ACTIONS(2662), 1, + aux_sym_callout_token3, + ACTIONS(2664), 1, + anon_sym_RBRACK, + STATE(759), 1, + aux_sym_callout_repeat1, + [30674] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2740), 1, - anon_sym_GT, - STATE(736), 1, + ACTIONS(2666), 1, + anon_sym_SQUOTE, + STATE(773), 1, aux_sym_subroutine_repeat3, - [32878] = 2, - ACTIONS(2248), 1, - aux_sym_subroutine_token1, - ACTIONS(2246), 2, - aux_sym_capture_group_name_token4, - aux_sym_subroutine_token4, - [32886] = 3, - ACTIONS(2751), 1, - aux_sym_capture_group_name_token3, - ACTIONS(2754), 1, - aux_sym_capture_group_name_token4, - STATE(791), 1, - aux_sym_capture_group_name_repeat2, - [32896] = 3, - ACTIONS(2304), 1, + [30684] = 3, + ACTIONS(2491), 1, + aux_sym_subroutine_token3, + ACTIONS(2499), 1, anon_sym_SQUOTE, - ACTIONS(2611), 1, + STATE(711), 1, + aux_sym_subroutine_repeat3, + [30694] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - STATE(744), 1, + ACTIONS(2643), 1, + anon_sym_GT, + STATE(754), 1, aux_sym_subroutine_repeat3, - [32906] = 3, - ACTIONS(2611), 1, + [30704] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2730), 1, - anon_sym_SQUOTE, - STATE(715), 1, + ACTIONS(2668), 1, + anon_sym_GT, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32916] = 3, - ACTIONS(2230), 1, - anon_sym_SQUOTE, - ACTIONS(2611), 1, + [30714] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - STATE(809), 1, + ACTIONS(2670), 1, + anon_sym_GT, + STATE(792), 1, aux_sym_subroutine_repeat3, - [32926] = 3, - ACTIONS(2756), 1, + [30724] = 3, + ACTIONS(2672), 1, anon_sym_RBRACE, - ACTIONS(2758), 1, + ACTIONS(2674), 1, aux_sym_character_property_name_token2, - STATE(797), 1, + STATE(766), 1, aux_sym_character_property_name_repeat2, - [32936] = 3, - ACTIONS(2601), 1, + [30734] = 3, + ACTIONS(2168), 1, + anon_sym_SQUOTE, + ACTIONS(2491), 1, + aux_sym_subroutine_token3, + STATE(782), 1, + aux_sym_subroutine_repeat3, + [30744] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2760), 1, + ACTIONS(2677), 1, anon_sym_GT, - STATE(812), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [32946] = 3, - ACTIONS(2762), 1, - anon_sym_RBRACE, - ACTIONS(2764), 1, - aux_sym_character_property_name_token2, - STATE(797), 1, - aux_sym_character_property_name_repeat2, - [32956] = 3, - ACTIONS(2611), 1, + [30754] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2760), 1, - anon_sym_SQUOTE, - STATE(815), 1, + ACTIONS(2679), 1, + anon_sym_GT, + STATE(785), 1, aux_sym_subroutine_repeat3, - [32966] = 3, - ACTIONS(2688), 1, + [30764] = 3, + ACTIONS(2501), 1, aux_sym_capture_group_name_token3, - ACTIONS(2767), 1, + ACTIONS(2681), 1, aux_sym_capture_group_name_token4, - STATE(791), 1, + STATE(704), 1, aux_sym_capture_group_name_repeat2, - [32976] = 3, - ACTIONS(2769), 1, - anon_sym_RBRACE, - ACTIONS(2771), 1, - aux_sym__callout_contents_token2, - STATE(713), 1, - aux_sym__callout_contents_repeat1, - [32986] = 3, - ACTIONS(2611), 1, + [30774] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2738), 1, + ACTIONS(2679), 1, anon_sym_SQUOTE, - STATE(715), 1, + STATE(788), 1, aux_sym_subroutine_repeat3, - [32996] = 3, - ACTIONS(2603), 1, - aux_sym_capture_group_name_token1, - ACTIONS(2773), 1, + [30784] = 2, + ACTIONS(2222), 1, + aux_sym_subroutine_token1, + ACTIONS(2220), 2, aux_sym_capture_group_name_token2, - STATE(820), 1, - aux_sym_capture_group_name_repeat1, - [33006] = 3, - ACTIONS(2613), 1, - aux_sym_callout_token3, - ACTIONS(2775), 1, - anon_sym_RBRACK, - STATE(838), 1, - aux_sym_callout_repeat1, - [33016] = 3, - ACTIONS(2314), 1, - aux_sym_capture_group_conditional_name_token2, - ACTIONS(2777), 1, + aux_sym_subroutine_token4, + [30792] = 3, + ACTIONS(2491), 1, + aux_sym_subroutine_token3, + ACTIONS(2668), 1, + anon_sym_SQUOTE, + STATE(711), 1, + aux_sym_subroutine_repeat3, + [30802] = 3, + ACTIONS(2491), 1, + aux_sym_subroutine_token3, + ACTIONS(2670), 1, + anon_sym_SQUOTE, + STATE(791), 1, + aux_sym_subroutine_repeat3, + [30812] = 3, + ACTIONS(2495), 1, + aux_sym_subroutine_token3, + ACTIONS(2683), 1, anon_sym_GT, - STATE(725), 1, - aux_sym_capture_group_conditional_name_repeat1, - [33026] = 3, - ACTIONS(2779), 1, + STATE(735), 1, + aux_sym_subroutine_repeat3, + [30822] = 3, + ACTIONS(2531), 1, aux_sym_callout_token3, - ACTIONS(2781), 1, + ACTIONS(2685), 1, anon_sym_RBRACK, - STATE(803), 1, + STATE(691), 1, aux_sym_callout_repeat1, - [33036] = 3, - ACTIONS(2613), 1, + [30832] = 3, + ACTIONS(2495), 1, + aux_sym_subroutine_token3, + ACTIONS(2666), 1, + anon_sym_GT, + STATE(764), 1, + aux_sym_subroutine_repeat3, + [30842] = 3, + ACTIONS(2687), 1, aux_sym_callout_token3, - ACTIONS(2781), 1, + ACTIONS(2689), 1, anon_sym_RBRACK, - STATE(838), 1, + STATE(776), 1, aux_sym_callout_repeat1, - [33046] = 3, - ACTIONS(2783), 1, + [30852] = 3, + ACTIONS(2531), 1, aux_sym_callout_token3, - ACTIONS(2785), 1, + ACTIONS(2689), 1, anon_sym_RBRACK, - STATE(806), 1, + STATE(691), 1, aux_sym_callout_repeat1, - [33056] = 3, - ACTIONS(2601), 1, + [30862] = 3, + ACTIONS(2156), 1, + anon_sym_SQUOTE, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2787), 1, + STATE(751), 1, + aux_sym_subroutine_repeat3, + [30872] = 3, + ACTIONS(2495), 1, + aux_sym_subroutine_token3, + ACTIONS(2691), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [33066] = 3, - ACTIONS(2611), 1, + [30882] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2787), 1, + ACTIONS(2691), 1, anon_sym_SQUOTE, - STATE(715), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [33076] = 3, - ACTIONS(2603), 1, - aux_sym_capture_group_name_token1, - ACTIONS(2789), 1, - aux_sym_capture_group_name_token2, - STATE(770), 1, - aux_sym_capture_group_name_repeat1, - [33086] = 3, - ACTIONS(2340), 1, + [30892] = 3, + ACTIONS(2693), 1, + aux_sym_callout_token3, + ACTIONS(2695), 1, + anon_sym_RBRACK, + STATE(779), 1, + aux_sym_callout_repeat1, + [30902] = 3, + ACTIONS(2158), 1, anon_sym_SQUOTE, - ACTIONS(2611), 1, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - STATE(825), 1, + STATE(798), 1, aux_sym_subroutine_repeat3, - [33096] = 3, - ACTIONS(2601), 1, + [30912] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2791), 1, + ACTIONS(2697), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [33106] = 3, - ACTIONS(2607), 1, + [30922] = 3, + ACTIONS(2491), 1, + aux_sym_subroutine_token3, + ACTIONS(2677), 1, anon_sym_SQUOTE, - ACTIONS(2611), 1, + STATE(711), 1, + aux_sym_subroutine_repeat3, + [30932] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - STATE(715), 1, + ACTIONS(2699), 1, + anon_sym_GT, + STATE(741), 1, aux_sym_subroutine_repeat3, - [33116] = 3, - ACTIONS(2601), 1, + [30942] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2793), 1, + ACTIONS(2697), 1, + anon_sym_SQUOTE, + STATE(711), 1, + aux_sym_subroutine_repeat3, + [30952] = 3, + ACTIONS(2495), 1, + aux_sym_subroutine_token3, + ACTIONS(2701), 1, anon_sym_GT, - STATE(826), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [33126] = 3, - ACTIONS(2611), 1, + [30962] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2791), 1, + ACTIONS(2699), 1, anon_sym_SQUOTE, - STATE(715), 1, + STATE(740), 1, aux_sym_subroutine_repeat3, - [33136] = 3, - ACTIONS(2688), 1, - aux_sym_capture_group_name_token3, - ACTIONS(2795), 1, - aux_sym_capture_group_name_token4, - STATE(759), 1, - aux_sym_capture_group_name_repeat2, - [33146] = 3, - ACTIONS(2611), 1, + [30972] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2793), 1, + ACTIONS(2703), 1, anon_sym_SQUOTE, - STATE(827), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [33156] = 3, - ACTIONS(2688), 1, - aux_sym_capture_group_name_token3, - ACTIONS(2797), 1, - aux_sym_capture_group_name_token4, - STATE(837), 1, - aux_sym_capture_group_name_repeat2, - [33166] = 3, - ACTIONS(2688), 1, + [30982] = 3, + ACTIONS(2495), 1, + aux_sym_subroutine_token3, + ACTIONS(2703), 1, + anon_sym_GT, + STATE(735), 1, + aux_sym_subroutine_repeat3, + [30992] = 3, + ACTIONS(2705), 1, aux_sym_capture_group_name_token3, - ACTIONS(2799), 1, + ACTIONS(2708), 1, aux_sym_capture_group_name_token4, - STATE(755), 1, + STATE(793), 1, aux_sym_capture_group_name_repeat2, - [33176] = 3, - ACTIONS(2603), 1, + [31002] = 3, + ACTIONS(2505), 1, aux_sym_capture_group_name_token1, - ACTIONS(2801), 1, + ACTIONS(2710), 1, aux_sym_capture_group_name_token2, - STATE(787), 1, + STATE(806), 1, aux_sym_capture_group_name_repeat1, - [33186] = 3, - ACTIONS(2632), 1, - anon_sym_GT, - ACTIONS(2803), 1, + [31012] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - STATE(821), 1, + ACTIONS(2712), 1, + anon_sym_GT, + STATE(735), 1, aux_sym_subroutine_repeat3, - [33196] = 3, - ACTIONS(2601), 1, + [31022] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2806), 1, + ACTIONS(2568), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [33206] = 3, - ACTIONS(2808), 1, - aux_sym_callout_token3, - ACTIONS(2810), 1, - anon_sym_RBRACK, - STATE(775), 1, - aux_sym_callout_repeat1, - [33216] = 3, - ACTIONS(2601), 1, + [31032] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2812), 1, + ACTIONS(2714), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [33226] = 3, - ACTIONS(2611), 1, + [31042] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2812), 1, + ACTIONS(2714), 1, anon_sym_SQUOTE, - STATE(715), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [33236] = 3, - ACTIONS(2601), 1, + [31052] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2814), 1, - anon_sym_GT, - STATE(821), 1, + ACTIONS(2716), 1, + anon_sym_SQUOTE, + STATE(711), 1, aux_sym_subroutine_repeat3, - [33246] = 3, - ACTIONS(2611), 1, + [31062] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2814), 1, - anon_sym_SQUOTE, - STATE(715), 1, + ACTIONS(2716), 1, + anon_sym_GT, + STATE(735), 1, aux_sym_subroutine_repeat3, - [33256] = 3, - ACTIONS(2603), 1, - aux_sym_capture_group_name_token1, - ACTIONS(2816), 1, - aux_sym_capture_group_name_token2, - STATE(787), 1, - aux_sym_capture_group_name_repeat1, - [33266] = 3, - ACTIONS(2611), 1, + [31072] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2818), 1, + ACTIONS(2718), 1, anon_sym_SQUOTE, - STATE(715), 1, + STATE(711), 1, aux_sym_subroutine_repeat3, - [33276] = 3, - ACTIONS(2601), 1, + [31082] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2820), 1, + ACTIONS(2718), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [33286] = 3, - ACTIONS(2601), 1, + [31092] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2818), 1, + ACTIONS(2720), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [33296] = 3, - ACTIONS(2611), 1, + [31102] = 3, + ACTIONS(2491), 1, aux_sym_subroutine_token3, - ACTIONS(2822), 1, + ACTIONS(2583), 1, anon_sym_SQUOTE, - STATE(715), 1, + STATE(786), 1, aux_sym_subroutine_repeat3, - [33306] = 3, - ACTIONS(2688), 1, - aux_sym_capture_group_name_token3, - ACTIONS(2824), 1, - aux_sym_capture_group_name_token4, - STATE(777), 1, - aux_sym_capture_group_name_repeat2, - [33316] = 3, - ACTIONS(2601), 1, + [31112] = 3, + ACTIONS(2495), 1, aux_sym_subroutine_token3, - ACTIONS(2822), 1, + ACTIONS(2722), 1, anon_sym_GT, - STATE(821), 1, + STATE(735), 1, aux_sym_subroutine_repeat3, - [33326] = 3, - ACTIONS(2603), 1, + [31122] = 3, + ACTIONS(2724), 1, aux_sym_capture_group_name_token1, - ACTIONS(2826), 1, + ACTIONS(2727), 1, aux_sym_capture_group_name_token2, - STATE(828), 1, + STATE(806), 1, aux_sym_capture_group_name_repeat1, - [33336] = 3, - ACTIONS(2601), 1, - aux_sym_subroutine_token3, - ACTIONS(2828), 1, - anon_sym_GT, - STATE(821), 1, - aux_sym_subroutine_repeat3, - [33346] = 3, - ACTIONS(2688), 1, - aux_sym_capture_group_name_token3, - ACTIONS(2830), 1, - aux_sym_capture_group_name_token4, - STATE(791), 1, - aux_sym_capture_group_name_repeat2, - [33356] = 3, - ACTIONS(2832), 1, - aux_sym_callout_token3, - ACTIONS(2835), 1, - anon_sym_RBRACK, - STATE(838), 1, - aux_sym_callout_repeat1, - [33366] = 3, - ACTIONS(2613), 1, - aux_sym_callout_token3, - ACTIONS(2837), 1, - anon_sym_RBRACK, - STATE(838), 1, - aux_sym_callout_repeat1, - [33376] = 2, - ACTIONS(2839), 1, - aux_sym_modify_token1, - ACTIONS(2841), 1, - aux_sym_modify_extended_1_token1, - [33383] = 1, - ACTIONS(2843), 2, + [31132] = 3, + ACTIONS(2505), 1, aux_sym_capture_group_name_token1, + ACTIONS(2729), 1, aux_sym_capture_group_name_token2, - [33388] = 2, - ACTIONS(2845), 1, + STATE(794), 1, + aux_sym_capture_group_name_repeat1, + [31142] = 2, + ACTIONS(2731), 1, anon_sym_RPAREN, - ACTIONS(2847), 1, + ACTIONS(2733), 1, + anon_sym_COLON, + [31149] = 2, + ACTIONS(2735), 1, + anon_sym_RPAREN, + ACTIONS(2737), 1, anon_sym_COLON, - [33395] = 2, - ACTIONS(2172), 1, + [31156] = 1, + ACTIONS(2739), 2, + anon_sym_GT, + aux_sym_subroutine_token3, + [31161] = 2, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - STATE(620), 1, + STATE(566), 1, aux_sym_subroutine_repeat2, - [33402] = 2, - ACTIONS(2172), 1, + [31168] = 2, + ACTIONS(2198), 1, + anon_sym_SQUOTE, + ACTIONS(2741), 1, + aux_sym_capture_group_conditional_name_token5, + [31175] = 2, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - STATE(629), 1, + STATE(602), 1, aux_sym_subroutine_repeat2, - [33409] = 2, - ACTIONS(2849), 1, + [31182] = 2, + ACTIONS(2743), 1, anon_sym_RPAREN, - ACTIONS(2851), 1, + ACTIONS(2745), 1, anon_sym_COLON, - [33416] = 2, - ACTIONS(2845), 1, + [31189] = 2, + ACTIONS(2735), 1, anon_sym_RPAREN, - ACTIONS(2853), 1, + ACTIONS(2747), 1, anon_sym_COLON, - [33423] = 2, - ACTIONS(2855), 1, - anon_sym_SQUOTE, - ACTIONS(2857), 1, - aux_sym_subroutine_token3, - [33430] = 2, - ACTIONS(2312), 1, - anon_sym_SQUOTE, - ACTIONS(2859), 1, - aux_sym_capture_group_conditional_name_token5, - [33437] = 2, - ACTIONS(2314), 1, + [31196] = 2, + ACTIONS(2060), 1, + aux_sym_subroutine_token2, + STATE(568), 1, + aux_sym_subroutine_repeat2, + [31203] = 2, + ACTIONS(2060), 1, + aux_sym_subroutine_token2, + STATE(592), 1, + aux_sym_subroutine_repeat2, + [31210] = 2, + ACTIONS(2060), 1, + aux_sym_subroutine_token2, + STATE(590), 1, + aux_sym_subroutine_repeat2, + [31217] = 2, + ACTIONS(2749), 1, aux_sym_capture_group_conditional_name_token2, - STATE(724), 1, + STATE(757), 1, aux_sym_capture_group_conditional_name_repeat1, - [33444] = 2, - ACTIONS(2861), 1, - aux_sym_modify_token1, - ACTIONS(2863), 1, - aux_sym_modify_extended_1_token1, - [33451] = 2, - ACTIONS(2845), 1, + [31224] = 2, + ACTIONS(2739), 1, + anon_sym_SQUOTE, + ACTIONS(2751), 1, + aux_sym_subroutine_token3, + [31231] = 2, + ACTIONS(2753), 1, anon_sym_RPAREN, - ACTIONS(2865), 1, + ACTIONS(2755), 1, anon_sym_COLON, - [33458] = 2, - ACTIONS(2867), 1, - aux_sym_modify_token1, - ACTIONS(2869), 1, - aux_sym_modify_extended_1_token1, - [33465] = 2, - ACTIONS(2172), 1, - aux_sym_subroutine_token2, - STATE(614), 1, - aux_sym_subroutine_repeat2, - [33472] = 1, - ACTIONS(2855), 2, - anon_sym_GT, - aux_sym_subroutine_token3, - [33477] = 2, - ACTIONS(2172), 1, + [31238] = 2, + ACTIONS(2735), 1, + anon_sym_RPAREN, + ACTIONS(2757), 1, + anon_sym_COLON, + [31245] = 2, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - STATE(619), 1, + STATE(583), 1, aux_sym_subroutine_repeat2, - [33484] = 2, - ACTIONS(2871), 1, + [31252] = 2, + ACTIONS(2735), 1, anon_sym_RPAREN, - ACTIONS(2873), 1, + ACTIONS(2759), 1, anon_sym_COLON, - [33491] = 2, - ACTIONS(2875), 1, - aux_sym_modify_token1, - ACTIONS(2877), 1, - aux_sym_modify_extended_1_token1, - [33498] = 2, - ACTIONS(2879), 1, + [31259] = 1, + ACTIONS(2761), 2, + aux_sym_capture_group_name_token1, + aux_sym_capture_group_name_token2, + [31264] = 2, + ACTIONS(2763), 1, anon_sym_RPAREN, - ACTIONS(2881), 1, + ACTIONS(2765), 1, anon_sym_COLON, - [33505] = 2, - ACTIONS(2172), 1, + [31271] = 2, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - STATE(623), 1, + STATE(580), 1, aux_sym_subroutine_repeat2, - [33512] = 1, - ACTIONS(2883), 2, + [31278] = 1, + ACTIONS(2767), 2, aux_sym_capture_group_name_token3, aux_sym_capture_group_name_token4, - [33517] = 1, - ACTIONS(2885), 2, + [31283] = 2, + ACTIONS(2769), 1, + anon_sym_RPAREN, + ACTIONS(2771), 1, + anon_sym_COLON, + [31290] = 1, + ACTIONS(2773), 2, aux_sym_capture_group_conditional_name_token3, aux_sym_capture_group_conditional_name_token4, - [33522] = 2, - ACTIONS(2887), 1, - anon_sym_RPAREN, - ACTIONS(2889), 1, - aux_sym_capture_group_conditional_name_token5, - [33529] = 2, - ACTIONS(2891), 1, + [31295] = 2, + ACTIONS(2775), 1, + aux_sym_modify_token1, + ACTIONS(2777), 1, + aux_sym_modify_extended_1_token1, + [31302] = 2, + ACTIONS(2735), 1, anon_sym_RPAREN, - ACTIONS(2893), 1, + ACTIONS(2779), 1, anon_sym_COLON, - [33536] = 2, - ACTIONS(2845), 1, + [31309] = 2, + ACTIONS(2781), 1, anon_sym_RPAREN, - ACTIONS(2895), 1, - anon_sym_COLON, - [33543] = 2, - ACTIONS(2172), 1, - aux_sym_subroutine_token2, - STATE(635), 1, - aux_sym_subroutine_repeat2, - [33550] = 1, - ACTIONS(2897), 2, - anon_sym_GT, - aux_sym_capture_group_conditional_name_token2, - [33555] = 2, - ACTIONS(2172), 1, - aux_sym_subroutine_token2, - STATE(632), 1, - aux_sym_subroutine_repeat2, - [33562] = 2, - ACTIONS(2172), 1, + ACTIONS(2783), 1, + aux_sym_capture_group_conditional_name_token5, + [31316] = 2, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - STATE(627), 1, + STATE(572), 1, aux_sym_subroutine_repeat2, - [33569] = 2, - ACTIONS(2899), 1, - anon_sym_RPAREN, - ACTIONS(2901), 1, - anon_sym_COLON, - [33576] = 2, - ACTIONS(2845), 1, - anon_sym_RPAREN, - ACTIONS(2903), 1, - anon_sym_COLON, - [33583] = 2, - ACTIONS(2172), 1, + [31323] = 2, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - STATE(613), 1, + STATE(570), 1, aux_sym_subroutine_repeat2, - [33590] = 2, - ACTIONS(2172), 1, + [31330] = 2, + ACTIONS(2785), 1, + aux_sym_modify_token1, + ACTIONS(2787), 1, + aux_sym_modify_extended_1_token1, + [31337] = 2, + ACTIONS(2060), 1, aux_sym_subroutine_token2, - STATE(610), 1, + STATE(589), 1, aux_sym_subroutine_repeat2, - [33597] = 2, - ACTIONS(2905), 1, + [31344] = 2, + ACTIONS(2789), 1, aux_sym_modify_token1, - ACTIONS(2907), 1, + ACTIONS(2791), 1, aux_sym_modify_extended_1_token1, - [33604] = 1, - ACTIONS(2909), 1, - anon_sym_SQUOTE, - [33608] = 1, - ACTIONS(2740), 1, - anon_sym_GT, - [33612] = 1, - ACTIONS(2740), 1, - anon_sym_SQUOTE, - [33616] = 1, - ACTIONS(2911), 1, - aux_sym_unicode_token2, - [33620] = 1, - ACTIONS(2224), 1, + [31351] = 2, + ACTIONS(2793), 1, + aux_sym_modify_token1, + ACTIONS(2795), 1, + aux_sym_modify_extended_1_token1, + [31358] = 2, + ACTIONS(2797), 1, + aux_sym_modify_token1, + ACTIONS(2799), 1, + aux_sym_modify_extended_1_token1, + [31365] = 1, + ACTIONS(2136), 1, anon_sym_RPAREN, - [33624] = 1, - ACTIONS(2913), 1, + [31369] = 1, + ACTIONS(2801), 1, + anon_sym_RBRACE, + [31373] = 1, + ACTIONS(2803), 1, anon_sym_GT, - [33628] = 1, - ACTIONS(2915), 1, - anon_sym_RPAREN, - [33632] = 1, - ACTIONS(2913), 1, - anon_sym_SQUOTE, - [33636] = 1, - ACTIONS(2623), 1, + [31377] = 1, + ACTIONS(2805), 1, anon_sym_GT, - [33640] = 1, - ACTIONS(2623), 1, + [31381] = 1, + ACTIONS(2803), 1, anon_sym_SQUOTE, - [33644] = 1, - ACTIONS(2917), 1, - anon_sym_RBRACE, - [33648] = 1, - ACTIONS(2919), 1, - anon_sym_RPAREN, - [33652] = 1, - ACTIONS(2921), 1, - anon_sym_RPAREN, - [33656] = 1, - ACTIONS(2923), 1, - aux_sym_unicode_token2, - [33660] = 1, - ACTIONS(2366), 1, - anon_sym_RPAREN, - [33664] = 1, - ACTIONS(2374), 1, - anon_sym_RPAREN, - [33668] = 1, - ACTIONS(2925), 1, - anon_sym_RPAREN, - [33672] = 1, - ACTIONS(2927), 1, - aux_sym_callout_token2, - [33676] = 1, - ACTIONS(2929), 1, - anon_sym_RBRACE, - [33680] = 1, - ACTIONS(2931), 1, - aux_sym_unicode_token2, - [33684] = 1, - ACTIONS(2933), 1, - aux_sym_callout_token1, - [33688] = 1, - ACTIONS(2935), 1, + [31385] = 1, + ACTIONS(2618), 1, + anon_sym_GT, + [31389] = 1, + ACTIONS(2618), 1, + anon_sym_SQUOTE, + [31393] = 1, + ACTIONS(2641), 1, + anon_sym_GT, + [31397] = 1, + ACTIONS(2805), 1, + anon_sym_SQUOTE, + [31401] = 1, + ACTIONS(2807), 1, + anon_sym_GT, + [31405] = 1, + ACTIONS(2809), 1, aux_sym_unicode_token2, - [33692] = 1, - ACTIONS(2937), 1, + [31409] = 1, + ACTIONS(2807), 1, anon_sym_SQUOTE, - [33696] = 1, - ACTIONS(2937), 1, + [31413] = 1, + ACTIONS(2643), 1, anon_sym_GT, - [33700] = 1, - ACTIONS(2939), 1, - anon_sym_RBRACE, - [33704] = 1, - ACTIONS(2941), 1, + [31417] = 1, + ACTIONS(2643), 1, + anon_sym_SQUOTE, + [31421] = 1, + ACTIONS(2811), 1, + anon_sym_RPAREN, + [31425] = 1, + ACTIONS(2813), 1, aux_sym_unicode_token2, - [33708] = 1, - ACTIONS(2316), 1, + [31429] = 1, + ACTIONS(2398), 1, anon_sym_RPAREN, - [33712] = 1, - ACTIONS(2943), 1, - ts_builtin_sym_end, - [33716] = 1, - ACTIONS(2945), 1, + [31433] = 1, + ACTIONS(2144), 1, anon_sym_RPAREN, - [33720] = 1, - ACTIONS(2947), 1, - anon_sym_GT, - [33724] = 1, - ACTIONS(2947), 1, + [31437] = 1, + ACTIONS(2376), 1, + anon_sym_RPAREN, + [31441] = 1, + ACTIONS(2815), 1, anon_sym_SQUOTE, - [33728] = 1, - ACTIONS(1370), 1, + [31445] = 1, + ACTIONS(2369), 1, anon_sym_RPAREN, - [33732] = 1, - ACTIONS(2427), 1, + [31449] = 1, + ACTIONS(2817), 1, + anon_sym_RBRACE, + [31453] = 1, + ACTIONS(2819), 1, anon_sym_RPAREN, - [33736] = 1, - ACTIONS(2949), 1, + [31457] = 1, + ACTIONS(2821), 1, + anon_sym_GT, + [31461] = 1, + ACTIONS(2823), 1, anon_sym_RBRACE, - [33740] = 1, - ACTIONS(2431), 1, + [31465] = 1, + ACTIONS(2825), 1, + aux_sym_unicode_token2, + [31469] = 1, + ACTIONS(2827), 1, + aux_sym_callout_token1, + [31473] = 1, + ACTIONS(531), 1, anon_sym_RPAREN, - [33744] = 1, - ACTIONS(2951), 1, + [31477] = 1, + ACTIONS(2829), 1, aux_sym_unicode_token2, - [33748] = 1, - ACTIONS(2953), 1, + [31481] = 1, + ACTIONS(2831), 1, anon_sym_RPAREN, - [33752] = 1, - ACTIONS(2421), 1, + [31485] = 1, + ACTIONS(2833), 1, + anon_sym_GT, + [31489] = 1, + ACTIONS(2835), 1, anon_sym_RPAREN, - [33756] = 1, - ACTIONS(2955), 1, + [31493] = 1, + ACTIONS(2394), 1, anon_sym_RPAREN, - [33760] = 1, - ACTIONS(2957), 1, - aux_sym_callout_token1, - [33764] = 1, - ACTIONS(2959), 1, + [31497] = 1, + ACTIONS(2837), 1, + aux_sym_unicode_token2, + [31501] = 1, + ACTIONS(2839), 1, anon_sym_GT, - [33768] = 1, - ACTIONS(2959), 1, + [31505] = 1, + ACTIONS(2839), 1, anon_sym_SQUOTE, - [33772] = 1, - ACTIONS(2793), 1, + [31509] = 1, + ACTIONS(2841), 1, + anon_sym_RBRACE, + [31513] = 1, + ACTIONS(2821), 1, anon_sym_SQUOTE, - [33776] = 1, - ACTIONS(2961), 1, - aux_sym_unicode_token2, - [33780] = 1, - ACTIONS(2963), 1, - anon_sym_GT, - [33784] = 1, - ACTIONS(2963), 1, + [31517] = 1, + ACTIONS(2833), 1, anon_sym_SQUOTE, - [33788] = 1, - ACTIONS(692), 1, + [31521] = 1, + ACTIONS(2843), 1, anon_sym_RPAREN, - [33792] = 1, - ACTIONS(2793), 1, + [31525] = 1, + ACTIONS(2845), 1, anon_sym_GT, - [33796] = 1, - ACTIONS(2965), 1, + [31529] = 1, + ACTIONS(2847), 1, + anon_sym_RPAREN, + [31533] = 1, + ACTIONS(2849), 1, + anon_sym_GT, + [31537] = 1, + ACTIONS(2849), 1, anon_sym_SQUOTE, - [33800] = 1, - ACTIONS(2967), 1, + [31541] = 1, + ACTIONS(2699), 1, + anon_sym_SQUOTE, + [31545] = 1, + ACTIONS(2851), 1, + aux_sym_unicode_token2, + [31549] = 1, + ACTIONS(2853), 1, anon_sym_GT, - [33804] = 1, - ACTIONS(2967), 1, + [31553] = 1, + ACTIONS(2853), 1, anon_sym_SQUOTE, - [33808] = 1, - ACTIONS(2969), 1, + [31557] = 1, + ACTIONS(2699), 1, anon_sym_GT, - [33812] = 1, - ACTIONS(2965), 1, + [31561] = 1, + ACTIONS(2855), 1, anon_sym_GT, - [33816] = 1, - ACTIONS(2969), 1, + [31565] = 1, + ACTIONS(2855), 1, anon_sym_SQUOTE, - [33820] = 1, - ACTIONS(2971), 1, + [31569] = 1, + ACTIONS(2857), 1, + anon_sym_SQUOTE, + [31573] = 1, + ACTIONS(2857), 1, + anon_sym_GT, + [31577] = 1, + ACTIONS(2666), 1, + anon_sym_GT, + [31581] = 1, + ACTIONS(2859), 1, aux_sym_callout_token1, - [33824] = 1, - ACTIONS(2234), 1, - anon_sym_RPAREN, - [33828] = 1, - ACTIONS(2274), 1, - anon_sym_RPAREN, - [33832] = 1, - ACTIONS(2370), 1, + [31585] = 1, + ACTIONS(2583), 1, + anon_sym_SQUOTE, + [31589] = 1, + ACTIONS(2162), 1, anon_sym_RPAREN, - [33836] = 1, - ACTIONS(2760), 1, + [31593] = 1, + ACTIONS(2861), 1, + aux_sym_unicode_token2, + [31597] = 1, + ACTIONS(2670), 1, anon_sym_SQUOTE, - [33840] = 1, - ACTIONS(2760), 1, - anon_sym_GT, - [33844] = 1, - ACTIONS(2973), 1, + [31601] = 1, + ACTIONS(2863), 1, + aux_sym_unicode_token2, + [31605] = 1, + ACTIONS(2865), 1, + ts_builtin_sym_end, + [31609] = 1, + ACTIONS(2845), 1, anon_sym_SQUOTE, - [33848] = 1, - ACTIONS(2973), 1, + [31613] = 1, + ACTIONS(2867), 1, anon_sym_GT, - [33852] = 1, - ACTIONS(2975), 1, + [31617] = 1, + ACTIONS(2867), 1, + anon_sym_SQUOTE, + [31621] = 1, + ACTIONS(2869), 1, anon_sym_RBRACE, - [33856] = 1, - ACTIONS(2977), 1, + [31625] = 1, + ACTIONS(2679), 1, + anon_sym_SQUOTE, + [31629] = 1, + ACTIONS(2679), 1, anon_sym_GT, - [33860] = 1, - ACTIONS(2977), 1, + [31633] = 1, + ACTIONS(2871), 1, anon_sym_SQUOTE, - [33864] = 1, - ACTIONS(1469), 1, - anon_sym_RPAREN, - [33868] = 1, - ACTIONS(2777), 1, + [31637] = 1, + ACTIONS(2670), 1, + anon_sym_GT, + [31641] = 1, + ACTIONS(2666), 1, + anon_sym_SQUOTE, + [31645] = 1, + ACTIONS(2873), 1, + anon_sym_GT, + [31649] = 1, + ACTIONS(2873), 1, anon_sym_SQUOTE, - [33872] = 1, - ACTIONS(2979), 1, + [31653] = 1, + ACTIONS(2871), 1, + anon_sym_GT, + [31657] = 1, + ACTIONS(2875), 1, + aux_sym_unicode_token2, + [31661] = 1, + ACTIONS(2877), 1, anon_sym_RBRACE, - [33876] = 1, - ACTIONS(2346), 1, + [31665] = 1, + ACTIONS(2815), 1, + anon_sym_GT, + [31669] = 1, + ACTIONS(2170), 1, + anon_sym_RPAREN, + [31673] = 1, + ACTIONS(2879), 1, anon_sym_RPAREN, - [33880] = 1, - ACTIONS(2981), 1, + [31677] = 1, + ACTIONS(2881), 1, + aux_sym_callout_token1, + [31681] = 1, + ACTIONS(2883), 1, anon_sym_RPAREN, - [33884] = 1, - ACTIONS(2294), 1, + [31685] = 1, + ACTIONS(2885), 1, + aux_sym_callout_token2, + [31689] = 1, + ACTIONS(2887), 1, + anon_sym_SQUOTE, + [31693] = 1, + ACTIONS(2889), 1, + aux_sym_unicode_token2, + [31697] = 1, + ACTIONS(2426), 1, anon_sym_RPAREN, - [33888] = 1, - ACTIONS(2983), 1, + [31701] = 1, + ACTIONS(2430), 1, anon_sym_RPAREN, - [33892] = 1, - ACTIONS(2491), 1, + [31705] = 1, + ACTIONS(2641), 1, + anon_sym_SQUOTE, + [31709] = 1, + ACTIONS(2891), 1, + anon_sym_RBRACE, + [31713] = 1, + ACTIONS(2208), 1, + anon_sym_RPAREN, + [31717] = 1, + ACTIONS(2893), 1, anon_sym_RPAREN, - [33896] = 1, - ACTIONS(2985), 1, + [31721] = 1, + ACTIONS(2887), 1, anon_sym_GT, - [33900] = 1, - ACTIONS(2985), 1, - anon_sym_SQUOTE, - [33904] = 1, - ACTIONS(2499), 1, + [31725] = 1, + ACTIONS(2895), 1, + aux_sym_unicode_token2, + [31729] = 1, + ACTIONS(2897), 1, + anon_sym_RPAREN, + [31733] = 1, + ACTIONS(2899), 1, anon_sym_RPAREN, - [33908] = 1, - ACTIONS(2987), 1, + [31737] = 1, + ACTIONS(2901), 1, aux_sym_unicode_token2, - [33912] = 1, - ACTIONS(2989), 1, - anon_sym_GT, - [33916] = 1, - ACTIONS(2639), 1, + [31741] = 1, + ACTIONS(2903), 1, anon_sym_GT, - [33920] = 1, - ACTIONS(571), 1, - anon_sym_RPAREN, - [33924] = 1, - ACTIONS(2989), 1, - anon_sym_SQUOTE, - [33928] = 1, - ACTIONS(2991), 1, + [31745] = 1, + ACTIONS(2905), 1, aux_sym_callout_token1, - [33932] = 1, - ACTIONS(2993), 1, - anon_sym_RPAREN, - [33936] = 1, - ACTIONS(2995), 1, - aux_sym_capture_group_conditional_name_token1, - [33940] = 1, - ACTIONS(1332), 1, - anon_sym_RPAREN, - [33944] = 1, - ACTIONS(2997), 1, - anon_sym_SQUOTE, - [33948] = 1, - ACTIONS(2684), 1, + [31749] = 1, + ACTIONS(2606), 1, anon_sym_SQUOTE, - [33952] = 1, - ACTIONS(2684), 1, + [31753] = 1, + ACTIONS(2606), 1, anon_sym_GT, - [33956] = 1, - ACTIONS(2999), 1, + [31757] = 1, + ACTIONS(2907), 1, + aux_sym_callout_token1, + [31761] = 1, + ACTIONS(2909), 1, anon_sym_SQUOTE, - [33960] = 1, - ACTIONS(3001), 1, - anon_sym_RBRACE, - [33964] = 1, - ACTIONS(2999), 1, - anon_sym_GT, - [33968] = 1, - ACTIONS(3003), 1, - anon_sym_RBRACE, - [33972] = 1, + [31765] = 1, ACTIONS(2909), 1, anon_sym_GT, - [33976] = 1, - ACTIONS(2260), 1, + [31769] = 1, + ACTIONS(2903), 1, + anon_sym_SQUOTE, + [31773] = 1, + ACTIONS(2236), 1, anon_sym_RPAREN, - [33980] = 1, - ACTIONS(3005), 1, - anon_sym_RBRACE, - [33984] = 1, - ACTIONS(2668), 1, + [31777] = 1, + ACTIONS(2202), 1, + anon_sym_RPAREN, + [31781] = 1, + ACTIONS(2631), 1, anon_sym_SQUOTE, - [33988] = 1, - ACTIONS(3007), 1, - aux_sym_unicode_token2, - [33992] = 1, - ACTIONS(2218), 1, + [31785] = 1, + ACTIONS(2188), 1, + anon_sym_RPAREN, + [31789] = 1, + ACTIONS(2911), 1, anon_sym_RBRACE, - [33996] = 1, - ACTIONS(3009), 1, + [31793] = 1, + ACTIONS(2913), 1, + aux_sym_capture_group_conditional_name_token1, + [31797] = 1, + ACTIONS(2915), 1, anon_sym_RBRACE, - [34000] = 1, - ACTIONS(2662), 1, - anon_sym_SQUOTE, - [34004] = 1, - ACTIONS(2662), 1, - anon_sym_GT, - [34008] = 1, - ACTIONS(3011), 1, - aux_sym_callout_token1, - [34012] = 1, - ACTIONS(3013), 1, - anon_sym_SQUOTE, - [34016] = 1, - ACTIONS(2997), 1, - anon_sym_GT, - [34020] = 1, - ACTIONS(3013), 1, - anon_sym_GT, - [34024] = 1, - ACTIONS(3015), 1, + [31801] = 1, + ACTIONS(2917), 1, + aux_sym_callout_token2, + [31805] = 1, + ACTIONS(2592), 1, anon_sym_RBRACE, - [34028] = 1, - ACTIONS(3017), 1, - anon_sym_GT, - [34032] = 1, - ACTIONS(3019), 1, - aux_sym_unicode_token2, - [34036] = 1, - ACTIONS(2637), 1, - anon_sym_SQUOTE, - [34040] = 1, - ACTIONS(3021), 1, + [31809] = 1, + ACTIONS(2919), 1, anon_sym_RBRACE, - [34044] = 1, - ACTIONS(3017), 1, - anon_sym_SQUOTE, - [34048] = 1, - ACTIONS(2240), 1, + [31813] = 1, + ACTIONS(1197), 1, anon_sym_RPAREN, - [34052] = 1, - ACTIONS(2637), 1, + [31817] = 1, + ACTIONS(2921), 1, + aux_sym_unicode_token2, + [31821] = 1, + ACTIONS(2583), 1, anon_sym_GT, - [34056] = 1, - ACTIONS(2625), 1, + [31825] = 1, + ACTIONS(2489), 1, + anon_sym_SQUOTE, + [31829] = 1, + ACTIONS(2489), 1, anon_sym_GT, - [34060] = 1, - ACTIONS(2625), 1, + [31833] = 1, + ACTIONS(2923), 1, anon_sym_SQUOTE, - [34064] = 1, - ACTIONS(3023), 1, - aux_sym_unicode_token2, - [34068] = 1, - ACTIONS(3025), 1, + [31837] = 1, + ACTIONS(2925), 1, aux_sym_unicode_token2, - [34072] = 1, - ACTIONS(3027), 1, - anon_sym_RPAREN, - [34076] = 1, - ACTIONS(2544), 1, + [31841] = 1, + ACTIONS(2923), 1, + anon_sym_GT, + [31845] = 1, + ACTIONS(2927), 1, + anon_sym_RBRACE, + [31849] = 1, + ACTIONS(2929), 1, anon_sym_RPAREN, - [34080] = 1, - ACTIONS(3029), 1, - anon_sym_SQUOTE, - [34084] = 1, - ACTIONS(2522), 1, + [31853] = 1, + ACTIONS(2467), 1, anon_sym_RPAREN, - [34088] = 1, - ACTIONS(3031), 1, + [31857] = 1, + ACTIONS(2931), 1, + anon_sym_RBRACE, + [31861] = 1, + ACTIONS(2933), 1, aux_sym_unicode_token2, - [34092] = 1, - ACTIONS(2286), 1, + [31865] = 1, + ACTIONS(2230), 1, anon_sym_RPAREN, - [34096] = 1, - ACTIONS(3033), 1, + [31869] = 1, + ACTIONS(2476), 1, anon_sym_RPAREN, - [34100] = 1, - ACTIONS(3035), 1, - anon_sym_GT, - [34104] = 1, - ACTIONS(3037), 1, - anon_sym_GT, - [34108] = 1, - ACTIONS(3037), 1, - anon_sym_SQUOTE, - [34112] = 1, - ACTIONS(3039), 1, - aux_sym_unicode_token2, - [34116] = 1, - ACTIONS(3035), 1, - anon_sym_SQUOTE, - [34120] = 1, - ACTIONS(3041), 1, + [31873] = 1, + ACTIONS(2935), 1, + aux_sym_callout_token2, + [31877] = 1, + ACTIONS(2214), 1, + anon_sym_RBRACE, + [31881] = 1, + ACTIONS(2937), 1, anon_sym_RPAREN, - [34124] = 1, - ACTIONS(3043), 1, + [31885] = 1, + ACTIONS(2939), 1, aux_sym_callout_token2, - [34128] = 1, - ACTIONS(2668), 1, + [31889] = 1, + ACTIONS(2941), 1, + anon_sym_RBRACE, + [31893] = 1, + ACTIONS(2130), 1, + anon_sym_RPAREN, + [31897] = 1, + ACTIONS(2943), 1, anon_sym_GT, - [34132] = 1, - ACTIONS(3045), 1, - aux_sym_unicode_token2, - [34136] = 1, - ACTIONS(3047), 1, - aux_sym_callout_token2, - [34140] = 1, - ACTIONS(2330), 1, + [31901] = 1, + ACTIONS(2945), 1, anon_sym_RPAREN, - [34144] = 1, - ACTIONS(3049), 1, + [31905] = 1, + ACTIONS(2457), 1, anon_sym_RPAREN, - [34148] = 1, - ACTIONS(3051), 1, - aux_sym_callout_token2, - [34152] = 1, - ACTIONS(2769), 1, - anon_sym_RBRACE, - [34156] = 1, - ACTIONS(3053), 1, - anon_sym_RBRACE, - [34160] = 1, - ACTIONS(3055), 1, + [31909] = 1, + ACTIONS(2947), 1, aux_sym_unicode_token2, - [34164] = 1, - ACTIONS(3057), 1, + [31913] = 1, + ACTIONS(2949), 1, aux_sym_callout_token2, - [34168] = 1, - ACTIONS(3059), 1, + [31917] = 1, + ACTIONS(2951), 1, aux_sym_callout_token2, - [34172] = 1, - ACTIONS(3029), 1, - anon_sym_GT, - [34176] = 1, - ACTIONS(3061), 1, + [31921] = 1, + ACTIONS(2482), 1, + anon_sym_RPAREN, + [31925] = 1, + ACTIONS(2953), 1, aux_sym_unicode_token2, - [34180] = 1, - ACTIONS(3063), 1, + [31929] = 1, + ACTIONS(2955), 1, aux_sym_callout_token2, - [34184] = 1, - ACTIONS(3065), 1, + [31933] = 1, + ACTIONS(2957), 1, aux_sym_callout_token2, - [34188] = 1, - ACTIONS(2639), 1, + [31937] = 1, + ACTIONS(2943), 1, anon_sym_SQUOTE, - [34192] = 1, - ACTIONS(3067), 1, + [31941] = 1, + ACTIONS(2959), 1, aux_sym_unicode_token2, - [34196] = 1, - ACTIONS(3069), 1, + [31945] = 1, + ACTIONS(2961), 1, aux_sym_callout_token2, - [34200] = 1, - ACTIONS(3071), 1, + [31949] = 1, + ACTIONS(2963), 1, aux_sym_callout_token2, - [34204] = 1, - ACTIONS(3073), 1, + [31953] = 1, + ACTIONS(2965), 1, aux_sym_unicode_token2, - [34208] = 1, - ACTIONS(3075), 1, + [31957] = 1, + ACTIONS(2967), 1, aux_sym_unicode_token2, - [34212] = 1, - ACTIONS(3077), 1, + [31961] = 1, + ACTIONS(2969), 1, aux_sym_unicode_token2, - [34216] = 1, - ACTIONS(3079), 1, + [31965] = 1, + ACTIONS(2971), 1, aux_sym_unicode_token2, - [34220] = 1, - ACTIONS(3081), 1, + [31969] = 1, + ACTIONS(2973), 1, aux_sym_unicode_token2, - [34224] = 1, - ACTIONS(3083), 1, + [31973] = 1, + ACTIONS(2975), 1, aux_sym_unicode_token2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(98)] = 0, - [SMALL_STATE(99)] = 139, - [SMALL_STATE(100)] = 278, - [SMALL_STATE(101)] = 417, - [SMALL_STATE(102)] = 542, - [SMALL_STATE(103)] = 667, - [SMALL_STATE(104)] = 792, - [SMALL_STATE(105)] = 917, - [SMALL_STATE(106)] = 1042, - [SMALL_STATE(107)] = 1167, - [SMALL_STATE(108)] = 1292, - [SMALL_STATE(109)] = 1417, - [SMALL_STATE(110)] = 1542, - [SMALL_STATE(111)] = 1667, - [SMALL_STATE(112)] = 1792, - [SMALL_STATE(113)] = 1917, - [SMALL_STATE(114)] = 2042, - [SMALL_STATE(115)] = 2167, - [SMALL_STATE(116)] = 2292, - [SMALL_STATE(117)] = 2417, - [SMALL_STATE(118)] = 2542, - [SMALL_STATE(119)] = 2667, - [SMALL_STATE(120)] = 2792, - [SMALL_STATE(121)] = 2917, - [SMALL_STATE(122)] = 3042, - [SMALL_STATE(123)] = 3167, - [SMALL_STATE(124)] = 3292, - [SMALL_STATE(125)] = 3417, - [SMALL_STATE(126)] = 3542, - [SMALL_STATE(127)] = 3667, - [SMALL_STATE(128)] = 3792, - [SMALL_STATE(129)] = 3917, - [SMALL_STATE(130)] = 4042, - [SMALL_STATE(131)] = 4167, - [SMALL_STATE(132)] = 4292, - [SMALL_STATE(133)] = 4417, - [SMALL_STATE(134)] = 4542, - [SMALL_STATE(135)] = 4667, - [SMALL_STATE(136)] = 4792, - [SMALL_STATE(137)] = 4917, - [SMALL_STATE(138)] = 5042, - [SMALL_STATE(139)] = 5167, - [SMALL_STATE(140)] = 5292, - [SMALL_STATE(141)] = 5417, - [SMALL_STATE(142)] = 5542, - [SMALL_STATE(143)] = 5667, - [SMALL_STATE(144)] = 5792, - [SMALL_STATE(145)] = 5917, - [SMALL_STATE(146)] = 6042, - [SMALL_STATE(147)] = 6167, - [SMALL_STATE(148)] = 6292, - [SMALL_STATE(149)] = 6417, - [SMALL_STATE(150)] = 6542, - [SMALL_STATE(151)] = 6667, - [SMALL_STATE(152)] = 6792, - [SMALL_STATE(153)] = 6917, - [SMALL_STATE(154)] = 7042, - [SMALL_STATE(155)] = 7167, - [SMALL_STATE(156)] = 7292, - [SMALL_STATE(157)] = 7417, - [SMALL_STATE(158)] = 7542, - [SMALL_STATE(159)] = 7667, - [SMALL_STATE(160)] = 7792, - [SMALL_STATE(161)] = 7917, - [SMALL_STATE(162)] = 8042, - [SMALL_STATE(163)] = 8167, - [SMALL_STATE(164)] = 8292, - [SMALL_STATE(165)] = 8417, - [SMALL_STATE(166)] = 8542, - [SMALL_STATE(167)] = 8667, - [SMALL_STATE(168)] = 8792, - [SMALL_STATE(169)] = 8917, - [SMALL_STATE(170)] = 9042, - [SMALL_STATE(171)] = 9167, - [SMALL_STATE(172)] = 9292, - [SMALL_STATE(173)] = 9417, - [SMALL_STATE(174)] = 9542, - [SMALL_STATE(175)] = 9667, - [SMALL_STATE(176)] = 9792, - [SMALL_STATE(177)] = 9917, - [SMALL_STATE(178)] = 10042, - [SMALL_STATE(179)] = 10167, - [SMALL_STATE(180)] = 10292, - [SMALL_STATE(181)] = 10417, - [SMALL_STATE(182)] = 10542, - [SMALL_STATE(183)] = 10667, - [SMALL_STATE(184)] = 10792, - [SMALL_STATE(185)] = 10917, - [SMALL_STATE(186)] = 11042, - [SMALL_STATE(187)] = 11167, - [SMALL_STATE(188)] = 11292, - [SMALL_STATE(189)] = 11417, - [SMALL_STATE(190)] = 11542, - [SMALL_STATE(191)] = 11667, - [SMALL_STATE(192)] = 11792, - [SMALL_STATE(193)] = 11917, - [SMALL_STATE(194)] = 12042, - [SMALL_STATE(195)] = 12167, - [SMALL_STATE(196)] = 12292, - [SMALL_STATE(197)] = 12417, - [SMALL_STATE(198)] = 12542, - [SMALL_STATE(199)] = 12667, - [SMALL_STATE(200)] = 12792, - [SMALL_STATE(201)] = 12917, - [SMALL_STATE(202)] = 13042, - [SMALL_STATE(203)] = 13167, - [SMALL_STATE(204)] = 13292, - [SMALL_STATE(205)] = 13417, - [SMALL_STATE(206)] = 13542, - [SMALL_STATE(207)] = 13667, - [SMALL_STATE(208)] = 13792, - [SMALL_STATE(209)] = 13917, - [SMALL_STATE(210)] = 14042, - [SMALL_STATE(211)] = 14167, - [SMALL_STATE(212)] = 14292, - [SMALL_STATE(213)] = 14417, - [SMALL_STATE(214)] = 14542, - [SMALL_STATE(215)] = 14667, - [SMALL_STATE(216)] = 14792, - [SMALL_STATE(217)] = 14917, - [SMALL_STATE(218)] = 15042, - [SMALL_STATE(219)] = 15167, - [SMALL_STATE(220)] = 15292, - [SMALL_STATE(221)] = 15417, - [SMALL_STATE(222)] = 15542, - [SMALL_STATE(223)] = 15667, - [SMALL_STATE(224)] = 15792, - [SMALL_STATE(225)] = 15917, - [SMALL_STATE(226)] = 16042, - [SMALL_STATE(227)] = 16167, - [SMALL_STATE(228)] = 16292, - [SMALL_STATE(229)] = 16417, - [SMALL_STATE(230)] = 16542, - [SMALL_STATE(231)] = 16667, - [SMALL_STATE(232)] = 16792, - [SMALL_STATE(233)] = 16917, - [SMALL_STATE(234)] = 16967, - [SMALL_STATE(235)] = 17017, - [SMALL_STATE(236)] = 17065, - [SMALL_STATE(237)] = 17113, - [SMALL_STATE(238)] = 17163, - [SMALL_STATE(239)] = 17213, - [SMALL_STATE(240)] = 17256, - [SMALL_STATE(241)] = 17299, - [SMALL_STATE(242)] = 17347, - [SMALL_STATE(243)] = 17395, - [SMALL_STATE(244)] = 17441, - [SMALL_STATE(245)] = 17487, - [SMALL_STATE(246)] = 17533, - [SMALL_STATE(247)] = 17579, - [SMALL_STATE(248)] = 17625, - [SMALL_STATE(249)] = 17671, - [SMALL_STATE(250)] = 17717, - [SMALL_STATE(251)] = 17763, - [SMALL_STATE(252)] = 17811, - [SMALL_STATE(253)] = 17859, - [SMALL_STATE(254)] = 17900, - [SMALL_STATE(255)] = 17941, - [SMALL_STATE(256)] = 17982, - [SMALL_STATE(257)] = 18023, - [SMALL_STATE(258)] = 18064, - [SMALL_STATE(259)] = 18105, - [SMALL_STATE(260)] = 18146, - [SMALL_STATE(261)] = 18187, - [SMALL_STATE(262)] = 18228, - [SMALL_STATE(263)] = 18269, - [SMALL_STATE(264)] = 18310, - [SMALL_STATE(265)] = 18351, - [SMALL_STATE(266)] = 18392, - [SMALL_STATE(267)] = 18433, - [SMALL_STATE(268)] = 18474, - [SMALL_STATE(269)] = 18515, - [SMALL_STATE(270)] = 18556, - [SMALL_STATE(271)] = 18597, - [SMALL_STATE(272)] = 18638, - [SMALL_STATE(273)] = 18679, - [SMALL_STATE(274)] = 18720, - [SMALL_STATE(275)] = 18761, - [SMALL_STATE(276)] = 18802, - [SMALL_STATE(277)] = 18843, - [SMALL_STATE(278)] = 18884, - [SMALL_STATE(279)] = 18925, - [SMALL_STATE(280)] = 18966, - [SMALL_STATE(281)] = 19007, - [SMALL_STATE(282)] = 19048, - [SMALL_STATE(283)] = 19089, - [SMALL_STATE(284)] = 19130, - [SMALL_STATE(285)] = 19171, - [SMALL_STATE(286)] = 19212, - [SMALL_STATE(287)] = 19253, - [SMALL_STATE(288)] = 19294, - [SMALL_STATE(289)] = 19335, - [SMALL_STATE(290)] = 19376, - [SMALL_STATE(291)] = 19417, - [SMALL_STATE(292)] = 19458, - [SMALL_STATE(293)] = 19499, - [SMALL_STATE(294)] = 19540, - [SMALL_STATE(295)] = 19581, - [SMALL_STATE(296)] = 19622, - [SMALL_STATE(297)] = 19663, - [SMALL_STATE(298)] = 19704, - [SMALL_STATE(299)] = 19745, - [SMALL_STATE(300)] = 19786, - [SMALL_STATE(301)] = 19827, - [SMALL_STATE(302)] = 19868, - [SMALL_STATE(303)] = 19909, - [SMALL_STATE(304)] = 19950, - [SMALL_STATE(305)] = 19991, - [SMALL_STATE(306)] = 20032, - [SMALL_STATE(307)] = 20073, - [SMALL_STATE(308)] = 20114, - [SMALL_STATE(309)] = 20155, - [SMALL_STATE(310)] = 20196, - [SMALL_STATE(311)] = 20237, - [SMALL_STATE(312)] = 20278, - [SMALL_STATE(313)] = 20319, - [SMALL_STATE(314)] = 20360, - [SMALL_STATE(315)] = 20401, - [SMALL_STATE(316)] = 20442, - [SMALL_STATE(317)] = 20483, - [SMALL_STATE(318)] = 20524, - [SMALL_STATE(319)] = 20565, - [SMALL_STATE(320)] = 20606, - [SMALL_STATE(321)] = 20647, - [SMALL_STATE(322)] = 20688, - [SMALL_STATE(323)] = 20729, - [SMALL_STATE(324)] = 20770, - [SMALL_STATE(325)] = 20811, - [SMALL_STATE(326)] = 20852, - [SMALL_STATE(327)] = 20893, - [SMALL_STATE(328)] = 20934, - [SMALL_STATE(329)] = 20975, - [SMALL_STATE(330)] = 21016, - [SMALL_STATE(331)] = 21057, - [SMALL_STATE(332)] = 21098, - [SMALL_STATE(333)] = 21139, - [SMALL_STATE(334)] = 21180, - [SMALL_STATE(335)] = 21221, - [SMALL_STATE(336)] = 21262, - [SMALL_STATE(337)] = 21303, - [SMALL_STATE(338)] = 21344, - [SMALL_STATE(339)] = 21385, - [SMALL_STATE(340)] = 21426, - [SMALL_STATE(341)] = 21467, - [SMALL_STATE(342)] = 21508, - [SMALL_STATE(343)] = 21549, - [SMALL_STATE(344)] = 21590, - [SMALL_STATE(345)] = 21631, - [SMALL_STATE(346)] = 21672, - [SMALL_STATE(347)] = 21713, - [SMALL_STATE(348)] = 21754, - [SMALL_STATE(349)] = 21795, - [SMALL_STATE(350)] = 21836, - [SMALL_STATE(351)] = 21877, - [SMALL_STATE(352)] = 21918, - [SMALL_STATE(353)] = 21959, - [SMALL_STATE(354)] = 22000, - [SMALL_STATE(355)] = 22041, - [SMALL_STATE(356)] = 22082, - [SMALL_STATE(357)] = 22123, - [SMALL_STATE(358)] = 22164, - [SMALL_STATE(359)] = 22205, - [SMALL_STATE(360)] = 22246, - [SMALL_STATE(361)] = 22287, - [SMALL_STATE(362)] = 22328, - [SMALL_STATE(363)] = 22369, - [SMALL_STATE(364)] = 22410, - [SMALL_STATE(365)] = 22451, - [SMALL_STATE(366)] = 22492, - [SMALL_STATE(367)] = 22533, - [SMALL_STATE(368)] = 22574, - [SMALL_STATE(369)] = 22615, - [SMALL_STATE(370)] = 22656, - [SMALL_STATE(371)] = 22697, - [SMALL_STATE(372)] = 22738, - [SMALL_STATE(373)] = 22779, - [SMALL_STATE(374)] = 22820, - [SMALL_STATE(375)] = 22861, - [SMALL_STATE(376)] = 22902, - [SMALL_STATE(377)] = 22944, - [SMALL_STATE(378)] = 22986, - [SMALL_STATE(379)] = 23028, - [SMALL_STATE(380)] = 23070, - [SMALL_STATE(381)] = 23112, - [SMALL_STATE(382)] = 23154, - [SMALL_STATE(383)] = 23196, - [SMALL_STATE(384)] = 23238, - [SMALL_STATE(385)] = 23280, - [SMALL_STATE(386)] = 23322, - [SMALL_STATE(387)] = 23364, - [SMALL_STATE(388)] = 23406, - [SMALL_STATE(389)] = 23443, - [SMALL_STATE(390)] = 23480, - [SMALL_STATE(391)] = 23517, - [SMALL_STATE(392)] = 23554, - [SMALL_STATE(393)] = 23591, - [SMALL_STATE(394)] = 23628, - [SMALL_STATE(395)] = 23665, - [SMALL_STATE(396)] = 23702, - [SMALL_STATE(397)] = 23739, - [SMALL_STATE(398)] = 23776, - [SMALL_STATE(399)] = 23813, - [SMALL_STATE(400)] = 23850, - [SMALL_STATE(401)] = 23887, - [SMALL_STATE(402)] = 23924, - [SMALL_STATE(403)] = 23961, - [SMALL_STATE(404)] = 23998, - [SMALL_STATE(405)] = 24035, - [SMALL_STATE(406)] = 24072, - [SMALL_STATE(407)] = 24109, - [SMALL_STATE(408)] = 24146, - [SMALL_STATE(409)] = 24183, - [SMALL_STATE(410)] = 24220, - [SMALL_STATE(411)] = 24257, - [SMALL_STATE(412)] = 24294, - [SMALL_STATE(413)] = 24331, - [SMALL_STATE(414)] = 24368, - [SMALL_STATE(415)] = 24405, - [SMALL_STATE(416)] = 24442, - [SMALL_STATE(417)] = 24479, - [SMALL_STATE(418)] = 24516, - [SMALL_STATE(419)] = 24553, - [SMALL_STATE(420)] = 24590, - [SMALL_STATE(421)] = 24627, - [SMALL_STATE(422)] = 24664, - [SMALL_STATE(423)] = 24701, - [SMALL_STATE(424)] = 24738, - [SMALL_STATE(425)] = 24775, - [SMALL_STATE(426)] = 24812, - [SMALL_STATE(427)] = 24849, - [SMALL_STATE(428)] = 24886, - [SMALL_STATE(429)] = 24923, - [SMALL_STATE(430)] = 24960, - [SMALL_STATE(431)] = 24997, - [SMALL_STATE(432)] = 25034, - [SMALL_STATE(433)] = 25071, - [SMALL_STATE(434)] = 25108, - [SMALL_STATE(435)] = 25145, - [SMALL_STATE(436)] = 25182, - [SMALL_STATE(437)] = 25219, - [SMALL_STATE(438)] = 25256, - [SMALL_STATE(439)] = 25293, - [SMALL_STATE(440)] = 25330, - [SMALL_STATE(441)] = 25367, - [SMALL_STATE(442)] = 25404, - [SMALL_STATE(443)] = 25441, - [SMALL_STATE(444)] = 25478, - [SMALL_STATE(445)] = 25515, - [SMALL_STATE(446)] = 25552, - [SMALL_STATE(447)] = 25589, - [SMALL_STATE(448)] = 25626, - [SMALL_STATE(449)] = 25663, - [SMALL_STATE(450)] = 25700, - [SMALL_STATE(451)] = 25737, - [SMALL_STATE(452)] = 25774, - [SMALL_STATE(453)] = 25811, - [SMALL_STATE(454)] = 25848, - [SMALL_STATE(455)] = 25885, - [SMALL_STATE(456)] = 25922, - [SMALL_STATE(457)] = 25959, - [SMALL_STATE(458)] = 25996, - [SMALL_STATE(459)] = 26033, - [SMALL_STATE(460)] = 26070, - [SMALL_STATE(461)] = 26107, - [SMALL_STATE(462)] = 26144, - [SMALL_STATE(463)] = 26181, - [SMALL_STATE(464)] = 26218, - [SMALL_STATE(465)] = 26255, - [SMALL_STATE(466)] = 26292, - [SMALL_STATE(467)] = 26329, - [SMALL_STATE(468)] = 26366, - [SMALL_STATE(469)] = 26403, - [SMALL_STATE(470)] = 26440, - [SMALL_STATE(471)] = 26477, - [SMALL_STATE(472)] = 26514, - [SMALL_STATE(473)] = 26551, - [SMALL_STATE(474)] = 26588, - [SMALL_STATE(475)] = 26625, - [SMALL_STATE(476)] = 26662, - [SMALL_STATE(477)] = 26699, - [SMALL_STATE(478)] = 26736, - [SMALL_STATE(479)] = 26773, - [SMALL_STATE(480)] = 26810, - [SMALL_STATE(481)] = 26847, - [SMALL_STATE(482)] = 26884, - [SMALL_STATE(483)] = 26921, - [SMALL_STATE(484)] = 26958, - [SMALL_STATE(485)] = 26995, - [SMALL_STATE(486)] = 27032, - [SMALL_STATE(487)] = 27069, - [SMALL_STATE(488)] = 27106, - [SMALL_STATE(489)] = 27143, - [SMALL_STATE(490)] = 27180, - [SMALL_STATE(491)] = 27217, - [SMALL_STATE(492)] = 27254, - [SMALL_STATE(493)] = 27291, - [SMALL_STATE(494)] = 27328, - [SMALL_STATE(495)] = 27365, - [SMALL_STATE(496)] = 27402, - [SMALL_STATE(497)] = 27439, - [SMALL_STATE(498)] = 27476, - [SMALL_STATE(499)] = 27513, - [SMALL_STATE(500)] = 27550, - [SMALL_STATE(501)] = 27587, - [SMALL_STATE(502)] = 27624, - [SMALL_STATE(503)] = 27661, - [SMALL_STATE(504)] = 27698, - [SMALL_STATE(505)] = 27735, - [SMALL_STATE(506)] = 27772, - [SMALL_STATE(507)] = 27809, - [SMALL_STATE(508)] = 27846, - [SMALL_STATE(509)] = 27883, - [SMALL_STATE(510)] = 27920, - [SMALL_STATE(511)] = 27957, - [SMALL_STATE(512)] = 27994, - [SMALL_STATE(513)] = 28031, - [SMALL_STATE(514)] = 28068, - [SMALL_STATE(515)] = 28105, - [SMALL_STATE(516)] = 28142, - [SMALL_STATE(517)] = 28179, - [SMALL_STATE(518)] = 28216, - [SMALL_STATE(519)] = 28253, - [SMALL_STATE(520)] = 28290, - [SMALL_STATE(521)] = 28327, - [SMALL_STATE(522)] = 28364, - [SMALL_STATE(523)] = 28401, - [SMALL_STATE(524)] = 28438, - [SMALL_STATE(525)] = 28475, - [SMALL_STATE(526)] = 28512, - [SMALL_STATE(527)] = 28549, - [SMALL_STATE(528)] = 28586, - [SMALL_STATE(529)] = 28623, - [SMALL_STATE(530)] = 28660, - [SMALL_STATE(531)] = 28697, - [SMALL_STATE(532)] = 28734, - [SMALL_STATE(533)] = 28771, - [SMALL_STATE(534)] = 28808, - [SMALL_STATE(535)] = 28845, - [SMALL_STATE(536)] = 28882, - [SMALL_STATE(537)] = 28919, - [SMALL_STATE(538)] = 28956, - [SMALL_STATE(539)] = 28993, - [SMALL_STATE(540)] = 29030, - [SMALL_STATE(541)] = 29067, - [SMALL_STATE(542)] = 29104, - [SMALL_STATE(543)] = 29141, - [SMALL_STATE(544)] = 29178, - [SMALL_STATE(545)] = 29215, - [SMALL_STATE(546)] = 29252, - [SMALL_STATE(547)] = 29289, - [SMALL_STATE(548)] = 29326, - [SMALL_STATE(549)] = 29363, - [SMALL_STATE(550)] = 29400, - [SMALL_STATE(551)] = 29437, - [SMALL_STATE(552)] = 29474, - [SMALL_STATE(553)] = 29511, - [SMALL_STATE(554)] = 29548, - [SMALL_STATE(555)] = 29585, - [SMALL_STATE(556)] = 29622, - [SMALL_STATE(557)] = 29659, - [SMALL_STATE(558)] = 29696, - [SMALL_STATE(559)] = 29733, - [SMALL_STATE(560)] = 29770, - [SMALL_STATE(561)] = 29807, - [SMALL_STATE(562)] = 29844, - [SMALL_STATE(563)] = 29881, - [SMALL_STATE(564)] = 29918, - [SMALL_STATE(565)] = 29955, - [SMALL_STATE(566)] = 29983, - [SMALL_STATE(567)] = 30011, - [SMALL_STATE(568)] = 30039, - [SMALL_STATE(569)] = 30067, - [SMALL_STATE(570)] = 30095, - [SMALL_STATE(571)] = 30123, - [SMALL_STATE(572)] = 30151, - [SMALL_STATE(573)] = 30179, - [SMALL_STATE(574)] = 30207, - [SMALL_STATE(575)] = 30235, - [SMALL_STATE(576)] = 30263, - [SMALL_STATE(577)] = 30285, - [SMALL_STATE(578)] = 30307, - [SMALL_STATE(579)] = 30329, - [SMALL_STATE(580)] = 30351, - [SMALL_STATE(581)] = 30373, - [SMALL_STATE(582)] = 30390, - [SMALL_STATE(583)] = 30406, - [SMALL_STATE(584)] = 30426, - [SMALL_STATE(585)] = 30446, - [SMALL_STATE(586)] = 30466, - [SMALL_STATE(587)] = 30486, - [SMALL_STATE(588)] = 30502, - [SMALL_STATE(589)] = 30522, - [SMALL_STATE(590)] = 30542, - [SMALL_STATE(591)] = 30562, - [SMALL_STATE(592)] = 30582, - [SMALL_STATE(593)] = 30602, - [SMALL_STATE(594)] = 30622, - [SMALL_STATE(595)] = 30633, - [SMALL_STATE(596)] = 30644, - [SMALL_STATE(597)] = 30655, - [SMALL_STATE(598)] = 30668, - [SMALL_STATE(599)] = 30684, - [SMALL_STATE(600)] = 30696, - [SMALL_STATE(601)] = 30712, - [SMALL_STATE(602)] = 30724, - [SMALL_STATE(603)] = 30736, - [SMALL_STATE(604)] = 30746, - [SMALL_STATE(605)] = 30762, - [SMALL_STATE(606)] = 30778, - [SMALL_STATE(607)] = 30794, - [SMALL_STATE(608)] = 30806, - [SMALL_STATE(609)] = 30822, - [SMALL_STATE(610)] = 30838, - [SMALL_STATE(611)] = 30854, - [SMALL_STATE(612)] = 30870, - [SMALL_STATE(613)] = 30882, - [SMALL_STATE(614)] = 30898, - [SMALL_STATE(615)] = 30914, - [SMALL_STATE(616)] = 30930, - [SMALL_STATE(617)] = 30942, - [SMALL_STATE(618)] = 30958, - [SMALL_STATE(619)] = 30970, - [SMALL_STATE(620)] = 30986, - [SMALL_STATE(621)] = 31002, - [SMALL_STATE(622)] = 31018, - [SMALL_STATE(623)] = 31034, - [SMALL_STATE(624)] = 31050, - [SMALL_STATE(625)] = 31064, - [SMALL_STATE(626)] = 31076, - [SMALL_STATE(627)] = 31092, - [SMALL_STATE(628)] = 31108, - [SMALL_STATE(629)] = 31124, - [SMALL_STATE(630)] = 31140, - [SMALL_STATE(631)] = 31152, - [SMALL_STATE(632)] = 31168, - [SMALL_STATE(633)] = 31184, - [SMALL_STATE(634)] = 31200, - [SMALL_STATE(635)] = 31216, - [SMALL_STATE(636)] = 31232, - [SMALL_STATE(637)] = 31244, - [SMALL_STATE(638)] = 31255, - [SMALL_STATE(639)] = 31268, - [SMALL_STATE(640)] = 31277, - [SMALL_STATE(641)] = 31286, - [SMALL_STATE(642)] = 31295, - [SMALL_STATE(643)] = 31304, - [SMALL_STATE(644)] = 31317, - [SMALL_STATE(645)] = 31330, - [SMALL_STATE(646)] = 31343, - [SMALL_STATE(647)] = 31356, - [SMALL_STATE(648)] = 31369, - [SMALL_STATE(649)] = 31382, - [SMALL_STATE(650)] = 31395, - [SMALL_STATE(651)] = 31406, - [SMALL_STATE(652)] = 31419, - [SMALL_STATE(653)] = 31432, - [SMALL_STATE(654)] = 31441, - [SMALL_STATE(655)] = 31452, - [SMALL_STATE(656)] = 31461, - [SMALL_STATE(657)] = 31470, - [SMALL_STATE(658)] = 31481, - [SMALL_STATE(659)] = 31490, - [SMALL_STATE(660)] = 31503, - [SMALL_STATE(661)] = 31516, - [SMALL_STATE(662)] = 31529, - [SMALL_STATE(663)] = 31540, - [SMALL_STATE(664)] = 31551, - [SMALL_STATE(665)] = 31564, - [SMALL_STATE(666)] = 31577, - [SMALL_STATE(667)] = 31590, - [SMALL_STATE(668)] = 31603, - [SMALL_STATE(669)] = 31614, - [SMALL_STATE(670)] = 31625, - [SMALL_STATE(671)] = 31636, - [SMALL_STATE(672)] = 31645, - [SMALL_STATE(673)] = 31656, - [SMALL_STATE(674)] = 31669, - [SMALL_STATE(675)] = 31678, - [SMALL_STATE(676)] = 31691, - [SMALL_STATE(677)] = 31700, - [SMALL_STATE(678)] = 31713, - [SMALL_STATE(679)] = 31726, - [SMALL_STATE(680)] = 31735, - [SMALL_STATE(681)] = 31748, - [SMALL_STATE(682)] = 31761, - [SMALL_STATE(683)] = 31770, - [SMALL_STATE(684)] = 31783, - [SMALL_STATE(685)] = 31796, - [SMALL_STATE(686)] = 31807, - [SMALL_STATE(687)] = 31820, - [SMALL_STATE(688)] = 31833, - [SMALL_STATE(689)] = 31842, - [SMALL_STATE(690)] = 31855, - [SMALL_STATE(691)] = 31868, - [SMALL_STATE(692)] = 31881, - [SMALL_STATE(693)] = 31894, - [SMALL_STATE(694)] = 31905, - [SMALL_STATE(695)] = 31916, - [SMALL_STATE(696)] = 31929, - [SMALL_STATE(697)] = 31942, - [SMALL_STATE(698)] = 31955, - [SMALL_STATE(699)] = 31968, - [SMALL_STATE(700)] = 31981, - [SMALL_STATE(701)] = 31990, - [SMALL_STATE(702)] = 32003, - [SMALL_STATE(703)] = 32016, - [SMALL_STATE(704)] = 32026, - [SMALL_STATE(705)] = 32036, - [SMALL_STATE(706)] = 32046, - [SMALL_STATE(707)] = 32056, - [SMALL_STATE(708)] = 32066, - [SMALL_STATE(709)] = 32076, - [SMALL_STATE(710)] = 32086, - [SMALL_STATE(711)] = 32096, - [SMALL_STATE(712)] = 32106, - [SMALL_STATE(713)] = 32116, - [SMALL_STATE(714)] = 32126, - [SMALL_STATE(715)] = 32136, - [SMALL_STATE(716)] = 32146, - [SMALL_STATE(717)] = 32156, - [SMALL_STATE(718)] = 32166, - [SMALL_STATE(719)] = 32176, - [SMALL_STATE(720)] = 32186, - [SMALL_STATE(721)] = 32196, - [SMALL_STATE(722)] = 32206, - [SMALL_STATE(723)] = 32216, - [SMALL_STATE(724)] = 32224, - [SMALL_STATE(725)] = 32234, - [SMALL_STATE(726)] = 32244, - [SMALL_STATE(727)] = 32254, - [SMALL_STATE(728)] = 32262, - [SMALL_STATE(729)] = 32272, - [SMALL_STATE(730)] = 32282, - [SMALL_STATE(731)] = 32292, - [SMALL_STATE(732)] = 32302, - [SMALL_STATE(733)] = 32312, - [SMALL_STATE(734)] = 32322, - [SMALL_STATE(735)] = 32332, - [SMALL_STATE(736)] = 32342, - [SMALL_STATE(737)] = 32352, - [SMALL_STATE(738)] = 32362, - [SMALL_STATE(739)] = 32372, - [SMALL_STATE(740)] = 32382, - [SMALL_STATE(741)] = 32392, - [SMALL_STATE(742)] = 32402, - [SMALL_STATE(743)] = 32412, - [SMALL_STATE(744)] = 32422, - [SMALL_STATE(745)] = 32432, - [SMALL_STATE(746)] = 32442, - [SMALL_STATE(747)] = 32452, - [SMALL_STATE(748)] = 32462, - [SMALL_STATE(749)] = 32472, - [SMALL_STATE(750)] = 32482, - [SMALL_STATE(751)] = 32492, - [SMALL_STATE(752)] = 32502, - [SMALL_STATE(753)] = 32512, - [SMALL_STATE(754)] = 32522, - [SMALL_STATE(755)] = 32528, - [SMALL_STATE(756)] = 32538, - [SMALL_STATE(757)] = 32548, - [SMALL_STATE(758)] = 32558, - [SMALL_STATE(759)] = 32568, - [SMALL_STATE(760)] = 32578, - [SMALL_STATE(761)] = 32588, - [SMALL_STATE(762)] = 32598, - [SMALL_STATE(763)] = 32608, - [SMALL_STATE(764)] = 32618, - [SMALL_STATE(765)] = 32628, - [SMALL_STATE(766)] = 32638, - [SMALL_STATE(767)] = 32648, - [SMALL_STATE(768)] = 32658, - [SMALL_STATE(769)] = 32668, - [SMALL_STATE(770)] = 32678, - [SMALL_STATE(771)] = 32688, - [SMALL_STATE(772)] = 32698, - [SMALL_STATE(773)] = 32708, - [SMALL_STATE(774)] = 32718, - [SMALL_STATE(775)] = 32728, - [SMALL_STATE(776)] = 32738, - [SMALL_STATE(777)] = 32748, - [SMALL_STATE(778)] = 32758, - [SMALL_STATE(779)] = 32768, - [SMALL_STATE(780)] = 32778, - [SMALL_STATE(781)] = 32788, - [SMALL_STATE(782)] = 32798, - [SMALL_STATE(783)] = 32808, - [SMALL_STATE(784)] = 32818, - [SMALL_STATE(785)] = 32828, - [SMALL_STATE(786)] = 32838, - [SMALL_STATE(787)] = 32848, - [SMALL_STATE(788)] = 32858, - [SMALL_STATE(789)] = 32868, - [SMALL_STATE(790)] = 32878, - [SMALL_STATE(791)] = 32886, - [SMALL_STATE(792)] = 32896, - [SMALL_STATE(793)] = 32906, - [SMALL_STATE(794)] = 32916, - [SMALL_STATE(795)] = 32926, - [SMALL_STATE(796)] = 32936, - [SMALL_STATE(797)] = 32946, - [SMALL_STATE(798)] = 32956, - [SMALL_STATE(799)] = 32966, - [SMALL_STATE(800)] = 32976, - [SMALL_STATE(801)] = 32986, - [SMALL_STATE(802)] = 32996, - [SMALL_STATE(803)] = 33006, - [SMALL_STATE(804)] = 33016, - [SMALL_STATE(805)] = 33026, - [SMALL_STATE(806)] = 33036, - [SMALL_STATE(807)] = 33046, - [SMALL_STATE(808)] = 33056, - [SMALL_STATE(809)] = 33066, - [SMALL_STATE(810)] = 33076, - [SMALL_STATE(811)] = 33086, - [SMALL_STATE(812)] = 33096, - [SMALL_STATE(813)] = 33106, - [SMALL_STATE(814)] = 33116, - [SMALL_STATE(815)] = 33126, - [SMALL_STATE(816)] = 33136, - [SMALL_STATE(817)] = 33146, - [SMALL_STATE(818)] = 33156, - [SMALL_STATE(819)] = 33166, - [SMALL_STATE(820)] = 33176, - [SMALL_STATE(821)] = 33186, - [SMALL_STATE(822)] = 33196, - [SMALL_STATE(823)] = 33206, - [SMALL_STATE(824)] = 33216, - [SMALL_STATE(825)] = 33226, - [SMALL_STATE(826)] = 33236, - [SMALL_STATE(827)] = 33246, - [SMALL_STATE(828)] = 33256, - [SMALL_STATE(829)] = 33266, - [SMALL_STATE(830)] = 33276, - [SMALL_STATE(831)] = 33286, - [SMALL_STATE(832)] = 33296, - [SMALL_STATE(833)] = 33306, - [SMALL_STATE(834)] = 33316, - [SMALL_STATE(835)] = 33326, - [SMALL_STATE(836)] = 33336, - [SMALL_STATE(837)] = 33346, - [SMALL_STATE(838)] = 33356, - [SMALL_STATE(839)] = 33366, - [SMALL_STATE(840)] = 33376, - [SMALL_STATE(841)] = 33383, - [SMALL_STATE(842)] = 33388, - [SMALL_STATE(843)] = 33395, - [SMALL_STATE(844)] = 33402, - [SMALL_STATE(845)] = 33409, - [SMALL_STATE(846)] = 33416, - [SMALL_STATE(847)] = 33423, - [SMALL_STATE(848)] = 33430, - [SMALL_STATE(849)] = 33437, - [SMALL_STATE(850)] = 33444, - [SMALL_STATE(851)] = 33451, - [SMALL_STATE(852)] = 33458, - [SMALL_STATE(853)] = 33465, - [SMALL_STATE(854)] = 33472, - [SMALL_STATE(855)] = 33477, - [SMALL_STATE(856)] = 33484, - [SMALL_STATE(857)] = 33491, - [SMALL_STATE(858)] = 33498, - [SMALL_STATE(859)] = 33505, - [SMALL_STATE(860)] = 33512, - [SMALL_STATE(861)] = 33517, - [SMALL_STATE(862)] = 33522, - [SMALL_STATE(863)] = 33529, - [SMALL_STATE(864)] = 33536, - [SMALL_STATE(865)] = 33543, - [SMALL_STATE(866)] = 33550, - [SMALL_STATE(867)] = 33555, - [SMALL_STATE(868)] = 33562, - [SMALL_STATE(869)] = 33569, - [SMALL_STATE(870)] = 33576, - [SMALL_STATE(871)] = 33583, - [SMALL_STATE(872)] = 33590, - [SMALL_STATE(873)] = 33597, - [SMALL_STATE(874)] = 33604, - [SMALL_STATE(875)] = 33608, - [SMALL_STATE(876)] = 33612, - [SMALL_STATE(877)] = 33616, - [SMALL_STATE(878)] = 33620, - [SMALL_STATE(879)] = 33624, - [SMALL_STATE(880)] = 33628, - [SMALL_STATE(881)] = 33632, - [SMALL_STATE(882)] = 33636, - [SMALL_STATE(883)] = 33640, - [SMALL_STATE(884)] = 33644, - [SMALL_STATE(885)] = 33648, - [SMALL_STATE(886)] = 33652, - [SMALL_STATE(887)] = 33656, - [SMALL_STATE(888)] = 33660, - [SMALL_STATE(889)] = 33664, - [SMALL_STATE(890)] = 33668, - [SMALL_STATE(891)] = 33672, - [SMALL_STATE(892)] = 33676, - [SMALL_STATE(893)] = 33680, - [SMALL_STATE(894)] = 33684, - [SMALL_STATE(895)] = 33688, - [SMALL_STATE(896)] = 33692, - [SMALL_STATE(897)] = 33696, - [SMALL_STATE(898)] = 33700, - [SMALL_STATE(899)] = 33704, - [SMALL_STATE(900)] = 33708, - [SMALL_STATE(901)] = 33712, - [SMALL_STATE(902)] = 33716, - [SMALL_STATE(903)] = 33720, - [SMALL_STATE(904)] = 33724, - [SMALL_STATE(905)] = 33728, - [SMALL_STATE(906)] = 33732, - [SMALL_STATE(907)] = 33736, - [SMALL_STATE(908)] = 33740, - [SMALL_STATE(909)] = 33744, - [SMALL_STATE(910)] = 33748, - [SMALL_STATE(911)] = 33752, - [SMALL_STATE(912)] = 33756, - [SMALL_STATE(913)] = 33760, - [SMALL_STATE(914)] = 33764, - [SMALL_STATE(915)] = 33768, - [SMALL_STATE(916)] = 33772, - [SMALL_STATE(917)] = 33776, - [SMALL_STATE(918)] = 33780, - [SMALL_STATE(919)] = 33784, - [SMALL_STATE(920)] = 33788, - [SMALL_STATE(921)] = 33792, - [SMALL_STATE(922)] = 33796, - [SMALL_STATE(923)] = 33800, - [SMALL_STATE(924)] = 33804, - [SMALL_STATE(925)] = 33808, - [SMALL_STATE(926)] = 33812, - [SMALL_STATE(927)] = 33816, - [SMALL_STATE(928)] = 33820, - [SMALL_STATE(929)] = 33824, - [SMALL_STATE(930)] = 33828, - [SMALL_STATE(931)] = 33832, - [SMALL_STATE(932)] = 33836, - [SMALL_STATE(933)] = 33840, - [SMALL_STATE(934)] = 33844, - [SMALL_STATE(935)] = 33848, - [SMALL_STATE(936)] = 33852, - [SMALL_STATE(937)] = 33856, - [SMALL_STATE(938)] = 33860, - [SMALL_STATE(939)] = 33864, - [SMALL_STATE(940)] = 33868, - [SMALL_STATE(941)] = 33872, - [SMALL_STATE(942)] = 33876, - [SMALL_STATE(943)] = 33880, - [SMALL_STATE(944)] = 33884, - [SMALL_STATE(945)] = 33888, - [SMALL_STATE(946)] = 33892, - [SMALL_STATE(947)] = 33896, - [SMALL_STATE(948)] = 33900, - [SMALL_STATE(949)] = 33904, - [SMALL_STATE(950)] = 33908, - [SMALL_STATE(951)] = 33912, - [SMALL_STATE(952)] = 33916, - [SMALL_STATE(953)] = 33920, - [SMALL_STATE(954)] = 33924, - [SMALL_STATE(955)] = 33928, - [SMALL_STATE(956)] = 33932, - [SMALL_STATE(957)] = 33936, - [SMALL_STATE(958)] = 33940, - [SMALL_STATE(959)] = 33944, - [SMALL_STATE(960)] = 33948, - [SMALL_STATE(961)] = 33952, - [SMALL_STATE(962)] = 33956, - [SMALL_STATE(963)] = 33960, - [SMALL_STATE(964)] = 33964, - [SMALL_STATE(965)] = 33968, - [SMALL_STATE(966)] = 33972, - [SMALL_STATE(967)] = 33976, - [SMALL_STATE(968)] = 33980, - [SMALL_STATE(969)] = 33984, - [SMALL_STATE(970)] = 33988, - [SMALL_STATE(971)] = 33992, - [SMALL_STATE(972)] = 33996, - [SMALL_STATE(973)] = 34000, - [SMALL_STATE(974)] = 34004, - [SMALL_STATE(975)] = 34008, - [SMALL_STATE(976)] = 34012, - [SMALL_STATE(977)] = 34016, - [SMALL_STATE(978)] = 34020, - [SMALL_STATE(979)] = 34024, - [SMALL_STATE(980)] = 34028, - [SMALL_STATE(981)] = 34032, - [SMALL_STATE(982)] = 34036, - [SMALL_STATE(983)] = 34040, - [SMALL_STATE(984)] = 34044, - [SMALL_STATE(985)] = 34048, - [SMALL_STATE(986)] = 34052, - [SMALL_STATE(987)] = 34056, - [SMALL_STATE(988)] = 34060, - [SMALL_STATE(989)] = 34064, - [SMALL_STATE(990)] = 34068, - [SMALL_STATE(991)] = 34072, - [SMALL_STATE(992)] = 34076, - [SMALL_STATE(993)] = 34080, - [SMALL_STATE(994)] = 34084, - [SMALL_STATE(995)] = 34088, - [SMALL_STATE(996)] = 34092, - [SMALL_STATE(997)] = 34096, - [SMALL_STATE(998)] = 34100, - [SMALL_STATE(999)] = 34104, - [SMALL_STATE(1000)] = 34108, - [SMALL_STATE(1001)] = 34112, - [SMALL_STATE(1002)] = 34116, - [SMALL_STATE(1003)] = 34120, - [SMALL_STATE(1004)] = 34124, - [SMALL_STATE(1005)] = 34128, - [SMALL_STATE(1006)] = 34132, - [SMALL_STATE(1007)] = 34136, - [SMALL_STATE(1008)] = 34140, - [SMALL_STATE(1009)] = 34144, - [SMALL_STATE(1010)] = 34148, - [SMALL_STATE(1011)] = 34152, - [SMALL_STATE(1012)] = 34156, - [SMALL_STATE(1013)] = 34160, - [SMALL_STATE(1014)] = 34164, - [SMALL_STATE(1015)] = 34168, - [SMALL_STATE(1016)] = 34172, - [SMALL_STATE(1017)] = 34176, - [SMALL_STATE(1018)] = 34180, - [SMALL_STATE(1019)] = 34184, - [SMALL_STATE(1020)] = 34188, - [SMALL_STATE(1021)] = 34192, - [SMALL_STATE(1022)] = 34196, - [SMALL_STATE(1023)] = 34200, - [SMALL_STATE(1024)] = 34204, - [SMALL_STATE(1025)] = 34208, - [SMALL_STATE(1026)] = 34212, - [SMALL_STATE(1027)] = 34216, - [SMALL_STATE(1028)] = 34220, - [SMALL_STATE(1029)] = 34224, + [SMALL_STATE(87)] = 0, + [SMALL_STATE(88)] = 128, + [SMALL_STATE(89)] = 256, + [SMALL_STATE(90)] = 384, + [SMALL_STATE(91)] = 512, + [SMALL_STATE(92)] = 640, + [SMALL_STATE(93)] = 768, + [SMALL_STATE(94)] = 896, + [SMALL_STATE(95)] = 1024, + [SMALL_STATE(96)] = 1152, + [SMALL_STATE(97)] = 1280, + [SMALL_STATE(98)] = 1408, + [SMALL_STATE(99)] = 1536, + [SMALL_STATE(100)] = 1664, + [SMALL_STATE(101)] = 1792, + [SMALL_STATE(102)] = 1920, + [SMALL_STATE(103)] = 2048, + [SMALL_STATE(104)] = 2176, + [SMALL_STATE(105)] = 2304, + [SMALL_STATE(106)] = 2432, + [SMALL_STATE(107)] = 2560, + [SMALL_STATE(108)] = 2688, + [SMALL_STATE(109)] = 2816, + [SMALL_STATE(110)] = 2944, + [SMALL_STATE(111)] = 3072, + [SMALL_STATE(112)] = 3200, + [SMALL_STATE(113)] = 3328, + [SMALL_STATE(114)] = 3456, + [SMALL_STATE(115)] = 3584, + [SMALL_STATE(116)] = 3712, + [SMALL_STATE(117)] = 3840, + [SMALL_STATE(118)] = 3968, + [SMALL_STATE(119)] = 4096, + [SMALL_STATE(120)] = 4224, + [SMALL_STATE(121)] = 4352, + [SMALL_STATE(122)] = 4480, + [SMALL_STATE(123)] = 4608, + [SMALL_STATE(124)] = 4736, + [SMALL_STATE(125)] = 4864, + [SMALL_STATE(126)] = 4992, + [SMALL_STATE(127)] = 5120, + [SMALL_STATE(128)] = 5248, + [SMALL_STATE(129)] = 5376, + [SMALL_STATE(130)] = 5504, + [SMALL_STATE(131)] = 5632, + [SMALL_STATE(132)] = 5760, + [SMALL_STATE(133)] = 5888, + [SMALL_STATE(134)] = 6016, + [SMALL_STATE(135)] = 6144, + [SMALL_STATE(136)] = 6272, + [SMALL_STATE(137)] = 6400, + [SMALL_STATE(138)] = 6528, + [SMALL_STATE(139)] = 6656, + [SMALL_STATE(140)] = 6784, + [SMALL_STATE(141)] = 6912, + [SMALL_STATE(142)] = 7040, + [SMALL_STATE(143)] = 7168, + [SMALL_STATE(144)] = 7296, + [SMALL_STATE(145)] = 7424, + [SMALL_STATE(146)] = 7552, + [SMALL_STATE(147)] = 7680, + [SMALL_STATE(148)] = 7808, + [SMALL_STATE(149)] = 7936, + [SMALL_STATE(150)] = 8064, + [SMALL_STATE(151)] = 8192, + [SMALL_STATE(152)] = 8320, + [SMALL_STATE(153)] = 8448, + [SMALL_STATE(154)] = 8576, + [SMALL_STATE(155)] = 8704, + [SMALL_STATE(156)] = 8832, + [SMALL_STATE(157)] = 8960, + [SMALL_STATE(158)] = 9088, + [SMALL_STATE(159)] = 9216, + [SMALL_STATE(160)] = 9344, + [SMALL_STATE(161)] = 9472, + [SMALL_STATE(162)] = 9600, + [SMALL_STATE(163)] = 9728, + [SMALL_STATE(164)] = 9856, + [SMALL_STATE(165)] = 9984, + [SMALL_STATE(166)] = 10112, + [SMALL_STATE(167)] = 10240, + [SMALL_STATE(168)] = 10368, + [SMALL_STATE(169)] = 10496, + [SMALL_STATE(170)] = 10624, + [SMALL_STATE(171)] = 10752, + [SMALL_STATE(172)] = 10880, + [SMALL_STATE(173)] = 11008, + [SMALL_STATE(174)] = 11136, + [SMALL_STATE(175)] = 11264, + [SMALL_STATE(176)] = 11392, + [SMALL_STATE(177)] = 11520, + [SMALL_STATE(178)] = 11648, + [SMALL_STATE(179)] = 11776, + [SMALL_STATE(180)] = 11904, + [SMALL_STATE(181)] = 12032, + [SMALL_STATE(182)] = 12160, + [SMALL_STATE(183)] = 12288, + [SMALL_STATE(184)] = 12416, + [SMALL_STATE(185)] = 12544, + [SMALL_STATE(186)] = 12672, + [SMALL_STATE(187)] = 12800, + [SMALL_STATE(188)] = 12928, + [SMALL_STATE(189)] = 13056, + [SMALL_STATE(190)] = 13184, + [SMALL_STATE(191)] = 13312, + [SMALL_STATE(192)] = 13440, + [SMALL_STATE(193)] = 13568, + [SMALL_STATE(194)] = 13696, + [SMALL_STATE(195)] = 13824, + [SMALL_STATE(196)] = 13952, + [SMALL_STATE(197)] = 14080, + [SMALL_STATE(198)] = 14208, + [SMALL_STATE(199)] = 14336, + [SMALL_STATE(200)] = 14464, + [SMALL_STATE(201)] = 14592, + [SMALL_STATE(202)] = 14720, + [SMALL_STATE(203)] = 14770, + [SMALL_STATE(204)] = 14820, + [SMALL_STATE(205)] = 14870, + [SMALL_STATE(206)] = 14918, + [SMALL_STATE(207)] = 14966, + [SMALL_STATE(208)] = 15016, + [SMALL_STATE(209)] = 15059, + [SMALL_STATE(210)] = 15102, + [SMALL_STATE(211)] = 15150, + [SMALL_STATE(212)] = 15198, + [SMALL_STATE(213)] = 15246, + [SMALL_STATE(214)] = 15292, + [SMALL_STATE(215)] = 15338, + [SMALL_STATE(216)] = 15384, + [SMALL_STATE(217)] = 15430, + [SMALL_STATE(218)] = 15476, + [SMALL_STATE(219)] = 15522, + [SMALL_STATE(220)] = 15568, + [SMALL_STATE(221)] = 15614, + [SMALL_STATE(222)] = 15662, + [SMALL_STATE(223)] = 15703, + [SMALL_STATE(224)] = 15744, + [SMALL_STATE(225)] = 15785, + [SMALL_STATE(226)] = 15826, + [SMALL_STATE(227)] = 15867, + [SMALL_STATE(228)] = 15908, + [SMALL_STATE(229)] = 15949, + [SMALL_STATE(230)] = 15990, + [SMALL_STATE(231)] = 16031, + [SMALL_STATE(232)] = 16072, + [SMALL_STATE(233)] = 16113, + [SMALL_STATE(234)] = 16154, + [SMALL_STATE(235)] = 16195, + [SMALL_STATE(236)] = 16236, + [SMALL_STATE(237)] = 16277, + [SMALL_STATE(238)] = 16318, + [SMALL_STATE(239)] = 16359, + [SMALL_STATE(240)] = 16400, + [SMALL_STATE(241)] = 16441, + [SMALL_STATE(242)] = 16482, + [SMALL_STATE(243)] = 16523, + [SMALL_STATE(244)] = 16564, + [SMALL_STATE(245)] = 16605, + [SMALL_STATE(246)] = 16646, + [SMALL_STATE(247)] = 16687, + [SMALL_STATE(248)] = 16728, + [SMALL_STATE(249)] = 16769, + [SMALL_STATE(250)] = 16810, + [SMALL_STATE(251)] = 16851, + [SMALL_STATE(252)] = 16892, + [SMALL_STATE(253)] = 16933, + [SMALL_STATE(254)] = 16974, + [SMALL_STATE(255)] = 17015, + [SMALL_STATE(256)] = 17056, + [SMALL_STATE(257)] = 17097, + [SMALL_STATE(258)] = 17138, + [SMALL_STATE(259)] = 17179, + [SMALL_STATE(260)] = 17220, + [SMALL_STATE(261)] = 17261, + [SMALL_STATE(262)] = 17302, + [SMALL_STATE(263)] = 17343, + [SMALL_STATE(264)] = 17384, + [SMALL_STATE(265)] = 17425, + [SMALL_STATE(266)] = 17466, + [SMALL_STATE(267)] = 17507, + [SMALL_STATE(268)] = 17548, + [SMALL_STATE(269)] = 17589, + [SMALL_STATE(270)] = 17630, + [SMALL_STATE(271)] = 17671, + [SMALL_STATE(272)] = 17712, + [SMALL_STATE(273)] = 17753, + [SMALL_STATE(274)] = 17794, + [SMALL_STATE(275)] = 17835, + [SMALL_STATE(276)] = 17876, + [SMALL_STATE(277)] = 17917, + [SMALL_STATE(278)] = 17958, + [SMALL_STATE(279)] = 17999, + [SMALL_STATE(280)] = 18040, + [SMALL_STATE(281)] = 18081, + [SMALL_STATE(282)] = 18122, + [SMALL_STATE(283)] = 18163, + [SMALL_STATE(284)] = 18204, + [SMALL_STATE(285)] = 18245, + [SMALL_STATE(286)] = 18286, + [SMALL_STATE(287)] = 18327, + [SMALL_STATE(288)] = 18368, + [SMALL_STATE(289)] = 18409, + [SMALL_STATE(290)] = 18450, + [SMALL_STATE(291)] = 18491, + [SMALL_STATE(292)] = 18532, + [SMALL_STATE(293)] = 18573, + [SMALL_STATE(294)] = 18614, + [SMALL_STATE(295)] = 18655, + [SMALL_STATE(296)] = 18696, + [SMALL_STATE(297)] = 18737, + [SMALL_STATE(298)] = 18778, + [SMALL_STATE(299)] = 18819, + [SMALL_STATE(300)] = 18860, + [SMALL_STATE(301)] = 18901, + [SMALL_STATE(302)] = 18942, + [SMALL_STATE(303)] = 18983, + [SMALL_STATE(304)] = 19024, + [SMALL_STATE(305)] = 19065, + [SMALL_STATE(306)] = 19106, + [SMALL_STATE(307)] = 19147, + [SMALL_STATE(308)] = 19188, + [SMALL_STATE(309)] = 19229, + [SMALL_STATE(310)] = 19270, + [SMALL_STATE(311)] = 19311, + [SMALL_STATE(312)] = 19352, + [SMALL_STATE(313)] = 19393, + [SMALL_STATE(314)] = 19434, + [SMALL_STATE(315)] = 19475, + [SMALL_STATE(316)] = 19516, + [SMALL_STATE(317)] = 19557, + [SMALL_STATE(318)] = 19598, + [SMALL_STATE(319)] = 19639, + [SMALL_STATE(320)] = 19680, + [SMALL_STATE(321)] = 19721, + [SMALL_STATE(322)] = 19762, + [SMALL_STATE(323)] = 19803, + [SMALL_STATE(324)] = 19844, + [SMALL_STATE(325)] = 19885, + [SMALL_STATE(326)] = 19926, + [SMALL_STATE(327)] = 19967, + [SMALL_STATE(328)] = 20008, + [SMALL_STATE(329)] = 20049, + [SMALL_STATE(330)] = 20090, + [SMALL_STATE(331)] = 20131, + [SMALL_STATE(332)] = 20172, + [SMALL_STATE(333)] = 20213, + [SMALL_STATE(334)] = 20254, + [SMALL_STATE(335)] = 20295, + [SMALL_STATE(336)] = 20336, + [SMALL_STATE(337)] = 20377, + [SMALL_STATE(338)] = 20418, + [SMALL_STATE(339)] = 20459, + [SMALL_STATE(340)] = 20500, + [SMALL_STATE(341)] = 20541, + [SMALL_STATE(342)] = 20582, + [SMALL_STATE(343)] = 20623, + [SMALL_STATE(344)] = 20664, + [SMALL_STATE(345)] = 20705, + [SMALL_STATE(346)] = 20747, + [SMALL_STATE(347)] = 20789, + [SMALL_STATE(348)] = 20831, + [SMALL_STATE(349)] = 20873, + [SMALL_STATE(350)] = 20915, + [SMALL_STATE(351)] = 20957, + [SMALL_STATE(352)] = 20999, + [SMALL_STATE(353)] = 21041, + [SMALL_STATE(354)] = 21083, + [SMALL_STATE(355)] = 21125, + [SMALL_STATE(356)] = 21167, + [SMALL_STATE(357)] = 21209, + [SMALL_STATE(358)] = 21246, + [SMALL_STATE(359)] = 21283, + [SMALL_STATE(360)] = 21320, + [SMALL_STATE(361)] = 21357, + [SMALL_STATE(362)] = 21394, + [SMALL_STATE(363)] = 21431, + [SMALL_STATE(364)] = 21468, + [SMALL_STATE(365)] = 21505, + [SMALL_STATE(366)] = 21542, + [SMALL_STATE(367)] = 21579, + [SMALL_STATE(368)] = 21616, + [SMALL_STATE(369)] = 21653, + [SMALL_STATE(370)] = 21690, + [SMALL_STATE(371)] = 21727, + [SMALL_STATE(372)] = 21764, + [SMALL_STATE(373)] = 21801, + [SMALL_STATE(374)] = 21838, + [SMALL_STATE(375)] = 21875, + [SMALL_STATE(376)] = 21912, + [SMALL_STATE(377)] = 21949, + [SMALL_STATE(378)] = 21986, + [SMALL_STATE(379)] = 22023, + [SMALL_STATE(380)] = 22060, + [SMALL_STATE(381)] = 22097, + [SMALL_STATE(382)] = 22134, + [SMALL_STATE(383)] = 22171, + [SMALL_STATE(384)] = 22208, + [SMALL_STATE(385)] = 22245, + [SMALL_STATE(386)] = 22282, + [SMALL_STATE(387)] = 22319, + [SMALL_STATE(388)] = 22356, + [SMALL_STATE(389)] = 22393, + [SMALL_STATE(390)] = 22430, + [SMALL_STATE(391)] = 22467, + [SMALL_STATE(392)] = 22504, + [SMALL_STATE(393)] = 22541, + [SMALL_STATE(394)] = 22578, + [SMALL_STATE(395)] = 22615, + [SMALL_STATE(396)] = 22652, + [SMALL_STATE(397)] = 22689, + [SMALL_STATE(398)] = 22726, + [SMALL_STATE(399)] = 22763, + [SMALL_STATE(400)] = 22800, + [SMALL_STATE(401)] = 22837, + [SMALL_STATE(402)] = 22874, + [SMALL_STATE(403)] = 22911, + [SMALL_STATE(404)] = 22948, + [SMALL_STATE(405)] = 22985, + [SMALL_STATE(406)] = 23022, + [SMALL_STATE(407)] = 23059, + [SMALL_STATE(408)] = 23096, + [SMALL_STATE(409)] = 23133, + [SMALL_STATE(410)] = 23170, + [SMALL_STATE(411)] = 23207, + [SMALL_STATE(412)] = 23244, + [SMALL_STATE(413)] = 23281, + [SMALL_STATE(414)] = 23318, + [SMALL_STATE(415)] = 23355, + [SMALL_STATE(416)] = 23392, + [SMALL_STATE(417)] = 23429, + [SMALL_STATE(418)] = 23466, + [SMALL_STATE(419)] = 23503, + [SMALL_STATE(420)] = 23540, + [SMALL_STATE(421)] = 23577, + [SMALL_STATE(422)] = 23614, + [SMALL_STATE(423)] = 23651, + [SMALL_STATE(424)] = 23688, + [SMALL_STATE(425)] = 23725, + [SMALL_STATE(426)] = 23762, + [SMALL_STATE(427)] = 23799, + [SMALL_STATE(428)] = 23836, + [SMALL_STATE(429)] = 23873, + [SMALL_STATE(430)] = 23910, + [SMALL_STATE(431)] = 23947, + [SMALL_STATE(432)] = 23984, + [SMALL_STATE(433)] = 24021, + [SMALL_STATE(434)] = 24058, + [SMALL_STATE(435)] = 24095, + [SMALL_STATE(436)] = 24132, + [SMALL_STATE(437)] = 24169, + [SMALL_STATE(438)] = 24206, + [SMALL_STATE(439)] = 24243, + [SMALL_STATE(440)] = 24280, + [SMALL_STATE(441)] = 24317, + [SMALL_STATE(442)] = 24354, + [SMALL_STATE(443)] = 24391, + [SMALL_STATE(444)] = 24428, + [SMALL_STATE(445)] = 24465, + [SMALL_STATE(446)] = 24502, + [SMALL_STATE(447)] = 24539, + [SMALL_STATE(448)] = 24576, + [SMALL_STATE(449)] = 24613, + [SMALL_STATE(450)] = 24650, + [SMALL_STATE(451)] = 24687, + [SMALL_STATE(452)] = 24724, + [SMALL_STATE(453)] = 24761, + [SMALL_STATE(454)] = 24798, + [SMALL_STATE(455)] = 24835, + [SMALL_STATE(456)] = 24872, + [SMALL_STATE(457)] = 24909, + [SMALL_STATE(458)] = 24946, + [SMALL_STATE(459)] = 24983, + [SMALL_STATE(460)] = 25020, + [SMALL_STATE(461)] = 25057, + [SMALL_STATE(462)] = 25094, + [SMALL_STATE(463)] = 25131, + [SMALL_STATE(464)] = 25168, + [SMALL_STATE(465)] = 25205, + [SMALL_STATE(466)] = 25242, + [SMALL_STATE(467)] = 25279, + [SMALL_STATE(468)] = 25316, + [SMALL_STATE(469)] = 25353, + [SMALL_STATE(470)] = 25390, + [SMALL_STATE(471)] = 25427, + [SMALL_STATE(472)] = 25464, + [SMALL_STATE(473)] = 25501, + [SMALL_STATE(474)] = 25538, + [SMALL_STATE(475)] = 25575, + [SMALL_STATE(476)] = 25612, + [SMALL_STATE(477)] = 25649, + [SMALL_STATE(478)] = 25686, + [SMALL_STATE(479)] = 25723, + [SMALL_STATE(480)] = 25760, + [SMALL_STATE(481)] = 25797, + [SMALL_STATE(482)] = 25834, + [SMALL_STATE(483)] = 25871, + [SMALL_STATE(484)] = 25908, + [SMALL_STATE(485)] = 25945, + [SMALL_STATE(486)] = 25982, + [SMALL_STATE(487)] = 26019, + [SMALL_STATE(488)] = 26056, + [SMALL_STATE(489)] = 26093, + [SMALL_STATE(490)] = 26130, + [SMALL_STATE(491)] = 26167, + [SMALL_STATE(492)] = 26204, + [SMALL_STATE(493)] = 26241, + [SMALL_STATE(494)] = 26278, + [SMALL_STATE(495)] = 26315, + [SMALL_STATE(496)] = 26352, + [SMALL_STATE(497)] = 26389, + [SMALL_STATE(498)] = 26426, + [SMALL_STATE(499)] = 26463, + [SMALL_STATE(500)] = 26500, + [SMALL_STATE(501)] = 26537, + [SMALL_STATE(502)] = 26574, + [SMALL_STATE(503)] = 26611, + [SMALL_STATE(504)] = 26648, + [SMALL_STATE(505)] = 26685, + [SMALL_STATE(506)] = 26722, + [SMALL_STATE(507)] = 26759, + [SMALL_STATE(508)] = 26796, + [SMALL_STATE(509)] = 26833, + [SMALL_STATE(510)] = 26870, + [SMALL_STATE(511)] = 26907, + [SMALL_STATE(512)] = 26944, + [SMALL_STATE(513)] = 26981, + [SMALL_STATE(514)] = 27018, + [SMALL_STATE(515)] = 27055, + [SMALL_STATE(516)] = 27092, + [SMALL_STATE(517)] = 27129, + [SMALL_STATE(518)] = 27166, + [SMALL_STATE(519)] = 27203, + [SMALL_STATE(520)] = 27240, + [SMALL_STATE(521)] = 27277, + [SMALL_STATE(522)] = 27314, + [SMALL_STATE(523)] = 27351, + [SMALL_STATE(524)] = 27388, + [SMALL_STATE(525)] = 27425, + [SMALL_STATE(526)] = 27462, + [SMALL_STATE(527)] = 27499, + [SMALL_STATE(528)] = 27536, + [SMALL_STATE(529)] = 27573, + [SMALL_STATE(530)] = 27610, + [SMALL_STATE(531)] = 27647, + [SMALL_STATE(532)] = 27684, + [SMALL_STATE(533)] = 27721, + [SMALL_STATE(534)] = 27749, + [SMALL_STATE(535)] = 27777, + [SMALL_STATE(536)] = 27805, + [SMALL_STATE(537)] = 27833, + [SMALL_STATE(538)] = 27861, + [SMALL_STATE(539)] = 27889, + [SMALL_STATE(540)] = 27917, + [SMALL_STATE(541)] = 27945, + [SMALL_STATE(542)] = 27973, + [SMALL_STATE(543)] = 28001, + [SMALL_STATE(544)] = 28029, + [SMALL_STATE(545)] = 28051, + [SMALL_STATE(546)] = 28073, + [SMALL_STATE(547)] = 28095, + [SMALL_STATE(548)] = 28117, + [SMALL_STATE(549)] = 28139, + [SMALL_STATE(550)] = 28156, + [SMALL_STATE(551)] = 28176, + [SMALL_STATE(552)] = 28196, + [SMALL_STATE(553)] = 28216, + [SMALL_STATE(554)] = 28236, + [SMALL_STATE(555)] = 28256, + [SMALL_STATE(556)] = 28272, + [SMALL_STATE(557)] = 28292, + [SMALL_STATE(558)] = 28312, + [SMALL_STATE(559)] = 28332, + [SMALL_STATE(560)] = 28348, + [SMALL_STATE(561)] = 28368, + [SMALL_STATE(562)] = 28388, + [SMALL_STATE(563)] = 28399, + [SMALL_STATE(564)] = 28410, + [SMALL_STATE(565)] = 28423, + [SMALL_STATE(566)] = 28434, + [SMALL_STATE(567)] = 28450, + [SMALL_STATE(568)] = 28466, + [SMALL_STATE(569)] = 28482, + [SMALL_STATE(570)] = 28498, + [SMALL_STATE(571)] = 28514, + [SMALL_STATE(572)] = 28530, + [SMALL_STATE(573)] = 28546, + [SMALL_STATE(574)] = 28562, + [SMALL_STATE(575)] = 28574, + [SMALL_STATE(576)] = 28586, + [SMALL_STATE(577)] = 28602, + [SMALL_STATE(578)] = 28614, + [SMALL_STATE(579)] = 28630, + [SMALL_STATE(580)] = 28646, + [SMALL_STATE(581)] = 28662, + [SMALL_STATE(582)] = 28678, + [SMALL_STATE(583)] = 28694, + [SMALL_STATE(584)] = 28710, + [SMALL_STATE(585)] = 28722, + [SMALL_STATE(586)] = 28738, + [SMALL_STATE(587)] = 28750, + [SMALL_STATE(588)] = 28766, + [SMALL_STATE(589)] = 28782, + [SMALL_STATE(590)] = 28798, + [SMALL_STATE(591)] = 28814, + [SMALL_STATE(592)] = 28830, + [SMALL_STATE(593)] = 28846, + [SMALL_STATE(594)] = 28858, + [SMALL_STATE(595)] = 28874, + [SMALL_STATE(596)] = 28888, + [SMALL_STATE(597)] = 28900, + [SMALL_STATE(598)] = 28912, + [SMALL_STATE(599)] = 28928, + [SMALL_STATE(600)] = 28938, + [SMALL_STATE(601)] = 28954, + [SMALL_STATE(602)] = 28970, + [SMALL_STATE(603)] = 28986, + [SMALL_STATE(604)] = 28998, + [SMALL_STATE(605)] = 29010, + [SMALL_STATE(606)] = 29021, + [SMALL_STATE(607)] = 29032, + [SMALL_STATE(608)] = 29045, + [SMALL_STATE(609)] = 29058, + [SMALL_STATE(610)] = 29071, + [SMALL_STATE(611)] = 29084, + [SMALL_STATE(612)] = 29097, + [SMALL_STATE(613)] = 29108, + [SMALL_STATE(614)] = 29121, + [SMALL_STATE(615)] = 29134, + [SMALL_STATE(616)] = 29147, + [SMALL_STATE(617)] = 29160, + [SMALL_STATE(618)] = 29173, + [SMALL_STATE(619)] = 29186, + [SMALL_STATE(620)] = 29199, + [SMALL_STATE(621)] = 29212, + [SMALL_STATE(622)] = 29225, + [SMALL_STATE(623)] = 29238, + [SMALL_STATE(624)] = 29251, + [SMALL_STATE(625)] = 29264, + [SMALL_STATE(626)] = 29277, + [SMALL_STATE(627)] = 29290, + [SMALL_STATE(628)] = 29303, + [SMALL_STATE(629)] = 29316, + [SMALL_STATE(630)] = 29329, + [SMALL_STATE(631)] = 29342, + [SMALL_STATE(632)] = 29355, + [SMALL_STATE(633)] = 29368, + [SMALL_STATE(634)] = 29381, + [SMALL_STATE(635)] = 29394, + [SMALL_STATE(636)] = 29407, + [SMALL_STATE(637)] = 29420, + [SMALL_STATE(638)] = 29429, + [SMALL_STATE(639)] = 29440, + [SMALL_STATE(640)] = 29449, + [SMALL_STATE(641)] = 29458, + [SMALL_STATE(642)] = 29469, + [SMALL_STATE(643)] = 29480, + [SMALL_STATE(644)] = 29493, + [SMALL_STATE(645)] = 29504, + [SMALL_STATE(646)] = 29515, + [SMALL_STATE(647)] = 29524, + [SMALL_STATE(648)] = 29533, + [SMALL_STATE(649)] = 29542, + [SMALL_STATE(650)] = 29555, + [SMALL_STATE(651)] = 29568, + [SMALL_STATE(652)] = 29581, + [SMALL_STATE(653)] = 29594, + [SMALL_STATE(654)] = 29605, + [SMALL_STATE(655)] = 29616, + [SMALL_STATE(656)] = 29625, + [SMALL_STATE(657)] = 29634, + [SMALL_STATE(658)] = 29647, + [SMALL_STATE(659)] = 29656, + [SMALL_STATE(660)] = 29665, + [SMALL_STATE(661)] = 29678, + [SMALL_STATE(662)] = 29691, + [SMALL_STATE(663)] = 29700, + [SMALL_STATE(664)] = 29709, + [SMALL_STATE(665)] = 29722, + [SMALL_STATE(666)] = 29731, + [SMALL_STATE(667)] = 29742, + [SMALL_STATE(668)] = 29751, + [SMALL_STATE(669)] = 29762, + [SMALL_STATE(670)] = 29771, + [SMALL_STATE(671)] = 29782, + [SMALL_STATE(672)] = 29792, + [SMALL_STATE(673)] = 29802, + [SMALL_STATE(674)] = 29812, + [SMALL_STATE(675)] = 29822, + [SMALL_STATE(676)] = 29832, + [SMALL_STATE(677)] = 29842, + [SMALL_STATE(678)] = 29852, + [SMALL_STATE(679)] = 29862, + [SMALL_STATE(680)] = 29872, + [SMALL_STATE(681)] = 29880, + [SMALL_STATE(682)] = 29890, + [SMALL_STATE(683)] = 29900, + [SMALL_STATE(684)] = 29910, + [SMALL_STATE(685)] = 29918, + [SMALL_STATE(686)] = 29928, + [SMALL_STATE(687)] = 29938, + [SMALL_STATE(688)] = 29948, + [SMALL_STATE(689)] = 29958, + [SMALL_STATE(690)] = 29968, + [SMALL_STATE(691)] = 29978, + [SMALL_STATE(692)] = 29988, + [SMALL_STATE(693)] = 29998, + [SMALL_STATE(694)] = 30008, + [SMALL_STATE(695)] = 30018, + [SMALL_STATE(696)] = 30028, + [SMALL_STATE(697)] = 30038, + [SMALL_STATE(698)] = 30048, + [SMALL_STATE(699)] = 30058, + [SMALL_STATE(700)] = 30068, + [SMALL_STATE(701)] = 30078, + [SMALL_STATE(702)] = 30088, + [SMALL_STATE(703)] = 30098, + [SMALL_STATE(704)] = 30108, + [SMALL_STATE(705)] = 30118, + [SMALL_STATE(706)] = 30124, + [SMALL_STATE(707)] = 30134, + [SMALL_STATE(708)] = 30144, + [SMALL_STATE(709)] = 30154, + [SMALL_STATE(710)] = 30164, + [SMALL_STATE(711)] = 30174, + [SMALL_STATE(712)] = 30184, + [SMALL_STATE(713)] = 30194, + [SMALL_STATE(714)] = 30204, + [SMALL_STATE(715)] = 30214, + [SMALL_STATE(716)] = 30224, + [SMALL_STATE(717)] = 30234, + [SMALL_STATE(718)] = 30244, + [SMALL_STATE(719)] = 30254, + [SMALL_STATE(720)] = 30264, + [SMALL_STATE(721)] = 30274, + [SMALL_STATE(722)] = 30284, + [SMALL_STATE(723)] = 30294, + [SMALL_STATE(724)] = 30304, + [SMALL_STATE(725)] = 30314, + [SMALL_STATE(726)] = 30324, + [SMALL_STATE(727)] = 30334, + [SMALL_STATE(728)] = 30344, + [SMALL_STATE(729)] = 30354, + [SMALL_STATE(730)] = 30364, + [SMALL_STATE(731)] = 30374, + [SMALL_STATE(732)] = 30384, + [SMALL_STATE(733)] = 30394, + [SMALL_STATE(734)] = 30404, + [SMALL_STATE(735)] = 30414, + [SMALL_STATE(736)] = 30424, + [SMALL_STATE(737)] = 30434, + [SMALL_STATE(738)] = 30444, + [SMALL_STATE(739)] = 30454, + [SMALL_STATE(740)] = 30464, + [SMALL_STATE(741)] = 30474, + [SMALL_STATE(742)] = 30484, + [SMALL_STATE(743)] = 30494, + [SMALL_STATE(744)] = 30504, + [SMALL_STATE(745)] = 30514, + [SMALL_STATE(746)] = 30524, + [SMALL_STATE(747)] = 30534, + [SMALL_STATE(748)] = 30544, + [SMALL_STATE(749)] = 30554, + [SMALL_STATE(750)] = 30564, + [SMALL_STATE(751)] = 30574, + [SMALL_STATE(752)] = 30584, + [SMALL_STATE(753)] = 30594, + [SMALL_STATE(754)] = 30604, + [SMALL_STATE(755)] = 30614, + [SMALL_STATE(756)] = 30624, + [SMALL_STATE(757)] = 30634, + [SMALL_STATE(758)] = 30644, + [SMALL_STATE(759)] = 30654, + [SMALL_STATE(760)] = 30664, + [SMALL_STATE(761)] = 30674, + [SMALL_STATE(762)] = 30684, + [SMALL_STATE(763)] = 30694, + [SMALL_STATE(764)] = 30704, + [SMALL_STATE(765)] = 30714, + [SMALL_STATE(766)] = 30724, + [SMALL_STATE(767)] = 30734, + [SMALL_STATE(768)] = 30744, + [SMALL_STATE(769)] = 30754, + [SMALL_STATE(770)] = 30764, + [SMALL_STATE(771)] = 30774, + [SMALL_STATE(772)] = 30784, + [SMALL_STATE(773)] = 30792, + [SMALL_STATE(774)] = 30802, + [SMALL_STATE(775)] = 30812, + [SMALL_STATE(776)] = 30822, + [SMALL_STATE(777)] = 30832, + [SMALL_STATE(778)] = 30842, + [SMALL_STATE(779)] = 30852, + [SMALL_STATE(780)] = 30862, + [SMALL_STATE(781)] = 30872, + [SMALL_STATE(782)] = 30882, + [SMALL_STATE(783)] = 30892, + [SMALL_STATE(784)] = 30902, + [SMALL_STATE(785)] = 30912, + [SMALL_STATE(786)] = 30922, + [SMALL_STATE(787)] = 30932, + [SMALL_STATE(788)] = 30942, + [SMALL_STATE(789)] = 30952, + [SMALL_STATE(790)] = 30962, + [SMALL_STATE(791)] = 30972, + [SMALL_STATE(792)] = 30982, + [SMALL_STATE(793)] = 30992, + [SMALL_STATE(794)] = 31002, + [SMALL_STATE(795)] = 31012, + [SMALL_STATE(796)] = 31022, + [SMALL_STATE(797)] = 31032, + [SMALL_STATE(798)] = 31042, + [SMALL_STATE(799)] = 31052, + [SMALL_STATE(800)] = 31062, + [SMALL_STATE(801)] = 31072, + [SMALL_STATE(802)] = 31082, + [SMALL_STATE(803)] = 31092, + [SMALL_STATE(804)] = 31102, + [SMALL_STATE(805)] = 31112, + [SMALL_STATE(806)] = 31122, + [SMALL_STATE(807)] = 31132, + [SMALL_STATE(808)] = 31142, + [SMALL_STATE(809)] = 31149, + [SMALL_STATE(810)] = 31156, + [SMALL_STATE(811)] = 31161, + [SMALL_STATE(812)] = 31168, + [SMALL_STATE(813)] = 31175, + [SMALL_STATE(814)] = 31182, + [SMALL_STATE(815)] = 31189, + [SMALL_STATE(816)] = 31196, + [SMALL_STATE(817)] = 31203, + [SMALL_STATE(818)] = 31210, + [SMALL_STATE(819)] = 31217, + [SMALL_STATE(820)] = 31224, + [SMALL_STATE(821)] = 31231, + [SMALL_STATE(822)] = 31238, + [SMALL_STATE(823)] = 31245, + [SMALL_STATE(824)] = 31252, + [SMALL_STATE(825)] = 31259, + [SMALL_STATE(826)] = 31264, + [SMALL_STATE(827)] = 31271, + [SMALL_STATE(828)] = 31278, + [SMALL_STATE(829)] = 31283, + [SMALL_STATE(830)] = 31290, + [SMALL_STATE(831)] = 31295, + [SMALL_STATE(832)] = 31302, + [SMALL_STATE(833)] = 31309, + [SMALL_STATE(834)] = 31316, + [SMALL_STATE(835)] = 31323, + [SMALL_STATE(836)] = 31330, + [SMALL_STATE(837)] = 31337, + [SMALL_STATE(838)] = 31344, + [SMALL_STATE(839)] = 31351, + [SMALL_STATE(840)] = 31358, + [SMALL_STATE(841)] = 31365, + [SMALL_STATE(842)] = 31369, + [SMALL_STATE(843)] = 31373, + [SMALL_STATE(844)] = 31377, + [SMALL_STATE(845)] = 31381, + [SMALL_STATE(846)] = 31385, + [SMALL_STATE(847)] = 31389, + [SMALL_STATE(848)] = 31393, + [SMALL_STATE(849)] = 31397, + [SMALL_STATE(850)] = 31401, + [SMALL_STATE(851)] = 31405, + [SMALL_STATE(852)] = 31409, + [SMALL_STATE(853)] = 31413, + [SMALL_STATE(854)] = 31417, + [SMALL_STATE(855)] = 31421, + [SMALL_STATE(856)] = 31425, + [SMALL_STATE(857)] = 31429, + [SMALL_STATE(858)] = 31433, + [SMALL_STATE(859)] = 31437, + [SMALL_STATE(860)] = 31441, + [SMALL_STATE(861)] = 31445, + [SMALL_STATE(862)] = 31449, + [SMALL_STATE(863)] = 31453, + [SMALL_STATE(864)] = 31457, + [SMALL_STATE(865)] = 31461, + [SMALL_STATE(866)] = 31465, + [SMALL_STATE(867)] = 31469, + [SMALL_STATE(868)] = 31473, + [SMALL_STATE(869)] = 31477, + [SMALL_STATE(870)] = 31481, + [SMALL_STATE(871)] = 31485, + [SMALL_STATE(872)] = 31489, + [SMALL_STATE(873)] = 31493, + [SMALL_STATE(874)] = 31497, + [SMALL_STATE(875)] = 31501, + [SMALL_STATE(876)] = 31505, + [SMALL_STATE(877)] = 31509, + [SMALL_STATE(878)] = 31513, + [SMALL_STATE(879)] = 31517, + [SMALL_STATE(880)] = 31521, + [SMALL_STATE(881)] = 31525, + [SMALL_STATE(882)] = 31529, + [SMALL_STATE(883)] = 31533, + [SMALL_STATE(884)] = 31537, + [SMALL_STATE(885)] = 31541, + [SMALL_STATE(886)] = 31545, + [SMALL_STATE(887)] = 31549, + [SMALL_STATE(888)] = 31553, + [SMALL_STATE(889)] = 31557, + [SMALL_STATE(890)] = 31561, + [SMALL_STATE(891)] = 31565, + [SMALL_STATE(892)] = 31569, + [SMALL_STATE(893)] = 31573, + [SMALL_STATE(894)] = 31577, + [SMALL_STATE(895)] = 31581, + [SMALL_STATE(896)] = 31585, + [SMALL_STATE(897)] = 31589, + [SMALL_STATE(898)] = 31593, + [SMALL_STATE(899)] = 31597, + [SMALL_STATE(900)] = 31601, + [SMALL_STATE(901)] = 31605, + [SMALL_STATE(902)] = 31609, + [SMALL_STATE(903)] = 31613, + [SMALL_STATE(904)] = 31617, + [SMALL_STATE(905)] = 31621, + [SMALL_STATE(906)] = 31625, + [SMALL_STATE(907)] = 31629, + [SMALL_STATE(908)] = 31633, + [SMALL_STATE(909)] = 31637, + [SMALL_STATE(910)] = 31641, + [SMALL_STATE(911)] = 31645, + [SMALL_STATE(912)] = 31649, + [SMALL_STATE(913)] = 31653, + [SMALL_STATE(914)] = 31657, + [SMALL_STATE(915)] = 31661, + [SMALL_STATE(916)] = 31665, + [SMALL_STATE(917)] = 31669, + [SMALL_STATE(918)] = 31673, + [SMALL_STATE(919)] = 31677, + [SMALL_STATE(920)] = 31681, + [SMALL_STATE(921)] = 31685, + [SMALL_STATE(922)] = 31689, + [SMALL_STATE(923)] = 31693, + [SMALL_STATE(924)] = 31697, + [SMALL_STATE(925)] = 31701, + [SMALL_STATE(926)] = 31705, + [SMALL_STATE(927)] = 31709, + [SMALL_STATE(928)] = 31713, + [SMALL_STATE(929)] = 31717, + [SMALL_STATE(930)] = 31721, + [SMALL_STATE(931)] = 31725, + [SMALL_STATE(932)] = 31729, + [SMALL_STATE(933)] = 31733, + [SMALL_STATE(934)] = 31737, + [SMALL_STATE(935)] = 31741, + [SMALL_STATE(936)] = 31745, + [SMALL_STATE(937)] = 31749, + [SMALL_STATE(938)] = 31753, + [SMALL_STATE(939)] = 31757, + [SMALL_STATE(940)] = 31761, + [SMALL_STATE(941)] = 31765, + [SMALL_STATE(942)] = 31769, + [SMALL_STATE(943)] = 31773, + [SMALL_STATE(944)] = 31777, + [SMALL_STATE(945)] = 31781, + [SMALL_STATE(946)] = 31785, + [SMALL_STATE(947)] = 31789, + [SMALL_STATE(948)] = 31793, + [SMALL_STATE(949)] = 31797, + [SMALL_STATE(950)] = 31801, + [SMALL_STATE(951)] = 31805, + [SMALL_STATE(952)] = 31809, + [SMALL_STATE(953)] = 31813, + [SMALL_STATE(954)] = 31817, + [SMALL_STATE(955)] = 31821, + [SMALL_STATE(956)] = 31825, + [SMALL_STATE(957)] = 31829, + [SMALL_STATE(958)] = 31833, + [SMALL_STATE(959)] = 31837, + [SMALL_STATE(960)] = 31841, + [SMALL_STATE(961)] = 31845, + [SMALL_STATE(962)] = 31849, + [SMALL_STATE(963)] = 31853, + [SMALL_STATE(964)] = 31857, + [SMALL_STATE(965)] = 31861, + [SMALL_STATE(966)] = 31865, + [SMALL_STATE(967)] = 31869, + [SMALL_STATE(968)] = 31873, + [SMALL_STATE(969)] = 31877, + [SMALL_STATE(970)] = 31881, + [SMALL_STATE(971)] = 31885, + [SMALL_STATE(972)] = 31889, + [SMALL_STATE(973)] = 31893, + [SMALL_STATE(974)] = 31897, + [SMALL_STATE(975)] = 31901, + [SMALL_STATE(976)] = 31905, + [SMALL_STATE(977)] = 31909, + [SMALL_STATE(978)] = 31913, + [SMALL_STATE(979)] = 31917, + [SMALL_STATE(980)] = 31921, + [SMALL_STATE(981)] = 31925, + [SMALL_STATE(982)] = 31929, + [SMALL_STATE(983)] = 31933, + [SMALL_STATE(984)] = 31937, + [SMALL_STATE(985)] = 31941, + [SMALL_STATE(986)] = 31945, + [SMALL_STATE(987)] = 31949, + [SMALL_STATE(988)] = 31953, + [SMALL_STATE(989)] = 31957, + [SMALL_STATE(990)] = 31961, + [SMALL_STATE(991)] = 31965, + [SMALL_STATE(992)] = 31969, + [SMALL_STATE(993)] = 31973, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(85), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(249), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(246), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(328), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(49), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(261), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(51), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(54), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(802), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(818), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(2), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(672), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(241), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(233), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(55), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(56), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(680), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(575), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(57), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(58), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(626), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(589), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(684), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(687), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(638), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(1028), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(576), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(955), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(850), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(328), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT(284), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(672), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(241), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(575), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(626), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(589), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(687), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(638), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(1028), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(576), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(955), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(28), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(284), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(18), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(279), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(31), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(299), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT(299), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(36), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(309), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT(309), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(243), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(370), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(819), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(694), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(97), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(664), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(573), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(666), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(1027), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(928), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(9), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(259), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(76), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(263), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(77), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(260), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT(375), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(94), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(375), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT(372), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(88), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(372), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT(260), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(117), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(386), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(115), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(646), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(568), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(604), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(593), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(645), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(578), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(913), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(401), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(647), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(570), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(631), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(651), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(894), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(118), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(379), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(378), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(497), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(208), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(401), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(207), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(206), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(779), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(781), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(99), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(668), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(202), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(199), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(647), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(570), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(197), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(194), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(631), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(588), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(649), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(651), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(652), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(1025), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(579), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(894), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(840), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(203), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(517), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(483), - [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(124), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(483), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(219), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(431), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(431), - [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(163), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(442), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(140), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(388), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(177), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(452), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(428), - [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(168), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(428), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(134), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(433), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(189), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(454), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(454), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(154), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(460), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(192), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(465), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(465), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(227), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(518), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(230), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(474), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(182), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(480), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(480), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(518), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(521), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(572), - [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(592), - [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(975), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 1, 0, 0), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(474), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat2, 1, 0, 0), - [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 1, 0, 0), SHIFT_REPEAT(354), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 1, 0, 0), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 2), - [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 2), SHIFT_REPEAT(275), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 2), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat1, 2, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat1, 2, 0, 0), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(239), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(240), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 2), SHIFT_REPEAT(278), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 1, 0, 0), SHIFT_REPEAT(265), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat1, 1, 0, 0), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat1, 1, 0, 0), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_extended, 1, 0, 0), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_extended, 1, 0, 0), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), SHIFT_REPEAT(242), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), SHIFT_REPEAT(233), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quantifier, 1, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1, 0, 0), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), - [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), SHIFT_REPEAT(244), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), - [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), SHIFT_REPEAT(251), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), SHIFT_REPEAT(238), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backreference, 5, 0, 14), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backreference, 5, 0, 14), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_class, 3, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_class, 3, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modify_extended_1, 3, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_extended_1, 3, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_extended, 2, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_extended, 2, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_capture_group_extended, 2, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_capture_group_extended, 2, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_group_extended, 2, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_group_extended, 2, 0, 0), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent_extended, 3, 0, 0), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent_extended, 3, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent_extended, 4, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent_extended, 4, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional_extended, 4, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_extended, 4, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name_extended, 4, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name_extended, 4, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_behind_extended, 3, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_behind_extended, 3, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_ahead_extended, 2, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_ahead_extended, 2, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_behind_extended, 2, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_behind_extended, 2, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent_extended, 2, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent_extended, 2, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_ahead_extended, 3, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_ahead_extended, 3, 0, 0), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unicode, 5, 0, 0), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unicode, 5, 0, 0), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_property, 3, 0, 0), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_property, 3, 0, 0), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name_extended, 5, 0, 6), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name_extended, 5, 0, 6), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_property, 2, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_property, 2, 0, 0), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat2, 3, 0, 2), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 3, 0, 2), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional_extended, 3, 0, 0), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_extended, 3, 0, 0), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 9, 0, 0), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 9, 0, 0), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 8, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 8, 0, 0), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_group_extended, 3, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_group_extended, 3, 0, 0), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_capture_group_extended, 3, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_capture_group_extended, 3, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 7, 0, 0), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 7, 0, 0), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 6, 0, 16), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 6, 0, 16), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 6, 0, 0), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 6, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_extended, 3, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_extended, 3, 0, 0), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 5, 0, 13), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 5, 0, 13), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 5, 0, 12), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 5, 0, 12), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 5, 0, 11), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 5, 0, 11), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 5, 0, 0), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 5, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modify_extended_2, 5, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_extended_2, 5, 0, 0), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name_extended, 5, 0, 0), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name_extended, 5, 0, 0), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modify, 5, 0, 0), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify, 5, 0, 0), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional_extended, 5, 0, 0), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_extended, 5, 0, 0), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backreference, 4, 0, 6), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backreference, 4, 0, 6), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backreference, 4, 0, 9), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backreference, 4, 0, 9), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 4, 0, 8), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 4, 0, 8), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent_extended, 5, 0, 0), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent_extended, 5, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 4, 0, 7), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 4, 0, 7), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 4, 0, 6), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 4, 0, 6), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 4, 0, 5), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 4, 0, 5), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 4, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 4, 0, 0), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name_extended, 6, 0, 6), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name_extended, 6, 0, 6), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional_extended, 6, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_extended, 6, 0, 0), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modify_extended_2, 4, 0, 0), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_extended_2, 4, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modify, 4, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify, 4, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modify_extended, 3, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modify_extended, 3, 0, 0), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional_extended, 7, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_extended, 7, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backreference, 3, 0, 0), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backreference, 3, 0, 0), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 3, 0, 3), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 3, 0, 3), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 3, 0, 0), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 3, 0, 0), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_group, 3, 0, 2), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_group, 3, 0, 2), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 3, 0, 0), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 3, 0, 0), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_control_char, 2, 0, 0), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_control_char, 2, 0, 0), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modify_extended, 2, 0, 0), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modify_extended, 2, 0, 0), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_class, 2, 0, 0), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_class, 2, 0, 0), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_group, 2, 0, 0), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_group, 2, 0, 0), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), SHIFT_REPEAT(381), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(383), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent, 3, 0, 0), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent, 3, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent, 5, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent, 5, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name, 5, 0, 0), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name, 5, 0, 0), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name, 6, 0, 6), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name, 6, 0, 6), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional, 6, 0, 0), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional, 6, 0, 0), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name, 5, 0, 6), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name, 5, 0, 6), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name, 4, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name, 4, 0, 0), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional, 7, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional, 7, 0, 0), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group, 2, 0, 0), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group, 2, 0, 0), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_capture_group, 2, 0, 0), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_capture_group, 2, 0, 0), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_group, 2, 0, 0), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_group, 2, 0, 0), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_ahead, 2, 0, 0), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_ahead, 2, 0, 0), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_behind, 2, 0, 0), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_behind, 2, 0, 0), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent, 2, 0, 0), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent, 2, 0, 0), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_ahead, 3, 0, 0), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_ahead, 3, 0, 0), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent, 4, 0, 0), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent, 4, 0, 0), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional, 4, 0, 0), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional, 4, 0, 0), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group, 3, 0, 0), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group, 3, 0, 0), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_capture_group, 3, 0, 0), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_capture_group, 3, 0, 0), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_group, 3, 0, 0), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_group, 3, 0, 0), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional, 3, 0, 0), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional, 3, 0, 0), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_behind, 3, 0, 0), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_behind, 3, 0, 0), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional, 5, 0, 0), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional, 5, 0, 0), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), SHIFT_REPEAT(608), - [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), SHIFT_REPEAT(1026), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_meta_control_char_repeat1, 2, 0, 0), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_control_char_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_control_char_repeat1, 2, 0, 0), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_property_name, 1, 0, 0), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 1, 0, 0), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 1, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_character_property_name_repeat1, 2, 0, 0), - [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_property_name_repeat1, 2, 0, 0), SHIFT_REPEAT(648), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_character_property_name_repeat1, 2, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_group_repeat1, 2, 0, 0), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_group_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat2, 2, 0, 0), - [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat2, 2, 0, 0), SHIFT_REPEAT(723), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat2, 2, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(727), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__callout_contents_repeat1, 2, 0, 0), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callout_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat3, 2, 0, 0), - [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat3, 2, 0, 0), SHIFT_REPEAT(847), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat2, 1, 0, 0), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat2, 1, 0, 0), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_conditional_name_repeat1, 2, 0, 0), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_conditional_name_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(84), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(219), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(216), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(274), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(41), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(327), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(3), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(23), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(688), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(687), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(2), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(654), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(211), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(202), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(62), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(28), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(621), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(539), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(46), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(48), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(579), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(561), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(620), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(619), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(618), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(992), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(546), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(919), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(839), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(19), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(284), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT(282), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(688), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(687), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(621), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(579), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(618), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(992), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(546), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(17), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(282), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT(284), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(78), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(325), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(20), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(213), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(807), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(770), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(605), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(537), + [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(587), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(627), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(991), + [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(895), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(44), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(257), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(42), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(256), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(39), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(328), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT(324), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(77), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(324), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_extended_repeat1, 2, 0, 0), SHIFT(325), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(142), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(346), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(345), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(436), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(165), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(470), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(164), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(163), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(695), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(694), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(86), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(612), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(162), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(161), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(636), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(535), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(160), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(159), + [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(588), + [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(552), + [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(635), + [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(634), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(633), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(989), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(547), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(867), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(836), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(170), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(496), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(353), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(166), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(642), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(578), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(650), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(900), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(140), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(432), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(371), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(636), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(634), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(989), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(102), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(371), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(363), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(104), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(363), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(146), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(437), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(193), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(443), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(110), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(506), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(506), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(443), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(127), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(517), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(130), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(373), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(195), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(450), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(450), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(175), + [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), SHIFT(489), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT(489), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(348), + [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(97), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(614), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(533), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(611), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(610), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(993), + [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 1, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat2, 1, 0, 0), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 1, 0, 0), SHIFT_REPEAT(338), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 1, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 1), + [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 1), SHIFT_REPEAT(253), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 1), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 1), SHIFT_REPEAT(332), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat1, 2, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat1, 2, 0, 0), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 1, 0, 0), SHIFT_REPEAT(336), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat1, 1, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat1, 1, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), SHIFT_REPEAT(210), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), SHIFT_REPEAT(207), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_extended, 1, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_extended, 1, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), SHIFT_REPEAT(212), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 2, 0, 0), SHIFT_REPEAT(202), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quantifier, 1, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), + [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), SHIFT_REPEAT(214), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modify, 5, 0, 0), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify, 5, 0, 0), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_group_extended, 2, 0, 0), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_group_extended, 2, 0, 0), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unicode, 5, 0, 0), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unicode, 5, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_property, 3, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_property, 3, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_property, 2, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_property, 2, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 9, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 9, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 8, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 8, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 7, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 7, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 6, 0, 12), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 6, 0, 12), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 6, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 6, 0, 0), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backreference, 5, 0, 11), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backreference, 5, 0, 11), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 5, 0, 10), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 5, 0, 10), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 5, 0, 9), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 5, 0, 9), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 5, 0, 8), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 5, 0, 8), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 5, 0, 0), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 5, 0, 0), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modify_extended_2, 5, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_extended_2, 5, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backreference, 4, 0, 4), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backreference, 4, 0, 4), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backreference, 4, 0, 7), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backreference, 4, 0, 7), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 4, 0, 6), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 4, 0, 6), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 4, 0, 5), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 4, 0, 5), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 4, 0, 4), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 4, 0, 4), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 4, 0, 3), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 4, 0, 3), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 4, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 4, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modify_extended_2, 4, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_extended_2, 4, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_extended, 3, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_extended, 3, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_capture_group_extended, 3, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_capture_group_extended, 3, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_group_extended, 3, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_group_extended, 3, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modify, 4, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify, 4, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modify_extended, 3, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modify_extended, 3, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_condition_extended, 3, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_condition_extended, 3, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_extended_repeat2, 3, 0, 1), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_extended_repeat2, 3, 0, 1), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_ahead_extended, 3, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_ahead_extended, 3, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_behind_extended, 3, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_behind_extended, 3, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent_extended, 3, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent_extended, 3, 0, 0), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional_extended, 3, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_extended, 3, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_behind_extended, 2, 0, 0), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_behind_extended, 2, 0, 0), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backreference, 3, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backreference, 3, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 3, 0, 2), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 3, 0, 2), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subroutine, 3, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subroutine, 3, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_class, 3, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_class, 3, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_group, 3, 0, 1), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_group, 3, 0, 1), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callout, 3, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callout, 3, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_control_char, 2, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_control_char, 2, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_extended, 2, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_extended, 2, 0, 0), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_capture_group_extended, 2, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_capture_group_extended, 2, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modify_extended, 2, 0, 0), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modify_extended, 2, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_class, 2, 0, 0), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_class, 2, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_group, 2, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_group, 2, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alteration, 1, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alteration, 1, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name_extended, 4, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name_extended, 4, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent_extended, 4, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent_extended, 4, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional_extended, 4, 0, 0), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_extended, 4, 0, 0), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name_extended, 5, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name_extended, 5, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name_extended, 5, 0, 4), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name_extended, 5, 0, 4), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent_extended, 5, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent_extended, 5, 0, 0), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional_extended, 5, 0, 0), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_extended, 5, 0, 0), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name_extended, 6, 0, 4), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name_extended, 6, 0, 4), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modify_extended_1, 3, 0, 0), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_extended_1, 3, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional_extended, 2, 0, 0), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_extended, 2, 0, 0), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent_extended, 2, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent_extended, 2, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_condition_extended, 2, 0, 0), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_condition_extended, 2, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_ahead_extended, 2, 0, 0), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_ahead_extended, 2, 0, 0), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quantifier_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent, 5, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent, 5, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name, 4, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name, 4, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent, 4, 0, 0), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent, 4, 0, 0), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional, 4, 0, 0), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional, 4, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent, 3, 0, 0), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent, 3, 0, 0), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_behind, 3, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_behind, 3, 0, 0), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_ahead, 3, 0, 0), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_ahead, 3, 0, 0), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_group, 3, 0, 0), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_group, 3, 0, 0), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_capture_group, 3, 0, 0), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_capture_group, 3, 0, 0), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group, 3, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group, 3, 0, 0), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name, 5, 0, 0), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name, 5, 0, 0), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name, 5, 0, 4), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name, 5, 0, 4), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional, 5, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional, 5, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_name, 6, 0, 4), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_name, 6, 0, 4), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional, 2, 0, 0), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional, 2, 0, 0), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group, 2, 0, 0), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group, 2, 0, 0), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_capture_group, 2, 0, 0), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_capture_group, 2, 0, 0), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_group, 2, 0, 0), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_group, 2, 0, 0), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_absent, 2, 0, 0), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_absent, 2, 0, 0), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_ahead, 2, 0, 0), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_ahead, 2, 0, 0), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_look_behind, 2, 0, 0), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_look_behind, 2, 0, 0), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_conditional, 3, 0, 0), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional, 3, 0, 0), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_condition, 2, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_condition, 2, 0, 0), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_group_condition, 3, 0, 0), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_condition, 3, 0, 0), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), SHIFT_REPEAT(536), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), SHIFT_REPEAT(536), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_class_repeat1, 2, 0, 0), SHIFT_REPEAT(990), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_meta_control_char_repeat1, 2, 0, 0), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_control_char_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_control_char_repeat1, 2, 0, 0), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_property_name, 1, 0, 0), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat1, 1, 0, 0), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 1, 0, 0), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat2, 2, 0, 0), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat2, 2, 0, 0), SHIFT_REPEAT(680), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat2, 2, 0, 0), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(772), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_character_property_name_repeat1, 2, 0, 0), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_property_name_repeat1, 2, 0, 0), SHIFT_REPEAT(661), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_character_property_name_repeat1, 2, 0, 0), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_group_repeat1, 2, 0, 0), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_group_repeat1, 2, 0, 0), SHIFT_REPEAT(705), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat2, 1, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat2, 1, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_callout_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_callout_repeat1, 2, 0, 0), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__callout_contents, 1, 0, 0), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_property_name, 2, 0, 0), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_group_repeat1, 1, 0, 0), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat3, 2, 0, 0), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat3, 2, 0, 0), SHIFT_REPEAT(820), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__callout_contents_repeat1, 2, 0, 0), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__callout_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__callout_contents, 2, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat3, 2, 0, 0), SHIFT_REPEAT(810), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_conditional_name_repeat1, 2, 0, 0), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_conditional_name_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__callout_contents, 1, 0, 0), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_group_repeat1, 1, 0, 0), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat1, 2, 0, 0), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat2, 2, 0, 0), SHIFT_REPEAT(860), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat2, 2, 0, 0), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_property_name, 2, 0, 0), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_character_property_name_repeat2, 2, 0, 0), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_property_name_repeat2, 2, 0, 0), SHIFT_REPEAT(797), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__callout_contents, 2, 0, 0), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat3, 2, 0, 0), SHIFT_REPEAT(854), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_callout_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_callout_repeat1, 2, 0, 0), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat1, 1, 0, 0), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat3, 1, 0, 0), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat3, 1, 0, 0), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat2, 1, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_name, 1, 0, 1), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_conditional_name_repeat1, 1, 0, 0), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__callout_contents, 3, 0, 0), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2943] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_name, 5, 0, 15), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_name, 3, 0, 4), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_name, 4, 0, 10), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_name, 2, 0, 1), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_character_property_name_repeat2, 2, 0, 0), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_character_property_name_repeat2, 2, 0, 0), SHIFT_REPEAT(766), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat2, 2, 0, 0), SHIFT_REPEAT(828), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat2, 2, 0, 0), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat1, 2, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subroutine_repeat3, 1, 0, 0), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subroutine_repeat3, 1, 0, 0), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat1, 1, 0, 0), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_group_name_repeat2, 1, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_name, 1, 0, 0), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_name, 2, 0, 0), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2865] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_name, 4, 0, 0), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_name, 3, 0, 0), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__callout_contents, 3, 0, 0), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_group_conditional_name, 5, 0, 0), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), }; enum ts_external_scanner_symbol_identifiers {